diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index b7832ba2d9e..6b1deaa72ec 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -888,6 +888,8 @@ jobs:
src/shared/child-process/windows-cmd-shim-resolution.win32.test.ts
src/main/agent-hooks/windows-hook-payload-delivery.test.ts
src/main/agent-hooks/windows-direct-cmd-hook-command.test.ts
+ src/main/codex/windows-hook-command.test.ts
+ src/main/codex/windows-hook-upgrade.test.ts
src/main/windows/windows-pty-job.win32.test.ts
src/main/windows/windows-msys-job.win32.test.ts
src/main/windows/windows-host-job.win32.test.ts
diff --git a/config/scripts/pr-code-change-scope.mjs b/config/scripts/pr-code-change-scope.mjs
index 3b39bb34275..3d412df7ba8 100644
--- a/config/scripts/pr-code-change-scope.mjs
+++ b/config/scripts/pr-code-change-scope.mjs
@@ -1,3 +1,5 @@
+import { readFileSync } from 'node:fs'
+import { join } from 'node:path'
import process from 'node:process'
import { pathToFileURL } from 'node:url'
@@ -223,6 +225,8 @@ const WINDOWS_PACKAGE_TESTS = [
'src/shared/child-process/windows-cmd-shim-resolution.win32.test.ts',
'src/main/agent-hooks/windows-hook-payload-delivery.test.ts',
'src/main/agent-hooks/windows-direct-cmd-hook-command.test.ts',
+ 'src/main/codex/windows-hook-command.test.ts',
+ 'src/main/codex/windows-hook-upgrade.test.ts',
'src/main/windows/windows-pty-job.win32.test.ts',
'src/main/windows/windows-msys-job.win32.test.ts',
'src/main/windows/windows-host-job.win32.test.ts',
@@ -259,6 +263,49 @@ const DESKTOP_IRRELEVANT_PREFIXES = [
'.github/workflows/mobile-android-release.yml'
]
+const STATIC_ANALYSIS_AUDIT_SCRIPTS = [
+ 'audit:code-quality:native',
+ 'audit:code-quality:type-aware',
+ 'audit:anti-slop'
+]
+
+// Positional arguments of an oxlint invocation are the trees it lints. `--config` consumes the
+// next token; every other flag here is valueless.
+function oxlintScanRoots(command) {
+ const roots = []
+ for (const segment of command.split('&&')) {
+ const tokens = segment.trim().split(/\s+/).filter(Boolean)
+ if (tokens[0] !== 'oxlint') {
+ continue
+ }
+ for (let index = 1; index < tokens.length; index += 1) {
+ if (tokens[index] === '--config') {
+ index += 1
+ } else if (!tokens[index].startsWith('-')) {
+ roots.push(tokens[index])
+ }
+ }
+ }
+ return roots
+}
+
+// Why derived from the commands rather than listed here: `mobile/` is desktop-irrelevant for every
+// other job, yet these audits lint it. A second, hand-maintained copy of "which trees the gate
+// reads" is what let #20702 land violations no PR check ran, so read it off the argv instead.
+function readStaticAnalysisScanRoots() {
+ const manifest = join(import.meta.dirname, '../../package.json')
+ const { scripts = {} } = JSON.parse(readFileSync(manifest, 'utf8'))
+ return [
+ ...new Set(
+ STATIC_ANALYSIS_AUDIT_SCRIPTS.flatMap((name) => oxlintScanRoots(scripts[name] ?? ''))
+ )
+ ]
+}
+
+export const STATIC_ANALYSIS_SCAN_ROOTS = readStaticAnalysisScanRoots()
+
+const STATIC_ANALYSIS_SCAN_PREFIXES = STATIC_ANALYSIS_SCAN_ROOTS.map((root) => `${root}/`)
+
export function isDocsOnlyPath(file) {
if (DOCS_ONLY_FILES.has(file)) {
return true
@@ -296,10 +343,15 @@ export function classifyPrJobs(changedFiles) {
shouldRun && (forceAll || ALWAYS_ON_CODE_JOBS.has(job) || jobDetector(job)(changedFiles))
])
)
+ // Why outside should_run: a mobile-only diff is desktop-irrelevant and skips every job above,
+ // but the repo-wide audits lint mobile/, and skipping them lands the violation on main, where
+ // it then fails this same gate on every later PR's merge ref.
+ jobs.static_analysis = jobs.static_analysis || changedFiles.some(isStaticAnalysisScannedPath)
return {
should_run: shouldRun,
native_cache_changed: shouldRun && (emptyDiff || changedFiles.some(isNativeCacheInputPath)),
- mobile_dependencies: shouldRun && needsMobileDependencies(changedFiles),
+ mobile_dependencies:
+ (shouldRun || jobs.static_analysis) && needsMobileDependencies(changedFiles),
...jobs
}
}
@@ -356,6 +408,13 @@ function isDesktopIrrelevantPath(file) {
return matchesPrefix(file, DESKTOP_IRRELEVANT_PREFIXES)
}
+function isStaticAnalysisScannedPath(file) {
+ // Fail closed: roots we failed to parse must keep the gate, not silently drop it.
+ return (
+ STATIC_ANALYSIS_SCAN_PREFIXES.length === 0 || matchesPrefix(file, STATIC_ANALYSIS_SCAN_PREFIXES)
+ )
+}
+
function isNativeCacheInputPath(file) {
return NATIVE_CACHE_FILES.has(file) || matchesPrefix(file, NATIVE_CACHE_PREFIXES)
}
diff --git a/config/scripts/pr-code-change-scope.test.mjs b/config/scripts/pr-code-change-scope.test.mjs
index e622dd8603a..6e39bd9b20a 100644
--- a/config/scripts/pr-code-change-scope.test.mjs
+++ b/config/scripts/pr-code-change-scope.test.mjs
@@ -7,7 +7,8 @@ import {
classifyPrJobs,
isDocsOnlyPath,
PR_CHECK_JOBS,
- shouldRunPrChecks
+ shouldRunPrChecks,
+ STATIC_ANALYSIS_SCAN_ROOTS
} from './pr-code-change-scope.mjs'
const projectDir = resolve(import.meta.dirname, '../..')
@@ -327,11 +328,41 @@ describe('per-job path classification', () => {
expect(
classifyPrJobs(['src/main/index.ts', 'mobile/src/session/a.test.ts']).mobile_dependencies
).toBe(true)
- // Why false: a mobile-only diff skips every desktop job, so the install step's own
- // job never runs and claiming the install is needed contradicts should_run.
- expect(classifyPrJobs(['mobile/package.json']).mobile_dependencies).toBe(false)
+ // Why true: a mobile-only diff still skips the desktop suite, but the repo-wide audits lint
+ // mobile/, so static analysis runs and its changed-code pass needs the mobile types.
+ expect(classifyPrJobs(['mobile/package.json']).mobile_dependencies).toBe(true)
expect(classifyPrJobs(['mobile/package.json']).should_run).toBe(false)
- expect(classifyPrJobs(['README.md', 'mobile/src/a.ts']).mobile_dependencies).toBe(false)
+ expect(classifyPrJobs(['README.md', 'mobile/src/a.ts']).mobile_dependencies).toBe(true)
+ })
+
+ // Why: `mobile/` is desktop-irrelevant for every other job, so a mobile-only diff used to skip
+ // the audits that do lint it. That is how #20702 landed two duplicate imports which then failed
+ // this gate on every later PR's merge ref until #20895 swept them.
+ it('runs static analysis for a mobile-only diff without dragging in the desktop suite', () => {
+ const result = classifyPrJobs([
+ 'mobile/src/test-support/rpc-recording/adapters/push-registration-mount-adapters.ts'
+ ])
+ expect(result.static_analysis).toBe(true)
+ expect(result.mobile_dependencies).toBe(true)
+ expect(result.should_run).toBe(false)
+ for (const job of ['typecheck', 'test', 'package', 'package_windows', 'git_compatibility']) {
+ expect(result[job], job).toBe(false)
+ }
+ })
+
+ // The ratchet: adding a tree to an audit command has to widen this trigger on its own.
+ it('runs static analysis for every tree the audit commands scan', () => {
+ expect(STATIC_ANALYSIS_SCAN_ROOTS).toEqual(
+ expect.arrayContaining(['src', 'config', 'tests', 'mobile'])
+ )
+ for (const root of STATIC_ANALYSIS_SCAN_ROOTS) {
+ expect(classifyPrJobs([`${root}/changed-file.ts`]).static_analysis, root).toBe(true)
+ }
+ })
+
+ it('leaves diffs the audits never read out of static analysis', () => {
+ expect(classifyPrJobs(['README.md']).static_analysis).toBe(false)
+ expect(classifyPrJobs(['cloud/apps/relay/src/index.ts']).static_analysis).toBe(false)
})
it('keeps unit-test-only diffs out of packaging', () => {
diff --git a/docs/reference/agent-status-store.md b/docs/reference/agent-status-store.md
index 2b3801008f6..343f2810ea7 100644
--- a/docs/reference/agent-status-store.md
+++ b/docs/reference/agent-status-store.md
@@ -2,8 +2,13 @@
## Status
-Proposed on 2026-09-09 as the follow-up to #19217. It lands in four steps, in
-this order, each independently shippable:
+The current boundary is PR 2A: structured sessions use the hook server's fully
+scoped canonical store; unbound PTY/relay evidence remains in an isolated legacy
+adapter. Do not remove the renderer bridge or its publication filters in this
+slice: they still carry native-chat child rows.
+
+The sections below record the original 2026-09-09 rollout. Its PR 1a and PR 1b
+have landed; its proposed PR 2/3 sequence is superseded by that boundary:
1. main-only: every producer writes into one store and `worktree ps` reads it,
split into 1a (structured sessions join the store) and 1b (the runtime's
@@ -11,9 +16,6 @@ this order, each independently shippable:
2. renderer: the sidebar becomes a subscriber and stops re-deriving rows;
3. shared: one worktree-status rollup and one freshness rule for every reader.
-The PR that carries this document is PR 1a. Sections below are grouped under
-the step that delivers them; PR 1a and PR 1b have landed.
-
## The problem this solves
Orca shows "what is this agent doing" in four places: the desktop sidebar, the
diff --git a/docs/site/content/docs/editing/monaco.mdx b/docs/site/content/docs/editing/monaco.mdx
index e5998c904e3..2baf82fdfaf 100644
--- a/docs/site/content/docs/editing/monaco.mdx
+++ b/docs/site/content/docs/editing/monaco.mdx
@@ -16,7 +16,7 @@ Files save on blur and after short idle periods. There is no "dirty" dot because
## Changes view mode
-Toggle **Changes view mode** in any editor tab to flip the file into an in-tab HEAD-vs-working-tree diff without leaving your cursor position. Same shortcuts as the [Diff viewer](/docs/review/diff-viewer) — `n`/`p` to walk hunks, `s` to stage. Toggle again to return to the regular file view.
+Toggle **Changes view mode** in any editor tab to flip the file into an in-tab HEAD-vs-working-tree diff without leaving your cursor position. Toggle again to return to the regular file view.
## Word wrap
diff --git a/docs/site/content/docs/recipes/review-ai-diff.mdx b/docs/site/content/docs/recipes/review-ai-diff.mdx
index 98aaa1db998..38ec8b52a73 100644
--- a/docs/site/content/docs/recipes/review-ai-diff.mdx
+++ b/docs/site/content/docs/recipes/review-ai-diff.mdx
@@ -7,8 +7,8 @@ Reviewing an AI diff well is the difference between shipping fast and shipping b
## Steps
1. Open the worktree's diff view.
-1. Go file-by-file with `j` / `k`. For each hunk, ask: is the change necessary? is it minimal? does it match the rest of the file?
-1. Drop comments with `c` on anything you want changed — full sentences work best.
+1. Review each changed file. For each hunk, ask: is the change necessary? is it minimal? does it match the rest of the file?
+1. Use **Annotate AI Diff** to leave comments on anything you want changed — full sentences work best.
1. When you've been through the whole diff, click **Send to agent**. Orca batches all comments into one prompt.
1. Watch the agent revise. The state dot will go yellow (waiting for more input) or green (working).
1. When it's idle, re-open the diff. Your comments are pinned; resolve the ones that are fixed and leave follow-ups on the rest.
diff --git a/docs/site/content/docs/review/commit-push.mdx b/docs/site/content/docs/review/commit-push.mdx
index 7afbcb813c6..4fbc09df4dd 100644
--- a/docs/site/content/docs/review/commit-push.mdx
+++ b/docs/site/content/docs/review/commit-push.mdx
@@ -6,7 +6,7 @@ You can commit, push, and open the review without leaving Orca. The commit panel
## Commit
-1. Stage changes by hunk or by file from the diff.
+1. Stage changed files from the Source Control panel.
1. Write a commit message in the bottom panel, or use **Generate with AI** when you want Orca to draft one from the staged changes.
1. Hit **Commit** (`Cmd-Enter` on macOS, `Ctrl-Enter` on Windows / Linux) when focus is in Source Control and the primary action is Commit.
diff --git a/docs/site/content/docs/review/diff-viewer.mdx b/docs/site/content/docs/review/diff-viewer.mdx
index 00f5f92660c..75925f078c6 100644
--- a/docs/site/content/docs/review/diff-viewer.mdx
+++ b/docs/site/content/docs/review/diff-viewer.mdx
@@ -11,7 +11,7 @@ Orca's diff viewer is designed for serious review of AI-generated code — not a
- **Image diffs** — side-by-side, swipe, and onion-skin modes for binary images.
- **HTML preview** — in **View all** / combined diffs, HTML sections that still exist in the working tree show **Open Preview to the Side** (eye) next to the always-visible open-file control. Preview opens the working-tree HTML in a side browser split. Deleted HTML and commit-only combined surfaces skip the eye.
- **Merge-conflict UI** with three-way view and inline resolution.
-- **Staging by hunk or line** — same as `git add -p` but visual.
+- **File staging** from the Source Control panel.
## Scoping
@@ -27,8 +27,4 @@ Combined diffs can show a collapsible file tree beside the hunks. Drag the tree'
## Keyboard shortcuts
-- `j` / `k` — next / previous changed file.
-- `n` / `p` — next / previous hunk.
- `F7` / `Shift+F7` — next / previous change in the active editor.
-- `s` — stage the hunk under the cursor.
-- `c` — start a comment ([Annotate AI Diff](/docs/review/annotate-ai-diff)).
diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json
index 326d896138b..57074c70d81 100644
--- a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "0431ac82cbb8c60b16f4432fd0da7cff665485d668e512b20fc1168ec63db3fe",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json
index f933f5e5ebc..2960405c67d 100644
--- a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json
+++ b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "e97c6db772a70ee1912419ac67835b6074aaf9a341d4360389a11465f08092c5",
"platform": "darwin",
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 376d17d14ba..357b72daf89 100644
--- a/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json
+++ b/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "10011c7c75e74d9c2e880c5458c9156264ae07e91956a80946ede1d4e684952a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json b/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json
index 5a3a0e261eb..184afdfc7fa 100644
--- a/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json
+++ b/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "d52d3c5858298a4a6a90bd9a8986b780004477de105fe93f6303d9c303ffea38",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json
index 2a7fd8cb954..de4e12dab52 100644
--- a/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json
+++ b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "f50f63c4e2a69793b3d322ed16089c4241ff6169d8f9549106480230fb8dd5e7",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json
index 2e7646be211..5372c3778c5 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "ebf1bbc01ad7704fe79eff0969fcc2d4af8ebfa7c2410d2ed9d3ae8c6976b434",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json
index af441c0f6af..6d38c8bef80 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "281ccf5a082f3788ae8bf19f742ea4baf35c20c78bc91d7d91873845583e1a91",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json
index c1c71716023..67b1aa4f9a3 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "941fcf202417c94ef546f5ee331983689d8b72397dac6f61dda944ca24abed9e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json
index 7145918ca41..937314a6446 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "f0ac1c996e5b1b4043e0a081978476c6c2dd8a5d517d5752857721205a588fb0",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json
index 346df8229cc..591fd8f9fee 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "dc9926f95475413627315e1f1c96740ececa697c6a0a5e3c42e18cfd4d58448a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json
index 26325d09eb4..4ddf2dadadb 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "6719aea706086a68709894546f9595264407db2df94fa56180cb3c68b08aaa69",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json
index ee4691d8355..e0f49c552a5 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "3afaf2807506f5bde2159b367f34c6b777739d6aad564796d54ac0da05b5bd02",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json
index 5e92416f32b..c61fcd8f6c5 100644
--- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json
+++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/b1.json b/mobile/rpc-foundation/goldens/b1.json
index ba10ea97012..9762c8e5ff5 100644
--- a/mobile/rpc-foundation/goldens/b1.json
+++ b/mobile/rpc-foundation/goldens/b1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca",
"scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/b2.json b/mobile/rpc-foundation/goldens/b2.json
index 15690be0114..2e163cf7b71 100644
--- a/mobile/rpc-foundation/goldens/b2.json
+++ b/mobile/rpc-foundation/goldens/b2.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/b3.json b/mobile/rpc-foundation/goldens/b3.json
index 8cd636faa25..145b0fa8021 100644
--- a/mobile/rpc-foundation/goldens/b3.json
+++ b/mobile/rpc-foundation/goldens/b3.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "130e493fcd7765e037405f59e6cc78a0cc1793b1ae092cad933ff9d5a9df8b7a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json
index bcafd502daa..2324dbf85a8 100644
--- a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json
+++ b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 077dc1ece0f..8e9fb59493c 100644
--- a/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json
+++ b/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 3f67ecead74..5a7b176dac7 100644
--- a/mobile/rpc-foundation/goldens/browser-keyboard-input.json
+++ b/mobile/rpc-foundation/goldens/browser-keyboard-input.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "eb2294c30af70ebc2bac092dc5105249ae8cf1941f750406622f7ff6dd70cc1b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json
index f3fb255e09a..3fd5a4a6ef4 100644
--- a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json
+++ b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e235a455769..80bc7ec3ee9 100644
--- a/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json
+++ b/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e7a97f34f91..f4a658ae6c7 100644
--- a/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json
+++ b/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index da4d2d0a95d..4deb7cf3955 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "d4031721b16d7c281c544e7b2eef774fd20dda1890d7ebaadcbbb1eda4d276fd",
"platform": "darwin",
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
index 18c69a92794..7f712f04a12 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-blocked-before-send.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-blocked-before-send.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "ea04d03c15d3cb94be7fe111a8a6219c4e0304095679bbae62af623f5b36c9f4",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json
index 0b3b629db1e..53b1b977821 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "e6be7d5dd6b4f5083627a3ba864b1b040d71bf72b60ad940b7d0d575964a7b80",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json
index 7afa7a329af..f3d23f0e23d 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "60273f74d8fe869723cbbd1a459d7d789a92e07a0f1e9444b42e2d7767e5bec1",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json
index 889c693ee63..b86ac2409f1 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "e7f492523421873f045726e15ec95eac26d43f7e971a33fd89ec1a9749492987",
"platform": "darwin",
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
index eac8ff687f3..cd5bd5f611c 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "195c2f15d81c70012ea88750ab3f84bfe512f7e422f7d2d09fb7919bd9cfd85a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json
index 742ff76673b..e99f7c21079 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "160101326d39705c2036c12646ff6b13d997a1cf91bdc86e5e29279ba31867e4",
"platform": "darwin",
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
index 71cbd280a63..3f8f2b14d97 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-upload-single-frame-fallback.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-single-frame-fallback.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "89ffa843d08ee27dd44b7bba507ce84661b0df73c35f7a8c273e004604710dc9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json
index e1d04a5943e..377c54e31c9 100644
--- a/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json
+++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "bf0227939c2d41d6a1ebc5b07a31196043e78f1580811bd32ec6fc5f447f5934",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json
index 540a5d5f380..d8fb61a198a 100644
--- a/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json
+++ b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "00260be9809576607ac91bfacd9fa6cc4f8a190c6b88804c977ea07d36d7162e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json
index 6dbb5b74a2a..ce834ec5693 100644
--- a/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json
+++ b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "d85a4031b701e563941afcdd7375cf78a1ee1487a0dab722f8516c2bc8d3dcee",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/components-codex-capability.json b/mobile/rpc-foundation/goldens/components-codex-capability.json
index 562910e3da3..461021da56d 100644
--- a/mobile/rpc-foundation/goldens/components-codex-capability.json
+++ b/mobile/rpc-foundation/goldens/components-codex-capability.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 619eaabdedc..9c2d9ee45a6 100644
--- a/mobile/rpc-foundation/goldens/components-setup-ask.json
+++ b/mobile/rpc-foundation/goldens/components-setup-ask.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bf634188855..c1fd65677b8 100644
--- a/mobile/rpc-foundation/goldens/components-target-local.json
+++ b/mobile/rpc-foundation/goldens/components-target-local.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a7570e3b837..1bb8e62824b 100644
--- a/mobile/rpc-foundation/goldens/components-target-ssh.json
+++ b/mobile/rpc-foundation/goldens/components-target-ssh.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6f604b37b8a..85179948930 100644
--- a/mobile/rpc-foundation/goldens/diff-review-branch-compare.json
+++ b/mobile/rpc-foundation/goldens/diff-review-branch-compare.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bef96f7774c..b5b4a6441dc 100644
--- a/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json
+++ b/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 d06160685b9..17f6daead41 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9b2d93aa602..19014e07dfb 100644
--- a/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json
+++ b/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 3cfad461b90..05c684147a1 100644
--- a/mobile/rpc-foundation/goldens/diff-review-snapshot.json
+++ b/mobile/rpc-foundation/goldens/diff-review-snapshot.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 30f605b401d..a224d17e26d 100644
--- a/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json
+++ b/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c90d7f54229..529ab03bbb3 100644
--- a/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json
+++ b/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index ad0c1e4244e..acc0e421420 100644
--- a/mobile/rpc-foundation/goldens/file-tap-open-refused.json
+++ b/mobile/rpc-foundation/goldens/file-tap-open-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "a927e85c3ae58cd3b017955fe28aeffec6a5471b51d782f116639a3aaf4af77d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json b/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json
index 7274b0584b8..9eee6cc7d48 100644
--- a/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json
+++ b/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "297ea4075333e178ca20247eb0abf6600efb44fe2b33f5142d1c1cabffb5a2d3",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json b/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json
index d9c9906171e..15b8441b365 100644
--- a/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json
+++ b/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "f1844c2608ce90250fddfc78c0b35bb1bf3647598a5ab2914eca0d8cb4403a38",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json
index df491e24be7..f5db14383f0 100644
--- a/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json
+++ b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "0f76b96408081737b3d630ee837dbb80bcce6670b6acc4f1f7c033a69bd40533",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json
index 7623d7fbe01..d28e8031a60 100644
--- a/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json
+++ b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "1ada35966dfb65afbb9b3dc8139961b8f042e2d53241b9608a080d0e655a5987",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json
index 7be60558a5b..47bd29253d5 100644
--- a/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json
+++ b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "ec02d3f76085619fad35231e12654ec6e926e423c6799fd0df53708743000612",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/files-explorer-readdir.json b/mobile/rpc-foundation/goldens/files-explorer-readdir.json
index 10cd4701af9..ee89991a073 100644
--- a/mobile/rpc-foundation/goldens/files-explorer-readdir.json
+++ b/mobile/rpc-foundation/goldens/files-explorer-readdir.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "0b87a230cf1c4219e415c840a088502c8bda7cd2fb525bde1a83a5903d6fd96b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/files-ownership-local.json b/mobile/rpc-foundation/goldens/files-ownership-local.json
index 66414330bb8..a4af6c96ec1 100644
--- a/mobile/rpc-foundation/goldens/files-ownership-local.json
+++ b/mobile/rpc-foundation/goldens/files-ownership-local.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a0d5a2eb280..b43c556c81d 100644
--- a/mobile/rpc-foundation/goldens/files-ownership-ssh.json
+++ b/mobile/rpc-foundation/goldens/files-ownership-ssh.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ca17ac46f55..be2f16799e0 100644
--- a/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json
+++ b/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4df06735ddb..861a977d94f 100644
--- a/mobile/rpc-foundation/goldens/files-preview-artifact-image.json
+++ b/mobile/rpc-foundation/goldens/files-preview-artifact-image.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f59e424e048..ff2e9a59240 100644
--- a/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json
+++ b/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "055f3b45442c1736f10ee98c493e2ece1885fdb68d925ee627e2ba20853537e0",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json
index 83f15493103..1ea43971fb9 100644
--- a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json
+++ b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 fb95b4e2668..7078d4fe368 100644
--- a/mobile/rpc-foundation/goldens/files-preview-worktree.json
+++ b/mobile/rpc-foundation/goldens/files-preview-worktree.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ff3f64f6409..d388094c768 100644
--- a/mobile/rpc-foundation/goldens/files-save-blind.json
+++ b/mobile/rpc-foundation/goldens/files-save-blind.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 eb3e439e468..804ec52d4a8 100644
--- a/mobile/rpc-foundation/goldens/files-save-verified.json
+++ b/mobile/rpc-foundation/goldens/files-save-verified.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8ef9e8f23ef..4796e376e9b 100644
--- a/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json
+++ b/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "b636221f719dae19a3af6772b687b0bcb300c9910645d23e98c309578ec1c5c5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/home-host-accounts.json b/mobile/rpc-foundation/goldens/home-host-accounts.json
index 25ebd7840ab..891cc037827 100644
--- a/mobile/rpc-foundation/goldens/home-host-accounts.json
+++ b/mobile/rpc-foundation/goldens/home-host-accounts.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a",
"scenarioSha256": "366426641e25542fcc6fcd351ece6a1ee897c8b3974c08eb7557eadfa4d3b06f",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/home-host-stats.json b/mobile/rpc-foundation/goldens/home-host-stats.json
index 4b784c79548..8018778824f 100644
--- a/mobile/rpc-foundation/goldens/home-host-stats.json
+++ b/mobile/rpc-foundation/goldens/home-host-stats.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "bd5f4e5f24a29d96c4c98950691c6571918332f71ebb1f29ee97a9abc857ac29",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/host-view-settings-sync.json b/mobile/rpc-foundation/goldens/host-view-settings-sync.json
index 433d5a6acff..34f517eacb0 100644
--- a/mobile/rpc-foundation/goldens/host-view-settings-sync.json
+++ b/mobile/rpc-foundation/goldens/host-view-settings-sync.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "1ee6031227fa3efd5b36841afa60f7b2264eacdd9c6126e5851d5acb39ffaadd",
"platform": "darwin",
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 1a40ef839e9..69917559af3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "720add498c79425ca8efc9764fd5d8307fe33bc891842604cfc899f770b79811",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json
index 249857e02be..e387a60cee5 100644
--- a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json
+++ b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "5dd5e7eabaabba1e471b13958f59891c3b28f553087c96315598c83a14ded7e7",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json b/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json
index c3b29f06c24..2ae704d8dd2 100644
--- a/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json
+++ b/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "6ac11f1ab42fea3b718d9714e512a4e8a344aea66ae170fbe9ef2b5ae82dbe0a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json
index 453d527bb60..381ab236251 100644
--- a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json
+++ b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 429688c615e..92ac726083a 100644
--- a/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 56104881fe3..bf3a9513d13 100644
--- a/mobile/rpc-foundation/goldens/inventory-lifecycle.json
+++ b/mobile/rpc-foundation/goldens/inventory-lifecycle.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9077f526229..c1f2823be02 100644
--- a/mobile/rpc-foundation/goldens/inventory-repeat-query.json
+++ b/mobile/rpc-foundation/goldens/inventory-repeat-query.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 fad1cbd80ed..5faf5b2cf2e 100644
--- a/mobile/rpc-foundation/goldens/lifecycle-b3.json
+++ b/mobile/rpc-foundation/goldens/lifecycle-b3.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "8be12d116865d27e8dfd37921d2c723d63da101ec1197b1f5b2d9510838e1943",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json
index 6e5565492ea..e7874c88467 100644
--- a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json
+++ b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c8a77bd38d2..e7905ab0174 100644
--- a/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8f31197cae4..ef0c3b4286a 100644
--- a/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "3a8eab831602443d320ca0aa0f35dc269d8d511e76bdae8fd025c433561d068d",
"platform": "darwin",
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 07f792808b1..6a1fa60b985 100644
--- a/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "136fb1d8d5925ad12ba22f4dd6c72573a9ad03b6a6ec8308668f0d9cd71aa36d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/linear-select-workspace.json b/mobile/rpc-foundation/goldens/linear-select-workspace.json
index 53cfe7cf4fe..ad0aa4626bb 100644
--- a/mobile/rpc-foundation/goldens/linear-select-workspace.json
+++ b/mobile/rpc-foundation/goldens/linear-select-workspace.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f",
"scenarioSha256": "b6eb40d9a91c89179483afec93fbc121b99ef679d3b2433575b26694d0c577d5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/live-worktree-name-stream.json b/mobile/rpc-foundation/goldens/live-worktree-name-stream.json
index 76fb3256322..e554eeb4ebe 100644
--- a/mobile/rpc-foundation/goldens/live-worktree-name-stream.json
+++ b/mobile/rpc-foundation/goldens/live-worktree-name-stream.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "056abf42b34537025fed30a4401bd465c93bc21558babb826f21b5c803b487eb",
"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
index a8c6a7e1d22..132eca4b8df 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "211e3780edc0ff5fa0529c0de0e8bc2fd746a19c8a6b4e49900f6c4e56d53f7c",
"platform": "darwin",
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 9195bdf4f80..6b5e0823d57 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "efb8d1cd2a2ff0ade4cdc48a1aacec565e33b405bbe95c100b86534cdde49740",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json
index 27d10f033be..ed60962db84 100644
--- a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json
+++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "30e00c0d94413aab61b164fb9a658e526448addc4c42fd8892b1c28335d30beb",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json
index 8b93ecd28d6..e20a56dc2f4 100644
--- a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json
+++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "b146be741484f2a6dca25e97f52b9ed10f8a2b28bd00e6b56acffbcd82136b2f",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json
index 26f939f28ce..2ef1f3bb057 100644
--- a/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400",
"scenarioSha256": "5365449c24d789c6c01604b520b795502d0bec352032686efecd121fc4497f96",
"platform": "darwin",
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 761a8727752..503a13222c9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080",
"scenarioSha256": "a5698ca720dad08561a509c9c18f7586611fc68c58bd86791f4fcefc7915ab1f",
"platform": "darwin",
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
index bce7b0d6ca2..18c5d90b86b 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "f721ab4438c4183927ce5ebc5fd6f1f18414701a5fa3b2807c359785829962a3",
"platform": "darwin",
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
index b321931a613..fbdfe949600 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "aa812132ede83e4aced73a644e996df82a38bfc70ead70a5db2e9af8a8b1bfff",
"platform": "darwin",
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
index 2b992405563..0301ddf3e1d 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb",
"scenarioSha256": "c3b400967b0b1c7bd3f82a278f4b10855ade72d384922ec4d34795c7bb20084d",
"platform": "darwin",
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 8a72be96d22..ebc30c2a092 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 80556e3b814..21c017f65fb 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "fc3411f3f4cb58b6a1338ea943f59446fda7819931814e9ab002e35e2de42462",
"platform": "darwin",
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 4159ab764fc..012f94d3f65 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658",
"scenarioSha256": "c1df871e84d4399e9a447caaff244241933c0dfc7c3d5e114d022e54b0ed7ed4",
"platform": "darwin",
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 96b833f3feb..03d07ca7053 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f5c32a17b07..defbbb6d38d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4b90ce6892b..7df09816530 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ea4c98e955a..a88d90a5d65 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0d78a824372..d32aa6afc24 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0ff8b9bac9d..d16d64b3641 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 292836ca503..ed3653c3f60 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "fc690a2ac59a6fbcdc08f9b91e769cd793f5a48d9034a50c2d587ce0d0fca3d9",
"platform": "darwin",
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
index 62ab5bb249f..5a2bdc2ba02 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "fa69748b6d0e29abc37757b48bcb22dac07af1686554200ceaf18b4e3d62e4ac",
"platform": "darwin",
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
index bd897e4be8c..62d078e9cf3 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "a4bea606723da4d4a86db6e04c46266801149a852a8861b15e637d5c0855c679",
"platform": "darwin",
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 71f48dfb04f..45e1fcf91f4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index a9039d1eeff..9644633ae87 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e",
"scenarioSha256": "cc6de73be00be072f9a3b7fd63459fd1a529c45d0916a67d5fe6d90dbee61e91",
"platform": "darwin",
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 a51a65b8ca4..67134b88e97 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 cd954415448..caf6ce5964b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 51e9d009a6c..238a8d43256 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e065550aebe..3335aa8d099 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 9e99666217b..0cf070e97c4 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa",
"scenarioSha256": "95f7dbb11bca7203d29bd13230d4a286f49ff20596535163094e1bff73e7f3cb",
"platform": "darwin",
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 76aa62d959e..16d7cb719d9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 478f4ce7785..f78fd1b026e 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "38b5590173c1f6791d1b35c0f036e2f844ed4b0e39c880e8e376c5f314adaade",
"platform": "darwin",
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
index 388c58477ed..487adf6577c 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07",
"scenarioSha256": "8c1fa604104c5551b8418af225c9420b1292f0c55b392f847985947c66749959",
"platform": "darwin",
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 94998b1d9b7..80070c5cab7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a20cb69cf68..5665f930a65 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 585c3a04739..67fc5f95fd8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 584b91171e6..09ce9040154 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 acc92a4c3f2..a238bb5918d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "c4a09003352ba4e97a17ec4109cc125298cf7123b317265cc5eca06e8dcc0615",
"platform": "darwin",
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 6fd223b127c..a49f6c57470 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309",
"scenarioSha256": "ecdeff2713e454925158dde09782713d76f39455729bb25688a6ffcfff154f30",
"platform": "darwin",
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 a55e6ab88b1..99f7b57a5c7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e84be78c0ea..ec8b4787e6a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ddc821cf2dd..241c0482e9e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c9c58f0ee3a..9994c1f7bd2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f2de9ebe86a..41b8a5c6d77 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 9b173e3ee73..b2f40c033da 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "73dbbb8b96662af57240194be4af5726697d402b624a807d003ab56fea04dbd7",
"platform": "darwin",
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
index fbc2246388c..1c2c55c0d31 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b",
"scenarioSha256": "ba8728e890e0e9c10ea163bd16f4f99fbc9727cd2f9c4ed69c56436d8bc29f89",
"platform": "darwin",
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 208f70fe86f..c7428386ee3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1a5c427de53..19ccc099efc 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 96a2f500584..30fdc53c76d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 384c3d25184..8f77f01910d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ab3be703975..1f2064397c0 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a6541f88294..dbe03d02c4b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "5009c22df7e74a850bcea41fc110ea7d7eb4bdada623837279f32eaa5149a9b8",
"platform": "darwin",
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 b9a18ca60cd..26db7f186f3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 658a0fa4fcc..22f93aa5bfc 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 2989bf6ef12..b61e1387d24 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1609993ca39..cf206ef665e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0f5a6ee302d..0609d1a90a8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 af18b89509f..22b8717fa27 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4026f70e77d..b47ffc25632 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 711fb0f4356..f36af990a72 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4675a7765c2..2d16fe85652 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 15df994b9c4..502c90baab9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 2521f2c66e0..6d5da052ecd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 701a31e1a38..c139f3e2877 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 efbc0534666..a124ab763ed 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4f479638fed..51bb4d4bfde 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8e572261143..b56649d29bb 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 75007945cf0..0b84f378c63 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a6dea343bc8..43729d664e8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 fd1da424274..274ac73f5c8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ae94ce1cc4e..02fded5e1e1 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 b1412bcfec4..e04f31e1cae 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d",
"scenarioSha256": "fe91d5518501a078dff3010e74c4b9d70122f88a629e384336cd1b6a84de36a8",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json b/mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json
index c3f9053f93e..6533fce4341 100644
--- a/mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a",
"scenarioSha256": "047e4c8fb2c4b374406658ec3954ac00fda96928bdd999a33ab9867284ffb4a4",
"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 9e5534e1fa1..4682235ac53 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "5518e08c1b20f0ddd4cb6bc81ff9af032b1a38daf24f3d3497bac5df8b2d0ec5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json
index 3840c03a2bd..401df9974a0 100644
--- a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "0604294e541a4b2c73e0501cfc393c84384342ffcae286211a657ca5bc5892b7",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json
index 1b59bc3bcc5..749fe66be29 100644
--- a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json
+++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "6d03d17a5711db33473611858b225e2ac42fe33d2a982fbb0defdbd1dce037d6",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json
index 29715a89a6d..1901b9ad222 100644
--- a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json
+++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "f36f11b3d69397bd98651fdad4614a4115098e23667e4dfc397c1d9ff2dc3186",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json
index ce32c9e01a0..3b70ea9aaf9 100644
--- a/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "a70fa323de86b706f05818f321095349ed55b265804ec0ebb54419314a3ca612",
"platform": "darwin",
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 6363c2338f4..a8320771f06 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "a9a3191e2e8c36870ce2769a7bb972813f435267fdc6ed9e42632a57a227bbd6",
"platform": "darwin",
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 4557dd17f66..9a245a19d7f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b",
"scenarioSha256": "30cbeff90a845ab5dd576e302156e859338357b608e87e9fadeddf18ae93d9ca",
"platform": "darwin",
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 ddf211503aa..87ac752e06c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "7e842584620018d5ec5560711d63a472302e8da80cfe65dfcd2952aebb509af2",
"platform": "darwin",
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 aadf359b355..548f1ff45e3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "c47656a4ca21762e4b5a247ddf9a96efb746bec81e942ffa308a774bab1449e2",
"platform": "darwin",
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 c6aaa82cf5a..74251ad0bcc 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639",
"scenarioSha256": "054f1b1380fc6cfd4b0f4a85d6f143822a12a0a732d550dd85eef64a6556b3ba",
"platform": "darwin",
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 d00d84bed21..712d8240e8c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 052949d8947..711bbdedbe5 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 664c7ea0121..66fa54f35c9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 2c64b2fa368..28dd0398916 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "ff9d1bfd6337607f3d3e8162692b589ecea4a32ae01b5ebb3c602f8f0a55642c",
"platform": "darwin",
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 66420cc8988..46cd9cb8074 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "efeb9b248aeb98fac71c043d50afe0036cf804d3c11edfccd4e050fe8f3d8f9b",
"platform": "darwin",
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 ec6a194e7de..36474b37f07 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "7b0d9ddcb8df83fc4e465aa6b0dcf05aa0d8f266cd4bb8651969cb8321bcf549",
"platform": "darwin",
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 0214089c08c..6aa629c1d36 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "72c1f08739db1c0dfcd48adffaca582a3596116c1c377f95f7dab8b08b7e6cdc",
"platform": "darwin",
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 90d2b757f65..474ebc39df5 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "1f002f900c1a3c92e8f7c72261579ee5015ec1529c003a1b32bcf3eaf98b672d",
"platform": "darwin",
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 0bab2c91a6b..96cd5e25ecd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "3a6487a07457e0e5aa6fc3fccfa43687acfb06d94334e621081728de937e4e8d",
"platform": "darwin",
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 99783ab96e3..220102cef84 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "7355c45a707fa8a31f0999c4805a5b1dace4c65b727e711231f784b2f92c05ff",
"platform": "darwin",
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 ea9adec43ac..cbe071bf71d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "45cda6757b76399d282d4b07992dab21bbb8236faadedba5e92eab8818e886bf",
"platform": "darwin",
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 b05fb442173..e121d66672e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "0ca08d5e70e1780a6ee5c919491dcddb062a22623f803e9960a329825f274cbe",
"platform": "darwin",
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 b751e0c144d..9f04ff2b422 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "658eb7bbf63b3a4b38eca0b1733e523962b6b6943644d65aab6f5c7e62534d6a",
"platform": "darwin",
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 3bbb4176c79..cb7e6d525aa 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "75ba135731290bf734a5eef0b65f9ad8b7cac453c4e2006faac88a5da9dbe3a3",
"platform": "darwin",
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 ed0436d69b3..d871f002d38 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "beb1161b98ffde8c5f1128e843766a1da3182d195f1f0a9012e12e5318ae01bc",
"platform": "darwin",
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 7de59a77ecc..955a4844b81 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8d156c22b6a..a1a3ce848bd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4c83a60da43..de1cdbcd1e2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 89d5369a0f3..7a02545e263 100644
--- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json
+++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f756c9566b4..986d1c87c79 100644
--- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json
+++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 37d08acff60..a5d9af66153 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "8e00afc85e5b82d75bedecea0c748a3c8658cfc8545650e755c03f51fdc932d6",
"platform": "darwin",
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 3873bd33021..6d0973038a7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "40289acce4a3542773f74681d255d67cfddadf6c42317928d6728f26a76f6cfb",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json b/mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json
index a8848410173..e1a00e99e09 100644
--- a/mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f",
"scenarioSha256": "c7de1f6fc0895d4ddf1b87a83859da46c583f098e058f14c8f85d48120c80c40",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json
index 12758a3a4fc..358927b8d8c 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "f3fa2738875e15b640f21e56d3a0628333cd5b271242314b9c328822eec01d34",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json
index 4354dac9e19..0874819ee2d 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "24b9ef7c06386b8af8303cfb196d2f652e46759b40aadb7b6af5144c964ea179",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json
index 6c39d463582..ea343e0935f 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "e13633e6b76dce4aec343c391359adfd39430e91af1b183140fe4423316c81e1",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json
index 8b8f09030cf..7a271fd2d8e 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "0bbbff1a914ba146777515d6d971144cc62f29f2d484a264513a1ce0f48be96a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json
index b137e72d4b0..56246753a70 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "2ed321bfdc419635734c37b0a1cc4f85d6d92766846e25a37bd547dfa3af8f72",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json
index 23a925bcab9..e21079ffc6f 100644
--- a/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json
+++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be",
"scenarioSha256": "ab7efe1dc6ef2ddfffa69c88bcc936f43393968a2281bc0ebfc864be650e7af1",
"platform": "darwin",
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
index d404b5a4bca..d1fe1af271d 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "88da63e9f56e02dbe8404471e23251f9b13fd00b1ab10c19aa15b3a73128a53e",
"platform": "darwin",
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
index 008663cd1dd..f69c95f757e 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "89023bb3ad07d59dba75f227addac9d6a138e52b11e8ed6a64515f2bb1989367",
"platform": "darwin",
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
index 1bede4a3a26..d500b368feb 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "0478b692709ef0fe3cd75bf0d47fc27fcbb50ebc779e231537ba36638a0125f8",
"platform": "darwin",
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
index 73ee6ed5d58..cf8fe7830c6 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "1305f50c6e838d89d0a9e65d9011d2a532a2f75f7b3aea73f9e33330214f5724",
"platform": "darwin",
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
index 6c11e6ed4b0..2adfbd37322 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "860d3a80815ec68dc3fe2891a69888b80ec60fa205940e31f14643fb1097ead5",
"platform": "darwin",
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
index bd140db83b0..87583182d2c 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "c4193d972250dbe72907dcd32b8300b22986edfa5eeb651268c3838835177c64",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.getmissedsince-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.getmissedsince-1.json
new file mode 100644
index 00000000000..6a6cb5a47df
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.getmissedsince-1.json
@@ -0,0 +1,1251 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "e13d3072f9a0ff4458ec4231013d29f7131144b52089914cd08914652a2e136b",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "065e1e640278": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "268f8de77ee5": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "44703b46d7d2": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "4b3d7f46bc5e": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "56d53341cbeb": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "75c17556f7cf": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ }
+ },
+ "77c8cf752494": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "7a2a12ad5565": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 1
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "a3ac3c48ff31": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true
+ }
+ }
+ },
+ "afe1d0ac708d": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "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-2",
+ "ok": false
+ }
+ }
+ },
+ "bc35c48c2506": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "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
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "db7190899748": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "de9bc9ed43e5": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 1
+ },
+ "e2ea442ef86a": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "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
+ }
+ }
+ }
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "efcb1e7d7b74": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-notifications.desktop-stream-notifications.getmissedsince-1",
+ "checkpoints": [
+ {
+ "id": "notifications-desktop-stream.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:ready",
+ "observation": {
+ "sender": ["4b3d7f46bc5e"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:caught-up",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:caught-up",
+ "observation": {
+ "sender": ["a3ac3c48ff31"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:dismissed",
+ "observation": {
+ "sender": ["a3ac3c48ff31"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:unsubscribing",
+ "observation": {
+ "sender": ["a3ac3c48ff31", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:stopped",
+ "observation": {
+ "sender": ["a3ac3c48ff31", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:caught-up",
+ "observation": {
+ "sender": ["268f8de77ee5"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:dismissed",
+ "observation": {
+ "sender": ["268f8de77ee5"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:unsubscribing",
+ "observation": {
+ "sender": ["268f8de77ee5", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:stopped",
+ "observation": {
+ "sender": ["268f8de77ee5", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:caught-up",
+ "observation": {
+ "sender": ["efcb1e7d7b74"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:dismissed",
+ "observation": {
+ "sender": ["efcb1e7d7b74"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:unsubscribing",
+ "observation": {
+ "sender": ["efcb1e7d7b74", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:stopped",
+ "observation": {
+ "sender": ["efcb1e7d7b74", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:caught-up",
+ "observation": {
+ "sender": ["44703b46d7d2"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:dismissed",
+ "observation": {
+ "sender": ["44703b46d7d2"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:unsubscribing",
+ "observation": {
+ "sender": ["44703b46d7d2", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:stopped",
+ "observation": {
+ "sender": ["44703b46d7d2", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:caught-up",
+ "observation": {
+ "sender": ["e2ea442ef86a"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:dismissed",
+ "observation": {
+ "sender": ["e2ea442ef86a"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:unsubscribing",
+ "observation": {
+ "sender": ["e2ea442ef86a", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:stopped",
+ "observation": {
+ "sender": ["e2ea442ef86a", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:caught-up",
+ "observation": {
+ "sender": ["db7190899748"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:dismissed",
+ "observation": {
+ "sender": ["db7190899748"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:unsubscribing",
+ "observation": {
+ "sender": ["db7190899748", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:stopped",
+ "observation": {
+ "sender": ["db7190899748", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:caught-up",
+ "observation": {
+ "sender": ["065e1e640278"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:dismissed",
+ "observation": {
+ "sender": ["065e1e640278"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:unsubscribing",
+ "observation": {
+ "sender": ["065e1e640278", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:stopped",
+ "observation": {
+ "sender": ["065e1e640278", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:caught-up",
+ "observation": {
+ "sender": ["afe1d0ac708d"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:dismissed",
+ "observation": {
+ "sender": ["afe1d0ac708d"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:unsubscribing",
+ "observation": {
+ "sender": ["afe1d0ac708d", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:stopped",
+ "observation": {
+ "sender": ["afe1d0ac708d", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection:caught-up",
+ "observation": {
+ "sender": ["77c8cf752494"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection:dismissed",
+ "observation": {
+ "sender": ["77c8cf752494"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection:unsubscribing",
+ "observation": {
+ "sender": ["77c8cf752494", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection:stopped",
+ "observation": {
+ "sender": ["77c8cf752494", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection-no-message:caught-up",
+ "observation": {
+ "sender": ["bc35c48c2506"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection-no-message:dismissed",
+ "observation": {
+ "sender": ["bc35c48c2506"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection-no-message:unsubscribing",
+ "observation": {
+ "sender": ["bc35c48c2506", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection-no-message:stopped",
+ "observation": {
+ "sender": ["bc35c48c2506", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-1.json
new file mode 100644
index 00000000000..3f9318efc13
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-1.json
@@ -0,0 +1,836 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "aca5a21c0928ca5e84aac346f543a6840691c92b124c845cd01e3f2de553ea3d",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "124b5d42e937": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 0
+ },
+ "34b18fa41590": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 0
+ },
+ "4b3d7f46bc5e": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "56d53341cbeb": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "75c17556f7cf": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ }
+ },
+ "7a2a12ad5565": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 1
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "ae651d5572a2": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of null (reading 'type')"
+ },
+ "frame": "notifications.subscribe#1"
+ },
+ "sent": 0
+ },
+ "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
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "de9bc9ed43e5": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 1
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "fb584aec7c1e": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of undefined (reading 'type')"
+ },
+ "frame": "notifications.subscribe#1"
+ },
+ "sent": 0
+ }
+ },
+ "recording": {
+ "scenario": "matrix-notifications.desktop-stream-notifications.subscribe-1-1",
+ "checkpoints": [
+ {
+ "id": "notifications-desktop-stream.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:ready",
+ "observation": {
+ "sender": ["4b3d7f46bc5e"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:caught-up",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["fb584aec7c1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["fb584aec7c1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["fb584aec7c1e", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["fb584aec7c1e", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["fb584aec7c1e", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["ae651d5572a2"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["ae651d5572a2"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["ae651d5572a2", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["ae651d5572a2", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["ae651d5572a2", "34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["34b18fa41590", "124b5d42e937"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:ready",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:caught-up",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:dismissed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:unsubscribing",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:stopped",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-2.json b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-2.json
new file mode 100644
index 00000000000..c0854d4e0ce
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-2.json
@@ -0,0 +1,629 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "53c8aa2ecfc045a50180dc707e353e22eef8511c0815ebacd3bda8cfb69d65c0",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "23f5db721ed2": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of undefined (reading 'type')"
+ },
+ "frame": "notifications.subscribe#1"
+ },
+ "sent": 1
+ },
+ "27c1d53f9b0a": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of null (reading 'type')"
+ },
+ "frame": "notifications.subscribe#1"
+ },
+ "sent": 1
+ },
+ "4b3d7f46bc5e": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "56d53341cbeb": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "75c17556f7cf": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ }
+ },
+ "7a2a12ad5565": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 1
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "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
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "de9bc9ed43e5": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 1
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-notifications.desktop-stream-notifications.subscribe-1-2",
+ "checkpoints": [
+ {
+ "id": "notifications-desktop-stream.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:ready",
+ "observation": {
+ "sender": ["4b3d7f46bc5e"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:caught-up",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "23f5db721ed2"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "23f5db721ed2"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "23f5db721ed2"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "27c1d53f9b0a"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "27c1d53f9b0a"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "27c1d53f9b0a"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.unsubscribe-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.unsubscribe-1.json
new file mode 100644
index 00000000000..6364a664b86
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.unsubscribe-1.json
@@ -0,0 +1,761 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "afd3985ecdc07a1880aaee81739432633a1e87ec2de2c02166f43a6c78cb493b",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0594b6cd55e2": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ },
+ "05cd72b8549c": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": {
+ "message": "inner refused"
+ },
+ "ok": false
+ }
+ }
+ }
+ },
+ "1022b3a96921": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "238f0e461e03": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "3e6a085d3fc5": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "method_not_found",
+ "message": "Unknown method"
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ },
+ "4b3d7f46bc5e": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "4c8f933614d9": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "562e1740f269": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "56d53341cbeb": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "75c17556f7cf": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ }
+ },
+ "7a2a12ad5565": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 1
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "ad14d9d9c706": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ },
+ "aeebdb6c3fd0": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true
+ }
+ }
+ },
+ "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
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "de9bc9ed43e5": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 1
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "fa5dbfc9130a": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-notifications.desktop-stream-notifications.unsubscribe-1",
+ "checkpoints": [
+ {
+ "id": "notifications-desktop-stream.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:ready",
+ "observation": {
+ "sender": ["4b3d7f46bc5e"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:caught-up",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.prelude:unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.normal:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-absent:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "aeebdb6c3fd0"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.result-null:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "4c8f933614d9"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-ok-missing:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "fa5dbfc9130a"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-string-error:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "1022b3a96921"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.inner-false-object-error:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "05cd72b8549c"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "ad14d9d9c706"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.outer-refused-no-message:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "0594b6cd55e2"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.method-not-found:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "3e6a085d3fc5"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "238f0e461e03"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "notifications-desktop-stream.transport-rejection-no-message:stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "562e1740f269"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json
index dd616b38eac..cf3ef7a7882 100644
--- a/mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9",
"scenarioSha256": "b7a862c0de7dd4efcdf3f4db7c5aeda6b765ab58498f40f3b21232264758b16f",
"platform": "darwin",
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
index 7df983f7f2f..a4a056832e8 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524",
"scenarioSha256": "9ab21cda2ac956c70ddd23fe589778bbb46333314508cf92770d668ba59d5a90",
"platform": "darwin",
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 31fa2a695f4..4c3fd87b279 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470",
"scenarioSha256": "c77a518d35203370669fea20f7669d7695a2ec851f22b220a8be417c546efeab",
"platform": "darwin",
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 2ed071690c5..e0525af230a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470",
"scenarioSha256": "bb772b4b000644f18b48dcf78b05863b30906bcf588824d94eff086014fa69e8",
"platform": "darwin",
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 ce27dca9705..7e20f3d0e7e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "a28912c9abb97a227904723ff0de8162de31fce66c056da1813e0c18f6e01ccf",
"platform": "darwin",
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 41e3e9500eb..c0cf0a5f1f2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "ccd2ef7c617d13bdf5987f5f89fed6917206205268633b9ef061b92c3580d672",
"platform": "darwin",
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 3b9ff6bfcd1..3faa3a2a6da 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "399fa8b85d9c2fc341ea2284a54aed278fd1a5b19a84cc9284c29d5a583bc519",
"platform": "darwin",
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 f8b13cef0c8..e94f9b874c9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "14931cc23cd0e6d850f596c880014c606834898acbeee4abff3dc83a94b0c6c0",
"platform": "darwin",
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 f09568f7314..64515fce6ec 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "926f0d8c37a33d465bf3a04f056600cfc9f1669b1eca7e968aa1a1f797a74c61",
"platform": "darwin",
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 40c982ecb95..c5d3f2e87f0 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "042d0f9ef57e2a18bf661b79f2f8f92a12125dbc0fc65dd8605f8cd6f7059d10",
"platform": "darwin",
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 704ef9b6bc7..980242152de 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "530aa1f2ddc6fce10d485c8a160ae3e695250b2e80e1e7fc3e8dacb9f5117347",
"platform": "darwin",
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 cb8a47b2f75..34872233057 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "18b1855f354c23cd5bb7af0db698f0a23d28208c3c6b7347f667bf6cd3ed612f",
"platform": "darwin",
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 2fe74eb5bfc..a70a22b019e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "03355bc2696d02fed125d9f0e24c6c26c8df2f3709c1c5f4412aaf9317cd41d4",
"platform": "darwin",
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 eb466cb199e..3ad8761725e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "d0c4dd34645308f30c0999ea74c16b53f20e9183832fdf016c3dc21434744b05",
"platform": "darwin",
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 be65641b222..9661c82ab72 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "0fe163f405373adbb1913dddd79d6d596bf88d69fc27c824ba5a2cd4c1406446",
"platform": "darwin",
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 26fc376928a..a7ea0a8101e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "5aaa104a652d4f10cd48ab742112cf59fca22f52bbf85ee3716505a9642fbe37",
"platform": "darwin",
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
index c380bcaf9d7..495f3ff08d5 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "06bf92360e6985770c08a9e53be0f55b6e8ff120d4e6411dacc22e88d08cef32",
"platform": "darwin",
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
index 2ff8b92ed36..e4e82814089 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "17f87233352ff8e452f061f4558d58b44643efe49313162d4aad140343a1ead9",
"platform": "darwin",
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
index fd3d44bb18f..5d942065db3 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "5100bd674509d1d83b1e2594eee036af21ea14b12226185b44070555d1d43060",
"platform": "darwin",
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
index fe0f6ef5789..d3f146db7ba 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "b9ca49e401df8710924f200f92a071bac2e120ed43df7be2cfb8a325ab1cd9cb",
"platform": "darwin",
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
index 092b566cb6f..31ac85db12e 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "e54684bad13aa8b8b4794e06351c709053b1c4c6d87776ecdbb1dd1b4406a694",
"platform": "darwin",
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
index 97320db54f2..9a912da3e24 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "c583058382c949e977b7a1287895ed9ccb8cb408b684aef186b629976ff1da4d",
"platform": "darwin",
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 0d6c3c2dd7e..ab2aabf9328 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4981f5469b0..de4a0057b0a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 848d0866c8f..00f3a205858 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 b5fd83721dc..e53a6cdb516 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8566be0b00f..416a5928322 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index e1ea8c85ac6..f414abdac00 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "389c6118f3137b78e88af6b901554b0331c652063a00d8ba3119e0883ce82f25",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.readsession-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.readsession-1.json
new file mode 100644
index 00000000000..3376a2910e6
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.readsession-1.json
@@ -0,0 +1,1413 @@
+{
+ "operation": "session.native-chat-page",
+ "family": "session.native-chat-page",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518",
+ "scenarioSha256": "8a6f6d37fd7dbc9e0da081565f24b270949306c47a874568874ec8ce2579076b",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0089ce68936d": {
+ "name": "nativeChat.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 0
+ },
+ "0943a7b4b434": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "0a15a34ae230": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ },
+ "197fa03857dd": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "295fd9669abd": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "37bc66a9d48a": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "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
+ }
+ }
+ },
+ "3dd3e332ee1a": {
+ "name": "unhandled-rejection",
+ "value": {
+ "category": "Error",
+ "isRpcDeliveryUnknown": true,
+ "message": "Connection closed"
+ },
+ "sent": 1
+ },
+ "45c4057b2335": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true
+ }
+ }
+ },
+ "69073f8706af": {
+ "name": "nativeChat.readSession#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.readSession\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":60,\"beforeOffset\":1200,\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "6d6767cd9e4e": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "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
+ }
+ }
+ }
+ },
+ "787e19388f6a": {
+ "name": "unhandled-rejection",
+ "value": {
+ "category": "Error",
+ "isRpcDeliveryUnknown": true,
+ "message": ""
+ },
+ "sent": 1
+ },
+ "7b237e9824c8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "7e8788afab15": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": true,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "810ad17d04f8": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "8f91342d7840": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "9b20b74db998": {
+ "name": "nativeChat.unsubscribe#2",
+ "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "9c69a4906cca": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "a46f48c3c05d": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "a5ef5c2480d8": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "a67af9702696": {
+ "name": "unhandled-rejection",
+ "value": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot use 'in' operator to search for 'error' in null"
+ },
+ "sent": 1
+ },
+ "b40053d92c09": {
+ "name": "unhandled-rejection",
+ "value": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot use 'in' operator to search for 'error' in undefined"
+ },
+ "sent": 1
+ },
+ "b80f8c3fa354": {
+ "name": "unhandled-rejection",
+ "value": {
+ "category": "Error",
+ "isRpcDeliveryUnknown": true,
+ "message": "transport failure"
+ },
+ "sent": 1
+ },
+ "ba0534620d1c": {
+ "name": "nativeChat.subscribe#2",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "e11d93df53dc": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "e8f291420c0c": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 0,
+ "settledAt": 0,
+ "error": {
+ "category": "Error",
+ "message": "Connection closed",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "ed9e9d122ef3": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "ee46c03cf1b8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "loading",
+ "transcriptLoading": true
+ },
+ "f57700c42204": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "f5f160af6cda": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "fea0c71c9357": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "beforeOffset": 0,
+ "hasMore": false,
+ "messages": [
+ {
+ "blocks": [
+ {
+ "text": "first",
+ "type": "text"
+ }
+ ],
+ "id": "m-1",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 1000
+ },
+ {
+ "blocks": [
+ {
+ "text": "second",
+ "type": "text"
+ }
+ ],
+ "id": "m-2",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 2000
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.native-chat-page-nativechat.readsession-1",
+ "checkpoints": [
+ {
+ "id": "native-chat-page-earlier.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:paging",
+ "observation": {
+ "sender": ["f5f160af6cda"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7e8788afab15",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:cleanup",
+ "observation": {
+ "sender": ["e8f291420c0c"],
+ "payloads": ["0089ce68936d", "69073f8706af", "9c69a4906cca"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7e8788afab15",
+ "effects": ["3dd3e332ee1a"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:paged",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:re-subscribed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:paged",
+ "observation": {
+ "sender": ["45c4057b2335"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["b40053d92c09"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:re-subscribed",
+ "observation": {
+ "sender": ["45c4057b2335"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["b40053d92c09"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:replayed",
+ "observation": {
+ "sender": ["45c4057b2335"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["b40053d92c09"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:unmounted",
+ "observation": {
+ "sender": ["45c4057b2335"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["b40053d92c09"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:paged",
+ "observation": {
+ "sender": ["ed9e9d122ef3"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["a67af9702696"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:re-subscribed",
+ "observation": {
+ "sender": ["ed9e9d122ef3"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["a67af9702696"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:replayed",
+ "observation": {
+ "sender": ["ed9e9d122ef3"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["a67af9702696"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:unmounted",
+ "observation": {
+ "sender": ["ed9e9d122ef3"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["a67af9702696"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:paged",
+ "observation": {
+ "sender": ["0a15a34ae230"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:re-subscribed",
+ "observation": {
+ "sender": ["0a15a34ae230"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:replayed",
+ "observation": {
+ "sender": ["0a15a34ae230"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:unmounted",
+ "observation": {
+ "sender": ["0a15a34ae230"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:paged",
+ "observation": {
+ "sender": ["810ad17d04f8"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:re-subscribed",
+ "observation": {
+ "sender": ["810ad17d04f8"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:replayed",
+ "observation": {
+ "sender": ["810ad17d04f8"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:unmounted",
+ "observation": {
+ "sender": ["810ad17d04f8"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:paged",
+ "observation": {
+ "sender": ["6d6767cd9e4e"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:re-subscribed",
+ "observation": {
+ "sender": ["6d6767cd9e4e"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:replayed",
+ "observation": {
+ "sender": ["6d6767cd9e4e"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:unmounted",
+ "observation": {
+ "sender": ["6d6767cd9e4e"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:paged",
+ "observation": {
+ "sender": ["f57700c42204"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:re-subscribed",
+ "observation": {
+ "sender": ["f57700c42204"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:replayed",
+ "observation": {
+ "sender": ["f57700c42204"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:unmounted",
+ "observation": {
+ "sender": ["f57700c42204"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:paged",
+ "observation": {
+ "sender": ["a5ef5c2480d8"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:re-subscribed",
+ "observation": {
+ "sender": ["a5ef5c2480d8"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:replayed",
+ "observation": {
+ "sender": ["a5ef5c2480d8"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:unmounted",
+ "observation": {
+ "sender": ["a5ef5c2480d8"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:paged",
+ "observation": {
+ "sender": ["37bc66a9d48a"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:re-subscribed",
+ "observation": {
+ "sender": ["37bc66a9d48a"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:replayed",
+ "observation": {
+ "sender": ["37bc66a9d48a"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:unmounted",
+ "observation": {
+ "sender": ["37bc66a9d48a"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection:paged",
+ "observation": {
+ "sender": ["a46f48c3c05d"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["b80f8c3fa354"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection:re-subscribed",
+ "observation": {
+ "sender": ["a46f48c3c05d"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["b80f8c3fa354"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection:replayed",
+ "observation": {
+ "sender": ["a46f48c3c05d"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["b80f8c3fa354"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection:unmounted",
+ "observation": {
+ "sender": ["a46f48c3c05d"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["b80f8c3fa354"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection-no-message:paged",
+ "observation": {
+ "sender": ["e11d93df53dc"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["787e19388f6a"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection-no-message:re-subscribed",
+ "observation": {
+ "sender": ["e11d93df53dc"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": ["787e19388f6a"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection-no-message:replayed",
+ "observation": {
+ "sender": ["e11d93df53dc"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["787e19388f6a"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.transport-rejection-no-message:unmounted",
+ "observation": {
+ "sender": ["e11d93df53dc"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["787e19388f6a"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-1-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-1-1.json
new file mode 100644
index 00000000000..8eeca55d1e6
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-1-1.json
@@ -0,0 +1,1078 @@
+{
+ "operation": "session.native-chat-page",
+ "family": "session.native-chat-page",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518",
+ "scenarioSha256": "de804d4fa5287b07be9079d21e0a3cfc7f22d0e4b8649f13a3465a30683a77c8",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0089ce68936d": {
+ "name": "nativeChat.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 0
+ },
+ "0292426a087d": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of null (reading 'type')"
+ },
+ "frame": "nativeChat.subscribe#1"
+ },
+ "sent": 0
+ },
+ "0943a7b4b434": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "197fa03857dd": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "295fd9669abd": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "69073f8706af": {
+ "name": "nativeChat.readSession#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.readSession\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":60,\"beforeOffset\":1200,\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "74de4282eb19": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of undefined (reading 'type')"
+ },
+ "frame": "nativeChat.subscribe#1"
+ },
+ "sent": 0
+ },
+ "7b237e9824c8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "7e8788afab15": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": true,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "813c942b745a": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "outer refused",
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "8c0a70144c87": {
+ "name": "nativeChat.subscribe#2",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 0
+ },
+ "8f91342d7840": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "9b20b74db998": {
+ "name": "nativeChat.unsubscribe#2",
+ "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "9ec06f18374b": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "Unknown method",
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "b09dcbf7cafc": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "Unknown method",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "ba0534620d1c": {
+ "name": "nativeChat.subscribe#2",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "c5cc569a5dda": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "",
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "c6ec9edd9184": {
+ "name": "nativeChat.unsubscribe#2",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 0
+ },
+ "ceaa29eddfa6": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "outer refused",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "d4857c54be88": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "d4ad42752d06": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 0
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "ee46c03cf1b8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "loading",
+ "transcriptLoading": true
+ },
+ "f5f160af6cda": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "fea0c71c9357": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "beforeOffset": 0,
+ "hasMore": false,
+ "messages": [
+ {
+ "blocks": [
+ {
+ "text": "first",
+ "type": "text"
+ }
+ ],
+ "id": "m-1",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 1000
+ },
+ {
+ "blocks": [
+ {
+ "text": "second",
+ "type": "text"
+ }
+ ],
+ "id": "m-2",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 2000
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.native-chat-page-nativechat.subscribe-1-1",
+ "checkpoints": [
+ {
+ "id": "native-chat-page-earlier.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:paging",
+ "observation": {
+ "sender": ["f5f160af6cda"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7e8788afab15",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:paged",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:re-subscribed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06", "c6ec9edd9184"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["74de4282eb19"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06", "c6ec9edd9184"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": ["0292426a087d"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06", "c6ec9edd9184"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06", "c6ec9edd9184"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06", "c6ec9edd9184"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "197fa03857dd",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ceaa29eddfa6",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ceaa29eddfa6",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "ceaa29eddfa6",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "ceaa29eddfa6",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "813c942b745a",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "813c942b745a",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "d4857c54be88",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "d4857c54be88",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "d4857c54be88",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "d4857c54be88",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "c5cc569a5dda",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "c5cc569a5dda",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "b09dcbf7cafc",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:paging",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "b09dcbf7cafc",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:paged",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "b09dcbf7cafc",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:re-subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "b09dcbf7cafc",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:replayed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "9ec06f18374b",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:unmounted",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d", "8c0a70144c87", "d4ad42752d06"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "9ec06f18374b",
+ "effects": []
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-2-1.json b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-2-1.json
new file mode 100644
index 00000000000..a7e5211f1ea
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-2-1.json
@@ -0,0 +1,631 @@
+{
+ "operation": "session.native-chat-page",
+ "family": "session.native-chat-page",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518",
+ "scenarioSha256": "f7535862ae280e7e47916ad25701040e25d3318baceea52515c9d81b4144ae92",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0089ce68936d": {
+ "name": "nativeChat.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 0
+ },
+ "0943a7b4b434": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "295fd9669abd": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "69073f8706af": {
+ "name": "nativeChat.readSession#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.readSession\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":60,\"beforeOffset\":1200,\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "7b237e9824c8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "7e8788afab15": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": true,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "8f91342d7840": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "9b20b74db998": {
+ "name": "nativeChat.unsubscribe#2",
+ "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "a5609c6d15fc": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "Unknown method",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "b96b63e4aaf3": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "outer refused",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "ba0534620d1c": {
+ "name": "nativeChat.subscribe#2",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "c335eed74534": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of null (reading 'type')"
+ },
+ "frame": "nativeChat.subscribe#2"
+ },
+ "sent": 1
+ },
+ "cd22d8a40c3f": {
+ "name": "stream-listener-crash",
+ "value": {
+ "error": {
+ "category": "TypeError",
+ "isRpcDeliveryUnknown": false,
+ "message": "Cannot read properties of undefined (reading 'type')"
+ },
+ "frame": "nativeChat.subscribe#2"
+ },
+ "sent": 1
+ },
+ "d53372f95573": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": "",
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "error",
+ "transcriptLoading": false
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "ee46c03cf1b8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "loading",
+ "transcriptLoading": true
+ },
+ "f5f160af6cda": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "fea0c71c9357": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "beforeOffset": 0,
+ "hasMore": false,
+ "messages": [
+ {
+ "blocks": [
+ {
+ "text": "first",
+ "type": "text"
+ }
+ ],
+ "id": "m-1",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 1000
+ },
+ {
+ "blocks": [
+ {
+ "text": "second",
+ "type": "text"
+ }
+ ],
+ "id": "m-2",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 2000
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.native-chat-page-nativechat.subscribe-2-1",
+ "checkpoints": [
+ {
+ "id": "native-chat-page-earlier.prelude:subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:paging",
+ "observation": {
+ "sender": ["f5f160af6cda"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7e8788afab15",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:paged",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.prelude:re-subscribed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.normal:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": ["cd22d8a40c3f"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-absent:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": ["cd22d8a40c3f"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": ["c335eed74534"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.result-null:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": ["c335eed74534"]
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-ok-missing:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-string-error:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.inner-false-object-error:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "b96b63e4aaf3",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "b96b63e4aaf3",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "d53372f95573",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.outer-refused-no-message:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "d53372f95573",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "a5609c6d15fc",
+ "effects": []
+ }
+ },
+ {
+ "id": "native-chat-page-earlier.method-not-found:unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "a5609c6d15fc",
+ "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
index 8427223ccf4..82038e6ebe6 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "d6a0472f274d55aab584b58b67018d042ee1ba6799f42072a8a5986f45554bfc",
"platform": "darwin",
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
index 0081ec0e0fd..0894b9f1dde 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "a60de7b496f8149593a6e89cd2d29e20fdf75d26536592fec6b0100b43322d3b",
"platform": "darwin",
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
index b751d3ba1da..dd7935f0f9e 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "96499f352af2ff884bfa94996659609fdbd228e1d071ad462400b978ab8e239b",
"platform": "darwin",
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
index b67e100ed81..07b55ea171b 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "c28251d769ca9788952ed4fb29d8665c870fb85f2c5a4f32f8af33baf44498af",
"platform": "darwin",
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 767c0eaec43..e7eff633397 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ea559217633..4e929eec586 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 87c90ab62da..c2f7641f35e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 07f46f2f31c..d395907e353 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 273396c2021..1d1095d506a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1b9fb8b1a20..5ce31700d21 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 3f08e6de4bf..4689fded7f7 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "d25fc19d4e3e9b12f2a60a076ea10741e13fc45dcd9a76bd3a9d88432c3e6fbe",
"platform": "darwin",
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
index 96d473f9962..648fda17b0c 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "5b050af6f02aa90f66340838cb5cc53c8fc0d5693d313b653c23881150384874",
"platform": "darwin",
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
index 57cf9f83e3a..92dce57d931 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "89141e3e400feea78460ede72d5269bdc885f6d3de75388542b4b7d6dff2840d",
"platform": "darwin",
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
index 42c223ee241..0d71ad8ff46 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "c97d925b63253e87ada0777e95a24ccf4e4e1682eda048800b44e335767df648",
"platform": "darwin",
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 b380f4a183e..b83b9047178 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 52dc5cfbb49..928a791030e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 6c2014b2072..1b9d35445c2 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "fab12524a09049d976da752cbe1b837a0aee04ce6e1eef75cbf517c862cb0d4a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-orchestration.workerterminaluserinput-1.json
new file mode 100644
index 00000000000..232a5e979f9
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-orchestration.workerterminaluserinput-1.json
@@ -0,0 +1,1134 @@
+{
+ "operation": "session.terminal-gesture-input",
+ "family": "session.terminal-gesture-input",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472",
+ "scenarioSha256": "27e0d44ca22593ff2ecef93de075508863024f3f10f00161818962c07e7b59e1",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "02fc3d4e513f": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "0cc3e25ebff5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "0f6cc5eb72a6": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true
+ }
+ }
+ },
+ "204da356c8b7": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "2bd49718b873": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "reported": true
+ }
+ }
+ }
+ },
+ "3117ca4e2f5f": {
+ "name": "terminal.send#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[<64;10;5M\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}",
+ "sent": 1
+ },
+ "3d116029b0b8": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "send": {
+ "accepted": true
+ }
+ }
+ }
+ }
+ },
+ "4c855008c56d": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "56f74f7bdc40": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "59e44e1220e1": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "779e482deadd": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "method_not_found",
+ "message": "Unknown method"
+ },
+ "id": "frame-2",
+ "ok": false
+ }
+ }
+ },
+ "819a7382ac8e": {
+ "name": "toast",
+ "value": {
+ "durationMs": {
+ "$rpc": "null"
+ },
+ "message": "Terminal cleared"
+ },
+ "sent": 3
+ },
+ "839dec95ae1c": {
+ "status": "pending",
+ "startedAt": 16
+ },
+ "89afd4b0c73e": {
+ "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": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "8d4fae01baff": {
+ "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": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "93092a2f06c5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": "\u001b[<64;10;5M",
+ "queuedSequences": 1
+ },
+ "a1e5242ecd29": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": {
+ "message": "inner refused"
+ },
+ "ok": false
+ }
+ }
+ }
+ },
+ "b139ed2905d3": {
+ "name": "orchestration.workerTerminalUserInput#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 2
+ },
+ "b568d2e57ebf": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "bf25f1d5c346": {
+ "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": 16
+ }
+ },
+ "caa6ece1bdab": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": true,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "cbb9e8ae954a": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ }
+ },
+ "d21f2e78ad50": {
+ "name": "terminal.clearBuffer#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.clearBuffer\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 3
+ },
+ "d6b889da9c84": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ },
+ "d6f3f7ce172a": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.terminal-gesture-input-orchestration.workerterminaluserinput-1",
+ "checkpoints": [
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:queued",
+ "observation": {
+ "sender": [],
+ "payloads": [],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "93092a2f06c5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:flushing",
+ "observation": {
+ "sender": ["4c855008c56d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "caa6ece1bdab",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:sent",
+ "observation": {
+ "sender": ["3d116029b0b8", "bf25f1d5c346"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "0f6cc5eb72a6"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "0f6cc5eb72a6", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "0f6cc5eb72a6", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6f3f7ce172a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6f3f7ce172a", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6f3f7ce172a", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6b889da9c84"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6b889da9c84", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "d6b889da9c84", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "b568d2e57ebf"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "b568d2e57ebf", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "b568d2e57ebf", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "a1e5242ecd29"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "a1e5242ecd29", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "a1e5242ecd29", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "56f74f7bdc40"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "56f74f7bdc40", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "56f74f7bdc40", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "59e44e1220e1"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "59e44e1220e1", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "59e44e1220e1", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "779e482deadd"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "779e482deadd", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "779e482deadd", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "89afd4b0c73e"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "89afd4b0c73e", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "89afd4b0c73e", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "8d4fae01baff"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "8d4fae01baff", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "8d4fae01baff", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.clearbuffer-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.clearbuffer-1.json
new file mode 100644
index 00000000000..fecf6b72223
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.clearbuffer-1.json
@@ -0,0 +1,897 @@
+{
+ "operation": "session.terminal-gesture-input",
+ "family": "session.terminal-gesture-input",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472",
+ "scenarioSha256": "53ffb52ef015193fdaaeb1ac5a1c88488a607e6cec2e39e87d1e4e3173321983",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "02fc3d4e513f": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "0b7bdaa452c8": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "0cc3e25ebff5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "18b6972f9983": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true
+ }
+ }
+ },
+ "204da356c8b7": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "2bd49718b873": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "reported": true
+ }
+ }
+ }
+ },
+ "2e36f67938e3": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "3117ca4e2f5f": {
+ "name": "terminal.send#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[<64;10;5M\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}",
+ "sent": 1
+ },
+ "31bb800aed24": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "Connection closed",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "3d116029b0b8": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "send": {
+ "accepted": true
+ }
+ }
+ }
+ }
+ },
+ "3dccc3283f7f": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": {
+ "message": "inner refused"
+ },
+ "ok": false
+ }
+ }
+ }
+ },
+ "4c855008c56d": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "6d27ae19f05e": {
+ "name": "toast",
+ "value": {
+ "durationMs": 1500,
+ "message": "Couldn't clear terminal"
+ },
+ "sent": 3
+ },
+ "819a7382ac8e": {
+ "name": "toast",
+ "value": {
+ "durationMs": {
+ "$rpc": "null"
+ },
+ "message": "Terminal cleared"
+ },
+ "sent": 3
+ },
+ "839dec95ae1c": {
+ "status": "pending",
+ "startedAt": 16
+ },
+ "88466f6b4454": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "93092a2f06c5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": "\u001b[<64;10;5M",
+ "queuedSequences": 1
+ },
+ "b139ed2905d3": {
+ "name": "orchestration.workerTerminalUserInput#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 2
+ },
+ "ba872e864a95": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "method_not_found",
+ "message": "Unknown method"
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ },
+ "baceca50439a": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "bf25f1d5c346": {
+ "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": 16
+ }
+ },
+ "caa6ece1bdab": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": true,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "cbb9e8ae954a": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ }
+ },
+ "d099605d27e7": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ },
+ "d21f2e78ad50": {
+ "name": "terminal.clearBuffer#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.clearBuffer\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 3
+ },
+ "e4d1282f9b64": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "fbd406d76823": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-3",
+ "ok": false
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.terminal-gesture-input-terminal.clearbuffer-1",
+ "checkpoints": [
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:queued",
+ "observation": {
+ "sender": [],
+ "payloads": [],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "93092a2f06c5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:flushing",
+ "observation": {
+ "sender": ["4c855008c56d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "caa6ece1bdab",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:sent",
+ "observation": {
+ "sender": ["3d116029b0b8", "bf25f1d5c346"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:cleanup",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "31bb800aed24"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["6d27ae19f05e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "18b6972f9983"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "88466f6b4454"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "e4d1282f9b64"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "0b7bdaa452c8"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "3dccc3283f7f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "d099605d27e7"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "fbd406d76823"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "ba872e864a95"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "2e36f67938e3"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["6d27ae19f05e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "baceca50439a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["6d27ae19f05e"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.send-1.json
new file mode 100644
index 00000000000..38a5faa9447
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.send-1.json
@@ -0,0 +1,1352 @@
+{
+ "operation": "session.terminal-gesture-input",
+ "family": "session.terminal-gesture-input",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472",
+ "scenarioSha256": "d7bc4d7a3e7e54accd4b51eef7e83ae70cc0c794738a83af222503a0f12ba70f",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "02fc3d4e513f": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "09ffe4b9bc4b": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "transport failure",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "0cc3e25ebff5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "14124cf34fa3": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "method_not_found",
+ "message": "Unknown method"
+ },
+ "id": "frame-1",
+ "ok": false
+ }
+ }
+ },
+ "204da356c8b7": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "23dbe9f84fe1": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": ""
+ },
+ "id": "frame-1",
+ "ok": false
+ }
+ }
+ },
+ "2bd49718b873": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "reported": true
+ }
+ }
+ }
+ },
+ "307da6578251": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true
+ }
+ }
+ },
+ "3117ca4e2f5f": {
+ "name": "terminal.send#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[<64;10;5M\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}",
+ "sent": 1
+ },
+ "3d116029b0b8": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "send": {
+ "accepted": true
+ }
+ }
+ }
+ }
+ },
+ "4c855008c56d": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "77b7e6c640e5": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ }
+ },
+ "819a7382ac8e": {
+ "name": "toast",
+ "value": {
+ "durationMs": {
+ "$rpc": "null"
+ },
+ "message": "Terminal cleared"
+ },
+ "sent": 3
+ },
+ "839dec95ae1c": {
+ "status": "pending",
+ "startedAt": 16
+ },
+ "85590f9305bc": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "error": "inner refused",
+ "ok": false
+ }
+ }
+ }
+ },
+ "93092a2f06c5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": "\u001b[<64;10;5M",
+ "queuedSequences": 1
+ },
+ "a89a112e498d": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "rejected",
+ "startedAt": 16,
+ "settledAt": 16,
+ "error": {
+ "category": "Error",
+ "message": "",
+ "isRpcDeliveryUnknown": true
+ }
+ }
+ },
+ "ae8c822fc220": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "error": {
+ "code": "refused",
+ "message": "outer refused"
+ },
+ "id": "frame-1",
+ "ok": false
+ }
+ }
+ },
+ "b139ed2905d3": {
+ "name": "orchestration.workerTerminalUserInput#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 2
+ },
+ "b18293f5ef60": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "error": {
+ "message": "inner refused"
+ },
+ "ok": false
+ }
+ }
+ }
+ },
+ "bf25f1d5c346": {
+ "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": 16
+ }
+ },
+ "ca2d74c21da1": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "$rpc": "null"
+ }
+ }
+ }
+ },
+ "caa6ece1bdab": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": true,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "cb7befe9cef5": {
+ "name": "toast",
+ "value": {
+ "durationMs": {
+ "$rpc": "null"
+ },
+ "message": "Terminal cleared"
+ },
+ "sent": 2
+ },
+ "cbb9e8ae954a": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ }
+ },
+ "d21f2e78ad50": {
+ "name": "terminal.clearBuffer#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.clearBuffer\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 3
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "eff036b9fc6a": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "error": "refused"
+ }
+ }
+ }
+ },
+ "fdd67676d630": {
+ "name": "terminal.clearBuffer#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.clearBuffer\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 2
+ }
+ },
+ "recording": {
+ "scenario": "matrix-session.terminal-gesture-input-terminal.send-1",
+ "checkpoints": [
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:queued",
+ "observation": {
+ "sender": [],
+ "payloads": [],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "93092a2f06c5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.prelude:flushing",
+ "observation": {
+ "sender": ["4c855008c56d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "caa6ece1bdab",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:sent",
+ "observation": {
+ "sender": ["3d116029b0b8", "bf25f1d5c346"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.normal:cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:sent",
+ "observation": {
+ "sender": ["307da6578251"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:reported",
+ "observation": {
+ "sender": ["307da6578251"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:clearing",
+ "observation": {
+ "sender": ["307da6578251", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-absent:cleared",
+ "observation": {
+ "sender": ["307da6578251", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:sent",
+ "observation": {
+ "sender": ["ca2d74c21da1"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:reported",
+ "observation": {
+ "sender": ["ca2d74c21da1"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:clearing",
+ "observation": {
+ "sender": ["ca2d74c21da1", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.result-null:cleared",
+ "observation": {
+ "sender": ["ca2d74c21da1", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:sent",
+ "observation": {
+ "sender": ["eff036b9fc6a"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:reported",
+ "observation": {
+ "sender": ["eff036b9fc6a"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:clearing",
+ "observation": {
+ "sender": ["eff036b9fc6a", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-ok-missing:cleared",
+ "observation": {
+ "sender": ["eff036b9fc6a", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:sent",
+ "observation": {
+ "sender": ["85590f9305bc"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:reported",
+ "observation": {
+ "sender": ["85590f9305bc"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:clearing",
+ "observation": {
+ "sender": ["85590f9305bc", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-string-error:cleared",
+ "observation": {
+ "sender": ["85590f9305bc", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:sent",
+ "observation": {
+ "sender": ["b18293f5ef60"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:reported",
+ "observation": {
+ "sender": ["b18293f5ef60"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:clearing",
+ "observation": {
+ "sender": ["b18293f5ef60", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.inner-false-object-error:cleared",
+ "observation": {
+ "sender": ["b18293f5ef60", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:sent",
+ "observation": {
+ "sender": ["ae8c822fc220"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:reported",
+ "observation": {
+ "sender": ["ae8c822fc220"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:clearing",
+ "observation": {
+ "sender": ["ae8c822fc220", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused:cleared",
+ "observation": {
+ "sender": ["ae8c822fc220", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:sent",
+ "observation": {
+ "sender": ["23dbe9f84fe1"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:reported",
+ "observation": {
+ "sender": ["23dbe9f84fe1"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:clearing",
+ "observation": {
+ "sender": ["23dbe9f84fe1", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.outer-refused-no-message:cleared",
+ "observation": {
+ "sender": ["23dbe9f84fe1", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:sent",
+ "observation": {
+ "sender": ["14124cf34fa3"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:reported",
+ "observation": {
+ "sender": ["14124cf34fa3"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:clearing",
+ "observation": {
+ "sender": ["14124cf34fa3", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.method-not-found:cleared",
+ "observation": {
+ "sender": ["14124cf34fa3", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:sent",
+ "observation": {
+ "sender": ["09ffe4b9bc4b"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:reported",
+ "observation": {
+ "sender": ["09ffe4b9bc4b"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:clearing",
+ "observation": {
+ "sender": ["09ffe4b9bc4b", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection:cleared",
+ "observation": {
+ "sender": ["09ffe4b9bc4b", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:sent",
+ "observation": {
+ "sender": ["a89a112e498d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:reported",
+ "observation": {
+ "sender": ["a89a112e498d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:clearing",
+ "observation": {
+ "sender": ["a89a112e498d", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear.transport-rejection-no-message:cleared",
+ "observation": {
+ "sender": ["a89a112e498d", "77b7e6c640e5"],
+ "payloads": ["3117ca4e2f5f", "fdd67676d630"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["cb7befe9cef5"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json
index 03c50964594..98f2c270e82 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "cde3cac5407ef731315d18fc855b2696b9bfd30b90cb43d4a2cc812059cdd987",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json
index 373bb5f521b..816c1d818fe 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "6575a0f89894d9b66e50a73446dfe92293ceccc7048b556f1ff114fd3ce05b8e",
"platform": "darwin",
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
index 673efa893d7..4466fff572a 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "12f1006d704e362552317a3afcb4db4366146da3a863a1c55b524c6fc1b9757a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json
index b99f674b3e6..8ef91c9b6af 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "27c4f13ae43042cf5e6b5ca95e9c1a37db2f1f0c08b31a1164bb56cf0967549a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json
index 1338e991c4a..5368facc7f5 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "449f8c793a371dddf1bb9b3beb36b2dbd9b991918dae1f6290df75fe6d2aeace",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json
index 36d2afbc9cf..14d697bb2d9 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "5cc67ab6df80a81be814a16cb60dcc4c703b0fc17594e409697a9fdeb0edeb76",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json
index 91da7c8734d..ada113a7254 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "e7fb7a8083aac4c8c5edc7dd52465ca53bfcded00bf8b1ec18ae7604651bbe32",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json
index b734bdf58c4..3818226da07 100644
--- a/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "b1e1b221ab7bfe5356c89a09cf4252613c78aecab48b2212e84ac7de885ec569",
"platform": "darwin",
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 72351cecd43..e29b6db394c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c155bdf6ee6..079b34857e7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9d0f6b32f26..62d7ba10943 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 52629b8629b..e6a6a628e5b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "cf671da175d50a4c2e1336f4e8338c24c4752db111e1eafd226bee6ff3582b1d",
"platform": "darwin",
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 09f459e8b3c..e6a761ed7c6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 70101ddcb52..8ff34a3d596 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "19b445b39da98d28bcbcdab6f70e47ce208ca68f165e7b62c5fe9762eee67c8d",
"platform": "darwin",
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 573abb655d3..f6bbc53d3af 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "4953dd0de509ce620b9840d7f460e472dc74f54d53636694d12cba2e3bb51da8",
"platform": "darwin",
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 5e3bc008f59..a6c2969ef74 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "70f601caeaee957bd3b172fc0fc12e85d6e2d6bed7683c86869559c6c9f25834",
"platform": "darwin",
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
index 9e3a2f487cb..32d2c4e73a9 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "c6d5040d0fd1e6b852625561aa67d11f555f5adb12303b6f8d0176183026a6b1",
"platform": "darwin",
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
index 44d5faaac7b..88a5cf5d52b 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "b9edb5c27852d4e1e968f85668f1ea7afde3ed1c6e5c6582d6607f9fa5643356",
"platform": "darwin",
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 dbdf4d188bb..06c0de22588 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "687b109bd2bcc0c85b7c858d553e68e2fc4cb5b281d9f8b32836dbacc4bdc8f2",
"platform": "darwin",
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 548f112b2d2..82ca3fc7d7f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "3199c745e22973b432b0a36c34bb0bdda994334a4a0cd7ad2daf8b172625ce8d",
"platform": "darwin",
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 95dc7b86464..f411c567eb1 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "5e9c3ff57cf432b24a17ee046636b61b94116a687cfa506cd79dee464542b76b",
"platform": "darwin",
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 6923a688952..26fa29c2ee4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "a88061d3d1f03074b0ed2b663b523f1602362bc317ba614106f1f646d037d6e3",
"platform": "darwin",
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 2bd45116b8e..93255bccd2d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 18a4c76a481..d9d74e455d8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a1848d76ab6..a7a98d36eeb 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 31d1128dec7..95b535c4dc3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 7a3773083a0..4dd1271cf9e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4c33ba95aed..eb914cb9c79 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "f5033a7a3567cc9e016bf09ac8bcd8ff381c3054c041dbccc773f7011918bf1d",
"platform": "darwin",
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 67338aa4843..2fa8ef69cba 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "0931b3d35868e5452cb550962f2408b6ce7cd6c89e90a9cf2897425edbb4b42d",
"platform": "darwin",
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 fc01aa799ec..6053ec4cffd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "d0f8d9bfe0e1469af3b0dab8b5c9799d91cc2234e72f0e031d6872059654077d",
"platform": "darwin",
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 645f2e15648..868cc52764a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "3f448feff463b59c3927dae020ecd8d4931bb4a6036df6d6af080de2ec5fcf2b",
"platform": "darwin",
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 9b79ce27311..c6f6c811568 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "4438f9fd62876333bb980157612aaf457c5a9b9115659c8c941c3b373ad071dd",
"platform": "darwin",
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 7b8e8ca219d..2369be18d58 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "7e4c5bb29e0f630cda8a09233575b9295e485f3d3e315ebdc0458c69515fcfc7",
"platform": "darwin",
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 90650e96cde..9a7d8ec7c1e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "1d7713cf4c23d053105c2abb02340d81d5eb689f4311a0984932d8ebd031b4ce",
"platform": "darwin",
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 050848ef7d9..8c2b75fc36f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "994ea8b4ddb05774a8c2d5902bb68bf5e8f25399a787262b8f23f458f2790698",
"platform": "darwin",
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 7d1eede54f9..d13b0f64e33 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 dd62c5e1c39..d21b8806752 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c2e40eb6129..cd4d95dcfa3 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9aab59bc028..dc1cd1ee7fa 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f7d6d780f0f..257a8f78c96 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "a89bdf93df71a958810aba72c80e42f663644781a29e934898e2ddf86c5dd5d5",
"platform": "darwin",
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 6e29b69d50c..a9889bb7067 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b",
"scenarioSha256": "cfc84498c2ed080ca2be50725c8ad4fac84eaf2e64ecad1445997949737da11d",
"platform": "darwin",
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 0f6edea4740..f09a560ece1 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b",
"scenarioSha256": "f3b57e7a3d46f7ee2761ecced03e74019758172fe0a040ef5df0612c8ac18358",
"platform": "darwin",
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 b7a09ff9505..4cf0de07269 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8c4d632bc9b..756b1eaf77e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 442dec8d7fa..6fb8f66017d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1db50a9da9a..836d5ab0988 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e89d64da7e2..081a0123f82 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0b8d7ffd814..e251333a276 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 78466dbc016..db2e79a0463 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 18dd5a282d7..0fd6671ca84 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "751e0446d4cb64f80c997695cadb5d59d9698b4920a8ae16b95cb01e1ff37579",
"platform": "darwin",
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 3209655fc6e..58e302edadb 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "525fc4a694e8d1eaa4dab254c05f6bbdfbff31f9137bf9ba277ed508fd56e30e",
"platform": "darwin",
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 18dcd287db5..c7eeda0c1aa 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "693c645ebbd13f438f19a8a96d52fa2e72c1c910aa45f04ba7f17c1c90e13169",
"platform": "darwin",
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 cd15d440f46..6f202641132 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "aa567e882db4be1bf3c9174e4af8266e1f9a25f8c353d7cb41f6c7e51c4d48b5",
"platform": "darwin",
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 518d7c2d084..9b2f01c25ef 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "eefa7111ee94d5966692fb6f9bed1b3ccd7e1fe40c540438c005731d0cae305c",
"platform": "darwin",
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 1b7efc12e57..4d0256854ed 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "1cc7fdf3139e0c5a81cd83987ffedc4f59cd4866fc1b4018b61e35eacc74fc11",
"platform": "darwin",
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 f08d4f1b8aa..18386a32451 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "154d91d00db23ea2718a6ee0b6c5cafc7233084532b3d561731b059d58e006f5",
"platform": "darwin",
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 a261139d525..80b30a2e764 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "ae07579881829263a2b5590249d4119f5d9f4ef3877149ac3b780ad985413f00",
"platform": "darwin",
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 5c554720543..6b61a486062 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "955729f9100dce7eeb103f7b4d08ff56ac66853b9ad0d33627c0838011287bca",
"platform": "darwin",
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 c6ad9955de5..49413f16e80 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "d163c6125fa180da7575642ee29f4bb18e3678079b7c30a42934550896d5b3c1",
"platform": "darwin",
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 81ecd244d7b..61aa684001e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "83b30b2a160d162d16c66aa3bf6a633489e86dd4fd1c30828d2d244164b9c95e",
"platform": "darwin",
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 7a7217fdd9b..08f99db0be1 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "06b06c84f4b8a1ee8e5159d8ada2656da4d7096729759c76601ad4e251310924",
"platform": "darwin",
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 1f79b9c5e49..52ce44ec65b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "3ef6ef046f60d2d11ef81adf69bd5216036405eb05e5fd30cf1c402120488ee5",
"platform": "darwin",
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 d4693d8305e..d6fbc2ce0b9 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "a2ecf4ddc2c9870a8d73cbd920b46bb0663a958ac156dc6de092be3c9474ea2b",
"platform": "darwin",
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 153fa135e75..9b9655c7d87 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "f40d99c60523ad1a6a3a761935e86ab0739337486dd316e6ab3248980e575027",
"platform": "darwin",
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 ddb4d79bfc1..f3ff21bac69 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "27587bfb5745051e3cb27b01dc49b90b6f3c8ddbeb38f20772502fae2f562d91",
"platform": "darwin",
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 70481eca29f..292dc732ee7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "01664112d8f24d0a08fa7ba4e2d7f389acb363ce493e083f359f90fa0b87911d",
"platform": "darwin",
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 8022fad142f..78560f8497b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "186444ac8dc34dc63d1fbf304275e2265d96c6742e4c8f1e8e5568aa5504bf5d",
"platform": "darwin",
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 29f70367f48..8394167ddcf 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "c6e5ae446b875afba3944a96d931fdca6006ed8e904374e5040088004eb9b044",
"platform": "darwin",
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 72c1a79bf86..7ce930c1679 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "2da11d5a9c7a223a59c56ec416ab33acd42d900b4080132bde27313e042808d9",
"platform": "darwin",
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 1b47034fd84..98d0dfad9da 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "a5d8ba37f44421d3efd19617ef319f37fda3fe53004b6829ae2c320f85d5c98d",
"platform": "darwin",
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 e7e8b3f25c7..1427b04346c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "abc4b882c92ba90a52d3635fe882b2c653bc91ab4d9927f240ebee4dd147b81d",
"platform": "darwin",
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 06b2cd04dd9..105a50a8b77 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "77b0812842903075bb3d3ec1f7bcea94b1e1dac5993c3c8854bd4c3d2a567988",
"platform": "darwin",
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 95fa6ec4920..be24096e3a6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "96a1813de0159396f6a5eb36a764fad4511de0a25eff6323571e1fade2a7f334",
"platform": "darwin",
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 aed0773066a..7240c67e59c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "57c41b51e34e451975a9f28a6461aa3b8e9dcf04cbebaea80ddf14afc4b78edf",
"platform": "darwin",
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 eb1b95e8de1..8414aca69c5 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "64a7af1bfac25dfe673832ef0ef7776be8d1a628c995eafd938fa3ad11d7ba0f",
"platform": "darwin",
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 a1e7143e696..b4c51a5bd7e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "8443a59a1d432fbcfb9d158995cfa69bef364c33b66a97cbef0e70e197fcad4d",
"platform": "darwin",
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 337717055b7..ed2ab0e9862 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "a60d7c0ce3d155116aecbb3d1ca015b4d9de310155f4e840b2fc391dc9d04860",
"platform": "darwin",
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 e39bc5cf1a5..ff166170b7e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "a2c0c5c200b36d2194815e67df2ea50422f6ecfd9df411132202e9660c87c41b",
"platform": "darwin",
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 f6e9d57a349..fdb90f227ab 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "8a5c5b210459d3938bc010bc88c69696a631072cd5a6b7e1a3eb3e1fd0da9c8a",
"platform": "darwin",
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 6b8608b8cc5..06b58239278 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "ab0ac02611d487a9edd58319c6e4b9302148684f27711afc3b69feaa73fc4b07",
"platform": "darwin",
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 0ac3b615a5a..101bfb2e65b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "c4a5928ef7035ad8bed20945f235f4fa509238b3a167c91df50baefff8e8433f",
"platform": "darwin",
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 12242c7f0de..32374c05fa7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "8ec517c98775f3af0d45776dc74bcaaf99dcc751e85343084e39c557b6ddede1",
"platform": "darwin",
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 f5b301ea8fa..682b0e05da6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 5c22abe6151..73df09b03dd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 77d449fbf87..590e8984c26 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 689ccb0bb61..8e935c4eb4e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c2ae3b3c09e..28d858aa4ab 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "7c16d49ffeace5c689309316da6e4638fa1b70d3ef52a78d27db934ae56cf64d",
"platform": "darwin",
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 e98eac11eb3..95e0ec51ebf 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "c5cc9a11a75a86780195be7d1055d1064c8aba78bb8e4e8bbdf033409c2b2aa5",
"platform": "darwin",
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 6d53d2e652a..57b81e25b1f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "7f748bb55df907bba315ea6899c585837d97fa0ea9b312330cf35d95bda87bd1",
"platform": "darwin",
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 69e7cd3b23c..1a06c482c6f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "4ab4e4022cafd69cbc7af45ddf72d2dad3e8215df363511651d7faea014147d3",
"platform": "darwin",
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 0b1a78143b1..116687dfacc 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "cf64dd43e708ff953ba2cbb2a70378aa8ab5d13ede157af7ba0967d913755b82",
"platform": "darwin",
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 84833e4255c..aede60c3326 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "667a06cf9ff8129eee64327566012448abe1fe31f58c0d9b882b13e74db5a877",
"platform": "darwin",
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 5c470b1265b..e006a0aa48d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "9fd4756c2224f3ecbc9ffc82e1ee11615a9e057e600bc56ccaf5c5e2c0e411d8",
"platform": "darwin",
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 33c06606687..c1d155c4600 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "cfe0284f502001a57a9d18585222e5ae4b254d9bac32e0bb4080ee9363e8e019",
"platform": "darwin",
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 149a39e6799..e821b9e0299 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "b21a3b3f568bf6caecca62272f4b7882062027684c70878fd5f883622ff2a9ea",
"platform": "darwin",
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 f115f0ea31a..9168eeb668a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "e286edb942c338fd844ce8437ac03c872838228515ce833cfd310332354da725",
"platform": "darwin",
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 ebfc4c42670..8085f0eeebe 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "52b2cc222d9819121ba99f8f603bc76abe420d731e5853116e802a4db59e2d3e",
"platform": "darwin",
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 f9e45e58cdc..853e83d8bcd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "0fe8c60631cf04d33b34371155f5f80c8426b07b1cbec2fabc5d6d619f2633b8",
"platform": "darwin",
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 0254059fd25..7e707ca71af 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "8ad021e101d8ef17ed47472a5fbfbeaebb2690a4040c89a0e9ee133e69e4fecd",
"platform": "darwin",
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 cc0f14f5879..e14f0660df0 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "4d33ce12f3f35bea8a98fec2c0378e73caf7fbfb93085545e890b082a392cd60",
"platform": "darwin",
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 25a7990f4ed..91e23a83151 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "0cec6c7e6322135772132c15af4f5cec7ddc667ba3476ad871ed92625293036f",
"platform": "darwin",
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 9cc4c2f6b7a..8855629d37e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "754d93c552864ab693a5fd2776ba917a1c0f155f6bf8fb2873eafe9b97fd02b0",
"platform": "darwin",
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 1da974aff2c..41ef253fb43 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "d8838276fb40a8ccb2dbedc269b970f85c1c800466b9813ac06f409ea44ffaff",
"platform": "darwin",
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 8f9c44ffb33..0025e6d997e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "785dad70a0e382a6cc2b030cec2077a1e816e84ba60b082f60c9a96ec56b47c5",
"platform": "darwin",
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 676781c38ec..483e0da533c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "8d31245ea6869184de082cf9ef3af8d6e0806ab48b6f159e5076f786745c4413",
"platform": "darwin",
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 5564aec2d8b..c7507bca74b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "2303fc902e5a6cf6a43db58ef2938538a7b770d1509cc22a9811f4c83051aea1",
"platform": "darwin",
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 b0d8d4697de..18f09b71377 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "8b75854487566ca6da98d391b6822c81c99e61011fc094458ae038905c1c9287",
"platform": "darwin",
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 b8a3eced6d7..37b74425f51 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "7c948e76afb331e4038298215181adc97cd533c4f79e205e183c08e8a2db20fc",
"platform": "darwin",
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 5ce34bad50b..d190fbf4506 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "20e9631df87e40e64d35cee0c0e06b922fe53bd93e3d9e4078633b85a5278b7e",
"platform": "darwin",
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 14de783a2d4..25196dce203 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "2d947b63fb35dad9bbe201061cb51d0b3c5a5e6f3e8018eeda2ec1f962952809",
"platform": "darwin",
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 8af68dda021..0c23713ac00 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "ca6b0d81b19811806ce332a776361a40e526a73bef90cfa3df05a764e2ee83b6",
"platform": "darwin",
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 7af7d5e8289..bc1b0936744 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "bd58d88e0534366e281869ee79eb75fe65b418d02523d815d8d0d58799edc31b",
"platform": "darwin",
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 3b577de670f..e8bb2db491e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "0f220b97bbb64ef8d347973690e6fab4b305eaaa54c9b7883340415c54e61206",
"platform": "darwin",
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 986b3be5501..2ee64944157 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "85160836c5a5c9bae76aff82c834ceb908f9262a90facd6e055c289362664eaa",
"platform": "darwin",
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 cfd5a511459..cf3c4f3fc6b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "5bc59cfd0d951ae5193df5c49ce3618d9536be0bc8f8192a7b03000963c2001b",
"platform": "darwin",
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 4b0174fe597..2a79dac48ff 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "0d8c240718b3911464a6fc486114d67cd6f60aa295cd0886ff755b77d5036014",
"platform": "darwin",
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 02ba6c02ebb..415263827a5 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "e9bdad78cf60e3dd931eab8810d011c6e0066f9a336a206f8f9ca62621b21fee",
"platform": "darwin",
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 0a2ae7ef0ba..bd4d9cf78d0 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "a5704c6849de9a45564c8738076ec8c0307754a5acc2c039880fe436771e68b3",
"platform": "darwin",
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 1dffe70c390..34e23d63450 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "e518040cbd40e3cc8c22e0b70b6de1087386936f75ed2f65f6e7b4fcdc344ba2",
"platform": "darwin",
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 536fc87f150..34ae7953c38 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "f02acd2ed6319b8cb674c04b41a1e96c50e53123a8914790acc8af5410d63f98",
"platform": "darwin",
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 c14d3a1d4ef..fe71472ed25 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "2b3006bfe1e7f3040b86ccc698e58ae19ae1aa11389aee2ec2a8f2dfdb0270f4",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json
index 93d1d9ff3da..3c5e9cbc3dd 100644
--- a/mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json
+++ b/mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8",
"scenarioSha256": "6373b83783b1a9b061bede3bba7aa3b573c3a50b897102a094df93f926856fdc",
"platform": "darwin",
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 a8a87c5a029..a989c8b55a4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8f44dea0578..9d9c56ea458 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 928c9bf2d76..3c7e3037098 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 923f7fd86fd..dc4dd82f6c8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 11df5b13615..6aef7aef3a4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ac2c7ff6c69..c82b67b8315 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "014040846f649f3c6ca1175b610ed1b51bae3001e7de103549d7ee1a511a2506",
"platform": "darwin",
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 2db85c8aa33..6f0c76e3f41 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "9efe74e5a1b0d92f674e6044edfd534693c15b0a153bcb2c0e283a6cd53fa61b",
"platform": "darwin",
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 1528e660355..f732e3cbb87 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "217a3da50a54c4cbe19a68835ecfa038eae5b350430f0b8fd0a616bb5bdfe32d",
"platform": "darwin",
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 edb4c4d14a8..d40c9e6049d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "cb4c10cc6401e5b68340bd1fa09381c973348b6e0c7ffef563cde92080c57a15",
"platform": "darwin",
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 9440a2f83fa..a3ffe19c680 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "038221907a57f5bb25338f9b07a744dbac3ea0a7ea2ba43281f171912f45a586",
"platform": "darwin",
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 1bd92a4ae28..b7ed8fed8c7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "8b0b64a6a0ef6e1cc6baa28e632fd3394a6c8b825f0835daa9634fa41c8685aa",
"platform": "darwin",
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 712c4bc4e1c..6d9de496a76 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "39ef28af17e4d3774b42bba1555606770667bc9010692fb1a4492413a940c0a0",
"platform": "darwin",
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 20ee88dfa92..da69a647703 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "c589700af145f58c37292dafb891b3b7d50302fd4ec044155c044ccd48f79c74",
"platform": "darwin",
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 a25fda4e3eb..e6fe5fbca8c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "9e91d46870cd69279cc7d8ebfd317ab8b13136ccff9662876c7601a3a83ecafe",
"platform": "darwin",
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 0c12e170b0f..6dbc49cdf25 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "2d4a681bffbc5ff9d3040ea0d6bb2603ee940c3c497269d0b63caca564fb25e1",
"platform": "darwin",
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 00b13fe3072..8b79817676b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "3d4637406e2d658b72f73153f0a5e176cb8b143593b72bce0cdf979bc6e4cbdd",
"platform": "darwin",
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 e3040b1a68f..394b0c8c938 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "3453024581230908d1e0e9335f5310e7b4ae03faf50d93654b9ff28c464fb95f",
"platform": "darwin",
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 530bec924bd..903bde71b02 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "28f7ba289c188bfc121ef7b969133711189e887fbfc7b37c8a5401ea7f30b56a",
"platform": "darwin",
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 b10a848351a..059c4b960ab 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "35771ab92d0d4ff44a1dd6e5f1e5d3137570a2e013bddea5ca77ecac7989ed53",
"platform": "darwin",
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 ef2770f2505..88b4b9c41d6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "39451d3c811068754f91ac243fe1208f4ce742df53261314345d8209ba761e94",
"platform": "darwin",
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 08aefdd0b47..934cf342816 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "5cc1773d06d49d2616da72f2790753322edda6d67e12b5e41116971d34787391",
"platform": "darwin",
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 24cd96f4058..d34b82d5d0d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 d7809bd476a..6f60507cadb 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0599bda4ff6..61e62f46c4c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a3a008bc4bf..8a217bbccb2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0c516d4a5b5..db3cfee700f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 3aa51575bb1..1beb86892f4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f",
"scenarioSha256": "bde05ca916393d7f5ccd48686cf13a52fb2dfa599ea874b084c58bd59adb7e7f",
"platform": "darwin",
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 60ab920d31e..db026f8b42c 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ce4ac23dc32..9fa495bc906 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6fbd07a3e22..b55dfb5add8 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1",
"scenarioSha256": "1d032c86e7cc12efa3d5044339cb990bd258d830119d0e7b61d1b995b4df29a3",
"platform": "darwin",
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 44295100182..553bfe8cfb6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1",
"scenarioSha256": "048ee6d7848e0e4b8d6463ff9dc4124bfd478114ab87f6b52ff82a1dfd6ebc04",
"platform": "darwin",
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 7c23208c701..8a21e7b8215 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "95ca47f382997c412da974e564a46b1ae0c20d6e0f3ca14258d33c8d8b51a160",
"platform": "darwin",
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 d5603b0d2f6..912a9bff267 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9f369060112..44c711d4c11 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "fa0e28a167a5fba6fe7ffebb9f4ad28dd413d601c07116a24a7781d156f54beb",
"platform": "darwin",
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 76b932e0ed6..a43a5b52e13 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c95e64b7263..43e1fb4afca 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f5750eeaba8..7340ab75d0f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "d321d6c17e67ae90f6ceefb775495ff765a86a35423ed33a212e71ec5e9e94aa",
"platform": "darwin",
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 1dad271af14..f760341c109 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 18355353547..c6f0d4e982f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8dc0435ec01..885617e2dd2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 092ce3d8f2a..22b6ae6e55a 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "a330bd18a22c002ac04d0fa043561740c5cea627516bbf965fc1bd52533c2e35",
"platform": "darwin",
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
index ec1ec22fbe8..1b75c0b1fa3 100644
--- 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "77fd03130dc2faf4d17b018c6c3314076a02b5fe9c531921ffb1a43e8a150d2f",
"platform": "darwin",
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
index 327a54efb89..d30e715ef5a 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-paste-trailing-image.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-trailing-image.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "ebf9397271bfd5462403e60748f5bd505d554eba5f74ce79a8c40550e9719dcc",
"platform": "darwin",
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
index da2f7f3c913..d2cc6b8a87f 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-paste-two-images.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-two-images.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "b6595de485ed071674051ce0d2b44a604ec21d2614b646d8917a9130a58a48cf",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json
index 92a881480cf..4f9262e93ba 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "1f513883eb62cdd1673eb58809817e2b2f5fd64b74f80ed6e3b9d8c2ef2d33e9",
"platform": "darwin",
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
index 9ed6a6fbedd..7150f5b4e9f 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-upload-second-fails.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-second-fails.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "181b02243b1ecf98364473ee0b3f4c82a6037b5f5bae33703ab4f611cc050db4",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json
index 1154652074d..03094bbb7a0 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "d7dca3742c4086f9ced0ba4b2f6c32ee9fa9272a5a955e8623fdc9cdb4c71528",
"platform": "darwin",
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
index e9c767a117e..fd49cfbf8b9 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-upload-start-refused.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-start-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "09fd9bf97a4da7313e24f8c333b66c7c1af927bbea0a6d9fef9803856a608c78",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json b/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json
index d9a2726edff..a76f4e3ef44 100644
--- a/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json
+++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c",
"scenarioSha256": "db0397f8f6ae28de0cc7afd91552ee9416d7f7054a76a42aac02f480c6f363d5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-page-earlier.json b/mobile/rpc-foundation/goldens/native-chat-page-earlier.json
new file mode 100644
index 00000000000..e4e51032c7c
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/native-chat-page-earlier.json
@@ -0,0 +1,312 @@
+{
+ "operation": "session.native-chat-page",
+ "family": "session.native-chat-page",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518",
+ "scenarioSha256": "674cab85ed9896dae311bfc0acfb1d1d1a2a7f25b7546b4714edbb0a585e6178",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0089ce68936d": {
+ "name": "nativeChat.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 0
+ },
+ "0943a7b4b434": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "295fd9669abd": {
+ "name": "nativeChat.unsubscribe#1",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "69073f8706af": {
+ "name": "nativeChat.readSession#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.readSession\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":60,\"beforeOffset\":1200,\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "7b237e9824c8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": false,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "7e8788afab15": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": true,
+ "loadingEarlier": true,
+ "messageIds": ["m-3", "m-4"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "8f91342d7840": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": ["m-1", "m-2", "m-3", "m-4", "m-5"],
+ "status": "ready",
+ "transcriptLoading": false
+ },
+ "9b20b74db998": {
+ "name": "nativeChat.unsubscribe#2",
+ "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.unsubscribe\",\"params\":{\"subscriptionId\":\"claude:session-1\"}}",
+ "sent": 1
+ },
+ "ba0534620d1c": {
+ "name": "nativeChat.subscribe#2",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"nativeChat.subscribe\",\"params\":{\"agent\":\"claude\",\"sessionId\":\"session-1\",\"limit\":40,\"subscriptionId\":\"claude:session-1\",\"capabilities\":{\"transcriptPending\":1},\"transcriptPath\":\"/work/feature/.claude/session-1.jsonl\"}}",
+ "sent": 1
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "ee46c03cf1b8": {
+ "crash": {
+ "$rpc": "null"
+ },
+ "error": {
+ "$rpc": "null"
+ },
+ "hasMore": false,
+ "loadingEarlier": false,
+ "messageIds": [],
+ "status": "loading",
+ "transcriptLoading": true
+ },
+ "f5f160af6cda": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "fea0c71c9357": {
+ "name": "nativeChat.readSession#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "nativeChat.readSession"
+ },
+ {
+ "name": "params",
+ "value": {
+ "agent": "claude",
+ "beforeOffset": 1200,
+ "limit": 60,
+ "sessionId": "session-1",
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "beforeOffset": 0,
+ "hasMore": false,
+ "messages": [
+ {
+ "blocks": [
+ {
+ "text": "first",
+ "type": "text"
+ }
+ ],
+ "id": "m-1",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 1000
+ },
+ {
+ "blocks": [
+ {
+ "text": "second",
+ "type": "text"
+ }
+ ],
+ "id": "m-2",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 2000
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "native-chat-page-earlier",
+ "checkpoints": [
+ {
+ "id": "subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "ee46c03cf1b8",
+ "effects": []
+ }
+ },
+ {
+ "id": "snapshot",
+ "observation": {
+ "sender": [],
+ "payloads": ["0089ce68936d"],
+ "settlements": {
+ "mount": "eb79a9b3682a"
+ },
+ "state": "7b237e9824c8",
+ "effects": []
+ }
+ },
+ {
+ "id": "paging",
+ "observation": {
+ "sender": ["f5f160af6cda"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "7e8788afab15",
+ "effects": []
+ }
+ },
+ {
+ "id": "paged",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "re-subscribed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "0943a7b4b434",
+ "effects": []
+ }
+ },
+ {
+ "id": "replayed",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": ["0089ce68936d", "69073f8706af", "ba0534620d1c", "295fd9669abd"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ },
+ {
+ "id": "unmounted",
+ "observation": {
+ "sender": ["fea0c71c9357"],
+ "payloads": [
+ "0089ce68936d",
+ "69073f8706af",
+ "ba0534620d1c",
+ "295fd9669abd",
+ "9b20b74db998"
+ ],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "page": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "unmount": "eb79a9b3682a"
+ },
+ "state": "8f91342d7840",
+ "effects": []
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json b/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json
index 6e093d44625..8825d43c910 100644
--- a/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json
+++ b/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "46d80cfd496b06ce42ff1ed985e513bbf49b5188bc1128c6d01a74675741935a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-refused.json b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json
index 32ac44fc26f..1fc02ee4627 100644
--- a/mobile/rpc-foundation/goldens/native-chat-readability-refused.json
+++ b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "08a9ab4f180f2d6bb44d2a23f87be0443e8dfdde15f966458270a1bb6f131e0b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json b/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json
index 848a4e5b601..645ff1cd542 100644
--- a/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json
+++ b/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "0c6afb12dce2c402dfd7ac24eb4a306e09fcacc78415ecb47b5320b2fe8102b5",
"platform": "darwin",
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
index 9f2c9c2b039..2de03a39208 100644
--- a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-empty.json
+++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-empty.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "55f675f7d3f380db10dd966ae6d011927dbc7eb8f3abd36e09edf5043ad1131c",
"platform": "darwin",
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
index 53810c2328a..ca23916c95c 100644
--- a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-refused.json
+++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "57b60064eca4526e5d533de5862e7e86ba69b6722cd04692228bdc768486cd76",
"platform": "darwin",
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
index e4a1f713c11..ba0b868a710 100644
--- a/mobile/rpc-foundation/goldens/native-chat-session-option-pick-written.json
+++ b/mobile/rpc-foundation/goldens/native-chat-session-option-pick-written.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "a180b7ae1f84bc69d7819c7c17b1e2915cb380e8ea8543d68fe6777feb90d0bd",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json
index 47c8fce9a71..4398d44c637 100644
--- a/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json
+++ b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "a72f08c12c244912912be34deb3ec12bada6b74f1bc29c0034b347dcba9ddb10",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json b/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json
index eb26a2af250..0cf0f49820b 100644
--- a/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json
+++ b/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "a7419d4b3e00d49ebdac7db4fa97ad9d3af9516201f9102beed0376b181e74a5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json b/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json
index 3c4af8dd166..f4483821af1 100644
--- a/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json
+++ b/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "977ee5602e3a612d537686d17d15312f8b0e775df8800b27bb0d42b8642b4675",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-write-accepted.json b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json
index b5e7295ca97..3aa3011996b 100644
--- a/mobile/rpc-foundation/goldens/native-chat-write-accepted.json
+++ b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "3e8804f21d32370bb0bc48c4ea3d182748d48dc19d73de1b50005f18368566ba",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json b/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json
index 1cd43bfc902..7ffa4a1704e 100644
--- a/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json
+++ b/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "b8265928eefc167de59c64dc62ebe40635007a5f73c87ec8b6eb5e0f6dc0ce00",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json b/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json
index 0d5c945ffa6..006fc2daf9e 100644
--- a/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json
+++ b/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "22f7711ed82a4d56f1886a746838e3eb85c555c9069694ba3aa958e121cc1ee9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-write-rejected.json b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json
index de31d6ac645..46db034fc9e 100644
--- a/mobile/rpc-foundation/goldens/native-chat-write-rejected.json
+++ b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "7e05773966a18123aaae297aed9ac44bd841713de88c8a1fa30c31b324118f6f",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json b/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json
index 4329ab24b18..0ca350eb1c0 100644
--- a/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json
+++ b/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008",
"scenarioSha256": "a89ff803859c60e5645126de8b0f423807c435dcd856fe8825721f71f3b5bec5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json
index 428c00c0855..f2dd9bf87fa 100644
--- a/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa",
"scenarioSha256": "41ac47445191a24de5e48877478bdab6fd9c030f48024ea43e053de7b6b68bb5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json b/mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json
new file mode 100644
index 00000000000..f0d19b485fb
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json
@@ -0,0 +1,168 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "24f8c05639f82bc5e32abe3864c3d01a0589e295369028929fed2f0c684f1d0c",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "5359579cc62d": {
+ "running": true
+ },
+ "5c8c44134852": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": []
+ }
+ }
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ }
+ },
+ "recording": {
+ "scenario": "notifications-desktop-stream-closed",
+ "checkpoints": [
+ {
+ "id": "ready",
+ "observation": {
+ "sender": ["5c8c44134852"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "stopped",
+ "observation": {
+ "sender": ["5c8c44134852", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ },
+ {
+ "id": "not-replayed",
+ "observation": {
+ "sender": ["5c8c44134852", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": []
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json b/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json
new file mode 100644
index 00000000000..b86435420fe
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json
@@ -0,0 +1,263 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "0495c25d6e5d8a84fe4192d7aa0e2901fe86ede19ac9c4d72dee27da6694878b",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "0ac95f8a19be": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 2
+ },
+ "45cd4d574823": {
+ "name": "notifications.getMissedSince#2",
+ "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 2
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "58767661be83": {
+ "name": "notifications.subscribe#2",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 1
+ },
+ "5c8c44134852": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": []
+ }
+ }
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "8e41aa274dd7": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}",
+ "sent": 3
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "b00f677bd438": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-2"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-5",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "eadd531c1068": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 2
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "f3ce12403bbb": {
+ "name": "notifications.getMissedSince#2",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-4",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ "recording": {
+ "scenario": "notifications-desktop-stream-replayed",
+ "checkpoints": [
+ {
+ "id": "ready",
+ "observation": {
+ "sender": ["5c8c44134852"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "re-subscribed",
+ "observation": {
+ "sender": ["5c8c44134852"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "58767661be83"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "replayed",
+ "observation": {
+ "sender": ["5c8c44134852", "f3ce12403bbb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "58767661be83", "45cd4d574823"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["0ac95f8a19be", "eadd531c1068"]
+ }
+ },
+ {
+ "id": "stopped",
+ "observation": {
+ "sender": ["5c8c44134852", "f3ce12403bbb", "b00f677bd438"],
+ "payloads": [
+ "736ecc4aaa66",
+ "d6ca3d9d05d8",
+ "58767661be83",
+ "45cd4d574823",
+ "8e41aa274dd7"
+ ],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "cutover": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["0ac95f8a19be", "eadd531c1068"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/notifications-desktop-stream.json b/mobile/rpc-foundation/goldens/notifications-desktop-stream.json
new file mode 100644
index 00000000000..ed046922071
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream.json
@@ -0,0 +1,301 @@
+{
+ "operation": "notifications.desktop-stream",
+ "family": "notifications.desktop-stream",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4",
+ "scenarioSha256": "359add5203e68fcb85586f06babb694ee9d548e1dc58481e6d03871ab9f922cb",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "4b3d7f46bc5e": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "5359579cc62d": {
+ "running": true
+ },
+ "56d53341cbeb": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 0
+ }
+ },
+ "736ecc4aaa66": {
+ "name": "notifications.subscribe#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.subscribe\",\"params\":{\"includeDesktopSuppressed\":true}}",
+ "sent": 0
+ },
+ "75c17556f7cf": {
+ "name": "notifications.getMissedSince#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.getMissedSince"
+ },
+ {
+ "name": "params",
+ "value": {
+ "deliveredPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-2",
+ "notificationSeq": 8
+ }
+ ],
+ "lastSeenSeq": 9007199254740991
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationEpoch": "epoch-1",
+ "notificationId": "note-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ }
+ },
+ "7a2a12ad5565": {
+ "name": "notification-tray.dismiss",
+ "value": {
+ "identifier": "tray-2"
+ },
+ "sent": 1
+ },
+ "a0b2bcfcde77": {
+ "running": false
+ },
+ "a315c185b085": {
+ "name": "notifications.unsubscribe#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}",
+ "sent": 2
+ },
+ "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
+ },
+ "d6ca3d9d05d8": {
+ "name": "notifications.getMissedSince#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7},{\"notificationId\":\"note-2\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":8}]}}",
+ "sent": 1
+ },
+ "de9bc9ed43e5": {
+ "name": "device-store.setItem",
+ "value": {
+ "key": "orca:pushDismissalWatermarks:v1",
+ "value": "[{\"key\":\"[\\\"Yw3NKWbEM2aRElRI\\\",\\\"epoch-1\\\",\\\"note-2\\\"]\",\"seq\":8,\"expiresAt\":1767312000000}]"
+ },
+ "sent": 1
+ },
+ "e662892b594b": {
+ "name": "notifications.unsubscribe#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "notifications.unsubscribe"
+ },
+ {
+ "name": "params",
+ "value": {
+ "subscriptionId": "sub-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ }
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ }
+ },
+ "recording": {
+ "scenario": "notifications-desktop-stream",
+ "checkpoints": [
+ {
+ "id": "subscribed",
+ "observation": {
+ "sender": [],
+ "payloads": ["736ecc4aaa66"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "ready",
+ "observation": {
+ "sender": ["4b3d7f46bc5e"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": []
+ }
+ },
+ {
+ "id": "caught-up",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e"]
+ }
+ },
+ {
+ "id": "dismissed",
+ "observation": {
+ "sender": ["75c17556f7cf"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8"],
+ "settlements": {
+ "start": "eb79a9b3682a"
+ },
+ "state": "5359579cc62d",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "unsubscribing",
+ "observation": {
+ "sender": ["75c17556f7cf", "56d53341cbeb"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ },
+ {
+ "id": "stopped",
+ "observation": {
+ "sender": ["75c17556f7cf", "e662892b594b"],
+ "payloads": ["736ecc4aaa66", "d6ca3d9d05d8", "a315c185b085"],
+ "settlements": {
+ "start": "eb79a9b3682a",
+ "stop": "eb79a9b3682a"
+ },
+ "state": "a0b2bcfcde77",
+ "effects": ["bcdd9c902f5e", "c83340909a1e", "de9bc9ed43e5", "7a2a12ad5565"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json
index 70c5f093063..9d348618639 100644
--- a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json
+++ b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9",
"scenarioSha256": "e19c4ff95d568edbb5c0d6058eb17843be31bdfd528825985963f8ece8cbc652",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json
index 1008eecd409..c69613eb174 100644
--- a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json
+++ b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470",
"scenarioSha256": "ac2b214ece34dc25aef2b73d020e04343f81cd48b3d243508be92cfdba01eb45",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/notifications-push-registered.json b/mobile/rpc-foundation/goldens/notifications-push-registered.json
index f879a47617a..612776dfc66 100644
--- a/mobile/rpc-foundation/goldens/notifications-push-registered.json
+++ b/mobile/rpc-foundation/goldens/notifications-push-registered.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470",
"scenarioSha256": "90f49e430518bfc6e662da1d0c55b0084f30ab54dabdd15293b1f8ad9d2fa592",
"platform": "darwin",
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 899286d305d..9deaa3b2f5d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "e4fb7aa3b071c1207f206adcc0f31e92b6bb98a80f86a0772e48b5cebcab24ff",
"platform": "darwin",
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 3df02ad215a..3f5b1fdb231 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "5696ea2a62bb3f24902305f8bac0c4ae8f1e505f359db76fd69aabe353adae86",
"platform": "darwin",
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 6ac0572ee2d..6e4d075dad5 100644
--- a/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json
+++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "9ab72231bf97fbe7eed232019c56568a9411433835eae424628af62c7c6a10c1",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/pr-branch-identity.json b/mobile/rpc-foundation/goldens/pr-branch-identity.json
index 061a9864053..641c9211506 100644
--- a/mobile/rpc-foundation/goldens/pr-branch-identity.json
+++ b/mobile/rpc-foundation/goldens/pr-branch-identity.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 61b86fd3141..70f458fc8a0 100644
--- a/mobile/rpc-foundation/goldens/pr-branch-repo-context.json
+++ b/mobile/rpc-foundation/goldens/pr-branch-repo-context.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 be32c3a1b2c..4fac95a8de5 100644
--- a/mobile/rpc-foundation/goldens/pr-comment-mutation.json
+++ b/mobile/rpc-foundation/goldens/pr-comment-mutation.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c019808fa54..6bb4682e434 100644
--- a/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json
+++ b/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 404dda081f8..2223ec6d30f 100644
--- a/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json
+++ b/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bd1566c5b68..d988bede6e4 100644
--- a/mobile/rpc-foundation/goldens/pr-mutation-status.json
+++ b/mobile/rpc-foundation/goldens/pr-mutation-status.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6c7761f6476..444486028c6 100644
--- a/mobile/rpc-foundation/goldens/pr-read-fork-routing.json
+++ b/mobile/rpc-foundation/goldens/pr-read-fork-routing.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 fe76a268a32..5163cc01560 100644
--- a/mobile/rpc-foundation/goldens/pr-read-surface.json
+++ b/mobile/rpc-foundation/goldens/pr-read-surface.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9b38432aff5..15fdd815bda 100644
--- a/mobile/rpc-foundation/goldens/pr-read-upstream-error.json
+++ b/mobile/rpc-foundation/goldens/pr-read-upstream-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 2ceb6cfafe5..bef4c423911 100644
--- a/mobile/rpc-foundation/goldens/pr-title-mutation.json
+++ b/mobile/rpc-foundation/goldens/pr-title-mutation.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8da0e3f0286..9bbc421e90d 100644
--- a/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json
+++ b/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0ff3cc4a8d5..d63b7575db7 100644
--- a/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json
+++ b/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6a35065abf5..b13a85c2f7a 100644
--- a/mobile/rpc-foundation/goldens/pr-triage-launch.json
+++ b/mobile/rpc-foundation/goldens/pr-triage-launch.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 271a1bbd29c..54b9bc0b9c1 100644
--- a/mobile/rpc-foundation/goldens/pr-triage-send-locked.json
+++ b/mobile/rpc-foundation/goldens/pr-triage-send-locked.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 35147d7ef0c..436e1b32d53 100644
--- a/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json
+++ b/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 53bc43d263a..50c559d6f91 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 214124c0ddb..5fae96430a4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 0b17b2b50f3..3ea8d06b15a 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 144a4c5ea1d..aa37b92cf34 100644
--- a/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json
+++ b/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524",
"scenarioSha256": "318fab8c1efb1786bbdaea7f13b769952c1ce463bc5504dca6a9f545e905b7c9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/quick-commands-load-refused.json b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json
index e8c1c0c6ad0..8799f284cda 100644
--- a/mobile/rpc-foundation/goldens/quick-commands-load-refused.json
+++ b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "42573387533f75122f626ce6ec81c1e61fe54cde5df416154bb7cba132f53309",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json b/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json
index cb91f3d34d7..86382898e26 100644
--- a/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json
+++ b/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "a621156bbb662c78a0baa356b60d0af41d10a7bd14e54f23be0581a59377cec3",
"platform": "darwin",
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
index 90806018e35..a5743dd6e48 100644
--- a/mobile/rpc-foundation/goldens/quick-commands-save-refused-rolls-back.json
+++ b/mobile/rpc-foundation/goldens/quick-commands-save-refused-rolls-back.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "72517336e451e1e078135103073c1821e8af27c0702f6dc83b9a686fe7ff8c04",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json
index 3cea79791bb..77235b72ace 100644
--- a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json
+++ b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "a92bccd183127829b6dfd85add28e42370d54990f63214940b1c584f7fde56a9",
"platform": "darwin",
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 f2865abeb08..e636377ee91 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "7d5cad367e76767b039fc5ebc15837930f02c5e1bed33ae7ca4695bae56287bd",
"platform": "darwin",
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 37613020e07..874219d108e 100644
--- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json
+++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "8dc3fd27c5720276608ca8743990e4f57d94eab84f620e9aa42702a4686fd5a9",
"platform": "darwin",
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 e5fd14c7638..7630b1d5969 100644
--- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json
+++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197",
"scenarioSha256": "7e54c3af4b8b8e6eac007267fb96620283b735491883c505401c79656d920ca6",
"platform": "darwin",
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 90c00e3b9b8..2496d16ba95 100644
--- a/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json
+++ b/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "c786fb19f9593ee60238e42813561edf6f5e976fcf217dff8de977a333fe8451",
"platform": "darwin",
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 20474cd77a5..e78c91495e7 100644
--- a/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json
+++ b/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2",
"scenarioSha256": "96df784c1d56de3bdd04afe20ab019339c7d9a616528ca2617e2fffe4f0157c8",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-create-terminal-refused.json b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json
index 2b5d74d44a9..2f04d53fc46 100644
--- a/mobile/rpc-foundation/goldens/review-create-terminal-refused.json
+++ b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "af837de2e273c5f03130b51d6e1a9bff9ff99a4e8d1c9554a53134acb5924c72",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json
index fc7fb0021cd..768c4029255 100644
--- a/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json
+++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "9f1c39e91a97266b0a550d2b2d061592ae050078401ef23177dd2e00db67bf04",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json b/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json
index 19940d0fe41..2c5550cb592 100644
--- a/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json
+++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "c858cfca59148548146b4c0a775e9518d3ab826ef268ccc9af60b04e52cc9e3d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-open-in-session.json b/mobile/rpc-foundation/goldens/review-open-in-session.json
index eece03b5112..d2c2ec77665 100644
--- a/mobile/rpc-foundation/goldens/review-open-in-session.json
+++ b/mobile/rpc-foundation/goldens/review-open-in-session.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "2f0a6aa8ce100edbce9ccf64c81efe64356fccbdcd2e16f561360e2b11b5700f",
"platform": "darwin",
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
index be54dcc1de2..b55453435b6 100644
--- a/mobile/rpc-foundation/goldens/review-send-notes-heals-stale-input.json
+++ b/mobile/rpc-foundation/goldens/review-send-notes-heals-stale-input.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "7099d7311b2046dde21a2750201718995c0869bc4f17fb7f3ce2b997ce0e6506",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-stage-file.json b/mobile/rpc-foundation/goldens/review-stage-file.json
index ffbf7000ff2..28c5f2a90b1 100644
--- a/mobile/rpc-foundation/goldens/review-stage-file.json
+++ b/mobile/rpc-foundation/goldens/review-stage-file.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "793e954960d371c6477d4cd3d70a5215c0bd90764684eafdb1e1a2e09790cc86",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/review-stage-refused.json b/mobile/rpc-foundation/goldens/review-stage-refused.json
index dfbf2b415f8..3100600c945 100644
--- a/mobile/rpc-foundation/goldens/review-stage-refused.json
+++ b/mobile/rpc-foundation/goldens/review-stage-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f",
"scenarioSha256": "46b720fed417d29f79dbde4cc7941579f2d6a2f920bae24234537480079e7de5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-default.json b/mobile/rpc-foundation/goldens/sc-base-ref-default.json
index dbffa6d35c1..ae034ef3da0 100644
--- a/mobile/rpc-foundation/goldens/sc-base-ref-default.json
+++ b/mobile/rpc-foundation/goldens/sc-base-ref-default.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f4ed44410c9..501f0e0c27d 100644
--- a/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json
+++ b/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 895cf086da1..f3740e252e2 100644
--- a/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json
+++ b/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 89c3e912032..ce443dd36b8 100644
--- a/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json
+++ b/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e42df77d058..64d703f4958 100644
--- a/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json
+++ b/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 89def744792..937e741caf1 100644
--- a/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json
+++ b/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ea4d8a461d1..3d66283a6ba 100644
--- a/mobile/rpc-foundation/goldens/sc-commit-message-generated.json
+++ b/mobile/rpc-foundation/goldens/sc-commit-message-generated.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6239b2a56c7..4c85954cdb1 100644
--- a/mobile/rpc-foundation/goldens/sc-create-existing-review.json
+++ b/mobile/rpc-foundation/goldens/sc-create-existing-review.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 11832c16d54..1ced714a19d 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "447f9b3d697dbfe21cb7fb6e12d1bf5fa94b023b7e1697bdc2dc82ce7072183f",
"platform": "darwin",
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 0e6c5fed16e..94afe21a322 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bdafe36a1f7..ecf2a6e84c2 100644
--- a/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json
+++ b/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 82d3eb80d38..056ec7541bb 100644
--- a/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json
+++ b/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ac3cf65bcda..2234220ac99 100644
--- a/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json
+++ b/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c641261f517..d921046b664 100644
--- a/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json
+++ b/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f0c9ecc1a67..ae487a8b10e 100644
--- a/mobile/rpc-foundation/goldens/sc-history-loaded.json
+++ b/mobile/rpc-foundation/goldens/sc-history-loaded.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1a022069d09..ed442b6edf7 100644
--- a/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json
+++ b/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e667845db2d..e5165f69d44 100644
--- a/mobile/rpc-foundation/goldens/sc-pr-link-read.json
+++ b/mobile/rpc-foundation/goldens/sc-pr-link-read.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f7ed0c21a82..5b1f2b0abb8 100644
--- a/mobile/rpc-foundation/goldens/sc-pr-link-set.json
+++ b/mobile/rpc-foundation/goldens/sc-pr-link-set.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 10030d06258..3d4bb2efb6f 100644
--- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json
+++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e28c31f3d3b..0dcf3642bd1 100644
--- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json
+++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 81476f557c8..3fa3e6d9502 100644
--- a/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json
+++ b/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "ec2847b4af357d8564d8e0a9a1072713c1afd7ff86ba69e9c83c056a6841ee39",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json
index c0eed9908b5..ad471d5a7a6 100644
--- a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json
+++ b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "6cf6ebd20adc4cc76a12d3424863ee9db2b24f36593664a1f4e0e05de9a53d39",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json
index d5a641804b0..83299697451 100644
--- a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json
+++ b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f",
"scenarioSha256": "e6e8197a541cd73e5811a1f28b0dbfc414a4d34c1ae6929fc1bbae1213820674",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json
index 782c4eef8ae..cc22643a7bb 100644
--- a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json
+++ b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f96d1beecbe..8f23795ed50 100644
--- a/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json
+++ b/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e4f8d5f10c4..a3644643ecf 100644
--- a/mobile/rpc-foundation/goldens/sc-reveal-timeout.json
+++ b/mobile/rpc-foundation/goldens/sc-reveal-timeout.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 5b0d5207ab9..60575cd174e 100644
--- a/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json
+++ b/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 195dba4b243..288aaf92b55 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1b872dd60fa..49318a8b643 100644
--- a/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json
+++ b/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f8fff87190f..e10d917b27d 100644
--- a/mobile/rpc-foundation/goldens/sc-review-commit.json
+++ b/mobile/rpc-foundation/goldens/sc-review-commit.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 aca33c03143..64f791f5807 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1bcd696cb7d..348d609b42c 100644
--- a/mobile/rpc-foundation/goldens/sc-review-status-normalized.json
+++ b/mobile/rpc-foundation/goldens/sc-review-status-normalized.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 dc1e41c320a..9c3461add73 100644
--- a/mobile/rpc-foundation/goldens/schedules-b3.json
+++ b/mobile/rpc-foundation/goldens/schedules-b3.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "b59fb599dd3a5fbc79bb8602dcec4b1c51a392c662efab7efc8324fc718ce8de",
"platform": "darwin",
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 680402939d6..426bd78e11b 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "fbd311a377672a9335521c30734880eea1b04bab0aff367854c1deebcf66b105",
"platform": "darwin",
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 b28d83c0553..ec3824cdbd8 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 57d4650ca82..a467d37b5e6 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "664eba1468e229f9ac2dced262e7ad896ead01688dff4c570f397c3f8594efd7",
"platform": "darwin",
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 144bebf38c2..3e5686dcf20 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c18f4aa119c..67bf41b72ac 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "02e3ca10296704b5478185e9d3dc0136596a2ee57580d7f9268672568dab4cd4",
"platform": "darwin",
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 ed236a25cfb..ad9164aaf0b 100644
--- a/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index 372cacd36ae..eee6b5a7703 100644
--- a/mobile/rpc-foundation/goldens/session-create-browser-refused.json
+++ b/mobile/rpc-foundation/goldens/session-create-browser-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "59b5f0aac2f8c1aab5fc3a457fb69e1a2f46cc88c617c25e638175acb7f7c0cb",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-create-browser-tab.json b/mobile/rpc-foundation/goldens/session-create-browser-tab.json
index cfdfa32185c..13842a3d0ea 100644
--- a/mobile/rpc-foundation/goldens/session-create-browser-tab.json
+++ b/mobile/rpc-foundation/goldens/session-create-browser-tab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "36dbd24dc3d24be8c14217ced1963d10ef8264438729dd146cbff79d9fbdf279",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json b/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json
index 9068d2cf52f..b5e4a5391f1 100644
--- a/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json
+++ b/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "be8d4b4be07b0ee5988471b26813d7d0d2a97fbd789b52e7ce00dd09a2e9d75c",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-create-markdown-note.json b/mobile/rpc-foundation/goldens/session-create-markdown-note.json
index 3596bf45e16..b683fabcd5f 100644
--- a/mobile/rpc-foundation/goldens/session-create-markdown-note.json
+++ b/mobile/rpc-foundation/goldens/session-create-markdown-note.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "4118eea1175cba0f15174072f5715f9054ded09a4cb0c359fc4ee41ad00e9440",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json b/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json
index 813986a4593..e98ee2c11f7 100644
--- a/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json
+++ b/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "5ab16800f82813778078e84739e0ac72886c145d20789dedcea9428ee31b9182",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json
index c065921c953..6d74db5ee9e 100644
--- a/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json
+++ b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "795286ff495a243059a3eb55ccbbc9b4adfdd2034258f91f9182e83c7492fa60",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-file-tab-read.json b/mobile/rpc-foundation/goldens/session-file-tab-read.json
index b82865c5e25..87d20cc5d23 100644
--- a/mobile/rpc-foundation/goldens/session-file-tab-read.json
+++ b/mobile/rpc-foundation/goldens/session-file-tab-read.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "82c1d8e87e0a87c1c1a6dba7bd4f61e08f77fe0ae1b3758d1b5543bd9719a53f",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json
index d3c80f51706..7f7d8861668 100644
--- a/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json
+++ b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "76bccdabb78dc3f16b36987f6b7cefbe41e08167fe39612620e27ad476089f93",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-markdown-saved.json b/mobile/rpc-foundation/goldens/session-markdown-saved.json
index 2936259eb93..8fdc3df4746 100644
--- a/mobile/rpc-foundation/goldens/session-markdown-saved.json
+++ b/mobile/rpc-foundation/goldens/session-markdown-saved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2",
"scenarioSha256": "a2b5b73b2455f9efc48361e4b96ab1d3ecc3d136459403c9c3678104604cd774",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json b/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json
index d11a8b880b8..c77b0cc12ef 100644
--- a/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json
+++ b/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "f46cef9d1c6a5ed6d8b6f1d180cdf5c666f52e043b70feb07e5fccee885ceeda",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-read.json b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json
index ae55f7a19c1..7c219845101 100644
--- a/mobile/rpc-foundation/goldens/session-markdown-tab-read.json
+++ b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "f88c39d410655b229aa740b45ccdaa10186f41f7c6cbff9fed6eaee3f0a55844",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json
index ec691a189ca..673d3de7841 100644
--- a/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json
+++ b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "63227f28110e90acac78058baa875b1bc7f8895b5033e47016a2ffa9f42f66ce",
"platform": "darwin",
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
index 98acf6e61bf..ce96a8d3031 100644
--- a/mobile/rpc-foundation/goldens/session-tab-activation-focus-and-activate.json
+++ b/mobile/rpc-foundation/goldens/session-tab-activation-focus-and-activate.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "72a972996461cc58bda2b1c11dbb4ecdbdecd5ff2f977c3d61e40d635f63c1b9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-refused.json b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json
index 8c0f1449a7e..9f33137db99 100644
--- a/mobile/rpc-foundation/goldens/session-tab-activation-refused.json
+++ b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "e5049c9ee2aef93194adf1b9540c1eb4b085e6f975648c5ed605718d19fc6afa",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json b/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json
index 569269c1048..d74279591b3 100644
--- a/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json
+++ b/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "44e25e8624c6d7f072c5f7aa3c706df29d0e751bb59b3fb58bec003233f7e5e3",
"platform": "darwin",
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
index 51e285d8866..4d5b10c03e3 100644
--- a/mobile/rpc-foundation/goldens/session-tab-close-refused-keeps-tab.json
+++ b/mobile/rpc-foundation/goldens/session-tab-close-refused-keeps-tab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "1b3da0207aef65f4b2348aed334284259170c640e767fb354b9e95f3c1369445",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json b/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json
index cdbc2e0f166..7451a59e9ef 100644
--- a/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json
+++ b/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "fe83a7d50d08f874d863eb8872bcb24d974c1dc46571a93d3f9184f8feba63a4",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tab-close-terminal.json b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json
index 4267f0dd135..eb2bcefadd6 100644
--- a/mobile/rpc-foundation/goldens/session-tab-close-terminal.json
+++ b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "194b010d00fdeca85418870fd053ac500c38cae02e98c4bfc544b8fea78bbcb8",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tab-rename.json b/mobile/rpc-foundation/goldens/session-tab-rename.json
index 38c348f1167..48c5210c2d4 100644
--- a/mobile/rpc-foundation/goldens/session-tab-rename.json
+++ b/mobile/rpc-foundation/goldens/session-tab-rename.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815",
"scenarioSha256": "9e877af8539e5425f65edd6b3ff8af73e719aae2033980411a8e8a3b508dcd9e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-errored.json b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json
index fcc0e5ca517..6a764e2de7d 100644
--- a/mobile/rpc-foundation/goldens/session-tabs-health-errored.json
+++ b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "4f55a21a5c42ff8d96ccb1b16de235f91f9f7e38fe90de7191c36c8c16cc4e43",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json
index 021117b3108..3de4c71a42d 100644
--- a/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json
+++ b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "29bee268df8e92fb1e3fd59291262c8d2d04a1b7e9fe40f6ed8dd181b0df828a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-refused.json b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json
index 0b2afdb8248..2f8d951107e 100644
--- a/mobile/rpc-foundation/goldens/session-tabs-health-refused.json
+++ b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "101e8ce865088891800680db0e3df787b5f15ceb05ace9840931c384d9732d1c",
"platform": "darwin",
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
index bd9830f419e..85bb735bbc9 100644
--- a/mobile/rpc-foundation/goldens/session-tabs-health-stale-application-revision.json
+++ b/mobile/rpc-foundation/goldens/session-tabs-health-stale-application-revision.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0",
"scenarioSha256": "5381b6ade796596ac362d4ed64349266e65fe8fd2b4fc778a54315d4b6fda3da",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json b/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json
index 658c4934418..4d0eb0fabaf 100644
--- a/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json
+++ b/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "d0f5ecc9c8fcb10193f481648215a54460ce5a54a8fbd2ded3921a9599fefc0a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json b/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json
index f9124ff603e..430438479ea 100644
--- a/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json
+++ b/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "5c2b3237a14f9df9357ab458b2e21f2df8e68ad6bf6dc5670c0ace7eeb567e80",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-merged.json b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json
index 937b95b4d54..db082718ddc 100644
--- a/mobile/rpc-foundation/goldens/session-terminal-list-merged.json
+++ b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "9f3fb6e58e8d9ef4f52b2b6c0a42b6e4285d5786060f966261795cf64d055f65",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-refused.json b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json
index 9950472b4fe..8715e263d3f 100644
--- a/mobile/rpc-foundation/goldens/session-terminal-list-refused.json
+++ b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95",
"scenarioSha256": "10a8ba5332f4fc2f90cff537ca69f2f1474339cbc4996f67a6feaea70669fb25",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json
index 280ba09d19c..8436dae7ce4 100644
--- a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a0e0132e38f..44ea0ace386 100644
--- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 98d54fe8627..d1ccc5f59ec 100644
--- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 92eb3dc4794..2a9f9c8c6ed 100644
--- a/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1e2c5ec178d..efeec393cf5 100644
--- a/mobile/rpc-foundation/goldens/settings-home-coalesced.json
+++ b/mobile/rpc-foundation/goldens/settings-home-coalesced.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "d8d6f738ee11d84d6e9e546624f4babcb42476432f6bddbc74e8519d9ca18370",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json
index 7b945ef1133..4604aea4d1a 100644
--- a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "a32b2fc99e830c58460e6f7c857aed0048738a55501e508eb236604680b9c235",
"platform": "darwin",
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 55fd2c550aa..1114e66bbfd 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "78c48025c4af6cc0f1f136448c0ede9f76b7485d7b33b1356d11dec017bd9053",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json
index ce68e6b2bb7..55bf0c3a258 100644
--- a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "c22f33a0ed28622d4d53ae31e934056f87d2c10e8dc4475831ae1ee5fd3a9b8b",
"platform": "darwin",
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 887eda9db0b..f21e2b8d20d 100644
--- a/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "4f16b43dddfb9257828342b0297317868df24b03fd98a89c66f5cd1897829d73",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json
index fdbd92fe761..3fb65a09d4e 100644
--- a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 847a7cbee55..58dfed91a16 100644
--- a/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json
+++ b/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 42c477e9d59..84e10c796fd 100644
--- a/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 d6520bf7b70..dfdfdf8e758 100644
--- a/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json
+++ b/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "adebd553e2648278d719a1d7299cb36683fce714682a1ab7b49d4c9027eea34e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json
index 06b69a885ee..b3ddd89e6d0 100644
--- a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "b45eba2007e8e2668f524cd7503b8a711eba67816c9c35af5c3725a1afe32d8d",
"platform": "darwin",
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 0f0f8d4658e..e2a0eb4d4a0 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "b1c0b957b828c32e7ec388ec6668273fe84bbe5d11d8286b9a246fa92395a26e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json
index 16b69d2d905..bdbfe06f604 100644
--- a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "867b6905c8a533ddd1c7c8174bf4aadd5fd725cc72bdddbcb2ea8af26e219078",
"platform": "darwin",
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 50ba55b3459..eec3ca4f132 100644
--- a/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json
+++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "d8a00a72849f1ed254c3b35ebcc330dd1bb15b189f006bd1517853a19e53de6c",
"platform": "darwin",
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 5c864dab639..57125a9354d 100644
--- a/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "741db13a84dbcec2e97e80605d742e69558954657c72f8450f3f8bc177dd01b6",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json
index b6ce3cb4eee..4a47f741836 100644
--- a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 7bb90d983bd..152e59e3af2 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 47384e8425a..5ace70ee1bc 100644
--- a/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 44306021e90..d25fa774f54 100644
--- a/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 42d76dea018..31a8146e42b 100644
--- a/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "c08cce5d1f71761dbf504863b736e5546abb42b9ff4ab8ced65c7c42e3d66c0e",
"platform": "darwin",
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 fe9ad7f45e9..4217ae35398 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "b23c3076081901c89e8a8fb8d20028e03f030db040c9cd793b6f2c7cd49d8f25",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json
index 8a1b8238b27..f28f4ddf504 100644
--- a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "a510ff7505cddbd6dad3c7e5a2dcde206a5dab1940901511d72c97aca576a6f1",
"platform": "darwin",
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 bde3095c021..c4c86487f5d 100644
--- a/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0",
"scenarioSha256": "d4a2fef3aefb78bdb4aed94fda982124f24a3af3832227654d324735f44aaeeb",
"platform": "darwin",
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 98a9f451543..1254c61f97d 100644
--- a/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json
+++ b/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "662c3e04e31bce5757f09f91e3e3739fb9d57767b7443be4dc936705b64b1432",
"platform": "darwin",
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 c601bc14678..0e0fb2e5288 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "8ae9e1dbb32d404eac9e01f71dacf1c37497030220a8e988c0093bb7ed2d159b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json
index f65f7f8f0f3..7bf6e78a159 100644
--- a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "5c4c890e4c71e80fa8847a5e29700fc9df3ac3bd634bad6289db37522fadd621",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json
index d43ff47b796..7e73ba17094 100644
--- a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "a699a0a5b128fa422dab0c7557b5aa18599b2d23fa6685cdcc02e17edf328af1",
"platform": "darwin",
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 fc6416118c1..e0c8808b8e7 100644
--- a/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "a5e812cd508826b3f01ec3798c621ab4303de6536a364113f01a4770dd197bb5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-task-write.json b/mobile/rpc-foundation/goldens/settings-task-write.json
index cf8af60cfbf..434683fd903 100644
--- a/mobile/rpc-foundation/goldens/settings-task-write.json
+++ b/mobile/rpc-foundation/goldens/settings-task-write.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab",
"scenarioSha256": "bbcdefe16b07068a81f3c46ae60df01ccb0fbe5a7c1eade3f584f6f0130c23fe",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json
index b303173550d..c5214667023 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 75112ded8cf..17a5ea57c9e 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 73a6dfafd24..f715fa8abbb 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c03d2f929dd..8c59e433904 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bf6f787e1ac..33f33b799e8 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "b10ff86086c134284cb0446e8857cd4b55f5ff2bd0507388ec659a95f25e2a19",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json
index bd251d03ccf..565b38f2d1c 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "373ea3743dac4e0845df01d5c8f75c909563b8c517f3858293a478234dc9ca5c",
"platform": "darwin",
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 c386390b1fe..b6c7ea80b41 100644
--- a/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json
+++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599",
"scenarioSha256": "dfbacbd6392ae8e8199550952fe917e7c01182349df6c99a06eb0682cfd9175c",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json
index 4109f1af981..8afa0031b5f 100644
--- a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json
+++ b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 58bc3b9676e..c99058566c3 100644
--- a/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b",
"scenarioSha256": "35fadd03f2c98344e22d6aec2dc85ad15ca5ac8e092fc1c29a20366db5d46628",
"platform": "darwin",
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 dae94d4acc5..d9cb5dbc217 100644
--- a/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json
+++ b/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b",
"scenarioSha256": "75b8d1b7ed98b2bf7420986958d0a36222b007c535f85c1308b534301241ec2d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json
index f981332458d..e386fbd53ab 100644
--- a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json
+++ b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f96bf75b602..bd0564a67b5 100644
--- a/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json
+++ b/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 97544d156b6..49fd10a6aa0 100644
--- a/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json
+++ b/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 1e11dffa6ae..3144944483b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 29ee436b5b5..982fe2ddddf 100644
--- a/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json
+++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e6049326755..04683fedc9f 100644
--- a/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json
+++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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
index bd1b22126c1..f6677e62e4e 100644
--- a/mobile/rpc-foundation/goldens/structured-launch-created.json
+++ b/mobile/rpc-foundation/goldens/structured-launch-created.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "0b5dd55868490e4d62d7d718821dec9634773b20d32fe9889523606a3f6b9168",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json
index 87a9e74ff08..f11eb9fefbb 100644
--- a/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json
+++ b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "64916f2d8ab51132b08c3e8c72f89c3a2698d83945def294f42edf22eb6d08ea",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json b/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json
index 8d286a8f73e..b9d21ff521d 100644
--- a/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json
+++ b/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "fb1ab1209f0a7c03ee1b3985401ce2df080d673532f045c4fca26e754d5e5a9f",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/structured-launch-support-refused.json b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json
index 1274bc56125..4d5fbb06736 100644
--- a/mobile/rpc-foundation/goldens/structured-launch-support-refused.json
+++ b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "d8928461e3295d265872e5f98fb8aad445b5edc55fc76f137e45c0cff0d8b961",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/structured-launch-unsupported.json b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json
index 497c8f8f9f4..8094b007832 100644
--- a/mobile/rpc-foundation/goldens/structured-launch-unsupported.json
+++ b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6",
"scenarioSha256": "c30e9cae49e134715c009a98f423f3e4a9d552c014be3e28b38e98c57999b6f5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tasks-route-repo-list.json b/mobile/rpc-foundation/goldens/tasks-route-repo-list.json
index 9df5c7cbdca..309eca35f57 100644
--- a/mobile/rpc-foundation/goldens/tasks-route-repo-list.json
+++ b/mobile/rpc-foundation/goldens/tasks-route-repo-list.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8",
"scenarioSha256": "b62ca571d4defcc2e53960033c5b4eb3f7e406b57664664cbc6a173041a9f803",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json b/mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json
new file mode 100644
index 00000000000..bae0c091ac4
--- /dev/null
+++ b/mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json
@@ -0,0 +1,374 @@
+{
+ "operation": "session.terminal-gesture-input",
+ "family": "session.terminal-gesture-input",
+ "namedDeltas": [],
+ "runnerVersion": 1,
+ "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
+ "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
+ "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472",
+ "scenarioSha256": "97e6d63c6b4bc154e94be6cf3dcd25620b4656cacd2b62cdc872ff793b39ebd2",
+ "platform": "darwin",
+ "scenarioVersion": 1,
+ "projectionVersion": 2,
+ "goldenFormatVersion": 5,
+ "values": {
+ "02fc3d4e513f": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "0cc3e25ebff5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "204da356c8b7": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "$rpc": "undefined"
+ }
+ },
+ "2bd49718b873": {
+ "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": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-2",
+ "ok": true,
+ "result": {
+ "reported": true
+ }
+ }
+ }
+ },
+ "3117ca4e2f5f": {
+ "name": "terminal.send#1",
+ "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[<64;10;5M\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}",
+ "sent": 1
+ },
+ "3d116029b0b8": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-1",
+ "ok": true,
+ "result": {
+ "send": {
+ "accepted": true
+ }
+ }
+ }
+ }
+ },
+ "4c855008c56d": {
+ "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[<64;10;5M"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "failWhenDisconnected": true
+ }
+ }
+ ],
+ "settlement": {
+ "status": "pending",
+ "startedAt": 16
+ }
+ },
+ "819a7382ac8e": {
+ "name": "toast",
+ "value": {
+ "durationMs": {
+ "$rpc": "null"
+ },
+ "message": "Terminal cleared"
+ },
+ "sent": 3
+ },
+ "839dec95ae1c": {
+ "status": "pending",
+ "startedAt": 16
+ },
+ "93092a2f06c5": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": false,
+ "queuedBytes": "\u001b[<64;10;5M",
+ "queuedSequences": 1
+ },
+ "b139ed2905d3": {
+ "name": "orchestration.workerTerminalUserInput#1",
+ "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 2
+ },
+ "bf25f1d5c346": {
+ "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": 16
+ }
+ },
+ "caa6ece1bdab": {
+ "bucketTokens": 63,
+ "crash": {
+ "$rpc": "null"
+ },
+ "inFlight": true,
+ "queuedBytes": {
+ "$rpc": "null"
+ },
+ "queuedSequences": {
+ "$rpc": "null"
+ }
+ },
+ "cbb9e8ae954a": {
+ "name": "terminal.clearBuffer#1",
+ "args": [
+ {
+ "name": "method",
+ "value": "terminal.clearBuffer"
+ },
+ {
+ "name": "params",
+ "value": {
+ "terminal": "terminal-1"
+ }
+ },
+ {
+ "name": "options",
+ "value": {
+ "$rpc": "absent"
+ }
+ }
+ ],
+ "settlement": {
+ "status": "fulfilled",
+ "startedAt": 16,
+ "settledAt": 16,
+ "value": {
+ "id": "frame-3",
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ }
+ },
+ "d21f2e78ad50": {
+ "name": "terminal.clearBuffer#1",
+ "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.clearBuffer\",\"params\":{\"terminal\":\"terminal-1\"}}",
+ "sent": 3
+ },
+ "eb79a9b3682a": {
+ "status": "fulfilled",
+ "startedAt": 0,
+ "settledAt": 0,
+ "value": {
+ "$rpc": "undefined"
+ }
+ }
+ },
+ "recording": {
+ "scenario": "terminal-gesture-flush-and-clear",
+ "checkpoints": [
+ {
+ "id": "queued",
+ "observation": {
+ "sender": [],
+ "payloads": [],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "93092a2f06c5",
+ "effects": []
+ }
+ },
+ {
+ "id": "flushing",
+ "observation": {
+ "sender": ["4c855008c56d"],
+ "payloads": ["3117ca4e2f5f"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "caa6ece1bdab",
+ "effects": []
+ }
+ },
+ {
+ "id": "sent",
+ "observation": {
+ "sender": ["3d116029b0b8", "bf25f1d5c346"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "reported",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "clearing",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "02fc3d4e513f"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "839dec95ae1c"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": []
+ }
+ },
+ {
+ "id": "cleared",
+ "observation": {
+ "sender": ["3d116029b0b8", "2bd49718b873", "cbb9e8ae954a"],
+ "payloads": ["3117ca4e2f5f", "b139ed2905d3", "d21f2e78ad50"],
+ "settlements": {
+ "mount": "eb79a9b3682a",
+ "gesture": "eb79a9b3682a",
+ "clear": "204da356c8b7"
+ },
+ "state": "0cc3e25ebff5",
+ "effects": ["819a7382ac8e"]
+ }
+ }
+ ]
+ }
+}
diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json
index a1b1de2f7a9..35af6437017 100644
--- a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json
+++ b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "7cdbf3308411ed6764cc1cdcc0f663a27ddc9390fcc329c49fad4b27cb5a7fd5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-refused.json b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json
index f1ebda13eda..23d6e61d1ca 100644
--- a/mobile/rpc-foundation/goldens/terminal-input-send-refused.json
+++ b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "eb5e47e3accccc7ca280ca029f97405905b0cee8a05afb9ef15448314041d9d4",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json
index e1842686522..8014a160064 100644
--- a/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json
+++ b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "391a4f681443f099e6ea4417811d82d730242dfe07e21f74b0ad49a98bcd7c81",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-paste-accepted.json b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json
index 75c9e928e32..a5a371e8f50 100644
--- a/mobile/rpc-foundation/goldens/terminal-paste-accepted.json
+++ b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "48bb495de3b54f2b2edc0543f0f232ff4fd6068d5aca34d005766ebacbb078c9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-paste-refused.json b/mobile/rpc-foundation/goldens/terminal-paste-refused.json
index 0e56981b022..d9c9642e1bb 100644
--- a/mobile/rpc-foundation/goldens/terminal-paste-refused.json
+++ b/mobile/rpc-foundation/goldens/terminal-paste-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "78e62b9125252accc7f6d2ce772b93c84a917b01d2df308c1f9fb163d9127665",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json
index ba5313d220e..079a00faed0 100644
--- a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json
+++ b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 7ab9443369a..ec39f8021d3 100644
--- a/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json
+++ b/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 55fbeed6992..bd816017402 100644
--- a/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json
+++ b/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 fcb8344fb8f..11f1ae4d7e2 100644
--- a/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json
+++ b/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 873eb631159..555aca96c0b 100644
--- a/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json
+++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 5272b8db3d8..04f90d106bb 100644
--- a/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json
+++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 534e00f9183..48a8f8767a4 100644
--- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json
+++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f",
"scenarioSha256": "f966c2ef2e747a5231f423147ddaf38458cb08c719434b274016a5e4abc10771",
"platform": "darwin",
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 87df22cebed..b7b6d435684 100644
--- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json
+++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f",
"scenarioSha256": "88961a369cb7a7fa92708bb83aa7f818e904018e8cfcedc2f50ef9a0058c8b9d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json
index fed2e42d788..81057d66bc0 100644
--- a/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json
+++ b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86",
"scenarioSha256": "f921c4a764cdf7a4c1df0a7ec618d7c3b1d8a05ee4baa42d66f3bc0d95b3f550",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-create-github.json b/mobile/rpc-foundation/goldens/tk-create-github.json
index b47408a6391..5a35a2ecaf8 100644
--- a/mobile/rpc-foundation/goldens/tk-create-github.json
+++ b/mobile/rpc-foundation/goldens/tk-create-github.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "260a84280f69c43ac582149d9befe6ae547b2ad2b5f56a181d8e3a1314a0a071",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-create-gitlab.json b/mobile/rpc-foundation/goldens/tk-create-gitlab.json
index 07005230fcc..4e0cca02a07 100644
--- a/mobile/rpc-foundation/goldens/tk-create-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-create-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "a4d3d1f322d49593056bd20f4122bbf0309d2161123e404161950bcab65decd5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-create-linear.json b/mobile/rpc-foundation/goldens/tk-create-linear.json
index d28f3571db2..96db4cc19f8 100644
--- a/mobile/rpc-foundation/goldens/tk-create-linear.json
+++ b/mobile/rpc-foundation/goldens/tk-create-linear.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "f6c7eea985190d9edeead5b36f90c8aa98679f69d19dab7579fec88841645259",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-checks-files.json b/mobile/rpc-foundation/goldens/tk-item-checks-files.json
index f33e44f2952..e121126216a 100644
--- a/mobile/rpc-foundation/goldens/tk-item-checks-files.json
+++ b/mobile/rpc-foundation/goldens/tk-item-checks-files.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "15de2c1dd80a591a5e27d50664ff21d4e71442c711fc3bbdf7d1f95f499cf04c",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-github.json b/mobile/rpc-foundation/goldens/tk-item-comment-github.json
index 12e070f654b..ed91f8e8a8c 100644
--- a/mobile/rpc-foundation/goldens/tk-item-comment-github.json
+++ b/mobile/rpc-foundation/goldens/tk-item-comment-github.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "fb0cdff9e02bac37b0bd8e1c47922474823d46fa735f3069ed70cdad41800be6",
"platform": "darwin",
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 3b50df7b19d..579c68c4923 100644
--- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json
+++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "cb696d402b8af2b9a54d4d6f9d85abfc12280e73b360196e55ec25530e610eee",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json
index 20a8c83c1ab..1fe0b375223 100644
--- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "d993b9f74cf8c5d7af8d31a73cf19d97141c54f6fcf009e98ca5b9106f3ba35b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-github.json b/mobile/rpc-foundation/goldens/tk-item-detail-github.json
index 800a6a019e6..73581365e89 100644
--- a/mobile/rpc-foundation/goldens/tk-item-detail-github.json
+++ b/mobile/rpc-foundation/goldens/tk-item-detail-github.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "5fbff075d7da476f93c2a7da871c2afacc67822d1317acf6c23000195e2b2576",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json
index 2c62b994808..9805e4bdff5 100644
--- a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "36bbd34ed8b8f67e516ce7cd230b01ab88f14369fda632037c46dbbd1a0d95a3",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json
index 78e0cbf8365..2d26af0ba4a 100644
--- a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json
+++ b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783",
"scenarioSha256": "f0407adc774b29553bdd177885e8ea9047127c4ebe8298de160a421fb4c1fe67",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json
index 343f931af6f..bf2725d76b9 100644
--- a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json
+++ b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "e6429c235d8c0b0376f71fea7b47c3b9ff22b850c92922b85ff993ae8b6cd6d0",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json
index 610c68c2a52..e85f8167d61 100644
--- a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "28d8dfb15fec1ecaaa1c675c9c8c0cdc196e184a6884625c44dfe1f0f9fc8e7e",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json
index 9ee719cb291..1b71ae5d20d 100644
--- a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json
+++ b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "010c65eaa056c5df0b867dd5b5851e206e8479e9fcce02515f1e326df4b8889c",
"platform": "darwin",
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 5a5e85ef7a6..5ea4b599eae 100644
--- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json
+++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "daa54da6cfb8d96c2a66c138beeaf70c764f96a60bdc84f2ff4cde80483cb365",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json
index 09974388b56..2a95a1b9e5d 100644
--- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "4daf374f040e27836c154245d6a7fbad9ba3f6e6c0c9608218451286e4712d6b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json
index 4aa1f7f952b..55c2d957601 100644
--- a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json
+++ b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "b8e60092a29ea4944a891adc026444cc1da18c52221876f9e7c07b450b34cea8",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-review-github.json b/mobile/rpc-foundation/goldens/tk-item-review-github.json
index e2ee2ed575a..e23a8a9e291 100644
--- a/mobile/rpc-foundation/goldens/tk-item-review-github.json
+++ b/mobile/rpc-foundation/goldens/tk-item-review-github.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe",
"scenarioSha256": "3ba358ff7b6a95d9158257225483f77578dfa10c8643cdf89f8a81e0022997e9",
"platform": "darwin",
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 6747c56f495..6121c30c995 100644
--- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json
+++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "5de4936aed0efd0d8bd5bc5ce893d561f6bc3d0fdf4a76c9e33e7cbefd6ec362",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json
index 7b6a77c3f70..91829be291f 100644
--- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json
+++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa",
"scenarioSha256": "85414544a9e8570567770b43e6bf5cfcc406c9b9b4ffed3a4ff0c8187beb7549",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-linear-connect.json b/mobile/rpc-foundation/goldens/tk-linear-connect.json
index f8ebc98866b..1345380914c 100644
--- a/mobile/rpc-foundation/goldens/tk-linear-connect.json
+++ b/mobile/rpc-foundation/goldens/tk-linear-connect.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "d1bd7ad9b647a50403953ba01d3a4bcccc5f4020c2aefa6146cca8c7688612c1",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-linear-item.json b/mobile/rpc-foundation/goldens/tk-linear-item.json
index 9c4320edb9b..a03b28f56ea 100644
--- a/mobile/rpc-foundation/goldens/tk-linear-item.json
+++ b/mobile/rpc-foundation/goldens/tk-linear-item.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739",
"scenarioSha256": "354eaff5243b3aae774c375aa303548d82c4db106a89ada39907d6654fa549b3",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-linear-team-context.json b/mobile/rpc-foundation/goldens/tk-linear-team-context.json
index 96f80ca6949..af8bc57b381 100644
--- a/mobile/rpc-foundation/goldens/tk-linear-team-context.json
+++ b/mobile/rpc-foundation/goldens/tk-linear-team-context.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06",
"scenarioSha256": "524c2421e61d663dd1344a47ab0552c3bb029ad09e0b6271eac91f1548e8265c",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json
index 7d4b16fab84..83b586b07de 100644
--- a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json
+++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "9b26b8f112021fe65c156b7d4067071551bcdab44a5858f8a933f7ace66e6f80",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json
index a441f7a2d43..5ed92208e70 100644
--- a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json
+++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "a9e791f56e991e822b2a9f55db22eabbc39ad36ed669c87b6866ba7fe8eea24a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-list-linear.json b/mobile/rpc-foundation/goldens/tk-list-linear.json
index 3deeaa1b3b7..a6ca28a3514 100644
--- a/mobile/rpc-foundation/goldens/tk-list-linear.json
+++ b/mobile/rpc-foundation/goldens/tk-list-linear.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "216ddbf8cb71481d179563d8b033d7dc6cd71bface049e83073b977909776fc9",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-project-board-load.json b/mobile/rpc-foundation/goldens/tk-project-board-load.json
index c903a6b7f18..8c56d7965a6 100644
--- a/mobile/rpc-foundation/goldens/tk-project-board-load.json
+++ b/mobile/rpc-foundation/goldens/tk-project-board-load.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "7840e811e81d3645f1c874b871158202a53432989f3b5c849df12550b082813b",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json
index aa17ed8c9f1..8ff9d24d9a4 100644
--- a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json
+++ b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371",
"scenarioSha256": "a83d5768892764af2dd6866f03d51c09aef63d1c5d3e0645bd5e1c16454b201f",
"platform": "darwin",
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 fb6e6e7d39d..75e88a31620 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "6f1bfb05a9df6482200bbab4400fd07a09955d47fcc468e1d2feda1ca9875aa1",
"platform": "darwin",
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 4fdc218da8c..8beeff19eef 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "e5ff558593fd32d66e6ba1722ebf54d50992c9c2b6db41ef2435b47972fbd0fd",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-project-row-detail.json b/mobile/rpc-foundation/goldens/tk-project-row-detail.json
index 98405a67fed..6842a3c50cd 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-detail.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-detail.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "f572b37cfd15f41f283e5f96b772a1055670f80e68064ac81477d9b768fc971a",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-project-row-fields.json b/mobile/rpc-foundation/goldens/tk-project-row-fields.json
index 8e0b7823ce8..b80d4ea3b18 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-fields.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-fields.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "af54a351f4b79fff4a11948fc47a9f5194733065682ff96d6b46b9ae292e327e",
"platform": "darwin",
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 2b0f8d6c27a..af1014d8ba5 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9",
"scenarioSha256": "629d05d7fbd4a332a65f7191b2084a0e74b84920c1954fa351f264892b2776e9",
"platform": "darwin",
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 eafb9db44fa..953a7806fbd 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6",
"scenarioSha256": "60ea389fe16734fb53db01101f1feb4496653a99faa09e4309b3790a50d558d7",
"platform": "darwin",
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 ba9ba51c20b..3c506f24e19 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889",
"scenarioSha256": "08caec8e0ab5e674aabbf034ca88fc4a000c4b645ad6397afe6dc18db1f7c098",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-project-row-threads.json b/mobile/rpc-foundation/goldens/tk-project-row-threads.json
index 3ea27497fba..35102da84ef 100644
--- a/mobile/rpc-foundation/goldens/tk-project-row-threads.json
+++ b/mobile/rpc-foundation/goldens/tk-project-row-threads.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1",
"scenarioSha256": "815f55c0fb848fc9345a66bb7b71b1351f17e56129e005eb1776d6b47c831647",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tk-provider-load.json b/mobile/rpc-foundation/goldens/tk-provider-load.json
index 35144c77b08..e28f07e2395 100644
--- a/mobile/rpc-foundation/goldens/tk-provider-load.json
+++ b/mobile/rpc-foundation/goldens/tk-provider-load.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8",
"scenarioSha256": "21b6272878cba5f2b41c89378c178933ffc9406fe69b9c693fc5021a265ef2c9",
"platform": "darwin",
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 22fc38eb5f0..e5484052848 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 49efa33f7af..33f4ff72bb4 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 826d526946f..2bea79a74c7 100644
--- a/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json
+++ b/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 633c1202733..4fbe0cfc49f 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 c375b13a553..216cb72b5c6 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 9d601a4aae1..4b1df26dae8 100644
--- a/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json
+++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 8260f15633e..bdd6f5c67d7 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6d9a7299b2a..062aa66777d 100644
--- a/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json
+++ b/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 34ecb1bcd32..e493d8b4d16 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1",
"scenarioSha256": "488173fa313295f97aa88fb4bf1944fdb655e37cfd2444e9d15515bd6ad82d95",
"platform": "darwin",
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 9737a5f488c..9a24712d087 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1",
"scenarioSha256": "dee9824e5ec32115fa7dfaaf223fc34c28d057a5526ac3dad42365543288a934",
"platform": "darwin",
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 c4ed8753fef..00ed6967842 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1",
"scenarioSha256": "a34ffec446f9bbc465bd3f7d0a43166c9bc221a6ece8714e0b5717169625cf43",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json
index 0c3cea65871..ceada00e6dc 100644
--- a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json
+++ b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 cb60a81bfbc..ddde4c7d5c7 100644
--- a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json
+++ b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a72944d1cf9..49b4727c6ca 100644
--- a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json
+++ b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 b32ae728064..0e2186e2434 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 e7162442ef9..9e9c33ef166 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 f250d7420ed..aa0f2f7ee7b 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bd8d03f45a5..d3e44bff766 100644
--- a/mobile/rpc-foundation/goldens/tw-create-retry-created.json
+++ b/mobile/rpc-foundation/goldens/tw-create-retry-created.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6b226c19790..adcda98827e 100644
--- a/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json
+++ b/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 32bf407affd..b4f24ad583a 100644
--- a/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json
+++ b/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 185fb477ee6..4682ecae57e 100644
--- a/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json
+++ b/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 ba27d319217..200e5be8051 100644
--- a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json
+++ b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 335b648b6fc..85bf070e8a1 100644
--- a/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json
+++ b/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 a84c67b4717..da3f6409337 100644
--- a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json
+++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 49af9ef2417..97390cccd2a 100644
--- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json
+++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 6f86370c208..e2c595c3ab9 100644
--- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json
+++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 57d1d82e515..df9e8c04e99 100644
--- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json
+++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 14512e62063..695c71abfda 100644
--- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json
+++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 74b2d3a49d2..73acfb3692e 100644
--- a/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json
+++ b/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 98e9bbfa3a1..82ac528cf25 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
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 bf6b5460d5f..b6953ec4070 100644
--- a/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json
+++ b/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 4e2be1f84c3..e269c395241 100644
--- a/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json
+++ b/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"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 d68daef92d2..09c4c70b4c4 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "2cd1e8972f226572744dad7da82afffbdf0452a121c1cd8c3334d5c3fde5d57c",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json
index bf76dff1abe..7f3d8467f80 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "046dd3a125a3c9abcf5a0dd122818939b516adb91cbda2554b3409d4bb3a7980",
"platform": "darwin",
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 24d9a106930..48737f18dbb 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "865a659012dd882fd6073813585e2911a1d6252404fbf5a5e273f062b89fc91d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json
index 99a32967aa2..b8c2ab13668 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "124f664e339bfd83a1d892e1cd953a78fdf0dc4b20c4272356d24079c72a3e04",
"platform": "darwin",
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 56ebd2dea61..6758517e445 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "dd25391fdd3dc864ae493f72d013e789884a21e9c71522edc79323bc2b6c7f76",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json
index 4b8ae1161d9..580934cac37 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "495f51d9c2f7f3d71f53a53e88786b8d1f767a5bf66b8655c28222d2909a964c",
"platform": "darwin",
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 a20c56a6937..c4df31ece85 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "af0623c2d106d2ed18ef9149d4990539f9ed82146ae091a872a3e1d792efeffe",
"platform": "darwin",
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 1b9ec34ed00..08f7795a68d 100644
--- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json
+++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979",
"scenarioSha256": "3aa23f15da8fe9972e47c767db454b41750ca353ab10797082fde4514ffe9da0",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json
index e257812ca99..f6845a57f7d 100644
--- a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json
+++ b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "d2947158840576cbd0f0604ed3d37b0f446c63c6d439b4d1b7def7fe8524523d",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/worktree-home-catalog.json b/mobile/rpc-foundation/goldens/worktree-home-catalog.json
index 692408dc5cb..f3ff3fa1b16 100644
--- a/mobile/rpc-foundation/goldens/worktree-home-catalog.json
+++ b/mobile/rpc-foundation/goldens/worktree-home-catalog.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "4749bb3b871275ba08f026f9b6bcfd383605f443e7bba70a7f89175b91db6fa5",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/goldens/worktree-retired-names.json b/mobile/rpc-foundation/goldens/worktree-retired-names.json
index 7fc1d552ae5..757e6db3346 100644
--- a/mobile/rpc-foundation/goldens/worktree-retired-names.json
+++ b/mobile/rpc-foundation/goldens/worktree-retired-names.json
@@ -5,7 +5,7 @@
"runnerVersion": 1,
"baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285",
"lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571",
- "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c",
+ "recorderSha256": "b5f4b14e07fc7281b954ff5f16d5803e2dfb1bc2a97dcbe6a0991697a5980c49",
"adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e",
"scenarioSha256": "2faa07ee5f12b3ed584117359d3b7aeb9c78a04e8fc49e753372f8c3927a3740",
"platform": "darwin",
diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json
index 5e6badeb31d..79459424033 100644
--- a/mobile/rpc-foundation/pilot-scenarios.json
+++ b/mobile/rpc-foundation/pilot-scenarios.json
@@ -19652,6 +19652,713 @@
"checkpoint": "stopped"
}
]
+ },
+ {
+ "id": "notifications-desktop-stream",
+ "operation": "notifications.desktop-stream",
+ "version": 1,
+ "family": "notifications.desktop-stream",
+ "sites": ["mobile/src/notifications/mobile-notifications.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
+ }
+ }
+ }
+ },
+ {
+ "request": {
+ "identifier": "tray-2",
+ "content": {
+ "data": {
+ "hostFingerprint": "Yw3NKWbEM2aRElRI",
+ "kind": "alert",
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ }
+ }
+ }
+ ]
+ },
+ "steps": [
+ {
+ "action": "start",
+ "id": "start"
+ },
+ {
+ "checkpoint": "subscribed"
+ },
+ {
+ "frame": "notifications.subscribe#1",
+ "params": {
+ "includeDesktopSuppressed": true
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "ready",
+ "subscriptionId": "sub-1"
+ }
+ }
+ },
+ {
+ "checkpoint": "ready"
+ },
+ {
+ "complete": "notifications.getMissedSince#1",
+ "params": {
+ "lastSeenSeq": 9007199254740991,
+ "deliveredPushes": [
+ {
+ "notificationId": "note-1",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ ]
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationId": "note-1",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 7
+ }
+ ]
+ }
+ }
+ },
+ {
+ "checkpoint": "caught-up"
+ },
+ {
+ "frame": "notifications.subscribe#1",
+ "params": {
+ "includeDesktopSuppressed": true
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "dismiss",
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ }
+ },
+ {
+ "checkpoint": "dismissed"
+ },
+ {
+ "action": "stop",
+ "id": "stop"
+ },
+ {
+ "checkpoint": "unsubscribing"
+ },
+ {
+ "complete": "notifications.unsubscribe#1",
+ "params": {
+ "subscriptionId": "sub-1"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ },
+ {
+ "checkpoint": "stopped"
+ }
+ ]
+ },
+ {
+ "id": "notifications-desktop-stream-replayed",
+ "operation": "notifications.desktop-stream",
+ "version": 1,
+ "family": "notifications.desktop-stream",
+ "sites": ["mobile/src/notifications/mobile-notifications.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
+ }
+ }
+ }
+ },
+ {
+ "request": {
+ "identifier": "tray-2",
+ "content": {
+ "data": {
+ "hostFingerprint": "Yw3NKWbEM2aRElRI",
+ "kind": "alert",
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ }
+ }
+ }
+ ]
+ },
+ "steps": [
+ {
+ "action": "start",
+ "id": "start"
+ },
+ {
+ "frame": "notifications.subscribe#1",
+ "params": {
+ "includeDesktopSuppressed": true
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "ready",
+ "subscriptionId": "sub-1"
+ }
+ }
+ },
+ {
+ "complete": "notifications.getMissedSince#1",
+ "params": {
+ "lastSeenSeq": 9007199254740991,
+ "deliveredPushes": [
+ {
+ "notificationId": "note-1",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ ]
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "dismissedPushes": []
+ }
+ }
+ },
+ {
+ "checkpoint": "ready"
+ },
+ {
+ "action": "cutover",
+ "id": "cutover"
+ },
+ {
+ "checkpoint": "re-subscribed"
+ },
+ {
+ "frame": "notifications.subscribe#2",
+ "params": {
+ "includeDesktopSuppressed": true
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "ready",
+ "subscriptionId": "sub-2"
+ }
+ }
+ },
+ {
+ "complete": "notifications.getMissedSince#2",
+ "params": {
+ "lastSeenSeq": 9007199254740991,
+ "deliveredPushes": [
+ {
+ "notificationId": "note-1",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ ]
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "dismissedPushes": [
+ {
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ ]
+ }
+ }
+ },
+ {
+ "checkpoint": "replayed"
+ },
+ {
+ "action": "stop",
+ "id": "stop"
+ },
+ {
+ "complete": "notifications.unsubscribe#1",
+ "params": {
+ "subscriptionId": "sub-2"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ },
+ {
+ "checkpoint": "stopped"
+ }
+ ]
+ },
+ {
+ "id": "native-chat-page-earlier",
+ "operation": "session.native-chat-page",
+ "version": 1,
+ "family": "session.native-chat-page",
+ "sites": ["mobile/src/session/use-mobile-native-chat-session.ts"],
+ "schedules": [],
+ "steps": [
+ {
+ "action": "mount",
+ "id": "mount"
+ },
+ {
+ "checkpoint": "subscribed"
+ },
+ {
+ "frame": "nativeChat.subscribe#1",
+ "params": {
+ "agent": "claude",
+ "sessionId": "session-1",
+ "limit": 40,
+ "subscriptionId": "claude:session-1",
+ "capabilities": {
+ "transcriptPending": 1
+ },
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "snapshot",
+ "messages": [
+ {
+ "id": "m-3",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 3000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "third"
+ }
+ ]
+ },
+ {
+ "id": "m-4",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 4000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "fourth"
+ }
+ ]
+ }
+ ],
+ "hasMore": true,
+ "beforeOffset": 1200
+ }
+ }
+ },
+ {
+ "checkpoint": "snapshot"
+ },
+ {
+ "action": "load-earlier",
+ "id": "page"
+ },
+ {
+ "checkpoint": "paging"
+ },
+ {
+ "complete": "nativeChat.readSession#1",
+ "params": {
+ "agent": "claude",
+ "sessionId": "session-1",
+ "limit": 60,
+ "beforeOffset": 1200,
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "messages": [
+ {
+ "id": "m-1",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 1000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "first"
+ }
+ ]
+ },
+ {
+ "id": "m-2",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 2000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "second"
+ }
+ ]
+ }
+ ],
+ "hasMore": false,
+ "beforeOffset": 0
+ }
+ }
+ },
+ {
+ "checkpoint": "paged"
+ },
+ {
+ "action": "cutover",
+ "id": "cutover"
+ },
+ {
+ "checkpoint": "re-subscribed"
+ },
+ {
+ "frame": "nativeChat.subscribe#2",
+ "params": {
+ "agent": "claude",
+ "sessionId": "session-1",
+ "limit": 40,
+ "subscriptionId": "claude:session-1",
+ "capabilities": {
+ "transcriptPending": 1
+ },
+ "transcriptPath": "/work/feature/.claude/session-1.jsonl"
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "snapshot",
+ "messages": [
+ {
+ "id": "m-3",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 3000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "third"
+ }
+ ]
+ },
+ {
+ "id": "m-4",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 4000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "fourth"
+ }
+ ]
+ },
+ {
+ "id": "m-5",
+ "role": "assistant",
+ "source": "transcript",
+ "timestamp": 5000,
+ "blocks": [
+ {
+ "type": "text",
+ "text": "fifth"
+ }
+ ]
+ }
+ ],
+ "hasMore": true,
+ "beforeOffset": 1200
+ }
+ }
+ },
+ {
+ "checkpoint": "replayed"
+ },
+ {
+ "action": "unmount",
+ "id": "unmount"
+ },
+ {
+ "checkpoint": "unmounted"
+ }
+ ]
+ },
+ {
+ "id": "terminal-gesture-flush-and-clear",
+ "operation": "session.terminal-gesture-input",
+ "version": 1,
+ "family": "session.terminal-gesture-input",
+ "sites": ["mobile/src/session/use-mobile-session-terminal-input.ts"],
+ "schedules": [],
+ "steps": [
+ {
+ "action": "mount",
+ "id": "mount"
+ },
+ {
+ "action": "gesture",
+ "id": "gesture"
+ },
+ {
+ "checkpoint": "queued"
+ },
+ {
+ "advance": 16
+ },
+ {
+ "checkpoint": "flushing"
+ },
+ {
+ "complete": "terminal.send#1",
+ "params": {
+ "terminal": "terminal-1",
+ "text": "\u001b[<64;10;5M",
+ "enter": false,
+ "client": {
+ "id": "device-token-1",
+ "type": "mobile"
+ }
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "send": {
+ "accepted": true
+ }
+ }
+ }
+ },
+ {
+ "checkpoint": "sent"
+ },
+ {
+ "complete": "orchestration.workerTerminalUserInput#1",
+ "params": {
+ "terminal": "terminal-1"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "reported": true
+ }
+ }
+ },
+ {
+ "checkpoint": "reported"
+ },
+ {
+ "action": "clear",
+ "id": "clear"
+ },
+ {
+ "checkpoint": "clearing"
+ },
+ {
+ "complete": "terminal.clearBuffer#1",
+ "params": {
+ "terminal": "terminal-1"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "cleared": true
+ }
+ }
+ },
+ {
+ "checkpoint": "cleared"
+ }
+ ]
+ },
+ {
+ "id": "notifications-desktop-stream-closed",
+ "operation": "notifications.desktop-stream",
+ "version": 1,
+ "family": "notifications.desktop-stream",
+ "sites": ["mobile/src/notifications/mobile-notifications.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
+ }
+ }
+ }
+ },
+ {
+ "request": {
+ "identifier": "tray-2",
+ "content": {
+ "data": {
+ "hostFingerprint": "Yw3NKWbEM2aRElRI",
+ "kind": "alert",
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ }
+ }
+ }
+ ]
+ },
+ "steps": [
+ {
+ "action": "start",
+ "id": "start"
+ },
+ {
+ "frame": "notifications.subscribe#1",
+ "params": {
+ "includeDesktopSuppressed": true
+ },
+ "reply": {
+ "ok": true,
+ "streaming": true,
+ "result": {
+ "type": "ready",
+ "subscriptionId": "sub-1"
+ }
+ }
+ },
+ {
+ "complete": "notifications.getMissedSince#1",
+ "params": {
+ "lastSeenSeq": 9007199254740991,
+ "deliveredPushes": [
+ {
+ "notificationId": "note-1",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 7
+ },
+ {
+ "notificationId": "note-2",
+ "notificationEpoch": "epoch-1",
+ "notificationSeq": 8
+ }
+ ]
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "dismissedPushes": []
+ }
+ }
+ },
+ {
+ "checkpoint": "ready"
+ },
+ {
+ "action": "stop",
+ "id": "stop"
+ },
+ {
+ "complete": "notifications.unsubscribe#1",
+ "params": {
+ "subscriptionId": "sub-1"
+ },
+ "reply": {
+ "ok": true,
+ "result": {
+ "unsubscribed": true
+ }
+ }
+ },
+ {
+ "checkpoint": "stopped"
+ },
+ {
+ "action": "cutover",
+ "id": "cutover"
+ },
+ {
+ "checkpoint": "not-replayed"
+ }
+ ]
}
]
}
diff --git a/mobile/src/notifications/desktop-notification-stream-operations.ts b/mobile/src/notifications/desktop-notification-stream-operations.ts
new file mode 100644
index 00000000000..da48725a071
--- /dev/null
+++ b/mobile/src/notifications/desktop-notification-stream-operations.ts
@@ -0,0 +1,24 @@
+import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation'
+import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload'
+
+/**
+ * Closing the desktop notification stream on the host.
+ *
+ * Its own module rather than a line in `mobile-push-registration-operations.ts`: that module is the
+ * push route this device holds with a gateway, and this is the socket subscription the paired
+ * connection holds. They are two different deliveries of the same alert and neither implies the
+ * other.
+ *
+ * A skip rather than a throw, and the reply is unread either way: the disposer sends this on its
+ * way out with nothing left to show a host message on, and main's `.catch(() => {})` already made a
+ * refusal and a dropped connection the same non-event.
+ */
+export const desktopNotificationStreamUnsubscribe = bindDeferredRpcOperation(
+ defineRpcOperation({
+ name: 'notifications.unsubscribe-or-skip',
+ method: 'notifications.unsubscribe',
+ acceptance: 'success-result-or-skip',
+ barrier: 'after-caller-barrier',
+ read: rpcUncheckedPayloadReader('notification-stream-closed')
+ })
+)
diff --git a/mobile/src/notifications/mobile-notifications.ts b/mobile/src/notifications/mobile-notifications.ts
index 974c9516263..48f8e86f63e 100644
--- a/mobile/src/notifications/mobile-notifications.ts
+++ b/mobile/src/notifications/mobile-notifications.ts
@@ -1,4 +1,5 @@
import { requestNotificationCatchup } from './push-dismissal-reconciliation'
+import { desktopNotificationStreamUnsubscribe } from './desktop-notification-stream-operations'
import { dismissHostPushNotification } from './push-socket-dismissal'
import type { DismissNotificationEvent } from './desktop-notification-events'
import type { RpcClient } from '../transport/rpc-client'
@@ -20,7 +21,8 @@ export function subscribeToDesktopNotifications(client: RpcClient, hostId: strin
function unsubscribeServer(id: string) {
if (client.getState() === 'connected') {
- client.sendRequest('notifications.unsubscribe', { subscriptionId: id }).catch(() => {})
+ // The reply is never read: the stream is already gone locally either way.
+ desktopNotificationStreamUnsubscribe.request(client, { subscriptionId: id }).catch(() => {})
}
}
diff --git a/mobile/src/session/mobile-session-read-operations.ts b/mobile/src/session/mobile-session-read-operations.ts
index cce92927180..48be2b2b94d 100644
--- a/mobile/src/session/mobile-session-read-operations.ts
+++ b/mobile/src/session/mobile-session-read-operations.ts
@@ -5,8 +5,9 @@ import {
} 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.
+// workspace's connection through, the session tab snapshot, native chat's workspace paths and
+// older-history page, the quick-command list, the whole `worktree.show` record and a markdown
+// tab's document.
/**
* The terminal inventory. A refused list leaves the strip exactly as it was — the screen treats it
@@ -127,6 +128,27 @@ export const nativeChatFileInventoryRead = bindDeferredRpcOperation(
})
)
+/**
+ * The older-history page native chat asks for when the transcript is scrolled back.
+ *
+ * A skip rather than a throw: a refused page leaves the window the subscription already delivered
+ * and the scroll simply does not grow, which is what the call site's `if (!response.ok) return`
+ * did. There is no screen to raise a host message on — the pane is already showing history.
+ *
+ * The payload stays whole rather than being narrowed to `messages`, because the reply is a union:
+ * an older runtime answers `{ error }` in place of a window, and the caller discriminates on that
+ * before it reads a message list. A member reader would have to pick one arm.
+ */
+export const nativeChatSessionPageRead = bindDeferredRpcOperation(
+ defineRpcOperation({
+ name: 'nativeChat.read-session-page-or-skip',
+ method: 'nativeChat.readSession',
+ acceptance: 'success-result-or-skip',
+ barrier: 'after-caller-barrier',
+ read: rpcUncheckedPayloadReader('native-chat-session-page')
+ })
+)
+
/** Shared with the save leg in the write module: one list read, so neither leg can adopt `[]`. */
export const quickCommandsReader = rpcUncheckedPayloadReader('terminal-quick-commands')
@@ -146,21 +168,26 @@ export const quickCommandsRead = bindDeferredRpcOperation(
)
/**
- * 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.
+ * The worktree record as the host holds it, and the fourth reader on `worktree.show`. Two consumers
+ * share it and project their own field off the member: the diff-comment loader reads
+ * `diffComments`, and the session header's live title reads `displayName` through
+ * `getLiveWorktreeDisplayName`. Widening either into its own family would be a second name for the
+ * same wire, so the member is read whole here and narrowed at each call site.
+ *
+ * Two of the other three readers project a narrower value and would answer both consumers with
+ * nothing: 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 shows none, and a header missing a name keeps the route hint.
*/
-export const sessionWorktreeNotesRead = bindDeferredRpcOperation(
+export const sessionWorktreeRecordRead = bindDeferredRpcOperation(
defineRpcOperation({
- name: 'worktree.show-review-notes',
+ name: 'worktree.show-record-or-skip',
method: 'worktree.show',
acceptance: 'success-result-or-skip',
barrier: 'after-caller-barrier',
- read: rpcUncheckedMemberReader('worktree-review-notes', 'worktree')
+ read: rpcUncheckedMemberReader('worktree-record', 'worktree')
})
)
diff --git a/mobile/src/session/mobile-session-route-parity.test.ts b/mobile/src/session/mobile-session-route-parity.test.ts
index b1973782b7c..c3b53434f26 100644
--- a/mobile/src/session/mobile-session-route-parity.test.ts
+++ b/mobile/src/session/mobile-session-route-parity.test.ts
@@ -68,13 +68,17 @@ const HEAD_CALLBACK_IDENTITY_SHA256 =
'2a9e4825df007f6ef53b81aa5004991d6318eee7507b44d625c07e630be432eb'
// Pins that no callback body in the route changed unnoticed. Body text, not behaviour: the sends
// and repo reads inside them now name their `RpcOperation` instead of the raw `sendRequest` port.
-const HEAD_CALLBACK_BODY_SHA256 = 'bacd826b9fc4f16ddd052382787dad76cac1b962f7fdf6deb8c767e9fc8f09db'
+// Refreshed in step 6 for the gesture flush, whose `terminal.send` became `terminalInputSend` and
+// whose accepted-check became that operation's own verdict, then again when that check was spelled
+// `=== true` to match the other four sites reading the same verdict.
+const HEAD_CALLBACK_BODY_SHA256 = 'fe10d09cf10c6ddbc01dbcc611fcb37bd2acc4774db44ced772b66d1e8dbd970'
const HEAD_EFFECT_SHA256 = '73d80845e0a4b6363cfb4bb55551af97965b1f676b97adf0b2a8504219b9a501'
const HEAD_CONTENT_HOOK_SHA256 = '9c3b612fef3f370d66873aefdbe1d701f20cb64ded31fef5cc45fde6f8189581'
// Same pin for the 12 bodies that sit in nested functions rather than callbacks, moved by the same
-// rewrite of those send and read expressions. Count unchanged.
+// rewrite of those send and read expressions. Count unchanged. Refreshed again in step 6 for
+// `handleClearTerminal`, whose send became `terminalBufferClear`.
const HEAD_NESTED_FUNCTION_SHA256 =
- '258930d2955a3689f2ae2a25392a75fd294513ad141bc6fbf5b7d9bafccf374e'
+ '261ba1923b953f775dec8fc7219d68efc8f2ca17ab2b14dff0136c223a0c40c4'
const HEAD_NATIVE_REGISTRATION_SHA256 =
'cab85e4e4a3f43289ba93ddea9ccce57aea83e0bf14fd1620a965aad0c1cb49e'
const HEAD_NATIVE_REMOVAL_SHA256 =
@@ -82,8 +86,10 @@ const HEAD_NATIVE_REMOVAL_SHA256 =
const HEAD_TIMER_CREATION_SHA256 =
'1a31b625e2174c3db77272249843196d2b6b06ab1e654a96d8f7858e3082e66b'
const HEAD_TIMER_CLEANUP_SHA256 = 'c73f1d1c2cc89642f3d727d6f3b6b81860a9d6f34234541a2065ec3d1a8cd116'
+// Two method literals fewer: `terminal.send` and `terminal.clearBuffer` are now fixed at their
+// operation's definition instead of being spelled at the call site.
const HEAD_RUNTIME_STRING_SHA256 =
- '0c713141a9e8b75d1435ffa6cc5f446b72e3316b5b553a4f3bb8f767831173b8'
+ '418c490447eb65b5900408c0c6b971dc9b814f04d8034c6caf53124e7f948c8c'
const HEAD_HOST_JSX_SHA256 = '390405926b1695fa3a33686f0bc192b432f5468d8576499d7cafbb4922defbb5'
const HEAD_LEAF_JSX_SHA256 = '21dba981875e173f692590bf910d60964660c5f4cbb79f3a377c7e54f6a1f016'
const HEAD_STYLE_REFERENCE_SHA256 =
@@ -521,7 +527,7 @@ describe('mobile session route extraction parity', () => {
it('preserves runtime strings, styles, and the expanded JSX tree', () => {
const strings = readRuntimeStrings()
- expect(strings).toHaveLength(537)
+ expect(strings).toHaveLength(535)
expect(hash(strings)).toBe(HEAD_RUNTIME_STRING_SHA256)
const jsx = readJsxFacts(readDefinitions())
expect(jsx.host).toHaveLength(124)
diff --git a/mobile/src/session/use-live-worktree-name.ts b/mobile/src/session/use-live-worktree-name.ts
index f0e9fa32138..1c77ba98b6b 100644
--- a/mobile/src/session/use-live-worktree-name.ts
+++ b/mobile/src/session/use-live-worktree-name.ts
@@ -3,7 +3,8 @@ import { useFocusEffect } from 'expo-router'
import type { RuntimeClientEventStreamMessage } from '../../../src/shared/runtime-client-events'
import { getRepoIdFromWorktreeId } from '../../../src/shared/worktree/id'
import type { RpcClient } from '../transport/rpc-client'
-import type { ConnectionState, RpcSuccess } from '../transport/types'
+import type { ConnectionState } from '../transport/types'
+import { sessionWorktreeRecordRead } from './mobile-session-read-operations'
import { getLiveWorktreeDisplayName, type WorktreeDisplayNameSource } from './worktree-display-name'
import { FLOATING_WORKSPACE_TITLE, isFloatingWorkspaceWorktreeId } from './floating-workspace'
import {
@@ -88,7 +89,7 @@ export function useLiveWorktreeName({
// only the newest read may publish or stop the retry poll.
const generation = ++refreshGeneration
try {
- const response = await client.sendRequest('worktree.show', {
+ const response = await sessionWorktreeRecordRead.request(client, {
worktree: `id:${worktreeId}`
})
if (stale || generation !== refreshGeneration) {
@@ -110,15 +111,17 @@ export function useLiveWorktreeName({
? current
: { worktreeId, resolution }
)
- if (!response.ok) {
+ // The resolution above comes off the raw reply on purpose: `selector_not_found` is what
+ // proves the worktree is gone, and no acceptance policy carries a refusal code. The skip
+ // below is the same verdict as main's `!response.ok`, since a refusal is the only reply
+ // this policy declines.
+ const accepted = sessionWorktreeRecordRead.interpret(response)
+ if (!accepted.accepted) {
return
}
- const result = (response as RpcSuccess).result as {
- worktree?: WorktreeDisplayNameSource
- }
- const liveName = result.worktree
- ? getLiveWorktreeDisplayName([result.worktree], worktreeId)
- : null
+ // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: main cast this member unread; the reader hands back the same `worktree` value.
+ const worktree = accepted.value as WorktreeDisplayNameSource | undefined
+ const liveName = worktree ? getLiveWorktreeDisplayName([worktree], worktreeId) : null
if (liveName) {
setWorktreeName((current) =>
current.worktreeId === worktreeId && current.name === liveName
diff --git a/mobile/src/session/use-mobile-native-chat-session.ts b/mobile/src/session/use-mobile-native-chat-session.ts
index e509b202c2a..9157fdecb65 100644
--- a/mobile/src/session/use-mobile-native-chat-session.ts
+++ b/mobile/src/session/use-mobile-native-chat-session.ts
@@ -7,6 +7,7 @@ import { createNativeChatMerger, replaceList } from '../../../src/shared/native-
import type { NativeChatMessage } from '../../../src/shared/native-chat-types'
import { buildNativeChatSubscriptionId } from '../../../src/shared/native-chat-stream-unsubscribe'
import type { RpcClient } from '../transport/rpc-client'
+import { nativeChatSessionPageRead } from './mobile-session-read-operations'
import {
applyMobileNativeChatStreamFrame,
type MobileNativeChatStreamFrame
@@ -239,17 +240,19 @@ export function useMobileNativeChatSession(args: {
setLoadingEarlier(true)
void (async () => {
try {
- const response = await client.sendRequest('nativeChat.readSession', {
+ const response = await nativeChatSessionPageRead.request(client, {
agent,
sessionId,
limit: beforeOffset === null ? nextLimit : pageLimit,
...(beforeOffset === null ? {} : { beforeOffset }),
...(transcriptPath ? { transcriptPath } : {})
})
- if (!response.ok) {
+ const accepted = nativeChatSessionPageRead.interpret(response)
+ if (!accepted.accepted) {
return
}
- const result = response.result as ReadSessionResult
+ // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: main cast this payload unread; the reader hands back the same result.
+ const result = accepted.value as ReadSessionResult
if ('error' in result) {
return
}
diff --git a/mobile/src/session/use-mobile-session-diff-comments.ts b/mobile/src/session/use-mobile-session-diff-comments.ts
index 59350d51d00..bd38e8d9343 100644
--- a/mobile/src/session/use-mobile-session-diff-comments.ts
+++ b/mobile/src/session/use-mobile-session-diff-comments.ts
@@ -1,7 +1,7 @@
import { useEffect, useCallback } from 'react'
import * as Clipboard from 'expo-clipboard'
import { interpretOrThrowRefusalMessage } from '../transport/rpc-refusal-message'
-import { sessionWorktreeNotesRead } from './mobile-session-read-operations'
+import { sessionWorktreeRecordRead } from './mobile-session-read-operations'
import { sessionWorktreeNotesWrite } from './mobile-session-write-operations'
import { triggerSelection, triggerSuccess, triggerError } from '../platform/haptics'
import {
@@ -32,8 +32,8 @@ export function useMobileSessionDiffComments(scope: MobileSessionDocumentReaders
setDiffComments([])
return
}
- const response = sessionWorktreeNotesRead.interpret(
- await sessionWorktreeNotesRead.request(client, { worktree: `id:${worktreeId}` })
+ const response = sessionWorktreeRecordRead.interpret(
+ await sessionWorktreeRecordRead.request(client, { worktree: `id:${worktreeId}` })
)
if (!response.accepted) {
return
diff --git a/mobile/src/session/use-mobile-session-terminal-input.ts b/mobile/src/session/use-mobile-session-terminal-input.ts
index 3f6e417e23a..f90563e443d 100644
--- a/mobile/src/session/use-mobile-session-terminal-input.ts
+++ b/mobile/src/session/use-mobile-session-terminal-input.ts
@@ -1,6 +1,6 @@
import { reportWorkerTerminalUserInput } from '../terminal/worker-terminal-takeover-report'
import { useCallback } from 'react'
-import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response'
+import { terminalBufferClear, terminalInputSend } from '../terminal/mobile-terminal-operations'
import {
clearTerminalLiveInputFocusTimer,
scheduleTerminalLiveInputFocus
@@ -112,8 +112,8 @@ export function useMobileSessionTerminalInput(scope: MobileSessionFileActionsMod
terminalGestureInputInFlightRef.current.add(handle)
try {
// Why: gesture arrows parked across a reconnect would move a TUI long after the swipe.
- const response = await rpc.sendRequest(
- 'terminal.send',
+ const response = await terminalInputSend.request(
+ rpc,
buildTerminalSendParams({
terminal: handle,
text: queued.bytes,
@@ -122,7 +122,7 @@ export function useMobileSessionTerminalInput(scope: MobileSessionFileActionsMod
}),
TERMINAL_INPUT_SEND_OPTIONS
)
- if (isTerminalSendRpcAccepted(response)) {
+ if (terminalInputSend.interpret(response) === true) {
reportWorkerTerminalUserInput(rpc, handle)
}
} catch {
@@ -234,9 +234,8 @@ export function useMobileSessionTerminalInput(scope: MobileSessionFileActionsMod
}
getTerminalRef(target.handle)?.clear()
try {
- await client.sendRequest('terminal.clearBuffer', {
- terminal: target.handle
- })
+ // The reply is unread: main toasted success on any fulfilled envelope, refusal included.
+ await terminalBufferClear.request(client, { terminal: target.handle })
showToast('Terminal cleared')
} catch {
showToast("Couldn't clear terminal", 1500)
diff --git a/mobile/src/terminal/mobile-terminal-operations.ts b/mobile/src/terminal/mobile-terminal-operations.ts
index 3650ae6cb94..162f4b098fd 100644
--- a/mobile/src/terminal/mobile-terminal-operations.ts
+++ b/mobile/src/terminal/mobile-terminal-operations.ts
@@ -4,8 +4,8 @@ import { rpcReadUnchecked, rpcUncheckedPayloadReader } from '../transport/rpc-re
import { isTerminalSendResultAccepted } from './terminal-send-rpc-response'
import type { TerminalViewportUpdateOutcome } from './terminal-viewport-refit-state'
-// Terminal input and the in-place viewport update. The `subscribe` and `sendUnsubscribe` ports
-// these files also reach are a separate boundary and are untouched.
+// Terminal input, the in-place viewport update and the buffer clear. The `subscribe` and
+// `sendUnsubscribe` ports these files also reach are a separate boundary and are untouched.
/**
* Whether the runtime took the bytes, which is the whole of what a terminal send means to mobile:
@@ -75,3 +75,19 @@ export const workerTerminalTakeoverReport = bindDeferredRpcOperation(
read: rpcUncheckedPayloadReader('worker-terminal-input-reported')
})
)
+
+/**
+ * The terminal menu's buffer clear. A skip rather than a throw because main never looked at the
+ * envelope: it reported success on any fulfilled reply and only a transport rejection reached the
+ * failure toast, so a refusal telling the user the buffer was cleared is behaviour this preserves
+ * rather than repairs.
+ */
+export const terminalBufferClear = bindDeferredRpcOperation(
+ defineRpcOperation({
+ name: 'terminal.clear-buffer-or-skip',
+ method: 'terminal.clearBuffer',
+ acceptance: 'success-result-or-skip',
+ barrier: 'after-caller-barrier',
+ read: rpcUncheckedPayloadReader('terminal-buffer-cleared')
+ })
+)
diff --git a/mobile/src/terminal/terminal-send-rpc-response.test.ts b/mobile/src/terminal/terminal-send-rpc-response.test.ts
index 5ef459a6fde..2cd026c3073 100644
--- a/mobile/src/terminal/terminal-send-rpc-response.test.ts
+++ b/mobile/src/terminal/terminal-send-rpc-response.test.ts
@@ -1,53 +1,31 @@
import { describe, expect, it } from 'vitest'
-import type { RpcResponse } from '../transport/types'
-import { isTerminalSendRpcAccepted } from './terminal-send-rpc-response'
-
-const runtimeMeta = { runtimeId: 'test-runtime' } as const
+import { isTerminalSendResultAccepted } from './terminal-send-rpc-response'
describe('terminal send RPC response', () => {
- it('Given accepted terminal send response When checked Then reports success', () => {
+ it('Given accepted terminal send result When checked Then reports success', () => {
// Given
- const response: RpcResponse = {
- id: '1',
- ok: true,
- result: { send: { handle: 'terminal-1', accepted: true, bytesWritten: 1 } },
- _meta: runtimeMeta
- }
+ const result = { send: { handle: 'terminal-1', accepted: true, bytesWritten: 1 } }
// When / Then
- expect(isTerminalSendRpcAccepted(response)).toBe(true)
+ expect(isTerminalSendResultAccepted(result)).toBe(true)
})
- it('Given rejected terminal send response When checked Then reports failure', () => {
+ it('Given rejected terminal send result When checked Then reports failure', () => {
// Given
- const response: RpcResponse = {
- id: '1',
- ok: true,
- result: { send: { handle: 'terminal-1', accepted: false, bytesWritten: 0 } },
- _meta: runtimeMeta
- }
+ const result = { send: { handle: 'terminal-1', accepted: false, bytesWritten: 0 } }
// When / Then
- expect(isTerminalSendRpcAccepted(response)).toBe(false)
+ expect(isTerminalSendResultAccepted(result)).toBe(false)
})
- it('Given RPC failure or malformed terminal send response When checked Then reports failure', () => {
- // Given
- const rpcFailure: RpcResponse = {
- id: '1',
- ok: false,
- error: { code: 'terminal_error', message: 'failed' },
- _meta: runtimeMeta
- }
- const malformedSuccess: RpcResponse = {
- id: '2',
- ok: true,
- result: {},
- _meta: runtimeMeta
- }
+ it('Given absent or malformed terminal send result When checked Then reports failure', () => {
+ // Given: a refusal envelope carries no result at all, and a fulfilled one may carry the
+ // wrong shape.
+ const absent = undefined
+ const malformed = {}
// When / Then
- expect(isTerminalSendRpcAccepted(rpcFailure)).toBe(false)
- expect(isTerminalSendRpcAccepted(malformedSuccess)).toBe(false)
+ expect(isTerminalSendResultAccepted(absent)).toBe(false)
+ expect(isTerminalSendResultAccepted(malformed)).toBe(false)
})
})
diff --git a/mobile/src/terminal/terminal-send-rpc-response.ts b/mobile/src/terminal/terminal-send-rpc-response.ts
index 62a93e6130f..2e5d8415adb 100644
--- a/mobile/src/terminal/terminal-send-rpc-response.ts
+++ b/mobile/src/terminal/terminal-send-rpc-response.ts
@@ -1,14 +1,8 @@
-import type { RpcResponse } from '../transport/types'
-
function isRecord(value: unknown): value is Record
@@ -118,11 +179,11 @@ export function LinearAgentSkillGuide({