From a9232e8db6d16a2c9f3e8e694ff804f92f0c1541 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 16:54:43 -0700 Subject: [PATCH 01/28] fix(claude): single-own turn identity so Stop reaches a provider-opened turn (#20794) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(claude): single-own turn identity so Stop reaches a provider-opened turn Stop silently failed on any Claude turn the provider opened on its own — a background task reporting in wakes the agent — once the session had dispatched at least once. The transcript read "The provider had already finished this turn." while the model kept working. Turn identity was minted twice from the same stream by two components that never talked. The journal translator writes turnId into the durable turn row, which is the id every client's Stop carries. settleWaiter separately wrote session.activeTurnId, only ever on the dispatch-echo path, and nothing cleared it. Cancel read the adapter's copy; prompt binding, status and both clients read the journal's. They agreed only when a send echo opened the turn. Turn identity is now single-owned. The open turn moves out of the translator's closure into ClaudeOpenTurn, which holds the turn and publishes its lifecycle row, so the id readers ask for is the id the row carries. activeTurnId and activeTurnSequence are deleted rather than widened, so the second writer goes with them instead of a second guard being added beside the first. activeTurnSequence was never turn identity: it asked whether a send was still awaiting its echo, which an interrupt would release as an unexpected turn. That is now derived from the live dispatch waiters. Deriving it also retires a latch — a retired waiter left the stored sequence permanently behind the dispatch sequence, refusing every later Stop for the life of the session. Also fixes the mirror defect the same hazard caused: a stale turn id was accepted against a newer provider-opened turn, because activeTurnId was never cleared when a turn ended. The Claude adapter fixture now acquires with a journal sink, as production does; without one it modelled a session that never ships. * fix(claude): reject stale stop after turn settles * fix(claude): preserve dispatch cancellation fence * test(claude): cover provider-opened stop integration * fix(claude): derive dispatch cancellation fence from journal * fix(claude): honor journal dispatch status before local sends * fix(native-chat): omit absent dispatch observation * fix(claude): release unresolved stop fence after deadline * fix(claude): bound and poll dispatch admission wait * test(claude): cover dispatch admission fast path --- src/main/claude/claude-open-turn.ts | 107 +++++ .../claude-structured-control-actions.test.ts | 1 + ...aude-structured-dispatch-admission.test.ts | 2 +- .../claude/claude-structured-dispatch.test.ts | 11 +- src/main/claude/claude-structured-dispatch.ts | 19 +- .../claude-structured-journal-translation.ts | 105 ++--- .../claude-structured-prompt-ownership.ts | 96 ++++- .../claude-structured-session-acquisition.ts | 2 +- .../claude-structured-session-adapter.ts | 2 +- .../claude/claude-structured-session-state.ts | 4 - .../claude-structured-session-test-support.ts | 14 +- src/main/claude/claude-turn-ownership.test.ts | 374 ++++++++++++++++++ .../journal-dispatch-observation.test.ts | 65 +++ .../journal-dispatch-observation.ts | 29 ++ .../structured-agent-session-adapter.ts | 3 + .../structured-agent-session-host-handoff.ts | 15 +- .../structured-agent-session-turns.ts | 3 + ...ude-structured-session-integration.test.ts | 26 +- 18 files changed, 757 insertions(+), 121 deletions(-) create mode 100644 src/main/claude/claude-open-turn.ts create mode 100644 src/main/claude/claude-turn-ownership.test.ts create mode 100644 src/main/native-chat/agent-session-journal/journal-dispatch-observation.test.ts create mode 100644 src/main/native-chat/agent-session-journal/journal-dispatch-observation.ts diff --git a/src/main/claude/claude-open-turn.ts b/src/main/claude/claude-open-turn.ts new file mode 100644 index 00000000000..6e9d4235db6 --- /dev/null +++ b/src/main/claude/claude-open-turn.ts @@ -0,0 +1,107 @@ +// The session's open turn, and the lifecycle row that publishes it. +// +// Sole owner of turn identity: the row this writes carries the same id it holds, +// and that row's id is what a client's Stop names. Readers ask here rather than +// keeping a copy, so there is nothing to disagree with. + +import type { StructuredAgentSessionEventSink } from '../native-chat/agent-session-wire/structured-agent-session-event-sink' +import { + claudeTurnLifecycleItem, + type ClaudeCurrentTurn, + type ClaudeTurnEnd +} from './claude-turn-lifecycle-item' +import { createClaudeTurnOpener, type ClaudeTurnSource } from './claude-turn-opening' + +export type ClaudeOpenTurnDeps = { + sink: StructuredAgentSessionEventSink + /** Settles the superseded turn's children; they get no later event of their own. */ + settleChildren: (groupKey: string | null) => void +} + +export class ClaudeOpenTurn { + private current: ClaudeCurrentTurn | null = null + /** Provider output may not reopen a turn after the session ended or a turn + * failed: nothing would ever close the turn it opened, and the row would read + * working for the life of the session. Only an accepted send lifts it. */ + private reopenSuppressed = false + private readonly opener: ( + frame: Record, + source: ClaudeTurnSource | null, + observedAt: number + ) => void + + constructor(private readonly deps: ClaudeOpenTurnDeps) { + this.opener = createClaudeTurnOpener({ + isTurnOpen: () => this.isOpen, + isSuppressed: () => this.reopenSuppressed, + open: (turn, observedAt) => this.open(turn, observedAt) + }) + } + + get id(): string | null { + return this.current?.turnId ?? null + } + + get groupKey(): string | null { + return this.current ? `${this.current.sessionId}:${this.current.turnId}` : null + } + + get isOpen(): boolean { + return this.current !== null + } + + /** Open a turn, ending whichever one was still open. A new turn starting is the + * only end the previous one gets when its result never arrives; settling it + * later would sweep THIS turn. */ + open(turn: ClaudeCurrentTurn, observedAt: number): void { + if (this.current) { + this.deps.settleChildren(this.groupKey) + this.publish(this.current, { state: 'interrupted', completedAt: observedAt }) + } + this.current = turn + this.publish(turn) + this.deps.sink.setActivity?.(null) + } + + /** The provider produced, so a turn is running. Idempotent: every frame of one + * reply stays inside the turn its first frame opened. A subagent's output is + * its parent turn's work and never a turn of its own. */ + ensureOpen( + frame: Record, + source: ClaudeTurnSource | null, + observedAt: number + ): void { + this.opener(frame, source, observedAt) + } + + /** End the open turn, if one is open, and clear the live activity line. */ + settle(end: ClaudeTurnEnd): void { + if (this.current) { + this.publish(this.current, end) + this.current = null + } + this.deps.sink.setActivity?.(null) + } + + /** An accepted send is the only thing that lifts the latch. */ + allowReopen(): void { + this.reopenSuppressed = false + } + + suppressReopen(): void { + this.reopenSuppressed = true + } + + /** A turn that failed is not resumed by whatever the provider says next; the + * next send is what resumes it. The latch only ever sets here. */ + suppressReopenOnFailure(failed: boolean): void { + this.reopenSuppressed ||= failed + } + + private publish(turn: ClaudeCurrentTurn, end?: ClaudeTurnEnd): void { + const item = claudeTurnLifecycleItem(turn, end) + this.deps.sink.appendItem(item.identity, item.body, item.options) + // Preserve first-work evidence when completion arrives before the journal drains. + this.deps.sink.publish({ coalescingKey: item.publishCoalescingKey }) + } +} diff --git a/src/main/claude/claude-structured-control-actions.test.ts b/src/main/claude/claude-structured-control-actions.test.ts index e9afa9bac25..9d9b8310206 100644 --- a/src/main/claude/claude-structured-control-actions.test.ts +++ b/src/main/claude/claude-structured-control-actions.test.ts @@ -197,6 +197,7 @@ describe('answerClaudePrompt', () => { cancel: vi.fn(() => ({ accepted: true as const })), resolve: resolvePrompt }, + currentTurnId: null, flush: vi.fn(), pendingStreamedBlocks: 0, dispose: vi.fn() diff --git a/src/main/claude/claude-structured-dispatch-admission.test.ts b/src/main/claude/claude-structured-dispatch-admission.test.ts index 6ed8f91f072..57e7a56e59f 100644 --- a/src/main/claude/claude-structured-dispatch-admission.test.ts +++ b/src/main/claude/claude-structured-dispatch-admission.test.ts @@ -48,7 +48,7 @@ describe('Claude structured dispatch admission', () => { clientMessageId: 'client-2', providerIdentity: { provider: 'claude', sessionId: 'provider-session', uuid: queuedUuid } }) - expect(session.activeTurnId).toBe(queuedUuid) + expect(session.dispatchWaiters).toHaveLength(0) } finally { vi.useRealTimers() } diff --git a/src/main/claude/claude-structured-dispatch.test.ts b/src/main/claude/claude-structured-dispatch.test.ts index 05a3ce8092f..d5b8bc2451f 100644 --- a/src/main/claude/claude-structured-dispatch.test.ts +++ b/src/main/claude/claude-structured-dispatch.test.ts @@ -38,7 +38,7 @@ describe('Claude structured dispatch image limits', () => { } ) - it('takes the active turn identity from a replay that lands after dispatch returned', async () => { + it('settles the waiter from a replay that lands after dispatch returned', async () => { const session = sessionFor() const dispatched = dispatchClaudeTurn(session, { clientMessageId: 'client-1', @@ -47,11 +47,9 @@ describe('Claude structured dispatch image limits', () => { await vi.waitFor(() => expect(session.dispatchWaiters).toHaveLength(1)) const sentUuid = (session.dispatchWaiters[0] as { sentUuid?: string }).sentUuid await expect(dispatched).resolves.toEqual({ state: 'admitted' }) - expect(session.activeTurnId).toBeUndefined() expect(resolveClaudeReplayWaiter(session, userReplayFrame(sentUuid!, 'one'))).toBe(true) - expect(session.activeTurnId).toBe(sentUuid) - expect(session.activeTurnSequence).toBe(session.dispatchSequence) + expect(session.dispatchWaiters).toHaveLength(0) }) it('recovers the active identity when a replay lands after the child died', async () => { @@ -68,8 +66,7 @@ describe('Claude structured dispatch image limits', () => { expect(session.retiredDispatchWaiters).toHaveLength(1) expect(resolveClaudeReplayWaiter(session, userReplayFrame(sentUuid!, 'one'))).toBe(true) - expect(session.activeTurnId).toBe(sentUuid) - expect(session.activeTurnSequence).toBe(session.dispatchSequence) + expect(session.retiredDispatchWaiters).toHaveLength(0) }) it('settles the send the replay proves was delivered, whenever it arrives', async () => { @@ -410,7 +407,7 @@ describe('Claude structured dispatch image limits', () => { expect(resolveClaudeReplayWaiter(session, userReplayFrame('fresh-replay', 'retry me'))).toBe( true ) - expect(session.activeTurnId).toBe('fresh-replay') + expect(session.dispatchWaiters).toHaveLength(0) }) it('does not claim an SDK-pulled frame was unwritten when its write outcome is ambiguous', async () => { diff --git a/src/main/claude/claude-structured-dispatch.ts b/src/main/claude/claude-structured-dispatch.ts index 84253b765f6..a69508ce071 100644 --- a/src/main/claude/claude-structured-dispatch.ts +++ b/src/main/claude/claude-structured-dispatch.ts @@ -144,18 +144,13 @@ function settleWaiter( } waiter.settledUuid = uuid waiter.resolve(uuid) - // Dispatch returned on admission. Settle delivery unfenced while the sequence - // still fences which turn owns the identity; see `recoverLateIdentity`. + // Dispatch returned on admission, so the replay is what settles delivery. if (waiter.clientMessageId) { onSettledLate?.({ clientMessageId: waiter.clientMessageId, providerIdentity: { provider: 'claude', sessionId: session.providerSessionId, uuid } }) } - if (waiter.dispatchSequence === session.dispatchSequence) { - session.activeTurnId = uuid - session.activeTurnSequence = waiter.dispatchSequence - } } function forgetRetiredWaiter(session: ClaudeSession, waiter: ClaudeDispatchWaiter): void { @@ -176,18 +171,14 @@ function recoverLateIdentity( return false } // The provider acted on this dispatch, so the send it came from is delivered. - // Unfenced on purpose: the dispatch-sequence check below only decides which - // turn owns the identity, while delivery is settled for good either way. + // Unfenced on purpose: the dispatch-sequence check below only decides whether + // this replay still opens a turn, while delivery is settled for good either way. if (waiter.clientMessageId) { onSettledLate?.({ clientMessageId: waiter.clientMessageId, providerIdentity: { provider: 'claude', sessionId: session.providerSessionId, uuid } }) } - if (waiter.dispatchSequence === session.dispatchSequence) { - session.activeTurnId = uuid - session.activeTurnSequence = waiter.dispatchSequence - } return isUserReplay && waiter.dispatchSequence === session.dispatchSequence } @@ -293,7 +284,7 @@ export async function dispatchClaudeTurn( if (session.dispatchWaiters.length >= MAX_ACTIVE_DISPATCH_WAITERS) { return { state: 'rejected', reason: DISPATCH_REJECTED_QUEUE_FULL } } - const dispatchSequence = ++session.dispatchSequence + ++session.dispatchSequence // Read the sent content, not the journal blocks: only the mapped trailing prompt decides // whether Claude runs a command, so the two cannot disagree about which frame settles this. const acceptsResult = claudeDispatchInvokesSlashCommand(content) @@ -319,8 +310,6 @@ export async function dispatchClaudeTurn( if (waiter.settledUuid) { const uuid = await replayed if (uuid) { - session.activeTurnId = uuid - session.activeTurnSequence = dispatchSequence return { state: 'accepted', providerIdentity: { provider: 'claude', sessionId: session.providerSessionId, uuid } diff --git a/src/main/claude/claude-structured-journal-translation.ts b/src/main/claude/claude-structured-journal-translation.ts index 216e760315c..e34b4aed111 100644 --- a/src/main/claude/claude-structured-journal-translation.ts +++ b/src/main/claude/claude-structured-journal-translation.ts @@ -36,16 +36,11 @@ import { claudeStreamTurnStartSource, claudeStreamTurnSource, claudeTurnOpenedBySendEcho, - createClaudeTurnOpener, isRootClaudeFrame, type ClaudeTurnSource } from './claude-turn-opening' -import { - claudeTurnEndForResult, - claudeTurnLifecycleItem, - type ClaudeCurrentTurn, - type ClaudeTurnEnd -} from './claude-turn-lifecycle-item' +import { claudeTurnEndForResult } from './claude-turn-lifecycle-item' +import { ClaudeOpenTurn } from './claude-open-turn' import { ClaudeJournalPrompts } from './claude-structured-journal-prompts' export type ClaudeJournalTranslatorDeps = { @@ -59,6 +54,9 @@ export type ClaudeJournalTranslatorDeps = { export type ClaudeJournalTranslator = { handle: (event: ClaudeStructuredSessionEvent) => void journalPrompts: Pick + /** The open turn's provider id — the same id its journal row carries, and the one + * a client's Stop names. Sole owner: no reader keeps a copy to disagree with. */ + readonly currentTurnId: string | null flush: () => void /** Streamed blocks still awaiting a final frame. A settled turn leaves none. */ readonly pendingStreamedBlocks: number @@ -86,20 +84,17 @@ export function createClaudeJournalTranslator( const tools = new Map() const prompts = new ClaudeJournalPrompts(deps) const streamedBlocks = createClaudeStreamedBlockRegistry() - let currentTurn: ClaudeCurrentTurn | null = null - /** Provider output may not reopen a turn after the session ended or a turn - * failed: nothing would ever close the turn it opened, and the row would read - * working for the life of the session. Only an accepted send lifts it. */ - let reopenSuppressed = false - const groupKeyOf = (turn: ClaudeCurrentTurn | null): string | null => - turn ? `${turn.sessionId}:${turn.turnId}` : null + const turn = new ClaudeOpenTurn({ + sink: deps.sink, + settleChildren: (groupKey) => subagents.settleTurn(groupKey) + }) const providerFallback = createClaudeProviderFrameFallback( deps.sink, deps.fallbackIdPrefix ?? 'acquisition' ) const subagents = new ClaudeSubagentRoster({ sink: deps.sink, - currentGroupKey: () => groupKeyOf(currentTurn) + currentGroupKey: () => turn.groupKey }) const streamedText = createClaudeStreamedTextCheckpoints({ ...(deps.coalesceMs === undefined ? {} : { coalesceMs: deps.coalesceMs }), @@ -110,42 +105,14 @@ export function createClaudeJournalTranslator( } }) - const publishLifecycle = (turn: ClaudeCurrentTurn, end?: ClaudeTurnEnd): void => { - const item = claudeTurnLifecycleItem(turn, end) - deps.sink.appendItem(item.identity, item.body, item.options) - // Preserve first-work evidence when completion arrives before the journal drains. - deps.sink.publish({ coalescingKey: item.publishCoalescingKey }) - } - - /** Open a turn, ending whichever one was still open. A new turn starting is the - * only end the previous one gets when its result never arrives; settling it - * later would sweep THIS turn. */ - const openTurn = (turn: ClaudeCurrentTurn, observedAt: number): void => { - if (currentTurn) { - subagents.settleTurn(groupKeyOf(currentTurn)) - publishLifecycle(currentTurn, { state: 'interrupted', completedAt: observedAt }) - } - currentTurn = turn - publishLifecycle(turn) - deps.sink.setActivity?.(null) - } - - /** The provider produced, so a turn is running. Idempotent: every frame of one - * reply stays inside the turn its first frame opened. A subagent's output is - * its parent turn's work and never a turn of its own. */ - const ensureTurnOpen = createClaudeTurnOpener({ - isTurnOpen: () => currentTurn !== null, - isSuppressed: () => reopenSuppressed, - open: openTurn - }) - const publishActivity = (kind: string, payload: unknown): void => { - if (!currentTurn) { + const turnId = turn.id + if (turnId === null) { return } const text = claudeProviderFrameActivity(kind, payload) if (text !== undefined) { - deps.sink.setActivity?.(text ? { turnId: currentTurn.turnId, text } : null) + deps.sink.setActivity?.(text ? { turnId, text } : null) } } @@ -154,7 +121,7 @@ export function createClaudeJournalTranslator( // `message_start` is the provider's turn boundary. Keep the first text // delta as a compatibility fallback for streams that omit it. const source = delta ? claudeStreamTurnSource(message) : claudeStreamTurnStartSource(message) - ensureTurnOpen(message, source, observedAt) + turn.ensureOpen(message, source, observedAt) if (!delta) { return false } @@ -188,17 +155,17 @@ export function createClaudeJournalTranslator( uuid: envelope.uuid, assistant: envelope.role === 'assistant' } - const openOutputTurn = (): void => ensureTurnOpen(message, source, observedAt) + const openOutputTurn = (): void => turn.ensureOpen(message, source, observedAt) if (body) { // Opening before the append is what brackets a turn around its own first // output; a reader that scans back to the turn record and stops would // otherwise look straight past the row that opened it. - ensureTurnOpen(message, source, observedAt) + turn.ensureOpen(message, source, observedAt) deps.sink.appendItem(identity, body) changed = true } for (const tool of claudeToolUses(outputEnvelope)) { - ensureTurnOpen(message, source, observedAt) + turn.ensureOpen(message, source, observedAt) tools.set(tool.id, tool) deps.sink.appendItem( claudeToolIdentity(envelope.sessionId, tool.id), @@ -223,7 +190,7 @@ export function createClaudeJournalTranslator( changed = true } if (thinking) { - ensureTurnOpen(message, source, observedAt) + turn.ensureOpen(message, source, observedAt) deps.sink.appendItem(claudeThinkingIdentity(envelope.sessionId, envelope.uuid), { kind: 'message', role: 'reasoning', @@ -244,8 +211,8 @@ export function createClaudeJournalTranslator( userItemId: agentJournalItemKey(identity) }) if (sendEchoTurn) { - reopenSuppressed = false - openTurn(sendEchoTurn, observedAt) + turn.allowReopen() + turn.open(sendEchoTurn, observedAt) } if (changed) { deps.sink.publish() @@ -260,18 +227,11 @@ export function createClaudeJournalTranslator( streamedText.flush() // No event will ever settle a child once the provider is gone. subagents.settleSession() - if (currentTurn) { - // The host saw the child end, so the turn's end is observed, not lost. - publishLifecycle(currentTurn, { - state: 'interrupted', - completedAt: event.observedAt ?? Date.now() - }) - currentTurn = null - } + // The host saw the child end, so the turn's end is observed, not lost. + turn.settle({ state: 'interrupted', completedAt: event.observedAt ?? Date.now() }) // A frame that arrives after the child is gone must not open a turn no // event can close. - reopenSuppressed = true - deps.sink.setActivity?.(null) + turn.suppressReopen() return } if (event.type === 'message' && handleStream(event.message, event.observedAt ?? Date.now())) { @@ -291,21 +251,11 @@ export function createClaudeJournalTranslator( const settlesTurn = isRootClaudeFrame(event.message) if (settlesTurn) { prompts.retryPendingCancellations() + turn.suppressReopenOnFailure(event.message.is_error === true) // The turn is over however it ended, so a foreground child still // reported as working will never be settled by an event. - // A turn that failed, or that the user stopped, is not resumed by - // whatever the provider says next; the next send is what resumes it. - // The latch only ever sets here; an accepted send is what lifts it. - reopenSuppressed ||= event.message.is_error === true - subagents.settleTurn(groupKeyOf(currentTurn)) - if (currentTurn) { - publishLifecycle( - currentTurn, - claudeTurnEndForResult(event.message, event.observedAt ?? Date.now()) - ) - currentTurn = null - } - deps.sink.setActivity?.(null) + subagents.settleTurn(turn.groupKey) + turn.settle(claudeTurnEndForResult(event.message, event.observedAt ?? Date.now())) // The turn is over. A block still awaiting its final keeps the text the // flush above journaled, but its live state goes: an interrupted turn // would otherwise retain that text for the life of the session. @@ -335,6 +285,9 @@ export function createClaudeJournalTranslator( } }, journalPrompts: prompts, + get currentTurnId() { + return turn.id + }, flush: streamedText.flush, get pendingStreamedBlocks() { return streamedText.pending diff --git a/src/main/claude/claude-structured-prompt-ownership.ts b/src/main/claude/claude-structured-prompt-ownership.ts index 1dd73f23552..a76825887e1 100644 --- a/src/main/claude/claude-structured-prompt-ownership.ts +++ b/src/main/claude/claude-structured-prompt-ownership.ts @@ -12,6 +12,11 @@ import { import type { ClaudeLateDispatchSettlement } from './claude-structured-dispatch' import type { ClaudeSession } from './claude-structured-session-state' +/** Conservative user-facing window: below the 10s init and 30s control deadlines, trading + * residual slow-pump risk for ensuring delivery bookkeeping cannot block Stop indefinitely. */ +export const CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS = 3_000 +const CLAUDE_DISPATCH_ADMISSION_POLL_MS = 50 + type CancelInput = Parameters[0] type AnswerInput = Parameters[0] @@ -47,6 +52,40 @@ function requireSession(sessions: Map, sessionId: string) return session } +function waitForClaudeDispatchAdmission( + admitted: () => boolean, + timeoutMs = CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS +): Promise { + return new Promise((resolve) => { + let settled = false + let deadline: ReturnType | null = null + let poll: ReturnType | null = null + const finish = (value: boolean): void => { + if (settled) { + return + } + settled = true + if (deadline) { + clearTimeout(deadline) + } + if (poll) { + clearInterval(poll) + } + resolve(value) + } + const check = (): void => { + if (admitted()) { + finish(true) + } + } + deadline = setTimeout(() => finish(false), timeoutMs) + poll = setInterval(check, CLAUDE_DISPATCH_ADMISSION_POLL_MS) + check() + deadline.unref?.() + poll.unref?.() + }) +} + export async function cancelClaudeStructuredTurn(input: { request: CancelInput sessions: Map @@ -71,20 +110,61 @@ export async function cancelClaudeStructuredTurn(input: { session.prompts.releaseClaim(claim) return { cancelled: false } } + // The translator owns turn identity. A session with no journal has published no + // turn row for a client to name, so it holds no identity this request can contradict. + const ownsRequestedTurn = (): boolean => { + const translator = session.translator + if (!translator) { + return session.dispatchSequence === 0 + } + const currentTurnId = translator.currentTurnId + return currentTurnId === null + ? session.dispatchSequence === 0 + : currentTurnId === request.turnId + } + // The host supplies the durable latest submission; direct adapter callers fall back to + // the current in-memory waiter so an unknown dispatch remains fenced without a latch. + const dispatchAdmissionIsCurrent = (): boolean => + request.dispatchStatus + ? request.dispatchStatus.state === 'accepted' || + request.dispatchStatus.state === 'rejected' || + (request.dispatchStatus.state === 'unknown' && request.dispatchStatus.recovered) + : session.dispatchSequence === 0 || + ![...session.dispatchWaiters, ...session.retiredDispatchWaiters].some( + (waiter) => waiter.dispatchSequence === session.dispatchSequence + ) + // Prompt cancellation has a separate callback-settlement contract, so only a provider with + // cancelQueued can release its uncertain queued send. Ordinary Stop gets a bounded escape below. + const dispatchAdmissionAllowsCancellation = (): boolean => + dispatchAdmissionIsCurrent() || + (Boolean(prompt) && supportsClaudeQueuedInterruptCancellation(session)) + const compactionOwnsTurn = (): boolean => compactions.ownsTurn(request.sessionId, request.turnId) + const currentDispatchHasRetiredWaiter = (): boolean => + session.retiredDispatchWaiters.some( + (waiter) => waiter.dispatchSequence === session.dispatchSequence + ) + let dispatchAdmissionExpired = false + if ( + !prompt && + !compactionOwnsTurn() && + !dispatchAdmissionAllowsCancellation() && + (request.dispatchStatus !== undefined || currentDispatchHasRetiredWaiter()) + ) { + dispatchAdmissionExpired = !(await waitForClaudeDispatchAdmission( + dispatchAdmissionAllowsCancellation + )) + } const isCurrent = (): boolean => sessions.get(request.sessionId) === session && session.fence === request.fence && session.acquisitionGeneration === acquisitionGeneration && (claim && prompt - ? session.activeTurnId === request.turnId && + ? ownsRequestedTurn() && session.prompts.ownsBoundClaim(claim, prompt.itemId, request.turnId) && - (session.activeTurnSequence === session.dispatchSequence || - supportsClaudeQueuedInterruptCancellation(session)) - : compactions.ownsTurn(request.sessionId, request.turnId) || - (session.activeTurnId === undefined - ? session.dispatchSequence === 0 - : session.activeTurnId === request.turnId && - session.activeTurnSequence === session.dispatchSequence)) + (dispatchAdmissionAllowsCancellation() || dispatchAdmissionExpired) + : compactionOwnsTurn() || + (ownsRequestedTurn() && + (dispatchAdmissionAllowsCancellation() || dispatchAdmissionExpired))) let interruptConfirmed = false try { const result = await cancelClaudeTurn( diff --git a/src/main/claude/claude-structured-session-acquisition.ts b/src/main/claude/claude-structured-session-acquisition.ts index eb7bc9b7251..2895bcf557c 100644 --- a/src/main/claude/claude-structured-session-acquisition.ts +++ b/src/main/claude/claude-structured-session-acquisition.ts @@ -138,7 +138,7 @@ export async function acquireClaudeSession({ const { canUseTool, onUserDialog } = buildClaudePermissionCallbacks({ sessionId, prompts, - currentTurnId: () => liveSession?.activeTurnId ?? null, + currentTurnId: () => translator?.currentTurnId ?? null, emit: (event) => callbacks.deliver(attempt, sessionId, () => callbacks.emit(liveSession, input.events, event)) }) diff --git a/src/main/claude/claude-structured-session-adapter.ts b/src/main/claude/claude-structured-session-adapter.ts index f62541b50e9..9357e9635f6 100644 --- a/src/main/claude/claude-structured-session-adapter.ts +++ b/src/main/claude/claude-structured-session-adapter.ts @@ -232,7 +232,7 @@ export class ClaudeStructuredSessionAdapter implements StructuredAgentSessionAda journalItemId, promptKey, questionId, - session.activeTurnId ?? null + session.translator?.currentTurnId ?? null ) } diff --git a/src/main/claude/claude-structured-session-state.ts b/src/main/claude/claude-structured-session-state.ts index 30e830af64e..4c4808b64d8 100644 --- a/src/main/claude/claude-structured-session-state.ts +++ b/src/main/claude/claude-structured-session-state.ts @@ -147,16 +147,12 @@ export type ClaudeSession = { restoreSkippedOptions: Set /** CLI-advertised protocol capabilities from init; gates interrupt-receipt handling. */ capabilities: readonly string[] - /** Provider uuid of the most recently admitted turn, if one is active. */ - activeTurnId?: string backgroundTasks: ClaudeBackgroundTaskTracker /** The `/` surface the CLI reports for itself; seeded from init, kept current * by later init and `commands_changed` frames. */ commands: ClaudeSlashCommandCatalog /** Monotonic fence advanced when a dispatch starts, including unresolved dispatches. */ dispatchSequence: number - /** Dispatch sequence that admitted activeTurnId. */ - activeTurnSequence?: number /** Fences overlapping option writes so a late completion cannot restore stale state. */ optionMutationSequence: number /** Shared durable-close write; a failed write clears this for a retry. */ diff --git a/src/main/claude/claude-structured-session-test-support.ts b/src/main/claude/claude-structured-session-test-support.ts index e728263d058..352a7ed18ec 100644 --- a/src/main/claude/claude-structured-session-test-support.ts +++ b/src/main/claude/claude-structured-session-test-support.ts @@ -14,6 +14,7 @@ import { type ClaudeStructuredLaunch, type ClaudeStructuredSessionEvent } from './claude-structured-session-adapter' +import type { StructuredAgentSessionEventSink } from '../native-chat/agent-session-wire/structured-agent-session-event-sink' export const PROVIDER_SESSION_ID = '819cf9f8-e43c-4ad7-b50f-54aa158a726a' @@ -245,10 +246,21 @@ export async function acquired( undefined, onDispatchSettledLate ) - await adapter.acquire({ identity: identityFor(), fence: 7, spawnToken: 'spawn-9' }) + await adapter.acquire({ + identity: identityFor(), + fence: 7, + spawnToken: 'spawn-9', + // Production acquires with a journal sink, and turn identity lives on the + // translator it builds; without one this fixture models no session that ships. + events: recordingJournalSink() + }) return adapter } +export function recordingJournalSink(): StructuredAgentSessionEventSink { + return { appendItem: () => {}, appendTombstone: () => {}, publish: () => {} } +} + export function tick(): Promise { return new Promise((resolve) => setImmediate(resolve)) } diff --git a/src/main/claude/claude-turn-ownership.test.ts b/src/main/claude/claude-turn-ownership.test.ts new file mode 100644 index 00000000000..661138daf96 --- /dev/null +++ b/src/main/claude/claude-turn-ownership.test.ts @@ -0,0 +1,374 @@ +// Which turn a Stop is allowed to interrupt, for turns the provider opened on its +// own as well as turns Orca's own send echo opened. + +import { describe, expect, it, vi } from 'vitest' +import type { AgentJournalItemBody } from '../../shared/agent-session-journal-types' +import { readAgentJournalTurn } from '../../shared/agent-session-turn-record' +import type { StructuredAgentSessionEventSink } from '../native-chat/agent-session-wire/structured-agent-session-event-sink' +import { agentJournalItemKey } from '../../shared/agent-session-journal-item-key' +import { StructuredSessionCompaction } from '../native-chat/agent-session-wire/structured-session-compaction' +import { + CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS, + cancelClaudeStructuredTurn +} from './claude-structured-prompt-ownership' +import { sessionFor } from './claude-structured-dispatch-test-support' +import { + PROVIDER_SESSION_ID, + USER_MESSAGE, + adapterFor, + fakeClaude, + identityFor, + type FakeConnection +} from './claude-structured-session-test-support' + +function journalSink(): { + sink: StructuredAgentSessionEventSink + bodies: Map +} { + const bodies = new Map() + return { + bodies, + sink: { + appendItem: (identity, body) => bodies.set(agentJournalItemKey(identity), body), + appendTombstone: (identity) => bodies.delete(agentJournalItemKey(identity)), + publish: vi.fn() + } + } +} + +/** The turn row a client would read, which is the id its Stop carries. */ +function runningTurnId(bodies: Map): string | null { + for (const body of bodies.values()) { + const turn = readAgentJournalTurn(body) + if (turn?.state === 'running') { + return turn.turnId + } + } + return null +} + +async function acquiredWithJournal(claude: ReturnType): Promise<{ + adapter: ReturnType + bodies: Map + connection: FakeConnection +}> { + const { sink, bodies } = journalSink() + const adapter = adapterFor(claude) + await adapter.acquire({ + identity: identityFor(), + fence: 7, + spawnToken: 'spawn-9', + events: sink + }) + const connection = claude.connections[0] + if (!connection) { + throw new Error('expected Claude connection') + } + return { adapter, bodies, connection } +} + +function completeTurn(connection: FakeConnection, uuid: string): void { + connection.handlers.onMessage?.({ + type: 'result', + subtype: 'success', + uuid, + session_id: PROVIDER_SESSION_ID, + is_error: false, + terminal_reason: 'completed', + duration_ms: 12 + }) +} + +/** The provider resuming on its own — a background task reporting in wakes the agent. */ +function providerOutput(connection: FakeConnection, uuid: string): void { + connection.handlers.onMessage?.({ + type: 'assistant', + uuid, + session_id: PROVIDER_SESSION_ID, + parent_tool_use_id: null, + message: { role: 'assistant', content: [{ type: 'text', text: 'picking this back up' }] } + }) +} + +describe('Claude turn ownership', () => { + it('stops a turn the provider opened after the session already dispatched once', async () => { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + completeTurn(connection, 'result-1') + expect(runningTurnId(bodies)).toBeNull() + + providerOutput(connection, 'provider-turn') + // The client cancels with the journal row's id, which is the provider frame's. + expect(runningTurnId(bodies)).toBe('provider-turn') + + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'provider-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + }) + + it('refuses a stale id after the owned turn settles', async () => { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + completeTurn(connection, 'result-1') + expect(runningTurnId(bodies)).toBeNull() + + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'echo-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: false }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(false) + }) + + it('keeps the prior dispatch fence after an unknown later send', async () => { + vi.useFakeTimers() + try { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + const sendFirst = connection.send + connection.send = async (message) => { + if (connection.sent.length > 0) { + throw new Error('input pump stopped') + } + await sendFirst(message) + } + + await expect( + adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-2', + body: USER_MESSAGE, + fence: 7 + }) + ).resolves.toMatchObject({ state: 'unknown' }) + + const cancellation = adapter.cancelTurn({ + sessionId: 'session-1', + turnId: 'echo-turn', + fence: 7 + }) + await vi.advanceTimersByTimeAsync(CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS - 1) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(false) + await vi.advanceTimersByTimeAsync(1) + await expect(cancellation).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + } finally { + vi.useRealTimers() + } + }) + + it('lets a queued-cancel provider release an unresolved ordinary Stop', async () => { + const claude = fakeClaude({ + replayUuid: 'echo-turn', + capabilities: ['interrupt_cancel_queued_v1'] + }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + + await expect( + adapter.cancelTurn({ + sessionId: 'session-1', + turnId: 'echo-turn', + fence: 7, + dispatchStatus: { state: 'unknown', recovered: false } + }) + ).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + }) + + it('lets ordinary Stop proceed after the unresolved delivery fence expires', async () => { + vi.useFakeTimers() + try { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + + const cancellation = adapter.cancelTurn({ + sessionId: 'session-1', + turnId: 'echo-turn', + fence: 7, + dispatchStatus: { state: 'unknown', recovered: false } + }) + await vi.advanceTimersByTimeAsync(CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS - 1) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(false) + + await vi.advanceTimersByTimeAsync(1) + await expect(cancellation).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + } finally { + vi.useRealTimers() + } + }) + + it('releases ordinary Stop as soon as a retired delivery fence settles', async () => { + vi.useFakeTimers() + try { + const session = sessionFor() + session.dispatchSequence = 1 + session.translator = { + handle: vi.fn(), + journalPrompts: { cancel: vi.fn(), resolve: vi.fn() }, + currentTurnId: 'turn-1', + flush: vi.fn(), + pendingStreamedBlocks: 0, + dispose: vi.fn() + } + session.retiredDispatchWaiters = [ + { + acceptsResult: false, + clientMessageId: 'client-2', + sentUuid: 'uncertain', + dispatchSequence: 1, + replayContentKey: 'ship-it', + resolve: vi.fn(), + retired: true + } + ] + const interrupt = vi.fn().mockResolvedValue(undefined) + session.connection.interrupt = interrupt + const cancellation = cancelClaudeStructuredTurn({ + request: { sessionId: 'session-1', turnId: 'turn-1', fence: 1 }, + sessions: new Map([['session-1', session]]), + compactions: new StructuredSessionCompaction(), + admitPromptCancellation: () => true + }) + await vi.advanceTimersByTimeAsync(100) + session.retiredDispatchWaiters = [] + await vi.advanceTimersByTimeAsync(100) + const settledBeforeDeadline = interrupt.mock.calls.length > 0 + if (!settledBeforeDeadline) { + await vi.advanceTimersByTimeAsync(CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS) + await cancellation + } + expect(settledBeforeDeadline).toBe(true) + await expect(cancellation).resolves.toEqual({ cancelled: true }) + } finally { + vi.useRealTimers() + } + }) + + it('does not wait when the dispatch admission is already current', async () => { + vi.useFakeTimers() + try { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'echo-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + } finally { + vi.useRealTimers() + } + }) + + it('honors an unresolved journal submission before the first in-memory dispatch', async () => { + vi.useFakeTimers() + try { + const claude = fakeClaude({ replayUuid: null }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + providerOutput(connection, 'provider-turn') + expect(runningTurnId(bodies)).toBe('provider-turn') + + const cancellation = adapter.cancelTurn({ + sessionId: 'session-1', + turnId: 'provider-turn', + fence: 7, + dispatchStatus: { state: 'pending', recovered: false } + }) + await vi.advanceTimersByTimeAsync(CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS - 1) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(false) + await vi.advanceTimersByTimeAsync(1) + await expect(cancellation).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + } finally { + vi.useRealTimers() + } + }) + + it('still stops an echo-opened turn', async () => { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + expect(runningTurnId(bodies)).toBe('echo-turn') + + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'echo-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: true }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) + }) + + it('refuses a stale turn id once the provider opened a newer turn', async () => { + const claude = fakeClaude({ replayUuid: 'echo-turn' }) + const { adapter, bodies, connection } = await acquiredWithJournal(claude) + + await adapter.dispatch({ + sessionId: 'session-1', + clientMessageId: 'client-1', + body: USER_MESSAGE, + fence: 7 + }) + completeTurn(connection, 'result-1') + providerOutput(connection, 'provider-turn') + expect(runningTurnId(bodies)).toBe('provider-turn') + + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'echo-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: false }) + await expect( + adapter.cancelTurn({ sessionId: 'session-1', turnId: 'not-a-turn', fence: 7 }) + ).resolves.toEqual({ cancelled: false }) + expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(false) + }) +}) diff --git a/src/main/native-chat/agent-session-journal/journal-dispatch-observation.test.ts b/src/main/native-chat/agent-session-journal/journal-dispatch-observation.test.ts new file mode 100644 index 00000000000..f13f2a423e7 --- /dev/null +++ b/src/main/native-chat/agent-session-journal/journal-dispatch-observation.test.ts @@ -0,0 +1,65 @@ +import { describe, expect, it } from 'vitest' +import type { AgentJournalSubmission } from '../../../shared/agent-session-journal-types' +import { latestJournalDispatchObservation } from './journal-dispatch-observation' + +describe('latestJournalDispatchObservation', () => { + it('uses the newest submission in the requested fence', () => { + const submissions = [ + { + clientMessageId: 'unknown-7', + fence: 7, + payloadFingerprint: 'unknown-7', + dispatchState: 'unknown' as const, + recovered: true as const, + providerItemId: null, + reason: null, + resolvedAt: null, + submittedAt: 1 + }, + { + clientMessageId: 'pending-8', + fence: 8, + payloadFingerprint: 'pending-8', + dispatchState: 'pending' as const, + providerItemId: null, + reason: null, + resolvedAt: null, + submittedAt: 2 + }, + { + clientMessageId: 'pending-7', + fence: 7, + payloadFingerprint: 'pending-7', + dispatchState: 'pending' as const, + providerItemId: null, + reason: null, + resolvedAt: null, + submittedAt: 2 + }, + { + clientMessageId: 'accepted-7', + fence: 7, + payloadFingerprint: 'accepted-7', + dispatchState: 'accepted' as const, + providerItemId: 'item-7', + reason: null, + resolvedAt: 3, + submittedAt: 4 + } + ] satisfies AgentJournalSubmission[] + const journal = { submissions: () => submissions } + + expect(latestJournalDispatchObservation(journal, 7)).toEqual({ + state: 'accepted', + recovered: false + }) + expect(latestJournalDispatchObservation(journal, 8)).toEqual({ + state: 'pending', + recovered: false + }) + }) + + it('returns no observation when the fence has no submission', () => { + expect(latestJournalDispatchObservation({ submissions: () => [] }, 7)).toBeNull() + }) +}) diff --git a/src/main/native-chat/agent-session-journal/journal-dispatch-observation.ts b/src/main/native-chat/agent-session-journal/journal-dispatch-observation.ts new file mode 100644 index 00000000000..d5248b4163a --- /dev/null +++ b/src/main/native-chat/agent-session-journal/journal-dispatch-observation.ts @@ -0,0 +1,29 @@ +import type { + AgentJournalDispatchState, + AgentJournalSubmission +} from '../../../shared/agent-session-journal-types' + +export type AgentJournalDispatchObservation = { + state: AgentJournalDispatchState + recovered: boolean +} + +/** Returns the latest write-ahead submission for the execution fence. */ +export function latestJournalDispatchObservation( + journal: { + submissions: () => readonly AgentJournalSubmission[] + }, + fence: number +): AgentJournalDispatchObservation | null { + const latest = journal + .submissions() + .reduce( + (current, submission) => + submission.fence === fence && + (current === null || submission.submittedAt >= current.submittedAt) + ? submission + : current, + null + ) + return latest ? { state: latest.dispatchState, recovered: latest.recovered === true } : null +} diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts index e5daa9991d9..729b0e212f1 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts @@ -14,6 +14,7 @@ import type { AgentJournalItemIdentity, AgentJournalItemBody, AgentJournalMessageItem, + AgentJournalDispatchState, AgentSessionJournalIdentity } from '../../../shared/agent-session-journal-types' import type { AgentSessionProviderHandleLink } from '../../../shared/agent-session-provider-handle' @@ -204,6 +205,8 @@ export type StructuredAgentSessionAdapter = { turnId: string fence: number prompt?: { itemId: string } + /** Latest journal submission for this fence, when the host has one. */ + dispatchStatus?: { state: AgentJournalDispatchState; recovered: boolean } | null }): Promise<{ cancelled: boolean }> stopBackgroundTasks?(input: { sessionId: string diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts index 9a3266541be..4fad01d32a4 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts @@ -16,6 +16,7 @@ import type { AgentSessionSubscribers } from './structured-agent-session-subscri import { StructuredTuiTranscriptCatchup } from './structured-tui-transcript-catchup' import { adapterSupportsCreateIfDeclared } from './structured-agent-session-provider-support' import { retryLoadedStructuredAgentSessionSettlement } from './structured-agent-session-settlement-retry' +import { latestJournalDispatchObservation } from '../agent-session-journal/journal-dispatch-observation' type HostHandoffAccess = { session: (sessionId: string) => StructuredAgentSessionHostSession @@ -101,8 +102,18 @@ export function createStructuredAgentSessionHostHandoff( }, acknowledgeNativeRelease: (sessionId) => deps.adapter.acknowledgeSessionRelease?.(sessionId), acquireNative: (input) => acquireNativeHandoffOwner(deps, host, input), - acquireNativeStop: async (sessionId, turnId, fence) => - (await deps.adapter.cancelTurn({ sessionId, turnId, fence })).cancelled, + acquireNativeStop: async (sessionId, turnId, fence) => { + const session = host.session(sessionId) + const dispatchStatus = latestJournalDispatchObservation(session.journal, fence) + return ( + await deps.adapter.cancelTurn({ + sessionId, + turnId, + fence, + ...(dispatchStatus ? { dispatchStatus } : {}) + }) + ).cancelled + }, importTuiHistory: (input) => importTuiHistory(deps, host, input), retryPendingSettlement: (sessionId) => retryLoadedStructuredAgentSessionSettlement({ diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts index c666047e1e7..fb254bbf1e5 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts @@ -17,6 +17,7 @@ import type { } from '../../../shared/agent-session-wire' import { DISPATCH_DOUBT_PERSISTENCE_FAILED } from '../agent-session-journal/journal-dispatch-doubt-reasons' import type { AgentSessionJournal } from '../agent-session-journal/journal-store' +import { latestJournalDispatchObservation } from '../agent-session-journal/journal-dispatch-observation' import type { AgentSessionDispatchOutcome, StructuredAgentSessionAdapter @@ -201,6 +202,7 @@ export async function performCancel( let cancelled = false let note = 'Cancellation requested.' try { + const dispatchStatus = latestJournalDispatchObservation(ctx.journal, ctx.fence) cancelled = input.scope ? ( await ctx.adapter.stopBackgroundTasks?.({ @@ -214,6 +216,7 @@ export async function performCancel( sessionId: ctx.sessionId, turnId: input.turnId, fence: ctx.fence, + ...(dispatchStatus ? { dispatchStatus } : {}), ...(input.prompt ? { prompt: { itemId: input.prompt.itemId } } : {}) }) ).cancelled diff --git a/src/main/runtime/claude-structured-session-integration.test.ts b/src/main/runtime/claude-structured-session-integration.test.ts index d464d87e8f7..f6b540bc5af 100644 --- a/src/main/runtime/claude-structured-session-integration.test.ts +++ b/src/main/runtime/claude-structured-session-integration.test.ts @@ -600,6 +600,18 @@ describe('a structured Claude session over agentSession.*', () => { `claude:${PROVIDER_SESSION}:assistant-leaf` ) + // A background task can wake Claude after the preceding dispatch settled. + // This assistant frame opens the provider-owned turn without an Orca send + // echo; Stop must target that frame's id rather than the settled user row. + claude.live().handlers.onMessage?.({ + type: 'assistant', + session_id: PROVIDER_SESSION, + uuid: 'provider-opened-assistant', + parent_tool_use_id: null, + message: { role: 'assistant', content: [{ type: 'text', text: 'Background task update.' }] } + }) + await getStructuredAgentSessionHost()?.flushStreamedEvents(SESSION) + claude.live().handlers.onMessage?.({ type: 'system', subtype: 'background_tasks_changed', @@ -672,10 +684,14 @@ describe('a structured Claude session over agentSession.*', () => { await expect( ok('agentSession.cancel', { - envelope: envelope('agentSession.cancel', { turnId: 'user-1' }, created.fence), - turnId: 'user-1' + envelope: envelope( + 'agentSession.cancel', + { turnId: 'provider-opened-assistant' }, + created.fence + ), + turnId: 'provider-opened-assistant' }) - ).resolves.toMatchObject({ turnId: 'user-1', cancelled: true }) + ).resolves.toMatchObject({ turnId: 'provider-opened-assistant', cancelled: true }) expect(claude.live().calls.at(-1)).toMatchObject({ subtype: 'interrupt' }) const host = getStructuredAgentSessionHost() as unknown as { @@ -700,13 +716,13 @@ describe('a structured Claude session over agentSession.*', () => { }) expect(claude.live().launch.options).toMatchObject({ resume: PROVIDER_SESSION, - resumeSessionAt: 'assistant-leaf' + resumeSessionAt: 'provider-opened-assistant' }) expect(host.deps.store.getRecord(SESSION).providerHandleChain.at(-1)).toMatchObject({ handle: { provider: 'claude', sessionId: PROVIDER_SESSION, - leafUuid: 'assistant-leaf' + leafUuid: 'provider-opened-assistant' }, origin: 'resumed' }) From 3520e8eb41e9206e312bf66dee3a353a56a4a437 Mon Sep 17 00:00:00 2001 From: BAEK'space <112856532+100space@users.noreply.github.com> Date: Wed, 16 Sep 2026 09:32:54 +0900 Subject: [PATCH 02/28] fix: highlight bash fences in Markdown source mode (#20592) * fix: highlight bash fences in Markdown source mode * refactor: trim shell fence alias registration Drop the speculative exports and document the alias-resolution rationale in one WHY comment; the idempotency guard stays. --------- Co-authored-by: Jinjing <6427696+AmethystLiang@users.noreply.github.com> --- .../register-shell-markdown-aliases.test.ts | 32 ++++++++ .../register-shell-markdown-aliases.ts | 24 ++++++ src/renderer/src/lib/monaco-setup.ts | 2 + .../markdown-source-bash-highlighting.spec.ts | 78 +++++++++++++++++++ 4 files changed, 136 insertions(+) create mode 100644 src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.test.ts create mode 100644 src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.ts create mode 100644 tests/e2e/markdown-source-bash-highlighting.spec.ts diff --git a/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.test.ts b/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.test.ts new file mode 100644 index 00000000000..d977b4322e5 --- /dev/null +++ b/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.test.ts @@ -0,0 +1,32 @@ +import { describe, expect, it, vi } from 'vitest' +import { registerShellMarkdownAliases } from './register-shell-markdown-aliases' + +function createMonacoMock(aliases: string[] = ['Shell', 'sh']) { + return { + languages: { + getLanguages: vi.fn(() => [{ id: 'shell', aliases }]), + register: vi.fn() + } + } +} + +describe('registerShellMarkdownAliases', () => { + it('registers bash alongside the built-in shell aliases', () => { + const monaco = createMonacoMock() + + registerShellMarkdownAliases(monaco) + + expect(monaco.languages.register).toHaveBeenCalledWith({ + id: 'shell', + aliases: ['Shell', 'sh', 'bash'] + }) + }) + + it('does not register the alias again when Monaco already exposes it', () => { + const monaco = createMonacoMock(['Shell', 'sh', 'Bash']) + + registerShellMarkdownAliases(monaco) + + expect(monaco.languages.register).not.toHaveBeenCalled() + }) +}) diff --git a/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.ts b/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.ts new file mode 100644 index 00000000000..1cad43f1dfd --- /dev/null +++ b/src/renderer/src/lib/monaco-languages/register-shell-markdown-aliases.ts @@ -0,0 +1,24 @@ +import type * as Monaco from 'monaco-editor' + +type MonacoModule = typeof Monaco + +// Why: Monaco resolves Markdown fences by alias (never extension) and its shell +// language declares `bash` only as an extension, so ```bash rendered plain while +// ```sh highlighted. Re-registering id 'shell' merges the alias and keeps the +// built-in tokenizer; `Shell` stays first because Monaco uses the first alias as +// the language's display name. +export function registerShellMarkdownAliases(monaco: { + languages: Pick +}): void { + const bashAlreadyRegistered = monaco.languages + .getLanguages() + .some( + ({ id, aliases }) => + id === 'shell' && aliases?.some((alias) => alias.toLowerCase() === 'bash') + ) + if (bashAlreadyRegistered) { + return + } + + monaco.languages.register({ id: 'shell', aliases: ['Shell', 'sh', 'bash'] }) +} diff --git a/src/renderer/src/lib/monaco-setup.ts b/src/renderer/src/lib/monaco-setup.ts index 523ecf8e77b..57a42fc230f 100644 --- a/src/renderer/src/lib/monaco-setup.ts +++ b/src/renderer/src/lib/monaco-setup.ts @@ -10,6 +10,7 @@ import tsWorker from 'monaco-editor/esm/vs/language/typescript/ts.worker?worker' import { registerAstroLanguage } from './monaco-languages/register-astro' import { registerJsonlLanguage } from './monaco-languages/register-jsonl' import { registerNimLanguage } from './monaco-languages/register-nim' +import { registerShellMarkdownAliases } from './monaco-languages/register-shell-markdown-aliases' import { registerSvelteLanguage } from './monaco-languages/register-svelte' import { registerVueLanguage } from './monaco-languages/register-vue' import { installMonacoDelayerCancellationGuard } from './monaco-delayer-cancellation-guard' @@ -79,6 +80,7 @@ registerSvelteLanguage(monaco) registerAstroLanguage(monaco) registerNimLanguage(monaco) registerJsonlLanguage(monaco) +registerShellMarkdownAliases(monaco) installMonacoDelayerCancellationGuard() installMonacoDiffEditorDisposalGuard(monaco) installMonacoPeekReferencesPreviewOptions() diff --git a/tests/e2e/markdown-source-bash-highlighting.spec.ts b/tests/e2e/markdown-source-bash-highlighting.spec.ts new file mode 100644 index 00000000000..33b0e0ed82e --- /dev/null +++ b/tests/e2e/markdown-source-bash-highlighting.spec.ts @@ -0,0 +1,78 @@ +import type { Locator, Page } from '@stablyai/playwright-test' +import { test, expect } from './helpers/orca-app' +import { waitForActiveWorktree, waitForSessionReady } from './helpers/store' +import { + cleanupMarkdownFixture, + createMarkdownFixture, + getActiveWorktreeContext, + openMarkdownFixture, + waitForRichMarkdownEditor +} from './helpers/markdown-editor-fixture' + +const MARKDOWN = `\`\`\`bash +printf '%s\\n' "build complete" # bash-highlight-marker +\`\`\` + +\`\`\`sh +printf '%s\\n' "build complete" # shell-control-marker +\`\`\` +` + +async function switchToSourceMode(page: Page): Promise { + await page.evaluate(() => { + const store = window.__store + if (!store) { + throw new Error('window.__store is not available') + } + const state = store.getState() + if (!state.activeFileId) { + throw new Error('No active editor file') + } + state.setMarkdownViewMode(state.activeFileId, 'source') + }) +} + +async function distinctLeafTokenColors(line: Locator): Promise { + return line.locator('span').evaluateAll((spans) => { + const colors = spans + .filter((span) => span.childElementCount === 0 && span.textContent?.trim()) + .map((span) => window.getComputedStyle(span).color) + return new Set(colors).size + }) +} + +test('highlights bash and sh fences in Markdown Source mode', async ({ orcaPage }, testInfo) => { + await waitForSessionReady(orcaPage) + await waitForActiveWorktree(orcaPage) + + const context = await getActiveWorktreeContext(orcaPage) + let filePath: string | null = null + + try { + filePath = await createMarkdownFixture( + context, + '.orca-e2e-markdown-source-highlighting', + 'bash-and-sh', + testInfo.workerIndex, + MARKDOWN + ) + await openMarkdownFixture(orcaPage, context, filePath) + await waitForRichMarkdownEditor(orcaPage) + await switchToSourceMode(orcaPage) + + const monaco = orcaPage.locator('.monaco-editor').first() + await expect(monaco).toBeVisible({ timeout: 25_000 }) + + for (const marker of ['bash-highlight-marker', 'shell-control-marker']) { + const line = monaco.locator('.view-line').filter({ hasText: marker }) + await expect(line).toHaveCount(1) + await expect + .poll(() => distinctLeafTokenColors(line), { + message: `${marker} should render with distinct shell token colors` + }) + .toBeGreaterThan(1) + } + } finally { + await cleanupMarkdownFixture(filePath) + } +}) From 7ec2986fd11e2de3964546657c0069a00f0676d6 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 17:36:08 -0700 Subject: [PATCH 03/28] fix(lint): merge the duplicate agent-status contract type imports (#20907) main's tip fails audit:code-quality:native on import(no-duplicates), which reds the static analysis and verify jobs of every open PR via the merge ref. --- src/shared/agent-status-store-snapshot-budget.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/shared/agent-status-store-snapshot-budget.ts b/src/shared/agent-status-store-snapshot-budget.ts index 6ae4dc8f040..dfb4665a01a 100644 --- a/src/shared/agent-status-store-snapshot-budget.ts +++ b/src/shared/agent-status-store-snapshot-budget.ts @@ -4,10 +4,12 @@ import { } from './agent-status-store-contract' import type { AgentChildWorkAliasRecord } from './agent-status-child-work-alias' import type { AgentChildWorkRecord } from './agent-status-child-work' -import type { AgentStatusFactRecord } from './agent-status-store-contract' +import type { + AgentStatusFactRecord, + AgentStatusTombstoneRecord +} from './agent-status-store-contract' import type { AgentStatusParentRecord } from './agent-status-store-parent' import type { AgentStatusStoreState } from './agent-status-store-state' -import type { AgentStatusTombstoneRecord } from './agent-status-store-contract' import { getUtf8ByteLength } from './utf8-byte-limits' type AgentStatusSnapshotRecord = From ea7902cbeebe3369f3512c77bb897a118ae36576 Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Tue, 15 Sep 2026 21:12:33 -0400 Subject: [PATCH 04/28] refactor(mobile): send the device-state holdouts through typed RpcOperations (step 4, wave 3) (#20915) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(mobile): record the terminal input surface before migrating it (step 4) Three families the recorder could not reach before, recorded against the pinned baseline's product code so the migration that follows has a parity oracle. The device state these hooks read is real, not declared. The pasteboard is the engine's existing per-recording fixture, so a paste reads the bytes a recorded copy put there one action earlier; the buffered draft store is the product's own useBufferedTerminalDrafts mounted in the same tree. No engine file is touched, so no existing golden moves and no header re-digests: 13 new goldens, 641 unchanged. Only the clipboard's text path is driven. The image path decodes a raster through expo-image-manipulator and stages it on expo-file-system, and recording it would mean inventing image and file-system behaviour. Both paths reach the same send. Two family mutants, one per family whose state() can observe a reply: keeping a refused send's draft cleared, and resolving the first repo's connection instead of the workspace's own. The paste family gets none — the hook returns void and calls onSuccess for an accepted and a refused send alike, so its only reply-dependent behaviour is the takeover report, which lives in the sender list. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): send the device-state holdouts through typed RpcOperations (step 4) Ten references over six files, the last of the raw-port sites whose blocker was that a recording could not reach them. Zero goldens move: every one of the six was recorded first, and the suite replays them against the rewritten code. Two operations are new and four sites reuse one that already fixes their method: - accounts.consumeCodexResetCredit, throw-message, payload unread — the call site's decodeResetResult is one scope-and-snapshot check and splitting it across a reader would put one refusal rule in two places. - notifications.getMissedSince, skip — a background pass with no screen to raise a host message on. The member read stays where the optional chaining was. - repo.list: the accessory's connection lookup joins the new-tab reader, which already threw the host's message; the new-workspace dialog joins the skip reader, which already left the list it had. Same reader, same policies, no new acceptance rule and no third operation on that method. - terminal.send: the composed send, the live keystroke send and the clipboard paste all join terminal.input-send, which the accessory raw send already used and which reads acceptance the same way isTerminalSendRpcAccepted did. The typed contract is stricter than the client's own scope type on the redeem: the catalog pairs each runtime with the distro it may name, while the shared CodexResetCreditExpectedScope does not. The invariant is real and held by the attempt journal's schema, so the narrowing is asserted at the send with that named; the bytes are unchanged. Widening the catalog would be a wire change. Two source-shape ratchets pinned the old call text and move with it. The route parity suite's runtime strings drop from 540 to 537: the three method literals that became operation definitions, and nothing else. Every hook, callback identity, effect, JSX and style pin is unchanged. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): correct the terminalInputSend and PTY-mode holdout comments `terminalInputSend`'s doc still claimed two call sites. It now has five non-test consumers, all on the same acceptance: the query-reply responder, the live accessory raw send, the session screen's composed draft send and live keystroke send, and the clipboard paste. That comment is where the next person narrowing `object-result-or-null` learns whose lost-ack meaning they are changing, so it names all five and their files. The session inventory block closed with "opens or rides a subscription, or takes its method as a parameter", which no longer covers every holdout below it: `use-mobile-session-terminal-input.ts` is held out for a webview handle. Its own reason also said PTY mode was unavailable in the runner, which this branch's terminal-input adapter contradicts by fixturing the mode map a paste reads. The sentence is narrowed and the holdout restated: PTY mode is recordable, the live webview handle is what is left. Comments only. No product behaviour, no golden, no parity hash moves. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): pair the draft-restore mutant with the refused send `terminal-send-refusal-restores-draft` documents the harm of a refused send that leaves the composed draft cleared, but it was driven by the accepted scenario, where the kill comes from the inverse (a draft restored after a send that landed). The refused scenario shows the documented harm directly: without the restore the input stays empty after the runtime says no. Still one mutant per family, and it kills there — verified by running the suite, `terminal-input-send-refused: kills terminal-send-refusal-restores- draft`. No golden, no product change. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): correct the gesture-input holdout and drop a dead repo type Three round-2 corrections, comments and one dead type; no behaviour. The gesture-input holdout claimed a recorder gap that does not exist. The flush path reads refs only — client, connection state, PTY modes, the gesture buckets, active handle and tab type — and the clear-buffer reference optional-chains the webview ref, so a mount with a null terminal ref puts both sends on the wire. The reason now says what is true: those 2 references are migratable as they stand and were out of this PR's bucket. The session summary sentence no longer offers a webview reason. `RuntimeRepoSummary` in mobile-session-route-types.ts lost its last consumer when the accessory hook moved to `MobileRuntimeRepoSummary`; `git grep RuntimeRepoSummary` now finds only the `Mobile`-prefixed type. Deleted. Both refreshed route-parity hashes still credited the `interpretOrThrowRefusalMessage` refresh for their current value. They now state the invariant they pin and this PR's reason for the move: the sends and repo reads inside those bodies name their `RpcOperation` instead of the raw `sendRequest` port. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- ...chestration.workerterminaluserinput-1.json | 647 ++++++++++++++ ...n.terminal-input-send-terminal.send-1.json | 687 +++++++++++++++ ...chestration.workerterminaluserinput-1.json | 706 +++++++++++++++ ...session.terminal-paste-settings.get-1.json | 816 +++++++++++++++++ ...ession.terminal-paste-terminal.send-1.json | 817 ++++++++++++++++++ ...ssion.worktree-connection-repo.list-1.json | 732 ++++++++++++++++ ...on.worktree-connection-settings.get-1.json | 603 +++++++++++++ .../goldens/terminal-input-send-accepted.json | 157 ++++ .../goldens/terminal-input-send-refused.json | 97 +++ .../goldens/terminal-live-input-accepted.json | 141 +++ .../goldens/terminal-paste-accepted.json | 216 +++++ .../goldens/terminal-paste-refused.json | 157 ++++ ...terminal-worktree-connection-resolved.json | 143 +++ mobile/rpc-foundation/pilot-scenarios.json | 371 ++++++++ .../codex-reset-credit-consume-operations.ts | 37 + mobile/src/components/codex-reset-credit.ts | 25 +- .../use-new-workspace-repositories.ts | 21 +- .../push-dismissal-operations.ts | 24 + .../push-dismissal-reconciliation.ts | 12 +- ...ent-send-keyboard-dismissal-wiring.test.ts | 8 +- .../session/mobile-session-read-operations.ts | 13 +- .../mobile-session-route-parity.test.ts | 16 +- .../src/session/mobile-session-route-types.ts | 5 - .../use-mobile-session-accessory-selection.ts | 12 +- ...se-mobile-session-terminal-send-actions.ts | 16 +- .../src/session/use-mobile-terminal-paste.ts | 6 +- .../terminal/mobile-terminal-operations.ts | 8 +- .../adapters/mounted-operation-modules.ts | 5 + .../session-terminal-input-mount-adapters.ts | 246 ++++++ .../mutants/operation-mutations.ts | 19 + .../mutants/pilot-mutants.test.ts | 4 +- .../unvalidated-rpc-request-port-inventory.ts | 45 +- 32 files changed, 6721 insertions(+), 91 deletions(-) create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json create mode 100644 mobile/rpc-foundation/goldens/terminal-input-send-accepted.json create mode 100644 mobile/rpc-foundation/goldens/terminal-input-send-refused.json create mode 100644 mobile/rpc-foundation/goldens/terminal-live-input-accepted.json create mode 100644 mobile/rpc-foundation/goldens/terminal-paste-accepted.json create mode 100644 mobile/rpc-foundation/goldens/terminal-paste-refused.json create mode 100644 mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json create mode 100644 mobile/src/components/codex-reset-credit-consume-operations.ts create mode 100644 mobile/src/notifications/push-dismissal-operations.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/session-terminal-input-mount-adapters.ts 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 new file mode 100644 index 00000000000..220e3d44d89 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1.json @@ -0,0 +1,647 @@ +{ + "operation": "session.terminal-input-send", + "family": "session.terminal-input-send", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "cde3cac5407ef731315d18fc855b2696b9bfd30b90cb43d4a2cc812059cdd987", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0203262b5432": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "093b7147f9b0": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "0ba725456703": { + "crash": { + "$rpc": "null" + }, + "input": "", + "liveAccepted": "unsent", + "sending": false + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "34a453846d11": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "4f58026b7877": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "5e9826c92f7b": { + "crash": { + "$rpc": "null" + }, + "input": "ls -la", + "liveAccepted": "unsent", + "sending": false + }, + "6aad8cc2e655": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "750695db0ef8": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84777d7d765a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "ad01b4d8b4de": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "bca437e23d8a": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "c28710807a02": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "cb9a9683ab1e": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "d642e739823d": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "dc19ad107e96": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-session.terminal-input-send-orchestration.workerterminaluserinput-1", + "checkpoints": [ + { + "id": "terminal-input-send-accepted.prelude:composed", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.normal:sent", + "observation": { + "sender": ["750695db0ef8", "093b7147f9b0"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.result-absent:sent", + "observation": { + "sender": ["750695db0ef8", "bca437e23d8a"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.result-null:sent", + "observation": { + "sender": ["750695db0ef8", "d642e739823d"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-ok-missing:sent", + "observation": { + "sender": ["750695db0ef8", "6aad8cc2e655"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-false-string-error:sent", + "observation": { + "sender": ["750695db0ef8", "cb9a9683ab1e"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-false-object-error:sent", + "observation": { + "sender": ["750695db0ef8", "34a453846d11"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.outer-refused:sent", + "observation": { + "sender": ["750695db0ef8", "84777d7d765a"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.outer-refused-no-message:sent", + "observation": { + "sender": ["750695db0ef8", "dc19ad107e96"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.method-not-found:sent", + "observation": { + "sender": ["750695db0ef8", "ad01b4d8b4de"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.transport-rejection:sent", + "observation": { + "sender": ["750695db0ef8", "0203262b5432"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.transport-rejection-no-message:sent", + "observation": { + "sender": ["750695db0ef8", "4f58026b7877"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..be227577c47 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-input-send-terminal.send-1.json @@ -0,0 +1,687 @@ +{ + "operation": "session.terminal-input-send", + "family": "session.terminal-input-send", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "6575a0f89894d9b66e50a73446dfe92293ceccc7048b556f1ff114fd3ce05b8e", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "093b7147f9b0": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "0ba725456703": { + "crash": { + "$rpc": "null" + }, + "input": "", + "liveAccepted": "unsent", + "sending": false + }, + "18f98f3c57c5": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "3e2a483908bf": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "431e2651ee54": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "53392468a4c7": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "59ae86ca6e18": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "5c7f8cb7e930": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "5e9826c92f7b": { + "crash": { + "$rpc": "null" + }, + "input": "ls -la", + "liveAccepted": "unsent", + "sending": false + }, + "750695db0ef8": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "9be1be46fdb3": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "ae241b7bb5cd": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "c28710807a02": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "db539dd077c2": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "ea46298a695e": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-session.terminal-input-send-terminal.send-1", + "checkpoints": [ + { + "id": "terminal-input-send-accepted.prelude:composed", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.normal:sent", + "observation": { + "sender": ["750695db0ef8", "093b7147f9b0"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.result-absent:sent", + "observation": { + "sender": ["5c7f8cb7e930"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.result-null:sent", + "observation": { + "sender": ["9be1be46fdb3"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-ok-missing:sent", + "observation": { + "sender": ["431e2651ee54"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-false-string-error:sent", + "observation": { + "sender": ["59ae86ca6e18"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.inner-false-object-error:sent", + "observation": { + "sender": ["ae241b7bb5cd"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.outer-refused:sent", + "observation": { + "sender": ["db539dd077c2"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.outer-refused-no-message:sent", + "observation": { + "sender": ["53392468a4c7"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.method-not-found:sent", + "observation": { + "sender": ["3e2a483908bf"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.transport-rejection:sent", + "observation": { + "sender": ["18f98f3c57c5"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "terminal-input-send-accepted.transport-rejection-no-message:sent", + "observation": { + "sender": ["ea46298a695e"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..41b45d309c2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-orchestration.workerterminaluserinput-1.json @@ -0,0 +1,706 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.terminal-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "27c4f13ae43042cf5e6b5ca95e9c1a37db2f1f0c08b31a1164bb56cf0967549a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0203262b5432": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "0aa7daf076d0": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-3", + "ok": false + } + } + }, + "1ec65e7a7aca": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-3", + "ok": false + } + } + }, + "23812b44df37": { + "name": "refresh-can-paste", + "value": {}, + "sent": 3 + }, + "3735935dd61c": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-3", + "ok": false + } + } + }, + "4e9a0397c220": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "4f58026b7877": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "51eb315f9426": { + "name": "flush-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "528166d1face": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "sent" + }, + "61a24302b6cc": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "63ceb8bb55e0": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "7107540f16ca": { + "name": "toast", + "value": { + "durationMs": { + "$rpc": "null" + }, + "message": "Copied" + }, + "sent": 1 + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "7f20afa60962": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "84990d8de7e9": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "9c3247b7bf64": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "b7fae68f05c9": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "d8dd3cd46511": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true + } + } + }, + "e142ca57bc1f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + }, + "f63f705d3a7f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "matrix-session.terminal-paste-orchestration.workerterminaluserinput-1", + "checkpoints": [ + { + "id": "terminal-paste-accepted.prelude:copied", + "observation": { + "sender": ["f3df5e006d8e"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.normal:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.result-absent:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "d8dd3cd46511"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.result-null:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "b7fae68f05c9"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-ok-missing:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "9c3247b7bf64"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-string-error:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "61a24302b6cc"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-object-error:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "7f20afa60962"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "1ec65e7a7aca"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused-no-message:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "3735935dd61c"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.method-not-found:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "0aa7daf076d0"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "0203262b5432"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "4f58026b7877"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..fe2e2ee3f53 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-settings.get-1.json @@ -0,0 +1,816 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.terminal-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "449f8c793a371dddf1bb9b3beb36b2dbd9b991918dae1f6290df75fe6d2aeace", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0fc3e204e7ba": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "127ad2bdc042": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "23812b44df37": { + "name": "refresh-can-paste", + "value": {}, + "sent": 3 + }, + "2b3aa0da0852": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "4e9a0397c220": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "51eb315f9426": { + "name": "flush-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "528166d1face": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "sent" + }, + "63ceb8bb55e0": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "6a98511b6371": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7107540f16ca": { + "name": "toast", + "value": { + "durationMs": { + "$rpc": "null" + }, + "message": "Copied" + }, + "sent": 1 + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "84990d8de7e9": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "8b77098df0c3": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "8f8296303a77": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "b759ab27e4dd": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d27ce798af34": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "e0cf1af55a54": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "e142ca57bc1f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "e1bd8b4a5d70": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + }, + "f63f705d3a7f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "matrix-session.terminal-paste-settings.get-1", + "checkpoints": [ + { + "id": "terminal-paste-accepted.normal:copied", + "observation": { + "sender": ["f3df5e006d8e"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.normal:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.result-absent:copied", + "observation": { + "sender": ["e0cf1af55a54"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.result-absent:pasted", + "observation": { + "sender": ["e0cf1af55a54", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.result-null:copied", + "observation": { + "sender": ["e1bd8b4a5d70"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.result-null:pasted", + "observation": { + "sender": ["e1bd8b4a5d70", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-ok-missing:copied", + "observation": { + "sender": ["0fc3e204e7ba"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.inner-ok-missing:pasted", + "observation": { + "sender": ["0fc3e204e7ba", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-string-error:copied", + "observation": { + "sender": ["d27ce798af34"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-string-error:pasted", + "observation": { + "sender": ["d27ce798af34", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-object-error:copied", + "observation": { + "sender": ["127ad2bdc042"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-object-error:pasted", + "observation": { + "sender": ["127ad2bdc042", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused:copied", + "observation": { + "sender": ["8f8296303a77"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused:pasted", + "observation": { + "sender": ["8f8296303a77", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused-no-message:copied", + "observation": { + "sender": ["6a98511b6371"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused-no-message:pasted", + "observation": { + "sender": ["6a98511b6371", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.method-not-found:copied", + "observation": { + "sender": ["b759ab27e4dd"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.method-not-found:pasted", + "observation": { + "sender": ["b759ab27e4dd", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection:copied", + "observation": { + "sender": ["8b77098df0c3"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection:pasted", + "observation": { + "sender": ["8b77098df0c3", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection-no-message:copied", + "observation": { + "sender": ["2b3aa0da0852"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", + "observation": { + "sender": ["2b3aa0da0852", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..64bd9060e66 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-paste-terminal.send-1.json @@ -0,0 +1,817 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.terminal-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "5cc67ab6df80a81be814a16cb60dcc4c703b0fc17594e409697a9fdeb0edeb76", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0bc8e5a0d4e1": { + "name": "refresh-can-paste", + "value": {}, + "sent": 2 + }, + "21f01e71bca3": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "23812b44df37": { + "name": "refresh-can-paste", + "value": {}, + "sent": 3 + }, + "280b3e341a56": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "4e9a0397c220": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "50c4c0f3e188": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "51eb315f9426": { + "name": "flush-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "528166d1face": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "sent" + }, + "63ceb8bb55e0": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "7107540f16ca": { + "name": "toast", + "value": { + "durationMs": { + "$rpc": "null" + }, + "message": "Copied" + }, + "sent": 1 + }, + "7a59c74ff63f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "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 + } + } + }, + "7b22b223fd28": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Connection closed", + "isRpcDeliveryUnknown": true + } + } + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "847bbb81a389": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "84990d8de7e9": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "a3feb18ca8f5": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "a76bbdc0f8dd": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "cb723e8eb690": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "d8542c0eba03": { + "name": "toast", + "value": { + "durationMs": 1500, + "message": "Paste failed" + }, + "sent": 2 + }, + "def2823f0306": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "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 + } + } + } + }, + "e142ca57bc1f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ebe2af37c0a0": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "error" + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + }, + "f63f705d3a7f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "fd8a212e7908": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + } + }, + "recording": { + "scenario": "matrix-session.terminal-paste-terminal.send-1", + "checkpoints": [ + { + "id": "terminal-paste-accepted.prelude:copied", + "observation": { + "sender": ["f3df5e006d8e"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "terminal-paste-accepted.prelude:cleanup", + "observation": { + "sender": ["f3df5e006d8e", "7b22b223fd28"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca", "51eb315f9426", "d8542c0eba03"] + } + }, + { + "id": "terminal-paste-accepted.normal:pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + }, + { + "id": "terminal-paste-accepted.result-absent:pasted", + "observation": { + "sender": ["f3df5e006d8e", "fd8a212e7908"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.result-null:pasted", + "observation": { + "sender": ["f3df5e006d8e", "847bbb81a389"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.inner-ok-missing:pasted", + "observation": { + "sender": ["f3df5e006d8e", "50c4c0f3e188"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-string-error:pasted", + "observation": { + "sender": ["f3df5e006d8e", "a3feb18ca8f5"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.inner-false-object-error:pasted", + "observation": { + "sender": ["f3df5e006d8e", "def2823f0306"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused:pasted", + "observation": { + "sender": ["f3df5e006d8e", "21f01e71bca3"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.outer-refused-no-message:pasted", + "observation": { + "sender": ["f3df5e006d8e", "280b3e341a56"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.method-not-found:pasted", + "observation": { + "sender": ["f3df5e006d8e", "7a59c74ff63f"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection:pasted", + "observation": { + "sender": ["f3df5e006d8e", "cb723e8eb690"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "ebe2af37c0a0", + "effects": ["7107540f16ca", "51eb315f9426", "d8542c0eba03"] + } + }, + { + "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", + "observation": { + "sender": ["f3df5e006d8e", "a76bbdc0f8dd"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "ebe2af37c0a0", + "effects": ["7107540f16ca", "51eb315f9426", "d8542c0eba03"] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..a87883ff6ff --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-repo.list-1.json @@ -0,0 +1,732 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.worktree-connection", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "e7fb7a8083aac4c8c5edc7dd52465ca53bfcded00bf8b1ec18ae7604651bbe32", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2381a3fe154e": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot read properties of undefined (reading 'repos')", + "isRpcDeliveryUnknown": false + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "37c71f7bece7": { + "connectionId": "Cannot read properties of undefined (reading 'repos')", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "397587780f89": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "45ad6315feb3": { + "connectionId": "", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "52500878f297": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "572ea5e1e980": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "594101d24d72": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "63200026ea8b": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "repos": [ + { + "connectionId": "ssh-zeta", + "displayName": "zeta", + "id": "repo-z" + }, + { + "connectionId": "ssh-alpha", + "displayName": "alpha", + "id": "repo-a" + } + ] + } + } + } + }, + "63c1ccf6c3e3": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "63dfbb6942f2": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot read properties of null (reading 'repos')", + "isRpcDeliveryUnknown": false + } + }, + "6e5c6593dad8": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "87c5de8dadf8": { + "connectionId": { + "$rpc": "null" + }, + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "978b9015256c": { + "connectionId": "transport failure", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "9eb52b24aea4": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "ae85758452ae": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "af2065a16bd9": { + "connectionId": "Unknown method", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "caa7fdd9839a": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "cc1facdf008c": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "d1013a931f34": { + "connectionId": "Cannot read properties of null (reading 'repos')", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "d607cc114b04": { + "connectionId": "outer refused", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "e31fdb68b5c2": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "e61132f30b52": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "ssh-alpha" + }, + "e84b72d7c6fc": { + "connectionId": "ssh-alpha", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ee20a1dc39e7": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "null" + } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + } + }, + "recording": { + "scenario": "matrix-session.worktree-connection-repo.list-1", + "checkpoints": [ + { + "id": "terminal-worktree-connection-resolved.normal:resolved", + "observation": { + "sender": ["f3df5e006d8e", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.result-absent:resolved", + "observation": { + "sender": ["f3df5e006d8e", "9eb52b24aea4"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "2381a3fe154e" + }, + "state": "37c71f7bece7", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.result-null:resolved", + "observation": { + "sender": ["f3df5e006d8e", "63c1ccf6c3e3"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "63dfbb6942f2" + }, + "state": "d1013a931f34", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-ok-missing:resolved", + "observation": { + "sender": ["f3df5e006d8e", "ae85758452ae"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "ee20a1dc39e7" + }, + "state": "87c5de8dadf8", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-false-string-error:resolved", + "observation": { + "sender": ["f3df5e006d8e", "572ea5e1e980"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "ee20a1dc39e7" + }, + "state": "87c5de8dadf8", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-false-object-error:resolved", + "observation": { + "sender": ["f3df5e006d8e", "caa7fdd9839a"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "ee20a1dc39e7" + }, + "state": "87c5de8dadf8", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.outer-refused:resolved", + "observation": { + "sender": ["f3df5e006d8e", "52500878f297"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "32a7c0ae7918" + }, + "state": "d607cc114b04", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.outer-refused-no-message:resolved", + "observation": { + "sender": ["f3df5e006d8e", "397587780f89"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "f3b516f62081" + }, + "state": "45ad6315feb3", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.method-not-found:resolved", + "observation": { + "sender": ["f3df5e006d8e", "e31fdb68b5c2"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "b948e8307e81" + }, + "state": "af2065a16bd9", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.transport-rejection:resolved", + "observation": { + "sender": ["f3df5e006d8e", "6e5c6593dad8"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "a947768bc0ed" + }, + "state": "978b9015256c", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.transport-rejection-no-message:resolved", + "observation": { + "sender": ["f3df5e006d8e", "cc1facdf008c"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "c7584e82c72f" + }, + "state": "45ad6315feb3", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..8628cbc5a67 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-session.worktree-connection-settings.get-1.json @@ -0,0 +1,603 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.worktree-connection", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "b1e1b221ab7bfe5356c89a09cf4252613c78aecab48b2212e84ac7de885ec569", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0fc3e204e7ba": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "127ad2bdc042": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "2b3aa0da0852": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "594101d24d72": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "63200026ea8b": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "repos": [ + { + "connectionId": "ssh-zeta", + "displayName": "zeta", + "id": "repo-z" + }, + { + "connectionId": "ssh-alpha", + "displayName": "alpha", + "id": "repo-a" + } + ] + } + } + } + }, + "6a98511b6371": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "8b77098df0c3": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "8f8296303a77": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "b759ab27e4dd": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d27ce798af34": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "e0cf1af55a54": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "e1bd8b4a5d70": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "e61132f30b52": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "ssh-alpha" + }, + "e84b72d7c6fc": { + "connectionId": "ssh-alpha", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + } + }, + "recording": { + "scenario": "matrix-session.worktree-connection-settings.get-1", + "checkpoints": [ + { + "id": "terminal-worktree-connection-resolved.normal:resolved", + "observation": { + "sender": ["f3df5e006d8e", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.result-absent:resolved", + "observation": { + "sender": ["e0cf1af55a54", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.result-null:resolved", + "observation": { + "sender": ["e1bd8b4a5d70", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-ok-missing:resolved", + "observation": { + "sender": ["0fc3e204e7ba", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-false-string-error:resolved", + "observation": { + "sender": ["d27ce798af34", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.inner-false-object-error:resolved", + "observation": { + "sender": ["127ad2bdc042", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.outer-refused:resolved", + "observation": { + "sender": ["8f8296303a77", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.outer-refused-no-message:resolved", + "observation": { + "sender": ["6a98511b6371", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.method-not-found:resolved", + "observation": { + "sender": ["b759ab27e4dd", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.transport-rejection:resolved", + "observation": { + "sender": ["8b77098df0c3", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + }, + { + "id": "terminal-worktree-connection-resolved.transport-rejection-no-message:resolved", + "observation": { + "sender": ["2b3aa0da0852", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json new file mode 100644 index 00000000000..e3c2f269ae3 --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json @@ -0,0 +1,157 @@ +{ + "operation": "session.terminal-input-send", + "family": "session.terminal-input-send", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "7cdbf3308411ed6764cc1cdcc0f663a27ddc9390fcc329c49fad4b27cb5a7fd5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "093b7147f9b0": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "0ba725456703": { + "crash": { + "$rpc": "null" + }, + "input": "", + "liveAccepted": "unsent", + "sending": false + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "5e9826c92f7b": { + "crash": { + "$rpc": "null" + }, + "input": "ls -la", + "liveAccepted": "unsent", + "sending": false + }, + "750695db0ef8": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "c28710807a02": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "terminal-input-send-accepted", + "checkpoints": [ + { + "id": "composed", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + }, + { + "id": "sent", + "observation": { + "sender": ["750695db0ef8", "093b7147f9b0"], + "payloads": ["c28710807a02", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "0ba725456703", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-refused.json b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json new file mode 100644 index 00000000000..06bb9dd0abd --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json @@ -0,0 +1,97 @@ +{ + "operation": "session.terminal-input-send", + "family": "session.terminal-input-send", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "eb5e47e3accccc7ca280ca029f97405905b0cee8a05afb9ef15448314041d9d4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "5e9826c92f7b": { + "crash": { + "$rpc": "null" + }, + "input": "ls -la", + "liveAccepted": "unsent", + "sending": false + }, + "73d599c067f6": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": true, + "terminal": "terminal-1", + "text": "ls -la" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "c28710807a02": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "terminal-input-send-refused", + "checkpoints": [ + { + "id": "restored", + "observation": { + "sender": ["73d599c067f6"], + "payloads": ["c28710807a02"], + "settlements": { + "mount": "eb79a9b3682a", + "type": "eb79a9b3682a", + "send": "eb79a9b3682a" + }, + "state": "5e9826c92f7b", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json new file mode 100644 index 00000000000..2d8a7022f88 --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json @@ -0,0 +1,141 @@ +{ + "operation": "session.terminal-input-send", + "family": "session.terminal-input-send", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "391a4f681443f099e6ea4417811d82d730242dfe07e21f74b0ad49a98bcd7c81", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "093b7147f9b0": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "0a0137383ed3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + }, + "191580ba859d": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "4dbb5ea36ed2": { + "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": "ls" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "84e5ca07cb7a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f0a0a85e7632": { + "crash": { + "$rpc": "null" + }, + "input": "", + "liveAccepted": true, + "sending": false + } + }, + "recording": { + "scenario": "terminal-live-input-accepted", + "checkpoints": [ + { + "id": "live-sent", + "observation": { + "sender": ["4dbb5ea36ed2", "093b7147f9b0"], + "payloads": ["0a0137383ed3", "191580ba859d"], + "settlements": { + "mount": "eb79a9b3682a", + "live": "84e5ca07cb7a" + }, + "state": "f0a0a85e7632", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-paste-accepted.json b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json new file mode 100644 index 00000000000..3a9b18b4677 --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json @@ -0,0 +1,216 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.terminal-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "48bb495de3b54f2b2edc0543f0f232ff4fd6068d5aca34d005766ebacbb078c9", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "23812b44df37": { + "name": "refresh-can-paste", + "value": {}, + "sent": 3 + }, + "4e9a0397c220": { + "name": "orchestration.workerTerminalUserInput#1", + "args": [ + { + "name": "method", + "value": "orchestration.workerTerminalUserInput" + }, + { + "name": "params", + "value": { + "terminal": "terminal-1" + } + }, + { + "name": "options", + "value": { + "budgetSpansConnect": true, + "failWhenDisconnected": true, + "timeoutMs": 5000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "changed": 1 + } + } + } + }, + "51eb315f9426": { + "name": "flush-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "528166d1face": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "sent" + }, + "63ceb8bb55e0": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + }, + "7107540f16ca": { + "name": "toast", + "value": { + "durationMs": { + "$rpc": "null" + }, + "message": "Copied" + }, + "sent": 1 + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "84990d8de7e9": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "e142ca57bc1f": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + }, + "f63f705d3a7f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "terminal-paste-accepted", + "checkpoints": [ + { + "id": "copied", + "observation": { + "sender": ["f3df5e006d8e"], + "payloads": ["7ddcb1852b39"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a" + }, + "state": "84990d8de7e9", + "effects": ["7107540f16ca"] + } + }, + { + "id": "pasted", + "observation": { + "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "23812b44df37"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-paste-refused.json b/mobile/rpc-foundation/goldens/terminal-paste-refused.json new file mode 100644 index 00000000000..db529309c32 --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-paste-refused.json @@ -0,0 +1,157 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.terminal-paste", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "78e62b9125252accc7f6d2ce772b93c84a917b01d2df308c1f9fb163d9127665", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0bc8e5a0d4e1": { + "name": "refresh-can-paste", + "value": {}, + "sent": 2 + }, + "42b6b7a204f7": { + "name": "terminal.send#1", + "args": [ + { + "name": "method", + "value": "terminal.send" + }, + { + "name": "params", + "value": { + "client": { + "id": "device-token-1", + "type": "mobile" + }, + "enter": false, + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + } + }, + "51eb315f9426": { + "name": "flush-live-input", + "value": { + "handle": "terminal-1" + }, + "sent": 1 + }, + "528166d1face": { + "connectionId": "unresolved", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "sent" + }, + "7107540f16ca": { + "name": "toast", + "value": { + "durationMs": { + "$rpc": "null" + }, + "message": "Copied" + }, + "sent": 1 + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + }, + "f63f705d3a7f": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + } + }, + "recording": { + "scenario": "terminal-paste-refused", + "checkpoints": [ + { + "id": "not-reported", + "observation": { + "sender": ["f3df5e006d8e", "42b6b7a204f7"], + "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "settlements": { + "mount": "eb79a9b3682a", + "copy": "eb79a9b3682a", + "paste": "eb79a9b3682a" + }, + "state": "528166d1face", + "effects": ["7107540f16ca", "51eb315f9426", "0bc8e5a0d4e1"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json new file mode 100644 index 00000000000..182ea899b10 --- /dev/null +++ b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json @@ -0,0 +1,143 @@ +{ + "operation": "session.terminal-clipboard", + "family": "session.worktree-connection", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", + "scenarioSha256": "f921c4a764cdf7a4c1df0a7ec618d7c3b1d8a05ee4baa42d66f3bc0d95b3f550", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "594101d24d72": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "63200026ea8b": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "repos": [ + { + "connectionId": "ssh-zeta", + "displayName": "zeta", + "id": "repo-z" + }, + { + "connectionId": "ssh-alpha", + "displayName": "alpha", + "id": "repo-a" + } + ] + } + } + } + }, + "7ddcb1852b39": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + }, + "e61132f30b52": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": "ssh-alpha" + }, + "e84b72d7c6fc": { + "connectionId": "ssh-alpha", + "crash": { + "$rpc": "null" + }, + "pasteOutcome": "unpasted" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3df5e006d8e": { + "name": "settings.get#1", + "args": [ + { + "name": "method", + "value": "settings.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + } + } + }, + "recording": { + "scenario": "terminal-worktree-connection-resolved", + "checkpoints": [ + { + "id": "resolved", + "observation": { + "sender": ["f3df5e006d8e", "63200026ea8b"], + "payloads": ["7ddcb1852b39", "594101d24d72"], + "settlements": { + "mount": "eb79a9b3682a", + "connection": "e61132f30b52" + }, + "state": "e84b72d7c6fc", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json index 7d298335865..acf2f71a18e 100644 --- a/mobile/rpc-foundation/pilot-scenarios.json +++ b/mobile/rpc-foundation/pilot-scenarios.json @@ -18694,6 +18694,377 @@ "checkpoint": "reconciled" } ] + }, + { + "id": "terminal-paste-accepted", + "operation": "session.terminal-clipboard", + "version": 1, + "family": "session.terminal-paste", + "sites": [ + "mobile/src/session/use-mobile-terminal-paste.ts", + "mobile/src/session/use-mobile-session-accessory-selection.ts", + "mobile/src/terminal/worker-terminal-takeover-report.ts" + ], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.get#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + }, + { + "action": "copy", + "id": "copy", + "args": { + "text": "echo hi" + } + }, + { + "checkpoint": "copied" + }, + { + "action": "paste", + "id": "paste" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "changed": 1 + } + } + }, + { + "checkpoint": "pasted" + } + ] + }, + { + "id": "terminal-paste-refused", + "operation": "session.terminal-clipboard", + "version": 1, + "family": "session.terminal-paste", + "sites": ["mobile/src/session/use-mobile-terminal-paste.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.get#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + }, + { + "action": "copy", + "id": "copy", + "args": { + "text": "echo hi" + } + }, + { + "action": "paste", + "id": "paste" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "\u001b[200~echo hi\u001b[201~", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "not-reported" + } + ] + }, + { + "id": "terminal-worktree-connection-resolved", + "operation": "session.terminal-clipboard", + "version": 1, + "family": "session.worktree-connection", + "sites": ["mobile/src/session/use-mobile-session-accessory-selection.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "complete": "settings.get#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "settings": { + "terminalCopyTrimsGutter": true + } + } + } + }, + { + "action": "connection", + "id": "connection" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "repos": [ + { + "id": "repo-z", + "displayName": "zeta", + "connectionId": "ssh-zeta" + }, + { + "id": "repo-a", + "displayName": "alpha", + "connectionId": "ssh-alpha" + } + ] + } + } + }, + { + "checkpoint": "resolved" + } + ] + }, + { + "id": "terminal-input-send-accepted", + "operation": "session.terminal-input-send", + "version": 1, + "family": "session.terminal-input-send", + "sites": [ + "mobile/src/session/use-mobile-session-terminal-send-actions.ts", + "mobile/src/terminal/worker-terminal-takeover-report.ts" + ], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "action": "type", + "id": "type", + "args": { + "text": "ls -la" + } + }, + { + "checkpoint": "composed" + }, + { + "action": "send", + "id": "send" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "ls -la", + "enter": true, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "changed": 1 + } + } + }, + { + "checkpoint": "sent" + } + ] + }, + { + "id": "terminal-input-send-refused", + "operation": "session.terminal-input-send", + "version": 1, + "family": "session.terminal-input-send", + "sites": ["mobile/src/session/use-mobile-session-terminal-send-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "action": "type", + "id": "type", + "args": { + "text": "ls -la" + } + }, + { + "action": "send", + "id": "send" + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "ls -la", + "enter": true, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": false + } + } + } + }, + { + "checkpoint": "restored" + } + ] + }, + { + "id": "terminal-live-input-accepted", + "operation": "session.terminal-input-send", + "version": 1, + "family": "session.terminal-input-send", + "sites": ["mobile/src/session/use-mobile-session-terminal-send-actions.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "action": "live", + "id": "live", + "args": { + "bytes": "ls" + } + }, + { + "complete": "terminal.send#1", + "params": { + "terminal": "terminal-1", + "text": "ls", + "enter": false, + "client": { + "id": "device-token-1", + "type": "mobile" + } + }, + "reply": { + "ok": true, + "result": { + "send": { + "accepted": true + } + } + } + }, + { + "complete": "orchestration.workerTerminalUserInput#1", + "params": { + "terminal": "terminal-1" + }, + "reply": { + "ok": true, + "result": { + "changed": 1 + } + } + }, + { + "checkpoint": "live-sent" + } + ] } ] } diff --git a/mobile/src/components/codex-reset-credit-consume-operations.ts b/mobile/src/components/codex-reset-credit-consume-operations.ts new file mode 100644 index 00000000000..b20baa68c1a --- /dev/null +++ b/mobile/src/components/codex-reset-credit-consume-operations.ts @@ -0,0 +1,37 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +/** + * Redeeming an earned Codex rate-limit reset credit. + * + * `require-result-or-throw-message` because the confirm sheet shows the host's own sentence and + * never a diagnostic code, which is what the raw `throw new Error(response.error.message)` here + * spelled. The payload stays unread at this boundary: the call site's `decodeResetResult` is a + * scope-and-snapshot check that rejects a reply whose scope is not the one the attempt claimed, + * and moving any of it into a reader would split one refusal rule across two places. + * + * Separate from the capability probe on `status.get` next door, which answers a different question + * about the same feature with a different policy. + */ +export const codexResetCreditConsume = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'accounts.consume-codex-reset-credit', + method: 'accounts.consumeCodexResetCredit', + acceptance: 'require-result-or-throw-message', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('codex-reset-credit') + }) +) + +/** What the redeem sends with, named from the operation so no module names the raw port. */ +export type MobileCodexResetCreditRpcSender = Parameters[0] + +/** + * The scope the host contract accepts, which pairs each runtime with the distro it may name. The + * shared `CodexResetCreditExpectedScope` predates that pairing and is one type wider, so the + * journal's schema is what holds the invariant; taken from the operation so no module here names + * the params catalog. + */ +export type MobileCodexResetCreditSendScope = Parameters< + typeof codexResetCreditConsume.request +>[1]['expectedScope'] diff --git a/mobile/src/components/codex-reset-credit.ts b/mobile/src/components/codex-reset-credit.ts index 25ecdcb9eb0..67d191f4b21 100644 --- a/mobile/src/components/codex-reset-credit.ts +++ b/mobile/src/components/codex-reset-credit.ts @@ -3,7 +3,11 @@ import { buildCodexResetCreditExpectedScope, type CodexResetCreditExpectedScope } from '../../../src/shared/codex-reset-credit-scope' -import type { RpcClient } from '../transport/rpc-client' +import { + codexResetCreditConsume, + type MobileCodexResetCreditRpcSender, + type MobileCodexResetCreditSendScope +} from './codex-reset-credit-consume-operations' import { clearCodexResetAttemptAfterAuthoritativeResponse, CodexResetCreditExpectedScopeSchema, @@ -217,7 +221,7 @@ function decodeResetResult( } async function performCodexResetCreditRequest( - client: Pick, + client: MobileCodexResetCreditRpcSender, options: { hostId: string expectedScope: CodexResetCreditExpectedScope @@ -225,18 +229,19 @@ async function performCodexResetCreditRequest( } ): Promise { const attempt = await getOrCreateCodexResetAttempt(options) - const response = await client.sendRequest( - 'accounts.consumeCodexResetCredit', + const response = await codexResetCreditConsume.request( + client, { idempotencyKey: attempt.idempotencyKey, - expectedScope: attempt.expectedScope + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: every attempt is parsed through CodexResetAttemptSchema, whose refinement pairs runtime 'host' with a null distro and 'wsl' with a trimmed non-empty one. The bytes are unchanged. + expectedScope: attempt.expectedScope as MobileCodexResetCreditSendScope }, { timeoutMs: RESET_RPC_TIMEOUT_MS } ) - if (!response.ok) { - throw new Error(response.error.message) - } - const result = decodeResetResult(response.result, attempt.expectedScope) + const result = decodeResetResult( + codexResetCreditConsume.interpret(response), + attempt.expectedScope + ) let attemptJournalRetained = false try { await clearCodexResetAttemptAfterAuthoritativeResponse({ @@ -251,7 +256,7 @@ async function performCodexResetCreditRequest( } export async function requestCodexResetCredit( - client: Pick, + client: MobileCodexResetCreditRpcSender, options: { hostId: string expectedScope: CodexResetCreditExpectedScope diff --git a/mobile/src/components/use-new-workspace-repositories.ts b/mobile/src/components/use-new-workspace-repositories.ts index d2b700cc9ab..52ba6716143 100644 --- a/mobile/src/components/use-new-workspace-repositories.ts +++ b/mobile/src/components/use-new-workspace-repositories.ts @@ -1,6 +1,6 @@ import { useEffect, useState } from 'react' import type { RpcClient } from '../transport/rpc-client' -import type { RpcSuccess } from '../transport/types' +import { nativeChatRepoListRead } from '../session/mobile-session-read-operations' import { getCachedRepos, setCachedRepos } from '../cache/repo-cache' import { useLastVisitedWorktreeRepoId } from '../worktree/use-last-visited-worktree-repo' import { @@ -50,19 +50,24 @@ export function useNewWorkspaceRepositories(args: { } let stale = false setLoading(true) - void client - .sendRequest('repo.list') + void nativeChatRepoListRead + .request(client) .then((response) => { - if (stale || !response.ok) { + if (stale) { return } - const result = (response as RpcSuccess).result as { repos: MobileWorkspaceRepo[] } - setRepos(result.repos) + const listed = nativeChatRepoListRead.interpret(response) + if (!listed.accepted) { + return + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const listedRepos = listed.value as MobileWorkspaceRepo[] + setRepos(listedRepos) if (hostId) { - setCachedRepos(hostId, result.repos) + setCachedRepos(hostId, listedRepos) } setSelectedRepo((current) => - refreshMobileNewWorkspaceDialogSelectedRepo(result.repos, current) + refreshMobileNewWorkspaceDialogSelectedRepo(listedRepos, current) ) }) .catch(() => undefined) diff --git a/mobile/src/notifications/push-dismissal-operations.ts b/mobile/src/notifications/push-dismissal-operations.ts new file mode 100644 index 00000000000..663e1f55753 --- /dev/null +++ b/mobile/src/notifications/push-dismissal-operations.ts @@ -0,0 +1,24 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +/** + * The catch-up read that tells this device which of the banners still in its OS tray the host has + * already dismissed elsewhere. + * + * A skip rather than a throw: reconciliation is a background pass with no screen to raise a host + * message on, and a refusal leaves the tray as it is for the next pass. The member read stays at + * the call site, where the optional chaining over `dismissedPushes` tolerates a null result instead + * of throwing on it. + */ +export const pushMissedSinceRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'notifications.missed-since-or-skip', + method: 'notifications.getMissedSince', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('missed-notifications') + }) +) + +/** What the reconciliation sends with, named from the operation so no module names the raw port. */ +export type MobilePushDismissalRpcSender = Parameters[0] diff --git a/mobile/src/notifications/push-dismissal-reconciliation.ts b/mobile/src/notifications/push-dismissal-reconciliation.ts index 4c39ccfeb0f..5f54bb9f4c2 100644 --- a/mobile/src/notifications/push-dismissal-reconciliation.ts +++ b/mobile/src/notifications/push-dismissal-reconciliation.ts @@ -1,5 +1,5 @@ import * as Notifications from 'expo-notifications' -import type { RpcClient } from '../transport/rpc-client' +import { pushMissedSinceRead, type MobilePushDismissalRpcSender } from './push-dismissal-operations' import { loadHostCatalog } from '../transport/host-store' import { resolveHostIdForFingerprint } from './push-host-fingerprint' import { readNativeNotificationData } from './native-notification-data' @@ -40,24 +40,26 @@ async function readDelivered(hostId: string): Promise, + client: MobilePushDismissalRpcSender, hostId: string, isDisposed: () => boolean ): Promise { const entries = [...(await readDelivered(hostId)).entries()] for (let offset = 0; offset < entries.length && !isDisposed(); offset += 256) { const requested = new Map(entries.slice(offset, offset + 256)) - const reply = await client.sendRequest('notifications.getMissedSince', { + const reply = await pushMissedSinceRead.request(client, { // Reconcile the tray without requesting historical alerts. lastSeenSeq: Number.MAX_SAFE_INTEGER, deliveredPushes: [...requested.values()].map((payload) => readPushNotificationIdentity(payload)! ) }) - if (!reply.ok || isDisposed()) { + const missed = pushMissedSinceRead.interpret(reply) + if (!missed.accepted || isDisposed()) { return } - const result = reply.result as { dismissedPushes?: unknown } | undefined + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = missed.value as { dismissedPushes?: unknown } | undefined if (!Array.isArray(result?.dismissedPushes)) { continue } diff --git a/mobile/src/session/agent-send-keyboard-dismissal-wiring.test.ts b/mobile/src/session/agent-send-keyboard-dismissal-wiring.test.ts index 83c9263273b..cfc93265f7d 100644 --- a/mobile/src/session/agent-send-keyboard-dismissal-wiring.test.ts +++ b/mobile/src/session/agent-send-keyboard-dismissal-wiring.test.ts @@ -84,10 +84,12 @@ describe('terminal send keyboard dismissal wiring', () => { 'async function handleSend() {', 'async function handleAccessoryKey(' ) - const acceptedAt = slice.indexOf('const accepted = isTerminalSendRpcAccepted(response)') + const acceptedAt = slice.indexOf( + 'const accepted = terminalInputSend.interpret(response) === true' + ) const restoreAt = slice.indexOf('restoreRejectedDraft()', acceptedAt) const dismissAt = slice.indexOf('dismissKeyboardAfterAgentSend(') - const responseAt = slice.indexOf('const response = await client.sendRequest(') + const responseAt = slice.indexOf('const response = await terminalInputSend.request(') const catchAt = slice.indexOf('} catch {') expect(dismissAt).toBeGreaterThan(0) expect(responseAt).toBeGreaterThan(0) @@ -121,7 +123,7 @@ describe('terminal send keyboard dismissal wiring', () => { 'async function handleAccessoryKey(' ) const originAt = sendSlice.indexOf('handle: activeHandle') - const requestAt = sendSlice.indexOf('await client.sendRequest(') + const requestAt = sendSlice.indexOf('await terminalInputSend.request(') const restoreSlice = sourceSlice( sendActionsSource, 'const bufferedDraftSend = bufferedTerminalDraftState.beginBufferedTerminalDraftSend(', diff --git a/mobile/src/session/mobile-session-read-operations.ts b/mobile/src/session/mobile-session-read-operations.ts index 3fa00be2799..cb3caa76fe0 100644 --- a/mobile/src/session/mobile-session-read-operations.ts +++ b/mobile/src/session/mobile-session-read-operations.ts @@ -28,10 +28,15 @@ export type MobileRuntimeRepoSummary = { id: string; connectionId?: string | nul const repoListReader = rpcUncheckedMemberReader('runtime-repo-list', 'repos') /** - * The repo list, read for one workspace's connection id. Two call sites want it and disagree about - * a refusal, so each declares its own operation over the same reader rather than sharing a policy: - * the new-tab agent loader has nothing to show without it and raises the host's message, while the - * native-chat readability probe answers "not readable" and lets the screen render. + * The repo list, read for one workspace's connection id. Call sites disagree about a refusal, so + * each of the two operations below declares its own policy over the same reader rather than + * sharing one, and every consumer joins whichever policy it already had. + * + * Throw-message: the new-tab agent loader has nothing to show without the list, and the terminal + * accessory's connection lookup raised the host's message the same way. + * + * Skip: the native-chat readability probe answers "not readable" and lets the screen render, and + * the new-workspace dialog's repo refresh leaves the list it already has. */ export const newTabRepoListRead = bindDeferredRpcOperation( defineRpcOperation({ diff --git a/mobile/src/session/mobile-session-route-parity.test.ts b/mobile/src/session/mobile-session-route-parity.test.ts index 3e73969effc..b1973782b7c 100644 --- a/mobile/src/session/mobile-session-route-parity.test.ts +++ b/mobile/src/session/mobile-session-route-parity.test.ts @@ -66,15 +66,15 @@ const HEAD_MAIN_HOOK_SHA256 = 'c7a1bbc0588a5d27797bbab13168e76eb20200288921fdc33 const HEAD_HOOK_BINDING_SHA256 = '06edf1a4314eba41b1d3e1cb67b0cfab2a936aef7d127c5dc48e789c9adc6c8f' const HEAD_CALLBACK_IDENTITY_SHA256 = '2a9e4825df007f6ef53b81aa5004991d6318eee7507b44d625c07e630be432eb' -// Body text, not behaviour: refreshed when the session hooks' refusal try/catch blocks became -// `interpretOrThrowRefusalMessage` calls. One of them lives in a callback. -const HEAD_CALLBACK_BODY_SHA256 = '309666c03fdfaa4b48fe6e32d86e885e0c92c42954bc2917ac605ef1e50061de' +// 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' const HEAD_EFFECT_SHA256 = '73d80845e0a4b6363cfb4bb55551af97965b1f676b97adf0b2a8504219b9a501' const HEAD_CONTENT_HOOK_SHA256 = '9c3b612fef3f370d66873aefdbe1d701f20cb64ded31fef5cc45fde6f8189581' -// Same refresh as the callback-body hash above, for the three of those blocks that sit in -// nested functions rather than callbacks. Count still 12. +// 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. const HEAD_NESTED_FUNCTION_SHA256 = - '74772a16be98781d85d12caa7771b373a908e3da00651412a1e15647ec67398c' + '258930d2955a3689f2ae2a25392a75fd294513ad141bc6fbf5b7d9bafccf374e' const HEAD_NATIVE_REGISTRATION_SHA256 = 'cab85e4e4a3f43289ba93ddea9ccce57aea83e0bf14fd1620a965aad0c1cb49e' const HEAD_NATIVE_REMOVAL_SHA256 = @@ -83,7 +83,7 @@ const HEAD_TIMER_CREATION_SHA256 = '1a31b625e2174c3db77272249843196d2b6b06ab1e654a96d8f7858e3082e66b' const HEAD_TIMER_CLEANUP_SHA256 = 'c73f1d1c2cc89642f3d727d6f3b6b81860a9d6f34234541a2065ec3d1a8cd116' const HEAD_RUNTIME_STRING_SHA256 = - '3d4c680adb34c5871530fa4bd7ecd2f800048b8b00f98ef503693d9c44cf6464' + '0c713141a9e8b75d1435ffa6cc5f446b72e3316b5b553a4f3bb8f767831173b8' const HEAD_HOST_JSX_SHA256 = '390405926b1695fa3a33686f0bc192b432f5468d8576499d7cafbb4922defbb5' const HEAD_LEAF_JSX_SHA256 = '21dba981875e173f692590bf910d60964660c5f4cbb79f3a377c7e54f6a1f016' const HEAD_STYLE_REFERENCE_SHA256 = @@ -521,7 +521,7 @@ describe('mobile session route extraction parity', () => { it('preserves runtime strings, styles, and the expanded JSX tree', () => { const strings = readRuntimeStrings() - expect(strings).toHaveLength(540) + expect(strings).toHaveLength(537) expect(hash(strings)).toBe(HEAD_RUNTIME_STRING_SHA256) const jsx = readJsxFacts(readDefinitions()) expect(jsx.host).toHaveLength(124) diff --git a/mobile/src/session/mobile-session-route-types.ts b/mobile/src/session/mobile-session-route-types.ts index 03ddcb1a124..944337fd028 100644 --- a/mobile/src/session/mobile-session-route-types.ts +++ b/mobile/src/session/mobile-session-route-types.ts @@ -144,11 +144,6 @@ export type TerminalCreateResult = { export type MobileNewTabAgentLoadState = 'idle' | 'loading' | 'loaded' | 'error' -export type RuntimeRepoSummary = { - id: string - connectionId?: string | null -} - export type MobileDisplayMode = 'auto' | 'phone' | 'desktop' export type TerminalGestureInputBucket = { diff --git a/mobile/src/session/use-mobile-session-accessory-selection.ts b/mobile/src/session/use-mobile-session-accessory-selection.ts index ad0116cb9c6..fdcd7885f79 100644 --- a/mobile/src/session/use-mobile-session-accessory-selection.ts +++ b/mobile/src/session/use-mobile-session-accessory-selection.ts @@ -1,7 +1,7 @@ import { useRef, useCallback } from 'react' import { Keyboard, Platform, type View } from 'react-native' import * as Clipboard from 'expo-clipboard' -import type { RpcFailure, RpcSuccess } from '../transport/types' +import { newTabRepoListRead, type MobileRuntimeRepoSummary } from './mobile-session-read-operations' import { triggerSelection, triggerSuccess, @@ -17,7 +17,6 @@ import { clearTerminalLiveInputFocusTimer } from '../terminal/terminal-live-inpu import { stripTerminalSelectionGutter } from '../../../src/shared/terminal-selection-gutter' import { useTerminalCopyTrimsGutter } from '../terminal/terminal-copy-gutter-preference' import { getRepoIdFromMobileWorktreeId } from './mobile-session-route-helpers' -import type { RuntimeRepoSummary } from './mobile-session-route-types' import type { MobileSessionTerminalInputModel } from './use-mobile-session-terminal-input' export function useMobileSessionAccessorySelection(scope: MobileSessionTerminalInputModel) { @@ -197,12 +196,9 @@ export function useMobileSessionAccessorySelection(scope: MobileSessionTerminalI return null } const repoId = getRepoIdFromMobileWorktreeId(worktreeId) - const repoResponse = await client.sendRequest('repo.list') - if (!repoResponse.ok) { - throw new Error((repoResponse as RpcFailure).error.message) - } - const repos = - ((repoResponse as RpcSuccess).result as { repos?: RuntimeRepoSummary[] }).repos ?? [] + const repoResponse = await newTabRepoListRead.request(client) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const repos = (newTabRepoListRead.interpret(repoResponse) as MobileRuntimeRepoSummary[]) ?? [] return repos.find((repo) => repo.id === repoId)?.connectionId?.trim() || null }, [client, isFloatingWorkspaceRoute, worktreeId]) diff --git a/mobile/src/session/use-mobile-session-terminal-send-actions.ts b/mobile/src/session/use-mobile-session-terminal-send-actions.ts index aa365d5ba39..f589aed6ed7 100644 --- a/mobile/src/session/use-mobile-session-terminal-send-actions.ts +++ b/mobile/src/session/use-mobile-session-terminal-send-actions.ts @@ -9,7 +9,7 @@ import { isTerminalLiveInputWithinByteLimit } from '../terminal/terminal-live-input' import { dismissTerminalKeyboard } from '../terminal/terminal-keyboard-dismiss' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { terminalInputSend } from '../terminal/mobile-terminal-operations' import { buildTerminalSendParams, TERMINAL_INPUT_SEND_OPTIONS @@ -88,8 +88,8 @@ export function useMobileSessionTerminalSendActions(scope: MobileSessionTerminal try { // Why: fail now and restore the text — a send parked across a reconnect would execute long after the tap. - const response = await client.sendRequest( - 'terminal.send', + const response = await terminalInputSend.request( + client, buildTerminalSendParams({ terminal: activeHandle, text, @@ -98,7 +98,7 @@ export function useMobileSessionTerminalSendActions(scope: MobileSessionTerminal }), TERMINAL_INPUT_SEND_OPTIONS ) - const accepted = isTerminalSendRpcAccepted(response) + const accepted = terminalInputSend.interpret(response) === true if (accepted) { reportWorkerTerminalUserInput(client, activeHandle) } @@ -159,9 +159,9 @@ export function useMobileSessionTerminalSendActions(scope: MobileSessionTerminal } // Why: live-mirror deltas queued behind a dying send drain into the connect // wait and replay stale bytes after reconnect (#6713's `YZZYecho …` corruption). - return rpc - .sendRequest( - 'terminal.send', + return terminalInputSend + .request( + rpc, buildTerminalSendParams({ terminal: handle, text, @@ -172,7 +172,7 @@ export function useMobileSessionTerminalSendActions(scope: MobileSessionTerminal ) .then( (response) => { - const accepted = isTerminalSendRpcAccepted(response) + const accepted = terminalInputSend.interpret(response) === true if (accepted) { reportWorkerTerminalUserInput(rpc, handle) } diff --git a/mobile/src/session/use-mobile-terminal-paste.ts b/mobile/src/session/use-mobile-terminal-paste.ts index 3680fa2e505..ffb006bd9d0 100644 --- a/mobile/src/session/use-mobile-terminal-paste.ts +++ b/mobile/src/session/use-mobile-terminal-paste.ts @@ -1,6 +1,6 @@ import { reportWorkerTerminalUserInput } from '../terminal/worker-terminal-takeover-report' import { useCallback, type RefObject } from 'react' -import { isTerminalSendRpcAccepted } from '../terminal/terminal-send-rpc-response' +import { terminalInputSend } from '../terminal/mobile-terminal-operations' import * as Clipboard from 'expo-clipboard' import { File as FsFile, Paths } from 'expo-file-system' import { ImageManipulator, SaveFormat } from 'expo-image-manipulator' @@ -157,7 +157,7 @@ export function useMobileTerminalPaste({ ) { return } - const response = await currentClient.sendRequest('terminal.send', { + const response = await terminalInputSend.request(currentClient, { terminal: targetHandle, text: payload, enter: false, @@ -165,7 +165,7 @@ export function useMobileTerminalPaste({ ? { client: { id: deviceTokenRef.current, type: 'mobile' as const } } : {}) }) - if (isTerminalSendRpcAccepted(response)) { + if (terminalInputSend.interpret(response) === true) { reportWorkerTerminalUserInput(currentClient, targetHandle) } onSuccess() diff --git a/mobile/src/terminal/mobile-terminal-operations.ts b/mobile/src/terminal/mobile-terminal-operations.ts index 2d6d4a6b879..3650ae6cb94 100644 --- a/mobile/src/terminal/mobile-terminal-operations.ts +++ b/mobile/src/terminal/mobile-terminal-operations.ts @@ -20,8 +20,12 @@ const terminalSendAcceptanceReader: RpcCompatibleReader< > = (raw) => rpcReadUnchecked('terminal-send-accepted', isTerminalSendResultAccepted(raw)) /** - * Two call sites send terminal input this way — the query-reply responder and the live accessory's - * raw send — and they agree on acceptance, differing only in the params they build. + * Five call sites send terminal input this way and all agree on acceptance, differing only in the + * params they build: the query-reply responder (`mobile-terminal-query-reply.ts`), the live + * accessory's raw send (`terminal-live-accessory-raw-send.ts`), and — in the session screen — the + * composed draft send and the live keystroke send (`use-mobile-session-terminal-send-actions.ts`) + * plus the clipboard paste (`use-mobile-terminal-paste.ts`). Narrowing `object-result-or-null` here + * changes what a lost ack means for all five. */ export const terminalInputSend = bindDeferredRpcOperation( defineRpcOperation({ diff --git a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts index 5fdcd0e197e..dfac0af8776 100644 --- a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts +++ b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts @@ -35,6 +35,7 @@ import { sessionNotesMountAdapters } from './session-notes-mount-adapters' import { sessionScreenReadMountAdapters } from './session-screen-read-mount-adapters' import { sessionScreenTabMountAdapters } from './session-screen-tab-mount-adapters' import { sessionTabMountAdapters } from './session-tab-mount-adapters' +import { sessionTerminalInputMountAdapters } from './session-terminal-input-mount-adapters' import { settingsMountAdapters, settingsMountExposures } from './settings-mount-adapters' import { sourceControlMountAdapters } from './source-control-mount-adapters' import { structuredAgentLaunchMountAdapters } from './structured-agent-launch-mount-adapters' @@ -113,6 +114,10 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ }, { source: 'session-screen-tab-mount-adapters.ts', mounts: sessionScreenTabMountAdapters }, { source: 'session-tab-mount-adapters.ts', mounts: sessionTabMountAdapters }, + { + source: 'session-terminal-input-mount-adapters.ts', + mounts: sessionTerminalInputMountAdapters + }, { source: 'settings-mount-adapters.ts', mounts: settingsMountAdapters, diff --git a/mobile/src/test-support/rpc-recording/adapters/session-terminal-input-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-terminal-input-mount-adapters.ts new file mode 100644 index 00000000000..4d3bcd26a2f --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-terminal-input-mount-adapters.ts @@ -0,0 +1,246 @@ +import { hookScreenMount } from '../mounted-screen-tree' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter, MountContext } from '../recording-scenario' +import type { TerminalModes } from '../../../terminal/terminal-webview-contract' + +const HANDLE = 'terminal-1' +const DEVICE_TOKEN = 'device-token-1' +const WORKTREE = 'repo-a::/tmp/repo-a' +/** Bracketed paste is on and the alt screen is off, which is what wraps a pasted payload. */ +const PTY_MODES: TerminalModes = { + bracketedPasteMode: true, + altScreen: false, + mouseTrackingMode: 'none', + sgrMouseMode: false, + sgrMousePixelsMode: false +} + +/** + * What the session screen's terminal input surface puts on the wire: the composed draft send, the + * live keystroke send, the clipboard paste that rides on the same method, and the repo read that + * resolves which connection a workspace's terminal lives on. + * + * The device state these hooks read is real rather than declared. The pasteboard is the engine's + * per-recording fixture, so the bytes a paste reads are the bytes a recorded copy put there one + * action earlier — the same sequence a phone performs. The draft store is the product's own + * `useBufferedTerminalDrafts`, mounted in the same tree, so the text a send clears and a refusal + * restores is state the recording drove rather than a stand-in. + * + * Only the clipboard's text path is driven. Its image path decodes a raster through + * expo-image-manipulator and stages it on expo-file-system, and neither module is substituted: + * recording it would mean inventing image and file-system behaviour, which is not what this oracle + * is evidence of. The send both paths reach is the same expression, and the text path reaches it. + * + * Mounted through `hookScreenMount` for its crash boundary: a reply partition that takes a hook's + * effect down is the recording, not a suite failure. + */ +export function sessionTerminalInputMountAdapters( + modules: ReturnType +): Record { + return { + 'session.terminal-clipboard': (context) => mountTerminalClipboard(modules, context), + 'session.terminal-input-send': (context) => mountTerminalInputSend(modules, context) + } +} + +function mountTerminalClipboard( + modules: ReturnType, + { client, effect }: MountContext +) { + const useAccessorySelection = modules.load< + typeof import('../../../session/use-mobile-session-accessory-selection') + >( + 'mobile/src/session/use-mobile-session-accessory-selection.ts' + ).useMobileSessionAccessorySelection + const useTerminalPaste = modules.load< + typeof import('../../../session/use-mobile-terminal-paste') + >('mobile/src/session/use-mobile-terminal-paste.ts').useMobileTerminalPaste + const takeover = modules.load( + 'mobile/src/terminal/worker-terminal-takeover-report.ts' + ) + // The per-client report window is module state; a fresh recording must not inherit one. + takeover.resetWorkerTerminalTakeoverReportsForTest() + + const ptyModesRef = { current: new Map([[HANDLE, PTY_MODES]]) } + let selection: ReturnType | undefined + let paste: ReturnType | undefined + let connectionId: unknown = 'unresolved' + let pasteOutcome: unknown = 'unpasted' + + const screen = hookScreenMount(() => { + const model = useAccessorySelection( + mountFixture[0]>({ + client, + connState: 'connected', + worktreeId: WORKTREE, + isFloatingWorkspaceRoute: false, + activeHandleRef: { current: HANDLE }, + terminalRefs: { current: new Map() }, + ptyModesRef, + setCanPaste: (value) => effect('can-paste', { value }), + setSelectModeActive: (value) => effect('select-mode', { value }), + showToast: (message: string, durationMs?: number) => + effect('toast', { message, durationMs: durationMs ?? null }) + }) + ) + selection = model + paste = useTerminalPaste( + mountFixture[0]>({ + activeHandle: HANDLE, + activeHandleRef: { current: HANDLE }, + activeSessionTabTypeRef: { current: 'terminal' }, + canSend: true, + client, + clientRef: { current: client }, + connState: 'connected', + connStateRef: { current: 'connected' }, + deviceTokenRef: { current: DEVICE_TOKEN }, + flushPendingLiveInputBeforeExternalSend: (handle: string) => { + effect('flush-live-input', { handle }) + return Promise.resolve(true) + }, + getActiveWorktreeConnectionId: () => model.getActiveWorktreeConnectionId(), + onError: () => { + pasteOutcome = 'error' + }, + onSuccess: () => { + pasteOutcome = 'sent' + }, + ptyModesRef, + refreshCanPaste: () => effect('refresh-can-paste', {}), + showToast: (message: string, durationMs?: number) => + effect('toast', { message, durationMs: durationMs ?? null }) + }) + ) + }, effect) + + return { + action(name: string, args: Record) { + if (name === 'mount') { + return screen.mount() + } + if (name === 'copy') { + return selection!.handleSelectionCopy(HANDLE, String(args.text ?? 'echo hi')) + } + if (name === 'paste') { + return paste!() + } + if (name === 'connection') { + return selection!.getActiveWorktreeConnectionId().then( + (value: unknown) => { + connectionId = value + return value + }, + (error: unknown) => { + connectionId = error instanceof Error ? error.message : String(error) + throw error + } + ) + } + throw new Error(`Unknown terminal clipboard action: ${name}`) + }, + state: () => ({ connectionId, pasteOutcome, crash: screen.crash() }), + dispose: () => { + takeover.resetWorkerTerminalTakeoverReportsForTest() + screen.unmount() + } + } +} + +function mountTerminalInputSend( + modules: ReturnType, + { client, effect }: MountContext +) { + const useSendActions = modules.load< + typeof import('../../../session/use-mobile-session-terminal-send-actions') + >( + 'mobile/src/session/use-mobile-session-terminal-send-actions.ts' + ).useMobileSessionTerminalSendActions + const useDrafts = modules.load( + 'mobile/src/terminal/use-buffered-terminal-drafts.ts' + ).useBufferedTerminalDrafts + const takeover = modules.load( + 'mobile/src/terminal/worker-terminal-takeover-report.ts' + ) + takeover.resetWorkerTerminalTakeoverReportsForTest() + + const activeHandleRef = { current: HANDLE } + const sendingRef = { current: false } + // An agent tab, so an accepted send hands the turn over and the keyboard drop is observable. + const activeSessionTab = { + type: 'terminal' as const, + id: 'tab-1', + title: 'claude', + terminal: HANDLE, + launchAgent: 'claude' as const, + isActive: true + } + let drafts: ReturnType | undefined + let actions: ReturnType | undefined + let liveAccepted: unknown = 'unsent' + + const screen = hookScreenMount(() => { + const draftState = useDrafts({ activeHandle: HANDLE, activeHandleRef }) + drafts = draftState + actions = useSendActions( + mountFixture[0]>({ + client, + activeHandle: HANDLE, + activeSessionTab, + canSend: true, + keyboardHeight: 0, + deviceTokenRef: { current: DEVICE_TOKEN }, + clientRef: { current: client }, + connStateRef: { current: 'connected' }, + liveInputRef: { current: null }, + commandInputRef: { current: null }, + liveInputFocusTimerRef: { current: null }, + sendLiveTerminalInputRef: { current: null }, + sessionTabActionSheetKeyboardHideSubRef: { current: null }, + sessionTabActionSheetRequestSeqRef: { current: 0 }, + activeHandleRef, + activeSessionTabTypeRef: { current: 'terminal' }, + sendingRef, + bufferedTerminalDraftState: draftState, + getSendCompletionGeneration: () => 0, + showToast: (message: string, durationMs?: number) => + effect('toast', { message, durationMs: durationMs ?? null }) + }) + ) + }, effect) + + return { + action(name: string, args: Record) { + if (name === 'mount') { + return screen.mount() + } + if (name === 'type') { + drafts!.setInput(String(args.text ?? 'ls -la')) + return screen.update() + } + if (name === 'send') { + return actions!.handleSend() + } + if (name === 'live') { + return actions! + .sendLiveTerminalInput(HANDLE, String(args.bytes ?? 'ls')) + .then((value: unknown) => { + liveAccepted = value + return value + }) + } + throw new Error(`Unknown terminal input send action: ${name}`) + }, + state: () => ({ + input: drafts?.input ?? null, + sending: sendingRef.current, + liveAccepted, + crash: screen.crash() + }), + dispose: () => { + takeover.resetWorkerTerminalTakeoverReportsForTest() + screen.unmount() + } + } +} diff --git a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts index 1752e5bc2dd..c97eff98c36 100644 --- a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts +++ b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts @@ -136,6 +136,25 @@ export const OPERATION_MUTATIONS = { }`, after: ' setRuntimeSettings(settingsValue)' }, + // Keeps the composed draft cleared after a send the runtime refused, so the text the user typed + // is gone and only a retype recovers it. Anchored on the branch that reads the send verdict, not + // on the send, so the step-4 migration of this file does not move it. + 'terminal-send-refusal-restores-draft': { + file: 'use-mobile-session-terminal-send-actions.ts', + before: ` if (!accepted) { + restoreRejectedDraft() + }`, + after: ` if (accepted) { + restoreRejectedDraft() + }` + }, + // Resolves the connection of whichever repo the host listed first instead of the workspace's own, + // so a terminal opens against a different machine than the one the workspace lives on. + 'worktree-connection-first-repo': { + file: 'use-mobile-session-accessory-selection.ts', + before: 'return repos.find((repo) => repo.id === repoId)?.connectionId?.trim() || null', + after: 'return repos[0]?.connectionId?.trim() || null' + }, // Publishes the settings envelope as the refreshed task runtime settings. 'task-workspace-envelope': { file: 'use-mobile-tasks-workspace-create-actions.tsx', diff --git a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts index b6de872588c..158f15e2be8 100644 --- a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts +++ b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts @@ -29,7 +29,9 @@ const mutants: Record = { 'settings-task-write': 'task-preferences-optimistic', 'settings-workspace-submit-fulfilled': 'workspace-submit-envelope', 'settings-task-workspace-fulfilled': 'task-workspace-envelope', - 'native-chat-write-delivery-unknown': 'native-chat-send-delivery-unknown' + 'native-chat-write-delivery-unknown': 'native-chat-send-delivery-unknown', + 'terminal-input-send-refused': 'terminal-send-refusal-restores-draft', + 'terminal-worktree-connection-resolved': 'worktree-connection-first-repo' } /** * The archived tree's visible state, pinned per seed: b1 serves the poisoned empty inventory, b2 diff --git a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts index 4cf1301d1ac..236dde30676 100644 --- a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts +++ b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts @@ -63,16 +63,13 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // recording can mount without a fabricated react-native view tree. { file: 'src/agent-history/MobileAgentSessionHistoryPanel.tsx', references: 1 }, - // src/components/ — shared widgets that fetch their own data. The New Workspace drawer's - // execution target, setup hook, runtime context and Codex capability probe migrated in step 4: - // see new-workspace-operations.ts, codex-reset-credit-capability-operations.ts, and the SSH and - // agent-detection operations in tasks/mobile-workspace-source-operations.ts. Two remain, neither - // recordable. codex-reset-credit.ts loads under the module loader; its attempt-journal access - // throws on async-storage at call time, before the send, and nothing guards it away. The repo - // list fails one module further out: it renders use-last-visited-worktree-repo.ts, whose default - // import of async-storage is a property read the loader's proxy refuses. - { file: 'src/components/codex-reset-credit.ts', references: 3 }, - { file: 'src/components/use-new-workspace-repositories.ts', references: 1 }, + // src/components/ — shared widgets that fetch their own data. Nothing is left here: the New + // Workspace drawer's execution target, setup hook, runtime context and Codex capability probe + // migrated in step 4, and the last two followed once a scenario could declare the device store + // both of them read. See new-workspace-operations.ts, + // codex-reset-credit-{capability,consume}-operations.ts, the SSH and agent-detection operations + // in tasks/mobile-workspace-source-operations.ts, and the repo.list readers the dialog now shares + // in session/mobile-session-read-operations.ts. // src/files/ — file read, write and preview. The preview loader, the terminal-artifact grant // refresh and save, the session file tab and the mutation-ownership capture migrated in step 4: @@ -94,18 +91,21 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques { file: 'src/host-screen/host-screen-overlays.tsx', references: 1 }, // src/notifications/ — push registration and delivery. Registration and unregistration migrated - // in step 4; see mobile-push-registration-operations.ts. + // in step 4; see mobile-push-registration-operations.ts. Tray reconciliation followed once a + // scenario could declare the notification tray and the stored host list it resolves against; + // see push-dismissal-operations.ts. // Holdout: the unsubscribe is a closure inside a `subscribe` callback, and subscriptions are a // later step; the request-only recording runner refuses to open one. { file: 'src/notifications/mobile-notifications.ts', references: 1 }, - // Holdout: the send is gated behind the OS notification tray and the keychain host catalog, and - // faking either would record a fiction of device state rather than of the wire. - { file: 'src/notifications/push-dismissal-reconciliation.ts', references: 2 }, // src/session/ — session screen: chat, diff review, PR actions, tabs. The github.* PR surface, // the diff-review loaders and the rest of the screen migrated in step 4; see // mobile-session-{read,write,launch}-operations.ts, mobile-clipboard-image-operations.ts and - // mobile-diff-review-git-operations.ts. + // mobile-diff-review-git-operations.ts. The terminal input surface followed: the composed send, + // the live keystroke send and the clipboard paste all send through terminal.input-send in + // terminal/mobile-terminal-operations.ts, and the accessory's connection lookup reads the repo + // list through the new-tab operation. Every holdout below opens or rides a subscription or takes its + // method as a parameter, except the gesture-input file, which this PR simply did not cover. // Holdout: the method is a parameter. `callAgentSession` takes a method string and a generic // result type, and five call sites across two hooks pass their own, plus one inside this module's // own mutation wrapper; an operation fixes the method at definition time, so migrating it is a @@ -119,27 +119,20 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // paging callback, not in an effect, but only the mount effect's `nativeChat.subscribe` arms the // offset and generation it pages against — and the request-only runner refuses to open one. { file: 'src/session/use-mobile-native-chat-session.ts', references: 1 }, - // Holdout: unrecorded site, record-first rule. The hook reads the pasteboard and the PTY mode - // registry before the send, so a recording would pin device state rather than the wire. - { file: 'src/session/use-mobile-session-accessory-selection.ts', references: 1 }, // Holdout: unrecorded site, record-first rule. The startup effect drives 36 members of the // session model including the terminal subscription lifecycle, which is a later step. { file: 'src/session/use-mobile-session-startup.ts', references: 2 }, // Holdout: unrecorded site, record-first rule. The create path subscribes to the terminal it // makes, and the request-only runner refuses the subscription. { file: 'src/session/use-mobile-session-terminal-create-actions.ts', references: 2 }, - // Holdout: unrecorded site, record-first rule. Gesture input is queued against a live PTY mode - // and a webview handle; neither exists in the runner. + // Holdout: scope only, no recorder gap. The gesture flush reads refs (client, connection state, + // PTY modes, the gesture buckets, active handle and tab type), and the clear-buffer ref optional- + // chains the webview, so a mount with a null terminal ref records both sends. These 2 refs are + // migratable as they stand; they were out of this PR's bucket. { file: 'src/session/use-mobile-session-terminal-input.ts', references: 2 }, - // Holdout: unrecorded site, record-first rule. The send reads the buffered draft store and the - // keyboard, both native state a recording would have to invent. - { file: 'src/session/use-mobile-session-terminal-send-actions.ts', references: 2 }, // Holdout: unrecorded site, record-first rule. The display-mode write is gated on an open // terminal subscription, which is a later step. { file: 'src/session/use-mobile-session-terminal-stream-display.ts', references: 1 }, - // Holdout: unrecorded site, record-first rule. The paste reads a clipboard image through - // expo-image-manipulator and expo-file-system before any send. - { file: 'src/session/use-mobile-terminal-paste.ts', references: 1 }, // src/settings/ — notification display probe { file: 'src/settings/notification-display-test.tsx', references: 1 }, From 615b1370fbdc5b7560a705f6c8150be9e36d6a9f Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Tue, 15 Sep 2026 21:31:05 -0400 Subject: [PATCH 05/28] refactor(mobile): own the request/cache lifecycle in GenerationScopedRequestOwner, piloted on the legacy file inventory (step 5) (#20914) * feat(mobile): own the request/cache lifecycle in GenerationScopedRequestOwner (step 5) Hooks guard stale replies with hand-rolled generation counters, `isCurrent` callbacks and latest-wins refs, so the guard is a callback a caller may forget. The owner keeps the cache, the in-flight identity and the generation token private. `read` and `load` are handed the scope and build the key themselves, so a scope the owner has not seen retires everything it held before it answers, and two workspaces cannot share a key. Publication goes only through `commit(lease, value)`: the lease brand is module-private, so no caller can mint one, and a lease whose generation moved is refused. `reset` bumps even when the scope came back to where it started, as in A to B to A. Three epochs may sit in a scope and they are not the same thing: the logical authority epoch, the physical authenticated session and the negotiated capability epoch. Which of them retires a given owner's data is that owner's decision, expressed by what its callers put in the scope. `lifecycle-owner.test.ts` carries one named schedule each for key-reset-cleanup, blur, cutover, reconnect-mid-request and stale-inflight-cleanup, each written as an explicit resolution order. It also fences loader bodies: a `load` callback that writes state it did not declare is rejected by the same kind of source scan that fences raw casts. Compile-time assertions live in a non-test file because mobile's tsconfig excludes tests. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): put the legacy file inventory on the lifecycle owner (step 5) The native-chat file search kept three hand-rolled guards for one request: a generation counter bumped by an effect, a committed-paths ref, and an in-flight ref whose `finally` cleared itself conditionally. The stale-reply check lived in the reply handler, where a caller could forget it. The owner replaces all three. `read` and `load` are handed the scope, so the guard runs before either can answer, and the reply is published only through `commit(lease, value)`. What retires the inventory is named at the call site: this host, this workspace, this logical authority epoch. A reconnect to the same host leaves the files on disk alone, so the physical authenticated-session epoch is deliberately not in the scope. `RpcClient` gains one optional read-only signal, `getGeneration`, so a holder of a bare client can scope cached work to the logical authority epoch that `StableLogicalRpcClient.migrateTo` advances. Nothing else about either client widens. No golden moves: all nine legacy-inventory recordings reproduce byte for byte, including the A-to-B-to-A and cutover schedules. The `race` mutant is re-anchored on the owner's generation compare, which is now the only place that compare exists, and it still dies against b1. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): cut the lifecycle owner down to what callers use (step 5 review) Review round 1 on #20914 found three pieces of surface with no product reader and one vacuous assertion. `dispose()` is gone with the `disposed` field, the three guards that read it and the `'disposed'` verdict arm. A React effect cleanup cannot use it: the pilot's cleanup runs on every dep change and the owner outlives it in a ref, so a workspace select would dispose it permanently. Swapping `reset()` for `dispose()` there fails 7 tests across 3 files. `capacity` and its eviction loop are gone too. No caller varied it, so the loop never ran in production, its `if (oldest.done) break` was unreachable, and it evicted in insertion order while its name said capacity. `RequestCommitVerdict` and `RequestParameters` lose their `export` (no importer), as does the `generation` getter and the expect-error assertion that pinned it (test-only reader; `reset` advancing is proven by the verdict a lease from the previous generation gets). `LoadedRequest` keeps its export: it names the value of the public `load` promise, which a helper over that result has to write down. `key-reset-cleanup` now leaves a second request pending across the `reset()` and asserts the post-reset load starts its own, which is the half `inFlight.clear()` actually owns. Proof: deleting that line from `retire()` failed this schedule and `stale-inflight-cleanup`; before the change it failed only the latter. `read`'s doc now says it retires an unseen scope before answering and must not be called from render. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): read getGeneration off RpcClient and scope one attempt once (step 5 review) Two call-site findings from review round 1 on #20914. `mobile-session-tabs-stream-health.ts` hand-rolled `RpcClient & { getGeneration?: () => number }` and cast through it with no SAFETY rationale. `RpcClient` declares the member now, so both go and the read is `this.options.client.getGeneration?.() ?? 0`. The file-search pilot built its scope from a function it called twice in one attempt, so a `migrateTo` landing between the cache read and the load would have put one attempt in two scopes. It is a `const` computed once per attempt. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): type the scope, drop the in-flight wrapper (step 5 review) Review round 2 on #20914, owner side. `RequestScope`'s element type now excludes symbol and bigint, so both are compile errors with an assertion each in the fence. The runtime symbol throw is gone with the untested branch it guarded, and the bigint case it never covered (it reached `JSON.stringify` and threw V8's serialize message from two frames down) cannot be written. `InFlightRequest` existed only so its own `then` callbacks could name the entry they belonged to, which forced a throwaway `Promise.resolve(null)` that the next statement overwrote. The map holds the request promise itself and `settle` compares promise identity. `scopeMember` is inlined into `scopeKey`'s map callback: with symbol gone the member type is the scope's element type, which spells `object`, and anti-slop bans that in a parameter position. Inferred in a callback it is the same type with no annotation to ban. Header: `committed` says the generation still holds, not that the value already in the caller's hand is fresh. The pilot displays `loaded.value` directly and is fenced by the sequence counter it had on main. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): gate the epoch in the pilot scope and the in-flight slot identity (step 5 review) Review round 2 on #20914 found two invariants no test held. The pilot's scope: replacing `client.getGeneration?.() ?? 0` with `0` left all 711 tests green. The new schedule pairs a control with the claim. A second query under the same epoch is answered from the inventory already held, and a query after the epoch advances issues a second `files.list` and displays what the new authority's host returned. Same client object, same workspace, so the epoch is the only thing that can retire it. Proof: with the literal `0`, `files.list` count is 1 where 2 is asserted. `settle`'s identity guard: making the delete unconditional left all ten schedules green. `stale-settlement-cleanup` puts a request in flight, resets, starts a live request on the same key, then settles the retired one last, whose cleanup names the slot the live request now holds. A third load must join rather than start. Proof: unconditional delete gives `started` 3 against 2. The fake clients go through one `fakeClient` helper, which is what lets the new case name the two members the hook reaches without a fifth `as unknown as RpcClient` (four deleted, one fenced assertion left with its rationale). Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- .../mobile-session-tabs-stream-health.ts | 4 +- ...use-mobile-native-chat-file-search.test.ts | 54 +- .../use-mobile-native-chat-file-search.ts | 75 ++- .../mutants/operation-mutations.ts | 14 +- .../generation-scoped-lease-compile-fence.ts | 61 +++ .../generation-scoped-request-owner.ts | 201 ++++++++ mobile/src/transport/lifecycle-owner.test.ts | 466 ++++++++++++++++++ mobile/src/transport/rpc-client.ts | 6 + 8 files changed, 831 insertions(+), 50 deletions(-) create mode 100644 mobile/src/transport/generation-scoped-lease-compile-fence.ts create mode 100644 mobile/src/transport/generation-scoped-request-owner.ts create mode 100644 mobile/src/transport/lifecycle-owner.test.ts diff --git a/mobile/src/session/mobile-session-tabs-stream-health.ts b/mobile/src/session/mobile-session-tabs-stream-health.ts index 50fd3f424e2..b3063e11872 100644 --- a/mobile/src/session/mobile-session-tabs-stream-health.ts +++ b/mobile/src/session/mobile-session-tabs-stream-health.ts @@ -46,8 +46,6 @@ type StreamSubscription = { cancel: () => void } -type GenerationClient = RpcClient & { getGeneration?: () => number } - export class MobileSessionTabsStreamHealth { private readonly inFlight = new Map() private generation: number @@ -322,7 +320,7 @@ export class MobileSessionTabsStreamHealth { } private readGeneration(): number { - return (this.options.client as GenerationClient).getGeneration?.() ?? 0 + return this.options.client.getGeneration?.() ?? 0 } private readApplicationRevision(): number { diff --git a/mobile/src/session/use-mobile-native-chat-file-search.test.ts b/mobile/src/session/use-mobile-native-chat-file-search.test.ts index 93db87c8b32..f815eb88793 100644 --- a/mobile/src/session/use-mobile-native-chat-file-search.test.ts +++ b/mobile/src/session/use-mobile-native-chat-file-search.test.ts @@ -15,6 +15,14 @@ function rpcSuccess(files: string[]): Awaited number } + +function fakeClient(parts: FileSearchClientParts): RpcClient { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: The hook calls `sendRequest` and `getGeneration` and nothing else on the client; every other member is unreachable from it. + return parts as RpcClient +} + describe('useMobileNativeChatFileSearch', () => { let renderer: ReactTestRenderer | null = null let state: SearchState | null = null @@ -42,7 +50,7 @@ describe('useMobileNativeChatFileSearch', () => { it('coalesces rapid queries and retains only the bounded host result', async () => { const sendRequest = vi.fn().mockResolvedValue(rpcSuccess(['src/app.ts', 'src/app.test.ts'])) - await mount({ sendRequest } as unknown as RpcClient) + await mount(fakeClient({ sendRequest })) act(() => { state?.loadNativeChatFiles('a') @@ -73,7 +81,7 @@ describe('useMobileNativeChatFileSearch', () => { } return rpcSuccess(['src/apple.ts', 'docs/readme.md']) }) - await mount({ sendRequest } as unknown as RpcClient) + await mount(fakeClient({ sendRequest })) act(() => state?.loadNativeChatFiles('apple')) await act(async () => vi.advanceTimersByTimeAsync(120)) @@ -92,7 +100,7 @@ describe('useMobileNativeChatFileSearch', () => { const sendRequest = vi.fn(async (_method: string, params: { query: string }) => rpcSuccess(params.query === 'app' ? ['src/app.ts'] : ['src/beta.ts']) ) - await mount({ sendRequest } as unknown as RpcClient) + await mount(fakeClient({ sendRequest })) // Populate the cache for 'app'. act(() => state?.loadNativeChatFiles('app')) @@ -114,6 +122,44 @@ describe('useMobileNativeChatFileSearch', () => { ).toHaveLength(0) }) + it('reloads the legacy inventory when the logical authority epoch advances', async () => { + let generation = 1 + const inventories = [['src/apple.ts', 'docs/readme.md'], ['docs/guide.md']] + const sendRequest = vi.fn(async (method: string) => { + if (method === 'files.searchPaths') { + return { + id: 'missing', + ok: false as const, + error: { code: 'method_not_found', message: 'Unknown method' }, + _meta: { runtimeId: 'runtime-1' } + } + } + return rpcSuccess(inventories.shift() ?? []) + }) + await mount(fakeClient({ sendRequest, getGeneration: () => generation })) + + const listCalls = (): number => + sendRequest.mock.calls.filter(([method]) => method === 'files.list').length + act(() => state?.loadNativeChatFiles('apple')) + await act(async () => vi.advanceTimersByTimeAsync(120)) + expect(state?.nativeChatFilePaths).toEqual(['src/apple.ts']) + expect(listCalls()).toBe(1) + + // Control: a fresh query under the same epoch is answered from the inventory already held. + act(() => state?.loadNativeChatFiles('readme')) + await act(async () => vi.advanceTimersByTimeAsync(120)) + expect(listCalls()).toBe(1) + + // `migrateTo` advanced the logical authority epoch. The client is the same object and the + // workspace did not change, so the epoch in the scope is the only thing that can retire the + // inventory the host under the old authority gave us. + generation = 2 + act(() => state?.loadNativeChatFiles('guide')) + await act(async () => vi.advanceTimersByTimeAsync(120)) + expect(listCalls()).toBe(2) + expect(state?.nativeChatFilePaths).toEqual(['docs/guide.md']) + }) + it('coalesces overlapping legacy inventory requests on a slow host', async () => { let resolveList: (value: Awaited>) => void = () => {} const listResponse = new Promise>>((resolve) => { @@ -130,7 +176,7 @@ describe('useMobileNativeChatFileSearch', () => { } return listResponse }) - await mount({ sendRequest } as unknown as RpcClient) + await mount(fakeClient({ sendRequest })) act(() => state?.loadNativeChatFiles('apple')) await act(async () => vi.advanceTimersByTimeAsync(120)) diff --git a/mobile/src/session/use-mobile-native-chat-file-search.ts b/mobile/src/session/use-mobile-native-chat-file-search.ts index 5cd97e04830..75670672f82 100644 --- a/mobile/src/session/use-mobile-native-chat-file-search.ts +++ b/mobile/src/session/use-mobile-native-chat-file-search.ts @@ -1,5 +1,9 @@ import { useCallback, useEffect, useRef, useState } from 'react' import type { RpcClient } from '../transport/rpc-client' +import { + GenerationScopedRequestOwner, + type RequestScope +} from '../transport/generation-scoped-request-owner' import { nativeChatFileInventoryRead, nativeChatFileSearchRead @@ -17,6 +21,10 @@ const FILE_SEARCH_DEBOUNCE_MS = 120 const FILE_SEARCH_RESULT_LIMIT = 16 const FILE_SEARCH_QUERY_CACHE_LIMIT = 20 +/** The legacy inventory is the whole workspace, so its request carries no further parameters. */ +type WorkspaceInventoryParameters = Readonly> +const WHOLE_WORKSPACE: WorkspaceInventoryParameters = {} + /** Debounces current-host path searches, bounds the mobile result/cache, and * falls back to the legacy one-time full list when paired to an older host. */ export function useMobileNativeChatFileSearch(args: { @@ -27,27 +35,27 @@ export function useMobileNativeChatFileSearch(args: { const [nativeChatFilePaths, setNativeChatFilePaths] = useState([]) const timerRef = useRef | null>(null) const sequenceRef = useRef(0) - const generationRef = useRef(0) const queryCacheRef = useRef(new Map()) - const legacyPathsRef = useRef(null) - const legacyLoadRef = useRef | null>(null) const searchSupportedRef = useRef(null) + const inventory = useRef( + new GenerationScopedRequestOwner() + ).current useEffect(() => { sequenceRef.current++ - generationRef.current++ queryCacheRef.current.clear() - legacyPathsRef.current = null - legacyLoadRef.current = null searchSupportedRef.current = null setNativeChatFilePaths([]) return () => { + // The owner retires itself the moment a call arrives under a scope it has not seen; this is + // the teardown path, where no such call is coming. + inventory.reset() if (timerRef.current) { clearTimeout(timerRef.current) timerRef.current = null } } - }, [client, worktreeId]) + }, [client, inventory, worktreeId]) const loadNativeChatFiles = useCallback( (query: string) => { @@ -71,7 +79,6 @@ export function useMobileNativeChatFileSearch(args: { clearTimeout(timerRef.current) } const sequence = ++sequenceRef.current - const generation = generationRef.current setNativeChatFilePaths([]) timerRef.current = setTimeout(() => { timerRef.current = null @@ -90,37 +97,29 @@ export function useMobileNativeChatFileSearch(args: { setNativeChatFilePaths(paths) } const loadLegacyPaths = async (): Promise => { - if (!legacyPathsRef.current) { - if (!legacyLoadRef.current) { - const request = nativeChatFileInventoryRead - .request(client, { worktree: `id:${worktreeId}` }) - .then((response) => { - const accepted = nativeChatFileInventoryRead.interpret(response) - if (!accepted.accepted || generationRef.current !== generation) { - return null - } - const paths = extractPaths(accepted.value) - legacyPathsRef.current = paths - return paths - }) - .finally(() => { - if (legacyLoadRef.current === request && !legacyPathsRef.current) { - legacyLoadRef.current = null - } - }) - // Why: older hosts expose only the full inventory RPC; queries that - // overlap its slow local/SSH read must share one request. - legacyLoadRef.current = request - } - const paths = await legacyLoadRef.current - if (!paths) { - return - } + // What retires the inventory: this host, this workspace, this logical authority. A + // reconnect to the same host leaves the files on disk alone, so the physical session + // epoch is deliberately not in it. Read once, so a cutover between the two calls below + // cannot put one attempt in two scopes. + const inventoryScope: RequestScope = [client, worktreeId, client.getGeneration?.() ?? 0] + const held = inventory.read(inventoryScope, WHOLE_WORKSPACE) + if (held) { + applyPaths(rankSuggestions(held, normalizedQuery, FILE_SEARCH_RESULT_LIMIT)) + return } - const legacyPaths = legacyPathsRef.current - if (legacyPaths) { - applyPaths(rankSuggestions(legacyPaths, normalizedQuery, FILE_SEARCH_RESULT_LIMIT)) + // Why: older hosts expose only the full inventory RPC; queries that + // overlap its slow local/SSH read must share one request. + const loaded = await inventory.load(inventoryScope, WHOLE_WORKSPACE, async () => { + const response = await nativeChatFileInventoryRead.request(client, { + worktree: `id:${worktreeId}` + }) + const accepted = nativeChatFileInventoryRead.interpret(response) + return accepted.accepted ? extractPaths(accepted.value) : null + }) + if (!loaded || inventory.commit(loaded.lease, loaded.value) !== 'committed') { + return } + applyPaths(rankSuggestions(loaded.value, normalizedQuery, FILE_SEARCH_RESULT_LIMIT)) } void (async () => { if (searchSupportedRef.current === false) { @@ -147,7 +146,7 @@ export function useMobileNativeChatFileSearch(args: { })().catch(() => {}) }, FILE_SEARCH_DEBOUNCE_MS) }, - [client, worktreeId] + [client, inventory, worktreeId] ) return { nativeChatFilePaths, loadNativeChatFiles } diff --git a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts index c97eff98c36..50f5dbc5d1a 100644 --- a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts +++ b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts @@ -15,12 +15,16 @@ export const OPERATION_MUTATIONS = { : 'rejected'`, after: ` return isLogicalClientCutoverError(error) ? 'unknown' : 'rejected'` }, - // Re-anchored where the operation migration moved the acceptance read; the defect it injects — - // a stale workspace response poisoning the search cache — is unchanged. + // Re-anchored where the lifecycle migration moved the guard: the hand-rolled generation compare + // became the owner's, so the anchor is the owner's compare. The defect it injects — a stale + // workspace response poisoning the search cache — is unchanged. race: { - file: 'use-mobile-native-chat-file-search.ts', - before: '!accepted.accepted || generationRef.current !== generation', - after: '!accepted.accepted' + file: 'generation-scoped-request-owner.ts', + before: ` if (state.generation !== this.currentGeneration) { + return 'retired-generation' + } +`, + after: '' }, // Accepts a null result envelope instead of rejecting it. The guard is repeated for three // mutations in this file; the anchor carries the message so only the recorded one is edited. diff --git a/mobile/src/transport/generation-scoped-lease-compile-fence.ts b/mobile/src/transport/generation-scoped-lease-compile-fence.ts new file mode 100644 index 00000000000..039b03f51b8 --- /dev/null +++ b/mobile/src/transport/generation-scoped-lease-compile-fence.ts @@ -0,0 +1,61 @@ +import { + GenerationScopedRequestOwner, + type RequestLease, + type RequestScope +} from './generation-scoped-request-owner' + +// Why this file exists: the owner's claim is that a caller cannot publish into it except through a +// lease it issued, in the generation it issued it. Every expect-error directive below is that claim +// as an assertion — tsc fails on a directive that stops catching an error, so +// `pnpm --dir mobile typecheck` is the gate. `mobile/tsconfig.json` excludes tests, so a type-level +// assertion written in one is checked by nothing; that is why these live here. Nothing here runs. + +type FileParameters = { readonly query: string } + +declare const scope: RequestScope +declare const host: object +declare const epoch: bigint +declare const label: symbol +declare const paths: GenerationScopedRequestOwner +declare const counts: GenerationScopedRequestOwner +declare const pathLease: RequestLease +declare const countLease: RequestLease + +// @ts-expect-error the brand is module-private, so no caller can mint a lease +export const fenceForgedLease: RequestLease = {} + +// @ts-expect-error a lease is invariant in its value, so two owners' leases are not interchangeable +export const fenceSwappedLease: RequestLease = countLease + +export function fenceCommitTakesItsOwnLease(): void { + // @ts-expect-error the value must be the one this owner publishes + paths.commit(pathLease, 42) + // @ts-expect-error a peer owner's lease is not this owner's to commit + paths.commit(countLease, ['a']) + counts.commit(countLease, 42) +} + +export function fenceParametersAreOwnerTyped(): void { + // @ts-expect-error the parameters are the owner's declared type, not a caller-chosen key + paths.read(scope, 'files.list:A') + // @ts-expect-error a missing declared parameter is not a key the owner can build + paths.read(scope, {}) + paths.read(scope, { query: 'a' }) +} + +export function fenceScopeMembersAreEncodable(): void { + // @ts-expect-error a symbol has no encoding here that is both stable and collision-free + void paths.read([host, label], { query: 'a' }) + // @ts-expect-error a bigint is not serialisable, so it cannot identify a scope + void paths.read([host, epoch], { query: 'a' }) + void paths.read([host, 'w1', 2], { query: 'a' }) +} + +export function fenceLoaderOnlyReturns(): void { + // @ts-expect-error the loader publishes by returning the owner's value, not some other type + void paths.load(scope, { query: 'a' }, async () => 'not-a-path-list') + void paths.load(scope, { query: 'a' }, async () => null) +} + +// @ts-expect-error the lease carries its generation privately; a caller cannot read or compare it +export const fenceLeaseGenerationUnreadable: number = pathLease.generation diff --git a/mobile/src/transport/generation-scoped-request-owner.ts b/mobile/src/transport/generation-scoped-request-owner.ts new file mode 100644 index 00000000000..c8655c58a6d --- /dev/null +++ b/mobile/src/transport/generation-scoped-request-owner.ts @@ -0,0 +1,201 @@ +/** + * Owns the cache, the in-flight identity and the generation token for one family of requests, so a + * reply that outlived its scope has nowhere to land. + * + * The fence is structural rather than a callback a caller may forget. `read` and `load` are handed + * the scope and build the key themselves, and a scope the owner has not seen retires everything it + * held before it answers. A reply is published only through `commit`, which refuses a lease whose + * generation has moved; a commit that beat the owner's own notice still cannot be read, because the + * next read syncs first. What `committed` does not say is that the value in the caller's own hand is + * fresh: a caller that displays it directly still needs whatever fences its display, which for the + * file-search pilot is the sequence counter it already had. + * + * Three epochs may appear in a scope and they are not the same thing: the logical authority epoch + * (`StableLogicalRpcClient.getGeneration`, advanced by `migrateTo`), the physical authenticated + * session (`authenticationGeneration` inside `direct-rpc-client.ts`) and the negotiated capability + * epoch. Which of them retires a given owner's data is that owner's decision, made by what its + * callers put in the scope. + */ + +const LEASE_STATE: unique symbol = Symbol('generation-scoped-request-lease') +const LEASE_VALUE: unique symbol = Symbol('generation-scoped-request-lease-value') + +type RequestLeaseState = { + readonly key: string + readonly generation: number + readonly owner: symbol +} + +/** + * The only way to publish into an owner, and unforgeable: the brand is module-private, so no caller + * can mint one or read the generation it pins. + */ +export type RequestLease = { + readonly [LEASE_STATE]: RequestLeaseState + // Phantom, never present at runtime: makes a lease invariant in Value so two owners' leases are + // not interchangeable. + readonly [LEASE_VALUE]?: (value: Value) => void +} + +/** Named rather than boolean: a refused publish says which fence refused it. */ +type RequestCommitVerdict = 'committed' | 'retired-generation' | 'foreign-owner' + +/** + * What retires a request: the workspace identity plus whichever epoch signals this owner treats as + * invalidating. Members are compared by identity, so a client instance may sit in one directly. + */ +export type RequestScope = readonly RequestScopeMember[] + +/** + * Symbol and bigint are excluded rather than rejected at runtime: two symbols share a description + * freely and a registered one is not a valid WeakMap key, and a bigint is not JSON-serialisable. + */ +type RequestScopeMember = string | number | boolean | null | undefined | object + +/** The domain half of a key. The owner supplies the scope half, so two workspaces cannot share one. */ +type RequestParameters = Readonly> + +export type LoadedRequest = { + readonly lease: RequestLease + readonly value: Value +} + +// Both halves of a key are JSON-encoded and joined on a character no encoding emits, so no two +// distinct scope-and-parameter pairs can spell the same key. +const KEY_SEPARATOR = String.fromCharCode(0) + +function parameterKey(parameters: RequestParameters): string { + return Object.keys(parameters) + .sort() + .map((name) => `${JSON.stringify(name)}=${JSON.stringify(parameters[name])}`) + .join(KEY_SEPARATOR) +} + +export class GenerationScopedRequestOwner { + private readonly owner = Symbol('generation-scoped-request-owner') + private readonly values = new Map() + private readonly inFlight = new Map | null>>() + private readonly references = new WeakMap() + private referenceCount = 0 + private currentGeneration = 0 + private observedScope: string | null = null + + /** + * What this owner holds for these parameters, or nothing once the scope moved. Not a getter: an + * unseen scope retires everything held and advances the generation before this answers, so it must + * not be called from render. + */ + read(scope: RequestScope, parameters: Params): Value | undefined { + return this.values.get(this.enter(scope, parameters)) + } + + /** + * Coalesces on the owner-built key and hands back a lease pinned to the generation the request + * started in. `fn` returns the value; it is given nothing it could publish with. + */ + load( + scope: RequestScope, + parameters: Params, + fn: () => Promise + ): Promise | null> { + const key = this.enter(scope, parameters) + return this.inFlight.get(key) ?? this.start(key, fn) + } + + /** Publishes `value` only while the lease's generation is still the owner's. */ + commit(lease: RequestLease, value: Value): RequestCommitVerdict { + const state = lease[LEASE_STATE] + if (state.owner !== this.owner) { + return 'foreign-owner' + } + if (state.generation !== this.currentGeneration) { + return 'retired-generation' + } + this.values.set(state.key, value) + return 'committed' + } + + /** Bumps the generation even when the scope came back to where it started, as in A to B to A. */ + reset(): void { + this.retire() + } + + private start( + key: string, + fn: () => Promise + ): Promise | null> { + const lease: RequestLease = { + [LEASE_STATE]: { key, generation: this.currentGeneration, owner: this.owner } + } + let loaded: Promise + try { + // Called here rather than off a microtask so the request reaches the wire in the turn the + // caller asked for it, which is what orders it against its siblings. + loaded = fn() + } catch (error) { + loaded = Promise.reject(error instanceof Error ? error : new Error(String(error))) + } + const request: Promise | null> = loaded.then( + (value) => { + this.settle(key, request) + return value === null ? null : { lease, value } + }, + (error: unknown) => { + this.settle(key, request) + throw error + } + ) + this.inFlight.set(key, request) + return request + } + + /** Only the request still mapped to this key may clear it: a retired one no longer owns the slot. */ + private settle(key: string, request: Promise | null>): void { + if (this.inFlight.get(key) === request) { + this.inFlight.delete(key) + } + } + + /** Syncs the observed scope, then returns the key. Every read path goes through here. */ + private enter(scope: RequestScope, parameters: Params): string { + const scopeKey = this.scopeKey(scope) + if (this.observedScope !== scopeKey) { + if (this.observedScope !== null) { + this.retire() + } + this.observedScope = scopeKey + } + return `${scopeKey}${KEY_SEPARATOR}${parameterKey(parameters)}` + } + + private retire(): void { + this.currentGeneration++ + this.values.clear() + // Dropped rather than awaited: a retired request may still settle, but nothing shares it now. + this.inFlight.clear() + } + + private scopeKey(scope: RequestScope): string { + return scope + .map((member) => { + const reference = + typeof member === 'function' + ? member + : typeof member === 'object' && member + ? member + : null + // A primitive is its own identity; everything else gets a per-owner ordinal, so two scopes + // match only when they hold the same instances. + if (!reference) { + return `${typeof member}:${JSON.stringify(member) ?? String(member)}` + } + let ordinal = this.references.get(reference) + if (ordinal === undefined) { + ordinal = ++this.referenceCount + this.references.set(reference, ordinal) + } + return `reference:${ordinal}` + }) + .join(KEY_SEPARATOR) + } +} diff --git a/mobile/src/transport/lifecycle-owner.test.ts b/mobile/src/transport/lifecycle-owner.test.ts new file mode 100644 index 00000000000..b8350a6b714 --- /dev/null +++ b/mobile/src/transport/lifecycle-owner.test.ts @@ -0,0 +1,466 @@ +import { readFileSync, readdirSync } from 'node:fs' +import { fileURLToPath } from 'node:url' +import { extname, join, relative, resolve } from 'node:path' +import ts from 'typescript' +import { describe, expect, it } from 'vitest' +import { + GenerationScopedRequestOwner, + type LoadedRequest, + type RequestScope +} from './generation-scoped-request-owner' + +type Parameters = { readonly query: string } +type Owner = GenerationScopedRequestOwner + +const QUERY: Parameters = { query: 'a' } +const OTHER_QUERY: Parameters = { query: 'b' } + +/** + * One request whose settlement the schedule controls. Every interleaving below is written as an + * explicit resolution order rather than a timer, so the test states the schedule instead of racing. + */ +function pending(): { start: () => Promise; resolve: (paths: string[]) => void } { + let settle: (paths: string[] | null) => void = () => {} + const promise = new Promise((resolvePromise) => { + settle = resolvePromise + }) + return { start: () => promise, resolve: (paths) => settle(paths) } +} + +async function settled( + loaded: Promise | null> +): Promise> { + const result = await loaded + if (!result) { + throw new Error('The schedule expected this request to produce a value') + } + return result +} + +const client = { name: 'physical-client' } + +function scopeAt(workspace: string, authority: number, session?: number): RequestScope { + return session === undefined + ? [client, workspace, authority] + : [client, workspace, authority, session] +} + +describe('key-reset-cleanup', () => { + it('drops the cache and the in-flight identity together', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const scope = scopeAt('w1', 1) + const first = pending() + const loaded = owner.load(scope, QUERY, first.start) + first.resolve(['a.ts']) + const lease = await settled(loaded) + expect(owner.commit(lease.lease, lease.value)).toBe('committed') + expect(owner.read(scope, QUERY)).toEqual(['a.ts']) + + // Still pending when the reset lands: this is the in-flight entry the next load must not join. + let started = 0 + const crossing = pending() + const crossingLoaded = owner.load(scope, OTHER_QUERY, () => { + started++ + return crossing.start() + }) + + owner.reset() + expect(owner.read(scope, QUERY)).toBeUndefined() + + const second = pending() + const reloaded = owner.load(scope, OTHER_QUERY, () => { + started++ + return second.start() + }) + expect(started).toBe(2) + + crossing.resolve(['crossed.ts']) + const crossed = await settled(crossingLoaded) + expect(owner.commit(crossed.lease, crossed.value)).toBe('retired-generation') + + second.resolve(['b.ts']) + const reloadedLease = await settled(reloaded) + expect(owner.commit(reloadedLease.lease, reloadedLease.value)).toBe('committed') + expect(owner.read(scope, OTHER_QUERY)).toEqual(['b.ts']) + }) +}) + +describe('blur', () => { + it('refuses a reply that settles after a blur, without the scope having moved', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const scope = scopeAt('w1', 1) + const request = pending() + const loaded = owner.load(scope, QUERY, request.start) + + // The blur bumps the generation the way `use-mobile-send-completion-generation` does: the + // surface went away, nothing about the host or the workspace did. + owner.reset() + + request.resolve(['stale.ts']) + const lease = await settled(loaded) + expect(owner.commit(lease.lease, lease.value)).toBe('retired-generation') + expect(owner.read(scope, QUERY)).toBeUndefined() + }) +}) + +describe('cutover', () => { + it('retires the whole scope when the logical authority epoch advances', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const beforeCutover = scopeAt('w1', 1) + const afterCutover = scopeAt('w1', 2) + const first = pending() + const loaded = owner.load(beforeCutover, QUERY, first.start) + + // `migrateTo` advanced the logical authority epoch; the next read carries the new one. + expect(owner.read(afterCutover, QUERY)).toBeUndefined() + + let started = 0 + const second = pending() + const reloaded = owner.load(afterCutover, QUERY, () => { + started++ + return second.start() + }) + expect(started).toBe(1) + + first.resolve(['retired.ts']) + const retired = await settled(loaded) + expect(owner.commit(retired.lease, retired.value)).toBe('retired-generation') + + second.resolve(['live.ts']) + const live = await settled(reloaded) + expect(owner.commit(live.lease, live.value)).toBe('committed') + expect(owner.read(afterCutover, QUERY)).toEqual(['live.ts']) + }) +}) + +describe('reconnect-mid-request', () => { + it('lets each owner decide whether a same-host reconnect retires its data', async () => { + // The inventory reads files on disk, which a new authenticated session does not change, so its + // scope omits the physical session epoch. A capability latch is the opposite: the reconnected + // host may be a newer build that now answers the method, so its scope carries it. + const inventory: Owner = new GenerationScopedRequestOwner() + const capability: Owner = new GenerationScopedRequestOwner() + const inventoryBefore = scopeAt('w1', 1) + const capabilityBefore = scopeAt('w1', 1, 1) + const capabilityAfter = scopeAt('w1', 1, 2) + + const inventoryRequest = pending() + const capabilityRequest = pending() + const inventoryLoaded = inventory.load(inventoryBefore, QUERY, inventoryRequest.start) + const capabilityLoaded = capability.load(capabilityBefore, QUERY, capabilityRequest.start) + + // The socket reauthenticated mid-request: same client, same logical authority, new session. + expect(capability.read(capabilityAfter, QUERY)).toBeUndefined() + expect(inventory.read(inventoryBefore, QUERY)).toBeUndefined() + + inventoryRequest.resolve(['kept.ts']) + capabilityRequest.resolve(['dropped.ts']) + const keptLease = await settled(inventoryLoaded) + const droppedLease = await settled(capabilityLoaded) + + expect(inventory.commit(keptLease.lease, keptLease.value)).toBe('committed') + expect(inventory.read(inventoryBefore, QUERY)).toEqual(['kept.ts']) + expect(capability.commit(droppedLease.lease, droppedLease.value)).toBe('retired-generation') + expect(capability.read(capabilityAfter, QUERY)).toBeUndefined() + }) +}) + +describe('stale-inflight-cleanup', () => { + it('keeps the first visit to A from landing under the second visit to A', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const a = scopeAt('A', 1) + const b = scopeAt('B', 1) + const firstVisit = pending() + const loaded = owner.load(a, QUERY, firstVisit.start) + + expect(owner.read(b, QUERY)).toBeUndefined() + expect(owner.read(a, QUERY)).toBeUndefined() + + // The key A builds is the same string it built before; the generation is what differs. + let started = 0 + const secondVisit = pending() + const reloaded = owner.load(a, QUERY, () => { + started++ + return secondVisit.start() + }) + expect(started).toBe(1) + + firstVisit.resolve(['old.ts']) + const stale = await settled(loaded) + expect(owner.commit(stale.lease, stale.value)).toBe('retired-generation') + expect(owner.read(a, QUERY)).toBeUndefined() + + secondVisit.resolve(['fresh.ts']) + const fresh = await settled(reloaded) + expect(owner.commit(fresh.lease, fresh.value)).toBe('committed') + expect(owner.read(a, QUERY)).toEqual(['fresh.ts']) + }) +}) + +describe('stale-settlement-cleanup', () => { + it('keeps a retired request from clearing the slot the live one holds', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const scope = scopeAt('w1', 1) + let started = 0 + const stale = pending() + const live = pending() + const staleLoaded = owner.load(scope, QUERY, () => { + started++ + return stale.start() + }) + + owner.reset() + const liveLoaded = owner.load(scope, QUERY, () => { + started++ + return live.start() + }) + expect(started).toBe(2) + + // The retired request settles last. Its cleanup names the slot by key, which the live request + // now holds, so only promise identity keeps it from evicting a request still in flight. + stale.resolve(['stale.ts']) + const retired = await settled(staleLoaded) + expect(owner.commit(retired.lease, retired.value)).toBe('retired-generation') + + const joined = owner.load(scope, QUERY, () => { + started++ + return pending().start() + }) + expect(started).toBe(2) + expect(joined).toBe(liveLoaded) + + live.resolve(['live.ts']) + const lease = await settled(joined) + expect(owner.commit(lease.lease, lease.value)).toBe('committed') + expect(owner.read(scope, QUERY)).toEqual(['live.ts']) + }) +}) + +describe('owner boundaries', () => { + it('refuses a peer owner lease', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const peer: Owner = new GenerationScopedRequestOwner() + const scope = scopeAt('w1', 1) + const request = pending() + const loaded = owner.load(scope, QUERY, request.start) + request.resolve(['a.ts']) + const lease = await settled(loaded) + + expect(peer.commit(lease.lease, lease.value)).toBe('foreign-owner') + expect(peer.read(scope, QUERY)).toBeUndefined() + }) + + it('coalesces concurrent loads of one key onto one request', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const scope = scopeAt('w1', 1) + let started = 0 + const request = pending() + const start = () => { + started++ + return request.start() + } + const first = owner.load(scope, QUERY, start) + const second = owner.load(scope, QUERY, start) + request.resolve(['a.ts']) + expect(started).toBe(1) + expect(await settled(first)).toBe(await settled(second)) + }) + + it('separates two workspaces that ask for the same parameters', async () => { + const owner: Owner = new GenerationScopedRequestOwner() + const request = pending() + const loaded = owner.load(scopeAt('A', 1), QUERY, request.start) + request.resolve(['a.ts']) + const lease = await settled(loaded) + expect(owner.commit(lease.lease, lease.value)).toBe('committed') + expect(owner.read(scopeAt('B', 1), QUERY)).toBeUndefined() + }) +}) + +const mobileRoot = fileURLToPath(new URL('../..', import.meta.url)) +const ownerModule = join(mobileRoot, 'src', 'transport', 'generation-scoped-request-owner') + +/** Whether a file imports the owner, resolved rather than pattern-matched on the specifier. */ +function importsOwner(path: string, source: string): boolean { + const parsed = ts.createSourceFile(path, source, ts.ScriptTarget.Latest, true) + return parsed.statements.some((statement) => { + const specifier = ts.isImportDeclaration(statement) ? statement.moduleSpecifier : undefined + return ( + specifier !== undefined && + ts.isStringLiteral(specifier) && + specifier.text.startsWith('.') && + resolve(path, '..', specifier.text) === ownerModule + ) + }) +} + +function sourceFiles(directory: string): string[] { + return readdirSync(directory, { withFileTypes: true }).flatMap((entry) => { + const path = join(directory, entry.name) + if (entry.isDirectory()) { + return entry.name === 'node_modules' ? [] : sourceFiles(path) + } + return [path] + }) +} + +function declaredInside(callback: ts.Node): Set { + const names = new Set() + const bind = (name: ts.BindingName): void => { + if (ts.isIdentifier(name)) { + names.add(name.text) + return + } + for (const element of name.elements) { + if (ts.isBindingElement(element)) { + bind(element.name) + } + } + } + const visit = (node: ts.Node): void => { + if (ts.isVariableDeclaration(node) || ts.isParameter(node)) { + bind(node.name) + } + if ((ts.isFunctionDeclaration(node) || ts.isClassDeclaration(node)) && node.name) { + names.add(node.name.text) + } + if (ts.isCatchClause(node) && node.variableDeclaration) { + bind(node.variableDeclaration.name) + } + ts.forEachChild(node, visit) + } + ts.forEachChild(callback, visit) + return names +} + +function assignmentRoot(target: ts.Expression): string | null { + let node: ts.Expression = target + for (;;) { + if (ts.isIdentifier(node)) { + return node.text + } + if (node.kind === ts.SyntaxKind.ThisKeyword) { + return 'this' + } + if (ts.isPropertyAccessExpression(node) || ts.isElementAccessExpression(node)) { + node = node.expression + continue + } + if (ts.isParenthesizedExpression(node) || ts.isNonNullExpression(node)) { + node = node.expression + continue + } + return null + } +} + +/** Every write a loader body performs to something it did not itself declare. */ +function externalWrites(callback: ts.Node): string[] { + const declared = declaredInside(callback) + const offenders: string[] = [] + const record = (target: ts.Expression): void => { + const root = assignmentRoot(target) + if (root !== null && !declared.has(root)) { + offenders.push(root) + } + } + const visit = (node: ts.Node): void => { + if (ts.isBinaryExpression(node) && node.operatorToken.kind >= ts.SyntaxKind.FirstAssignment) { + if (node.operatorToken.kind <= ts.SyntaxKind.LastAssignment) { + record(node.left) + } + } + if ( + (ts.isPrefixUnaryExpression(node) || ts.isPostfixUnaryExpression(node)) && + (node.operator === ts.SyntaxKind.PlusPlusToken || + node.operator === ts.SyntaxKind.MinusMinusToken) + ) { + record(node.operand) + } + ts.forEachChild(node, visit) + } + ts.forEachChild(callback, visit) + return offenders +} + +function loaders(path: string, source: string): ts.Node[] { + const parsed = ts.createSourceFile( + path, + source, + ts.ScriptTarget.Latest, + true, + extname(path) === '.tsx' ? ts.ScriptKind.TSX : ts.ScriptKind.TS + ) + const found: ts.Node[] = [] + const visit = (node: ts.Node): void => { + if ( + ts.isCallExpression(node) && + ts.isPropertyAccessExpression(node.expression) && + node.expression.name.text === 'load' + ) { + const loader = node.arguments[2] + if (loader && (ts.isArrowFunction(loader) || ts.isFunctionExpression(loader))) { + found.push(loader) + } + } + ts.forEachChild(node, visit) + } + ts.forEachChild(parsed, visit) + return found +} + +function loaderWrites(path: string, source: string): string[] { + return loaders(path, source).flatMap((loader) => externalWrites(loader)) +} + +describe('loader write fence', () => { + const holders = ['app', 'src'] + .map((directory) => join(mobileRoot, directory)) + .flatMap(sourceFiles) + .filter((path) => ['.ts', '.tsx'].includes(extname(path))) + .filter((path) => !/\.test\.tsx?$/.test(path)) + .map((path) => ({ path, source: readFileSync(path, 'utf8') })) + .filter(({ path, source }) => importsOwner(path, source)) + + it('recognizes a loader that writes outside itself and leaves an honest one alone', () => { + const probe = join(mobileRoot, 'src', 'transport', 'probe.ts') + expect( + loaderWrites(probe, 'owner.load(scope, {}, async () => { cacheRef.current = await read() })') + ).toEqual(['cacheRef']) + expect(loaderWrites(probe, 'owner.load(scope, {}, async () => { sequence++ })')).toEqual([ + 'sequence' + ]) + expect( + loaderWrites(probe, 'owner.load(scope, {}, async () => { this.paths = await read() })') + ).toEqual(['this']) + expect( + loaderWrites( + probe, + 'owner.load(scope, {}, async () => { const rows = await read(); return rows })' + ) + ).toEqual([]) + }) + + it('has every owner holder loading without writing external state', () => { + // Absence proves nothing without presence: an empty offender list would otherwise pass on a day + // the scan found no holder and no loader to look inside. + expect( + holders.map(({ path }) => relative(mobileRoot, path).split(/[/\\]/).join('/')) + ).toContain('src/session/use-mobile-native-chat-file-search.ts') + expect( + holders.reduce((total, { path, source }) => total + loaders(path, source).length, 0) + ).toBeGreaterThan(0) + const offenders = holders + .map(({ path, source }) => ({ + file: relative(mobileRoot, path).split(/[/\\]/).join('/'), + writes: loaderWrites(path, source) + })) + .filter((entry) => entry.writes.length > 0) + .map((entry) => `${entry.file}: ${[...new Set(entry.writes)].sort().join(', ')}`) + .sort() + expect( + offenders, + 'Return the value from the loader and publish it with commit(lease, value) instead.' + ).toEqual([]) + }) +}) diff --git a/mobile/src/transport/rpc-client.ts b/mobile/src/transport/rpc-client.ts index 05fdbbac8fa..aa8cebf5627 100644 --- a/mobile/src/transport/rpc-client.ts +++ b/mobile/src/transport/rpc-client.ts @@ -30,6 +30,12 @@ export type RpcClient = UnvalidatedRpcRequestPort & { getReconnectAttempt: () => number getLastConnectedAt: () => number | null getLastInboundAt?: () => number | null + /** + * The logical authority epoch, advanced by `StableLogicalRpcClient.migrateTo`. Read-only and + * optional so a holder of a bare `RpcClient` can scope cached work to it without every + * implementation growing a counter it does not have. + */ + getGeneration?: () => number onStateChange: (listener: (state: ConnectionState) => void) => () => void notifyForeground: (reason?: ForegroundNudgeReason) => void /** From b8d4cde09fe3ba1a0265dcd6eb82b69ab6d2555c Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:10:22 -0400 Subject: [PATCH 06/28] refactor(mobile): send six screen-mounted call sites through typed RpcOperations (step 4, wave 3) (#20919) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(mobile): record six screen-mounted call sites before migrating them Five new mount adapters and six scenarios, recorded against the pinned baseline's product code so the goldens are main's behaviour, not the refactor's. Each site is a screen the recorder could not previously mount: - `home.host-accounts` mounts `fetchMobileHomeAccounts`, whose decoder is re-exported through `AccountUsage.tsx`. That module loads under the mount loader, so the inventory's "no recording can load it" was already stale. - `notifications.display-test-screen` mounts the settings push probe and presses its button by reading the handler back off the rendered inert `Pressable`. - `aiVault.history-screen` mounts the history panel, which is where the last `worktree.ps` lives. Split in two: the base stops once the worktree list has seeded the scopes, because a reply partition there changes the scopePaths the downstream `aiVault.listSessions` carries, and a matrix variant cannot assert params it moved. The full chain is a second scenario, driven as a pilot only. - `tasks.route-repo-list` mounts the tasks screen-root hook and calls its own `ensureLoaded`, which is the only thing that fires `repo.list`. - `linear.select-workspace-picker` calls the render helper the tasks surface calls and invokes the `onSelect` on the element it returns. The picker draws inside `BottomDrawer`, whose reanimated timing driver and gesture builder the recorder would have to impersonate for a row to exist; the closure is the same either way, and the workspace a selection carries comes from the scenario. Five substitute members are added, each with the recording that reads it: `react-native-safe-area-context.useSafeAreaInsets` and `expo-router.useLocalSearchParams` for `tasks.route-repo-list`, and `react-native.TextInput`, `.SectionList` and `.RefreshControl` for `aiVault.history-screen` once its list renders. `useLocalSearchParams` answers one pinned route for the same reason the window size is pinned: a screen's own address is not a device reading, and the one screen that reads it sends `repo.list`, which takes no params. Touching the substitute table moves `recorderSha256`, so all 641 existing goldens are re-recorded. Recorded from a detached worktree at the pinned baseline with this branch's recorder laid over it: every pre-existing golden is header-only, verified by resolving both sides through the value pool — 641 header-only, 0 body, 0 deleted, one distinct `recorderSha256`, `baseline` and `lockfileSha256` across all of them. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): type the linear workspace picker's model fixture `mobile/tsconfig.json` covers the recorder, and the fixture's setters were written with the argument the product happens to pass rather than the `SetStateAction` the model declares. Typing them moves `adapterSha256` on the two goldens recorded through this module, so they are re-recorded here rather than in the refactor commit, which must move none. Re-recorded at the pinned baseline: `linear-select-workspace` and its reply matrix, header-only, bodies unchanged. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): send six screen-mounted call sites through typed RpcOperations Nine references off the raw request port, across six files. Every one is proven against the goldens recorded in the previous commit from the pinned baseline's product code: this commit moves no file under mobile/rpc-foundation/goldens. Reused rather than redefined: - `worktree.ps` in the history panel sends through `worktreeCatalogRead`. Same question, same acceptance — a refused list leaves the screen on what it holds. - `repo.list` in the tasks screen-root hook sends through `newTabRepoListRead`. Its policy raises the host's message and its reader takes `repos` off the payload while preserving the property-read exception a null result used to throw at the cast, which is what this call site did by hand. Its name still says new-tab; a third consumer does not make renaming it this bucket's business. Four operations are new, each because no existing reader on the method takes this consumer's input: - `files.read-directory-or-skip` and `files.legacy-explorer-list-or-skip` for the explorer. Both skip, because neither refusal is the operation's to decide: the readDir refusal code selects the legacy fallback and the list refusal supplies the message. The existing `files.list-or-skip` reads the `files` member alone, and the explorer also needs `truncated` for the "Showing first 5000" note. - `accounts.home-snapshot-or-skip` for the Home card, decoded by `decodeAccountsSnapshot` at the call site as before. - `notifications.test-push-or-skip` for the settings probe, whose `forbidden` and `method_not_found` refusals mean "try the next desktop". - `linear.select-workspace-or-skip` for the filter sheet. Two behaviours are preserved rather than repaired, both recorded: - The workspace switch never read its reply. `.then(() => loadLinearContext())` runs on a refusal exactly as on a success, so only a transport rejection reaches the error copy. Interpreting the operation here would surface a refused switch for the first time; that is a product change with its own re-record. - `app/terminal-settings.tsx` still reads `ms` off the reply envelope instead of off its result, so the value is always undefined. It did not migrate, and the inventory now carries the defect as its own note. Four mutants are added, one per new family that admits a state-only one: the Home snapshot, the push test result and the tasks repo list each decoded one level above the envelope, and the workspace switch with its context reload dropped. `aiVault.history-screen` gets none and says why in the suite: everything `worktree.ps` publishes also moves the `scopePaths` the next scripted completion asserts, so a mutant aborts the sequence instead of diverging from it. Its evidence is the reply matrix at that request. The tasks source-parity ratchet moves with the family it guards: hook, statement, declaration, render and style counts are unchanged, and the semantic source is a pure deletion of four lines — two `rpc:` call signatures and the two method literals they carried. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): matrix the six new screen families' replies One golden per scripted reply, eleven partitions each, recorded at the pinned baseline alongside the pilots. Seven sites: `accounts.list`, `notifications.testPush`, `repo.list`, `linear.selectWorkspace`, and all three of the history screen's — `worktree.ps` and the two `status.get` reads its scan chains off the worktree list. The history matrix is also that family's defect evidence in place of a mutant: every partition at `worktree.ps` changes the `scopePaths` the downstream `aiVault.listSessions` carries, and the sender args are recorded with it. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): correct three operation and mutant comments Comment-only, no product behaviour and no golden movement. - `worktreeCatalogRead` says two readers; there are three. Names the third (the agent-history panel's `scopePaths` seed) and drops the stale count from the module header, which described call sites rather than the two operations. - `newTabRepoListRead`'s census counted the two operations over `repo.list`, not its own two callers, and claimed both read a workspace's connection id. The tasks route keeps the whole list for its repo pickers. The split from `nativeChatRepoListRead` stays where it belongs: acceptance. - The `aiVault.history-screen` mutant note pointed at the reply matrix as the accepted-vs-refused oracle. Decoding `matrix-aivault.history-screen-worktree.ps-1.json` through the value pool shows `normal`'s projected state is identical to all seven non-crashing partitions (spinner, two labels, zero rows). The real oracles are the next request's `scopePaths` (`["/repo/feature"]` vs `[]`) and the crash channel the three `inner-*` partitions land in. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): give the second files.list reader its real reason Comment-only, no product behaviour and no golden movement. `legacyFileListRead` claimed "the member reader rejects this consumer's input". Nothing rejects: `rpcUncheckedMemberReader` returns the member, and reusing it here would simply drop `truncated`. The reason the explorer declares its own operation is the other direction. Widening `files.list-or-skip` to a payload reader would split the `workspace-files` variant it shares with `nativeChatFileSearchRead` over `files.searchPaths`, whose only caller feeds both through one `extractPaths` in `use-mobile-native-chat-file-search.ts`, so the member read would move into that hook rather than disappear. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * style(mobile): indent the six scenario entries spliced during the merge The conflict on `pilot-scenarios.json` was resolved by id rather than by hunk, splicing this branch's six entries into main's text at the array's close. The splice started at the entry's `{` instead of at its line, so those six lines lost their indentation. oxfmt's only change is those six lines; the parsed document is identical, and the recording suite still matches all 667 goldens, so no scenario digest depends on the raw text. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the merged goldens once at the pin One record for the whole merged tree, at the unchanged baseline e7206f62a827f4fe0a2badf3eecd2167b8ac4285, through a detached worktree reset to that pin with this branch's rpc-recording tree, scenarios and recorder script overlaid. Product source in that worktree was proven identical to the baseline before the run, so the recordings describe the pre-refactor product. 13 goldens move, all of them the ones #20915 added. They arrived carrying the recorder digest from before this branch edited `screen-native-substitutes.ts`, and `recorderSha256` is the only key that moves on any of them; every recording body is identical after decoding through the value pool. The other 654 were re-recorded byte-for-byte and are not in this commit. All 667 goldens now carry one `recorderSha256`, one `baseline` and one `lockfileSha256`. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): state the real gates on two screen holdouts Comment-only, no product behaviour and no golden movement. The accounts route said "the screen now mounts". It does not, at this commit: it reads `expo-router.useFocusEffect` and `react-native.ScrollView`, neither is a substituted member, and the trap refuses before any effect runs. The note now names that as the first gate and the `accounts.subscribe` effect as the second, and says why the two members are not added here. The host-screen overlay note blamed a "reanimated timing driver" for deciding when the drawer's children exist. Nothing gates them: `resolveBottomDrawerMounted` returns `visible || mounted`, `BottomDrawer` renders `MountedBottomDrawer` on that, and that component renders its children unconditionally inside its `Modal`. The blocker is the module's own imports of reanimated and gesture-handler, neither substituted. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): drop the tasks route adapter's unreachable reload action No scenario names `reload-repos`, and no schedule driver can generate it: the drivers emit only disconnect, cutover, reset, unmount, blur and remount. Every other action on this adapter is reached by a scenario. Deleting the branch leaves the remount and unmount branches, which are driven. Re-recorded once at the pin e7206f62a827f4fe0a2badf3eecd2167b8ac4285 with the product source in that worktree proven identical to the baseline first. Two goldens move, both in the `tasks.route-repo-list` family, with `adapterSha256` the only moved key and both recording bodies identical after decoding through the value pool. The other 665 re-recorded byte-for-byte. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- .../aivault-history-scan-fulfilled.json | 2 +- .../aivault-history-scan-unsupported.json | 2 +- .../aivault-history-scan-worktrees-late.json | 2 +- .../aivault-history-screen-listed.json | 365 ++++++++ .../aivault-history-screen-worktrees.json | 273 ++++++ .../aivault-resume-launch-create-refused.json | 2 +- .../aivault-resume-launch-invalid-tab.json | 2 +- .../goldens/aivault-resume-launch-locked.json | 2 +- .../goldens/aivault-resume-launch-sent.json | 2 +- .../aivault-resume-prepare-refused.json | 2 +- .../goldens/aivault-resume-prepare-repin.json | 2 +- .../aivault-resume-prepare-skipped.json | 2 +- .../aivault-resume-prepare-unavailable.json | 2 +- mobile/rpc-foundation/goldens/b1.json | 2 +- mobile/rpc-foundation/goldens/b2.json | 2 +- mobile/rpc-foundation/goldens/b3.json | 2 +- .../goldens/browser-dialog-accepted.json | 2 +- .../goldens/browser-dialog-dismissed.json | 2 +- .../goldens/browser-keyboard-input.json | 2 +- .../browser-pointer-click-accepted.json | 2 +- .../browser-pointer-click-fallback.json | 2 +- .../goldens/browser-wheel-scrolled.json | 2 +- .../clipboard-image-attachment-anonymous.json | 2 +- ...-image-attachment-blocked-before-send.json | 2 +- .../clipboard-image-attachment-cancelled.json | 2 +- .../clipboard-image-attachment-pasted.json | 2 +- ...board-image-attachment-upload-refused.json | 2 +- ...-image-upload-aborts-on-chunk-failure.json | 2 +- .../clipboard-image-upload-chunked.json | 2 +- ...rd-image-upload-single-frame-fallback.json | 2 +- .../clipboard-image-upload-start-refused.json | 2 +- .../goldens/codex-reset-credit-consumed.json | 2 +- .../goldens/codex-reset-credit-resumed.json | 2 +- .../goldens/components-codex-capability.json | 2 +- .../goldens/components-setup-ask.json | 2 +- .../goldens/components-target-local.json | 2 +- .../goldens/components-target-ssh.json | 2 +- .../goldens/diff-review-branch-compare.json | 2 +- .../goldens/diff-review-branch-file-diff.json | 2 +- ...f-review-notes-refused-before-compare.json | 2 +- .../diff-review-refused-file-diff.json | 2 +- .../goldens/diff-review-snapshot.json | 2 +- .../diff-review-status-unavailable.json | 2 +- .../diff-review-worktree-file-diff.json | 2 +- .../goldens/file-tap-open-refused.json | 2 +- .../goldens/file-tap-opens-worktree-file.json | 2 +- .../file-tap-previews-absolute-artifact.json | 2 +- .../goldens/file-tap-resolve-miss.json | 2 +- .../goldens/file-tap-resolve-refused.json | 2 +- .../files-explorer-legacy-fallback.json | 2 +- .../goldens/files-explorer-readdir.json | 2 +- .../goldens/files-ownership-local.json | 2 +- .../goldens/files-ownership-ssh.json | 2 +- .../files-preview-artifact-direct.json | 2 +- .../goldens/files-preview-artifact-image.json | 2 +- .../goldens/files-preview-grant-refresh.json | 2 +- .../goldens/files-preview-worktree-image.json | 2 +- .../goldens/files-preview-worktree.json | 2 +- .../goldens/files-save-blind.json | 2 +- .../goldens/files-save-verified.json | 2 +- .../goldens/files-tab-doc-shapes.json | 2 +- .../goldens/home-host-accounts.json | 230 +++++ .../goldens/home-host-stats.json | 2 +- .../goldens/host-view-settings-sync.json | 2 +- ...host-worktree-actions-pin-open-delete.json | 2 +- .../goldens/host-worktree-delete-refused.json | 2 +- .../interruptions-inventory-lifecycle.json | 2 +- ...ions-settings-bot-overrides-fulfilled.json | 2 +- .../goldens/inventory-lifecycle.json | 2 +- .../goldens/inventory-repeat-query.json | 2 +- .../rpc-foundation/goldens/lifecycle-b3.json | 2 +- .../lifecycle-inventory-lifecycle.json | 2 +- ...ycle-settings-bot-overrides-fulfilled.json | 2 +- ...cle-settings-task-hydration-fulfilled.json | 2 +- ...-settings-workspace-context-fulfilled.json | 2 +- .../goldens/linear-select-workspace.json | 135 +++ ...d-launch-agentsession.createsupport-1.json | 2 +- ...ivault.history-aivault.listsessions-1.json | 2 +- ...ivault.history-screen-platform-status.json | 723 +++++++++++++++ ...x-aivault.history-screen-status.get-2.json | 872 ++++++++++++++++++ ...-aivault.history-screen-worktree.ps-1.json | 767 +++++++++++++++ .../matrix-aivault.history-status.get-1.json | 2 +- ...-launch-session.tabs.createterminal-1.json | 2 +- ...aivault.resume-launch-terminal.send-1.json | 2 +- ...ration-aivault.preparesessionresume-1.json | 2 +- ...browser.dialog-browser.dialogaccept-1.json | 2 +- ...keyboard-browser.keyboardinserttext-1.json | 2 +- ...x-browser.keyboard-browser.keypress-1.json | 2 +- ...er.pointer-click-browser.mouseclick-1.json | 2 +- ...ser.pointer-click-browser.mousedown-1.json | 2 +- ...ser.pointer-click-browser.mousemove-1.json | 2 +- ...owser.pointer-click-browser.mouseup-1.json | 2 +- ...rix-browser.wheel-browser.mousemove-1.json | 2 +- ...ix-browser.wheel-browser.mousewheel-1.json | 2 +- ...tachment-clipboard.startimageupload-1.json | 2 +- ...pload-clipboard.saveimageastempfile-1.json | 2 +- ...e-upload-clipboard.startimageupload-1.json | 2 +- ...s.codex-reset-capability-status.get-1.json | 2 +- ...it-accounts.consumecodexresetcredit-1.json | 2 +- ...target-local-preflight.detectagents-1.json | 2 +- ...target-preflight.detectremoteagents-1.json | 2 +- ...onents.execution-target-ssh.connect-1.json | 2 +- ...nents.execution-target-ssh.getstate-1.json | 2 +- ...ew-workspace-repositories-repo.list-1.json | 2 +- ...-components.setup-script-repo.hooks-1.json | 2 +- ...ix-files.explorer-screen-files.list-1.json | 2 +- ...files.explorer-screen-files.readdir-1.json | 2 +- ...les.mutation-ownership-ssh.getstate-1.json | 2 +- ...files.mutation-ownership-status.get-1.json | 2 +- ...es.mutation-ownership-worktree.show-1.json | 2 +- ...iew-load-files.readterminalartifact-1.json | 2 +- ...iew-load-files.readterminalartifact-2.json | 2 +- ...view-load-files.resolveterminalpath-1.json | 2 +- ...iew-save-files.readterminalartifact-1.json | 2 +- ...ew-save-files.writeterminalartifact-1.json | 2 +- .../matrix-files.tab-doc-files.read-1.json | 2 +- ...rix-files.tab-doc-files.readpreview-1.json | 2 +- .../matrix-files.tab-doc-git.diff-1.json | 2 +- ...-files.terminal-path-tap-files.open-1.json | 2 +- ...-path-tap-files.resolveterminalpath-1.json | 2 +- ....base-ref-chain-repo.baserefdefault-1.json | 2 +- ...matrix-git.base-ref-chain-repo.list-1.json | 2 +- ...ix-git.base-ref-chain-worktree.show-1.json | 2 +- ...essage-ai-git.generatecommitmessage-1.json | 2 +- ...matrix-git.history-read-git.history-1.json | 2 +- ...ix-git.remote-prerequisite-git.push-1.json | 2 +- ...x-git.review-preparation-git.status-1.json | 2 +- ...ent-mutation-github.addissuecomment-1.json | 2 +- ...tion-github.addprreviewcommentreply-1.json | 2 +- ...ub.project.deleteissuecommentbyslug-1.json | 2 +- ...ub.project.updateissuecommentbyslug-1.json | 2 +- ...mutation-github.resolvereviewthread-1.json | 2 +- ...x-github.pr-mutation-github.mergepr-1.json | 2 +- ...r-mutation-github.removeprreviewers-1.json | 2 +- ...-mutation-github.requestprreviewers-1.json | 2 +- ...ub.pr-mutation-github.rerunprchecks-1.json | 2 +- ...b.pr-mutation-github.setprautomerge-1.json | 2 +- ...ub.pr-mutation-github.updateprstate-1.json | 2 +- ....pr-read-github.listassignableusers-1.json | 2 +- ...ithub.pr-read-github.prcheckdetails-1.json | 2 +- ...trix-github.pr-read-github.prchecks-1.json | 2 +- ...x-github.pr-read-github.prforbranch-1.json | 2 +- ...trix-github.pr-read-github.reposlug-1.json | 2 +- ...thub.pr-read-github.workitemdetails-1.json | 2 +- ...thub.pr-read-hostedreview.forbranch-1.json | 2 +- ...title-mutation-github.updateprtitle-1.json | 2 +- ...ix-home.host-accounts-accounts.list-1.json | 680 ++++++++++++++ ...atrix-home.host-stats-stats.summary-1.json | 2 +- .../matrix-host.view-settings-ui.get-1.json | 2 +- .../matrix-host.view-settings-ui.set-1.json | 2 +- ....worktree-actions-worktree.activate-1.json | 2 +- ...x-host.worktree-actions-worktree.rm-1.json | 2 +- ...-host.worktree-actions-worktree.set-1.json | 2 +- ...-hostedreview.create-chain-git.push-1.json | 2 +- ...ew.create-chain-hostedreview.create-1.json | 2 +- ...tedreview.create-chain-worktree.set-1.json | 2 +- ...dreview.create-intent-git.bulkstage-1.json | 2 +- ...stedreview.create-intent-git.commit-1.json | 2 +- ...te-intent-git.generatecommitmessage-1.json | 2 +- ...hostedreview.create-intent-git.push-1.json | 2 +- ...stedreview.create-intent-git.status-1.json | 2 +- ...stedreview.create-intent-git.status-2.json | 2 +- ...stedreview.create-intent-git.status-3.json | 2 +- ...stedreview.create-intent-git.status-4.json | 2 +- ...w.create-intent-hostedreview.create-1.json | 2 +- ...hostedreview.getcreationeligibility-1.json | 2 +- ...hostedreview.getcreationeligibility-2.json | 2 +- ...edreview.create-intent-worktree.set-1.json | 2 +- ...hostedreview.getcreationeligibility-1.json | 2 +- ...-legacy-inventory-files.searchpaths-1.json | 2 +- ...-legacy-inventory-files.searchpaths-2.json | 2 +- ...trix-legacy-inventory-fresh-inventory.json | 2 +- ...matrix-legacy-inventory-old-inventory.json | 2 +- ...near-detail-barrier-linear.getissue-1.json | 2 +- ...detail-barrier-linear.issuecomments-1.json | 2 +- ...space-picker-linear.selectworkspace-1.json | 591 ++++++++++++ ...ativechat.image-paste-terminal.send-1.json | 2 +- ...ativechat.image-paste-terminal.send-2.json | 2 +- ...e-upload-clipboard.startimageupload-1.json | 2 +- ...ings.mutatenativechatsessionoptions-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...vechat.terminal-write-terminal.send-1.json | 2 +- ...-test-screen-notifications.testpush-1.json | 733 +++++++++++++++ ...missal-notifications.getmissedsince-1.json | 2 +- ...stration-notifications.registerpush-1.json | 2 +- ...ration-notifications.unregisterpush-1.json | 2 +- ...rix-pairing.pre-profile-direct-status.json | 2 +- ...ng.pre-profile-pairing.getendpoints-1.json | 2 +- ....pre-profile-pairing.provisionrelay-1.json | 2 +- ...trix-pairing.pre-profile-relay-status.json | 2 +- ...se-github.project.updateissuebyslug-1.json | 2 +- ...ntial-rotation-pairing.getendpoints-1.json | 2 +- ...ntial-rotation-pairing.getendpoints-2.json | 2 +- ...ial-rotation-pairing.provisionrelay-1.json | 2 +- ...direct-upgrade-pairing.getendpoints-1.json | 2 +- ...direct-upgrade-pairing.getendpoints-2.json | 2 +- ...rect-upgrade-pairing.provisionrelay-1.json | 2 +- ...iring-recovery-pairing.getendpoints-1.json | 2 +- ...ion.content-create-files.createfile-1.json | 2 +- ...x-session.content-create-files.open-1.json | 2 +- ...x-session.content-create-status.get-1.json | 2 +- ...ession.content-create-worktree.show-1.json | 2 +- ...ix-session.diff-notes-worktree.show-1.json | 2 +- ...on.diff-review-actions-worktree.set-1.json | 2 +- ...rix-session.diff-review-base-ref-show.json | 2 +- ...ssion.diff-review-git.branchcompare-1.json | 2 +- ...trix-session.diff-review-git.status-1.json | 2 +- ...atrix-session.diff-review-repo.list-1.json | 2 +- ...atrix-session.diff-review-review-show.json | 2 +- ...sion.markdown-save-markdown.savetab-1.json | 2 +- ...n.native-chat-readability-repo.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...sion.native-chat-stop-terminal.send-1.json | 2 +- ...sion.native-chat-stop-terminal.send-2.json | 2 +- ...pr-branch-context-git.branchcompare-1.json | 2 +- ...ession.pr-branch-context-git.status-1.json | 2 +- ...session.pr-branch-context-repo.list-1.json | 2 +- ...ion.pr-branch-context-worktree.show-1.json | 2 +- ...-triage-session.tabs.createterminal-1.json | 2 +- ...rix-session.pr-triage-terminal.send-1.json | 2 +- ...ab-activation-session.tabs.activate-1.json | 2 +- ...ssion.tab-activation-terminal.focus-1.json | 2 +- ...ix-session.tab-close-terminal.close-1.json | 2 +- ...sion.tab-documents-markdown.readtab-1.json | 2 +- ...on.tab-reveal-session.tabs.activate-1.json | 2 +- ...ession.tab-reveal-session.tabs.list-1.json | 2 +- ...abs-stream-health-session.tabs.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...n.terminal-input-send-terminal.send-1.json | 2 +- ...on.terminal-inventory-terminal.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...session.terminal-paste-settings.get-1.json | 2 +- ...ession.terminal-paste-terminal.send-1.json | 2 +- ...ssion.worktree-connection-repo.list-1.json | 2 +- ...on.worktree-connection-settings.get-1.json | 2 +- ...t-read-preflight.detectremoteagents-1.json | 2 +- ...atrix-settings-agent-read-repo.list-1.json | 2 +- ...ix-settings-agent-read-settings.get-1.json | 2 +- ...ettings-best-effort-settings.update-1.json | 2 +- ...settings.bot-overrides-settings.get-1.json | 2 +- ...ttings.home-providers-linear.status-1.json | 2 +- ...ings.home-providers-preflight.check-1.json | 2 +- ...ettings.home-providers-settings.get-1.json | 2 +- ...s-settings.getterminalquickcommands-1.json | 2 +- ...ettings.updateterminalquickcommands-1.json | 2 +- ...ettings.repo-metadata-host.platform-1.json | 2 +- ...ix-settings.repo-metadata-repo.list-1.json | 2 +- ...settings.repo-metadata-settings.get-1.json | 2 +- ...po-metadata-ssh.listtargetsummaries-1.json | 2 +- ...esume-metadata-folderworkspace.list-1.json | 2 +- ...s.resume-metadata-projectgroup.list-1.json | 2 +- ...-settings.resume-metadata-repo.list-1.json | 2 +- ...ttings.resume-metadata-settings.get-1.json | 2 +- ...ettings.resume-metadata-worktree.ps-1.json | 2 +- ...ttings.task-hydration-linear.status-1.json | 2 +- ...ings.task-hydration-preflight.check-1.json | 2 +- ...ettings.task-hydration-settings.get-1.json | 2 +- ...-settings.task-hydration-status.get-1.json | 2 +- ...trix-settings.task-hydration-ui.get-1.json | 2 +- ....task-workspace-create-settings.get-1.json | 2 +- ...sk-workspace-create-worktree.create-1.json | 2 +- ...ettings.task-workspace-settings.get-1.json | 2 +- ...ngs.workspace-context-linear.status-1.json | 2 +- ...s.workspace-context-preflight.check-1.json | 2 +- ...ings.workspace-context-settings.get-1.json | 2 +- ...x-settings.workspace-context-ui.get-1.json | 2 +- ...tings.workspace-submit-settings.get-1.json | 2 +- ...tation-chunk-speech.dictation.chunk-1.json | 2 +- ...ion-session-speech.dictation.finish-1.json | 2 +- ...tion-session-speech.dictation.start-1.json | 2 +- ...ation-start-speech.dictation.cancel-1.json | 2 +- ...tation-start-speech.dictation.start-1.json | 2 +- ....setup-sheet-speech.dictation.setup-1.json | 2 +- ...ch.setup-sheet-speech.models.delete-1.json | 2 +- ....setup-sheet-speech.models.download-1.json | 2 +- ...eech.setup-sheet-speech.models.list-1.json | 2 +- ...cks-files-github.addprreviewcomment-1.json | 2 +- ...-checks-files-github.prfilecontents-1.json | 2 +- ...m-checks-files-github.rerunprchecks-1.json | 2 +- ...ks-files-github.resolvereviewthread-1.json | 2 +- ...checks-files-github.setprfileviewed-1.json | 2 +- ...mment-github-github.addissuecomment-1.json | 2 +- ...mment-gitlab-gitlab.addissuecomment-1.json | 2 +- ...mment-gitlab-mr-gitlab.addmrcomment-1.json | 2 +- ...etail-github-github.workitemdetails-1.json | 2 +- ...etail-gitlab-gitlab.workitemdetails-1.json | 2 +- ....item-detail-linear-linear.getissue-1.json | 2 +- ...-detail-linear-linear.issuecomments-1.json | 2 +- ...metadata-github.listassignableusers-1.json | 2 +- ...m-detail-metadata-github.listlabels-1.json | 2 +- ...ks.item-merge-gitlab-gitlab.mergemr-1.json | 2 +- ...tem-metadata-github-github.updatepr-1.json | 2 +- ...-metadata-gitlab-gitlab.updateissue-1.json | 2 +- ...-metadata-gitlab-mr-gitlab.updatemr-1.json | 2 +- ...-reply-merge-github.addissuecomment-1.json | 2 +- ...erge-github.addprreviewcommentreply-1.json | 2 +- ...sks.item-reply-merge-github.mergepr-1.json | 2 +- ...item-reply-merge-linear.updateissue-1.json | 2 +- ....item-review-github-github.prchecks-1.json | 2 +- ...ew-github-github.requestprreviewers-1.json | 2 +- ...em-status-gitlab-github.updateissue-1.json | 2 +- ...em-status-gitlab-gitlab.updateissue-1.json | 2 +- ...atus-gitlab-mr-gitlab.updatemrstate-1.json | 2 +- ...tasks.linear-connect-linear.connect-1.json | 2 +- ....linear-item-linear.addissuecomment-1.json | 2 +- ...asks.linear-item-linear.createissue-1.json | 2 +- ...x-tasks.linear-item-linear.getissue-1.json | 2 +- ...inear-team-context-linear.listteams-1.json | 2 +- ...near-team-context-linear.teamstates-1.json | 2 +- ...-tasks.paste-lookup-github.reposlug-1.json | 2 +- ...-tasks.paste-lookup-github.workitem-1.json | 2 +- ...e-lookup-github.workitembyownerrepo-1.json | 2 +- ....paste-lookup-gitlab.workitembypath-1.json | 2 +- ...-load-github.project.listaccessible-1.json | 2 +- ...board-load-github.project.listviews-1.json | 2 +- ...board-load-github.project.listviews-2.json | 2 +- ...oard-load-github.project.resolveref-1.json | 2 +- ...board-load-github.project.viewtable-1.json | 2 +- ....project-repo-slugs-github.reposlug-1.json | 2 +- ...ithub.project.addissuecommentbyslug-1.json | 2 +- ...ue-github.project.updateissuebyslug-1.json | 2 +- ...ub.project.updateissuecommentbyslug-1.json | 2 +- ...hub.project.updatepullrequestbyslug-1.json | 2 +- ...ithub.project.workitemdetailsbyslug-1.json | 2 +- ...ields-github.project.clearitemfield-1.json | 2 +- ...ithub.project.updateissuetypebyslug-1.json | 2 +- ...elds-github.project.updateitemfield-1.json | 2 +- ...les-merge-github.addprreviewcomment-1.json | 2 +- ...ject-row-files-merge-github.mergepr-1.json | 2 +- ...w-files-merge-github.prfilecontents-1.json | 2 +- ...-row-files-merge-github.updateissue-1.json | 2 +- ...ow-files-merge-github.updateprstate-1.json | 2 +- ...b.project.listassignableusersbyslug-1.json | 2 +- ...github.project.listissuetypesbyslug-1.json | 2 +- ...oad-github.project.listlabelsbyslug-1.json | 2 +- ...t-row-review-checks-github.prchecks-1.json | 2 +- ...ew-checks-github.requestprreviewers-1.json | 2 +- ...-review-checks-github.rerunprchecks-1.json | 2 +- ...eview-checks-github.setprfileviewed-1.json | 2 +- ...-row-threads-github.addissuecomment-1.json | 2 +- ...eads-github.addprreviewcommentreply-1.json | 2 +- ...ub.project.deleteissuecommentbyslug-1.json | 2 +- ...-threads-github.resolvereviewthread-1.json | 2 +- ...provider-load-github.countworkitems-1.json | 2 +- ....provider-load-github.listworkitems-1.json | 2 +- ...asks.provider-load-linear.listteams-1.json | 2 +- ...x-tasks.provider-load-linear.status-1.json | 2 +- ...tasks.provider-load-settings.update-1.json | 2 +- ...rix-tasks.route-repo-list-repo.list-1.json | 770 ++++++++++++++++ ...-source-search-github.listworkitems-1.json | 2 +- ...-source-search-gitlab.listworkitems-1.json | 2 +- ...art-source-search-linear.listissues-1.json | 2 +- ...t-source-search-linear.searchissues-1.json | 2 +- ...smart-source-search-repo.searchrefs-1.json | 2 +- ...sk-create-github-github.createissue-1.json | 2 +- ...asks.task-create-github-repo.update-1.json | 2 +- ...sk-create-gitlab-gitlab.createissue-1.json | 2 +- ...sk-create-linear-linear.createissue-1.json | 2 +- ...t-gitlab-items-gitlab.listworkitems-1.json | 2 +- ...task-list-gitlab-todos-gitlab.todos-1.json | 2 +- ....task-list-linear-linear.listissues-1.json | 2 +- ...ask-list-linear-linear.searchissues-1.json | 2 +- ...ks.workspace-source-repo.searchrefs-1.json | 2 +- ...workspace-source-repo.sparsepresets-1.json | 2 +- ...kspace-sparse-repo.savesparsepreset-1.json | 2 +- ...tasks.workspace-sparse-ssh.getstate-1.json | 2 +- ...ce-ssh-local-preflight.detectagents-1.json | 2 +- ...ce-ssh-preflight.detectremoteagents-1.json | 2 +- ...trix-tasks.workspace-ssh-repo.hooks-1.json | 2 +- ...rix-tasks.workspace-ssh-ssh.connect-1.json | 2 +- ...-terminal.query-reply-terminal.send-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...ix-terminal.raw-input-terminal.send-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...chestration.workerterminaluserinput-2.json | 2 +- ...wport-refit-terminal.updateviewport-1.json | 2 +- ...ansport.capability-probe-status.get-1.json | 2 +- ...nsport.host-status-gates-status.get-1.json | 2 +- ...-transport.pairing-race-direct-status.json | 2 +- ...x-transport.pairing-race-relay-status.json | 2 +- ...rktree.catalog-snapshot-worktree.ps-1.json | 2 +- ...rktree.create-retry-worktree.create-1.json | 2 +- ...x-worktree.home-catalog-worktree.ps-1.json | 2 +- ....hosted-base-worktree.resolvemrbase-1.json | 2 +- ....hosted-base-worktree.resolveprbase-1.json | 2 +- ...red-names-worktree.listretirednames-1.json | 2 +- ...x-worktree.review-link-worktree.set-1.json | 2 +- ...ree.runtime-capabilities-status.get-1.json | 2 +- ...ix-worktree.setup-hook-trust-ui.set-1.json | 2 +- .../native-chat-image-paste-single.json | 2 +- ...e-chat-image-paste-stops-on-rejection.json | 2 +- ...ative-chat-image-paste-trailing-image.json | 2 +- .../native-chat-image-paste-two-images.json | 2 +- .../native-chat-image-upload-cancelled.json | 2 +- ...native-chat-image-upload-second-fails.json | 2 +- .../native-chat-image-upload-single.json | 2 +- ...ative-chat-image-upload-start-refused.json | 2 +- .../goldens/native-chat-image-upload-two.json | 2 +- .../native-chat-readability-local-repo.json | 2 +- .../native-chat-readability-refused.json | 2 +- .../native-chat-readability-remote-repo.json | 2 +- ...native-chat-session-option-pick-empty.json | 2 +- ...tive-chat-session-option-pick-refused.json | 2 +- ...tive-chat-session-option-pick-written.json | 2 +- .../goldens/native-chat-stop-accepted.json | 2 +- .../native-chat-stop-both-rejected.json | 2 +- .../native-chat-stop-delivery-unknown.json | 2 +- .../goldens/native-chat-write-accepted.json | 2 +- .../goldens/native-chat-write-clear-line.json | 2 +- .../native-chat-write-delivery-unknown.json | 2 +- .../goldens/native-chat-write-rejected.json | 2 +- .../native-chat-write-typed-command.json | 2 +- .../new-workspace-repositories-fulfilled.json | 2 +- .../notifications-display-test-accepted.json | 187 ++++ .../notifications-push-gateway-rejected.json | 2 +- .../notifications-push-registered.json | 2 +- ...re-profile-direct-wins-and-provisions.json | 2 +- ...ovision-unsupported-saves-direct-host.json | 2 +- .../pairing-pre-profile-times-out.json | 2 +- .../goldens/pr-branch-identity.json | 2 +- .../goldens/pr-branch-repo-context.json | 2 +- .../goldens/pr-comment-mutation.json | 2 +- .../pr-comment-resolve-unconfirmed.json | 2 +- .../goldens/pr-mutation-in-band-failure.json | 2 +- .../goldens/pr-mutation-status.json | 2 +- .../goldens/pr-read-fork-routing.json | 2 +- .../goldens/pr-read-surface.json | 2 +- .../goldens/pr-read-upstream-error.json | 2 +- .../goldens/pr-title-mutation.json | 2 +- .../goldens/pr-title-unconfirmed.json | 2 +- .../goldens/pr-triage-invalid-terminal.json | 2 +- .../goldens/pr-triage-launch.json | 2 +- .../goldens/pr-triage-send-locked.json | 2 +- .../goldens/probe-new-tab-both-refused.json | 2 +- .../probe-new-tab-null-sibling-refused.json | 2 +- ...probe-new-tab-refused-sibling-rejects.json | 2 +- ...probe-new-tab-rejects-sibling-refused.json | 2 +- .../push-dismissal-tray-reconciled.json | 2 +- .../goldens/quick-commands-load-refused.json | 2 +- .../quick-commands-loaded-and-saved.json | 2 +- ...uick-commands-save-refused-rolls-back.json | 2 +- .../goldens/relay-direct-upgrade-commits.json | 2 +- ...ect-upgrade-unsupported-host-declines.json | 2 +- ...ay-pairing-recovery-invite-authorizes.json | 2 +- ...lay-pairing-recovery-resume-committed.json | 2 +- .../relay-rotation-installs-and-commits.json | 2 +- ...ay-rotation-resumes-committed-pending.json | 2 +- .../review-create-terminal-refused.json | 2 +- .../review-mark-reviewed-persists.json | 2 +- .../review-mark-reviewed-rolls-back.json | 2 +- .../goldens/review-open-in-session.json | 2 +- .../review-send-notes-heals-stale-input.json | 2 +- .../goldens/review-stage-file.json | 2 +- .../goldens/review-stage-refused.json | 2 +- .../goldens/sc-base-ref-default.json | 2 +- .../goldens/sc-base-ref-repo-fallback.json | 2 +- .../goldens/sc-base-ref-unavailable.json | 2 +- .../goldens/sc-base-ref-worktree-hit.json | 2 +- .../sc-commit-message-cancel-rejected.json | 2 +- .../goldens/sc-commit-message-canceled.json | 2 +- .../goldens/sc-commit-message-generated.json | 2 +- .../goldens/sc-create-existing-review.json | 2 +- ...reate-intent-stage-commit-push-create.json | 2 +- .../sc-create-link-failure-is-non-fatal.json | 2 +- .../sc-create-pushes-then-creates.json | 2 +- .../sc-create-refused-empty-message.json | 2 +- .../sc-create-rejected-empty-message.json | 2 +- .../goldens/sc-eligibility-fetched.json | 2 +- .../goldens/sc-history-loaded.json | 2 +- .../goldens/sc-pr-link-hosted-review.json | 2 +- .../goldens/sc-pr-link-read.json | 2 +- .../goldens/sc-pr-link-set.json | 2 +- .../sc-prefill-unavailable-on-refusal.json | 2 +- .../sc-prefill-unavailable-on-rejection.json | 2 +- .../sc-prerequisite-force-with-lease.json | 2 +- .../goldens/sc-prerequisite-publish.json | 2 +- .../goldens/sc-prerequisite-push.json | 2 +- .../goldens/sc-prerequisite-skipped.json | 2 +- .../goldens/sc-reveal-first-poll.json | 2 +- .../goldens/sc-reveal-timeout.json | 2 +- .../sc-review-commit-inner-failure.json | 2 +- ...c-review-commit-refused-empty-message.json | 2 +- .../goldens/sc-review-commit-rejected.json | 2 +- .../goldens/sc-review-commit.json | 2 +- .../sc-review-status-entries-not-array.json | 2 +- .../goldens/sc-review-status-normalized.json | 2 +- .../rpc-foundation/goldens/schedules-b3.json | 2 +- ...les-settings-home-providers-fulfilled.json | 2 +- .../schedules-settings-new-tab-ssh.json | 2 +- ...ules-settings-repo-metadata-fulfilled.json | 2 +- ...es-settings-resume-metadata-fulfilled.json | 2 +- ...les-settings-task-hydration-fulfilled.json | 2 +- ...-settings-workspace-context-fulfilled.json | 2 +- .../session-create-browser-refused.json | 2 +- .../goldens/session-create-browser-tab.json | 2 +- ...ession-create-markdown-name-collision.json | 2 +- .../goldens/session-create-markdown-note.json | 2 +- .../session-diff-notes-load-refused.json | 2 +- .../goldens/session-diff-notes-loaded.json | 2 +- .../goldens/session-file-tab-read.json | 2 +- .../session-markdown-save-conflict.json | 2 +- .../goldens/session-markdown-saved.json | 2 +- .../session-markdown-tab-disk-fallback.json | 2 +- .../goldens/session-markdown-tab-read.json | 2 +- .../goldens/session-markdown-tab-refused.json | 2 +- ...ion-tab-activation-focus-and-activate.json | 2 +- .../session-tab-activation-refused.json | 2 +- ...ession-tab-activation-transport-error.json | 2 +- .../session-tab-close-refused-keeps-tab.json | 2 +- .../session-tab-close-session-tab.json | 2 +- .../goldens/session-tab-close-terminal.json | 2 +- .../goldens/session-tab-rename.json | 2 +- .../goldens/session-tabs-health-errored.json | 2 +- .../session-tabs-health-reconciled.json | 2 +- .../goldens/session-tabs-health-refused.json | 2 +- ...abs-health-stale-application-revision.json | 2 +- ...session-terminal-list-dedupes-handles.json | 2 +- .../session-terminal-list-empty-guarded.json | 2 +- .../goldens/session-terminal-list-merged.json | 2 +- .../session-terminal-list-refused.json | 2 +- .../settings-bot-overrides-fulfilled.json | 2 +- ...ettings-bot-overrides-refresh-refused.json | 2 +- .../settings-bot-overrides-refused.json | 2 +- ...ettings-bot-overrides-transport-error.json | 2 +- .../goldens/settings-home-coalesced.json | 2 +- .../settings-home-providers-fulfilled.json | 2 +- ...ings-home-providers-refuse-after-data.json | 2 +- .../settings-home-providers-refused.json | 2 +- ...ttings-home-providers-transport-error.json | 2 +- .../goldens/settings-new-tab-refused.json | 2 +- .../goldens/settings-new-tab-ssh.json | 2 +- .../settings-new-tab-transport-error.json | 2 +- .../goldens/settings-repo-cache-expiry.json | 2 +- .../settings-repo-metadata-fulfilled.json | 2 +- ...tings-repo-metadata-refuse-after-data.json | 2 +- .../settings-repo-metadata-refused.json | 2 +- .../settings-repo-metadata-single-host.json | 2 +- ...ettings-repo-metadata-transport-error.json | 2 +- .../settings-resume-metadata-fulfilled.json | 2 +- ...ngs-resume-metadata-refuse-after-data.json | 2 +- .../settings-resume-metadata-refused.json | 2 +- ...tings-resume-metadata-transport-error.json | 2 +- .../settings-task-hydration-fulfilled.json | 2 +- ...ings-task-hydration-refuse-after-data.json | 2 +- .../settings-task-hydration-refused.json | 2 +- ...ttings-task-hydration-transport-error.json | 2 +- ...settings-task-workspace-create-linear.json | 2 +- ...-task-workspace-create-pr-start-point.json | 2 +- .../settings-task-workspace-fulfilled.json | 2 +- .../settings-task-workspace-refused.json | 2 +- ...ttings-task-workspace-transport-error.json | 2 +- .../goldens/settings-task-write.json | 2 +- .../settings-workspace-context-fulfilled.json | 2 +- ...s-workspace-context-refuse-after-data.json | 2 +- .../settings-workspace-context-refused.json | 2 +- ...ngs-workspace-context-transport-error.json | 2 +- .../settings-workspace-submit-fulfilled.json | 2 +- .../settings-workspace-submit-refused.json | 2 +- ...ings-workspace-submit-transport-error.json | 2 +- .../speech-audio-chunk-acknowledged.json | 2 +- .../speech-desktop-start-fulfilled.json | 2 +- ...speech-desktop-start-recording-failed.json | 2 +- .../speech-desktop-start-superseded.json | 2 +- .../speech-dictation-session-cancelled.json | 2 +- .../speech-dictation-session-transcript.json | 2 +- .../speech-setup-sheet-denied-to-mobile.json | 2 +- .../goldens/speech-setup-sheet-fulfilled.json | 2 +- .../speech-setup-sheet-legacy-desktop.json | 2 +- .../goldens/structured-launch-created.json | 2 +- .../structured-launch-definitive-refusal.json | 2 +- ...uctured-launch-replays-dropped-create.json | 2 +- .../structured-launch-support-refused.json | 2 +- .../structured-launch-unsupported.json | 2 +- .../goldens/tasks-route-repo-list.json | 182 ++++ .../goldens/terminal-input-send-accepted.json | 2 +- .../goldens/terminal-input-send-refused.json | 2 +- .../goldens/terminal-live-input-accepted.json | 2 +- .../goldens/terminal-paste-accepted.json | 2 +- .../goldens/terminal-paste-refused.json | 2 +- .../terminal-query-reply-accepted.json | 2 +- .../terminal-query-reply-unsubscribed.json | 2 +- .../goldens/terminal-raw-input-refused.json | 2 +- .../goldens/terminal-raw-input-reported.json | 2 +- .../terminal-takeover-report-accepted.json | 2 +- .../terminal-takeover-report-retried.json | 2 +- .../terminal-viewport-refit-applied.json | 2 +- ...erminal-viewport-refit-legacy-desktop.json | 2 +- ...terminal-worktree-connection-resolved.json | 2 +- .../goldens/tk-create-github.json | 2 +- .../goldens/tk-create-gitlab.json | 2 +- .../goldens/tk-create-linear.json | 2 +- .../goldens/tk-item-checks-files.json | 2 +- .../goldens/tk-item-comment-github.json | 2 +- .../goldens/tk-item-comment-gitlab-mr.json | 2 +- .../goldens/tk-item-comment-gitlab.json | 2 +- .../goldens/tk-item-detail-github.json | 2 +- .../goldens/tk-item-detail-gitlab.json | 2 +- .../goldens/tk-item-detail-linear.json | 2 +- .../goldens/tk-item-detail-metadata.json | 2 +- .../goldens/tk-item-merge-gitlab.json | 2 +- .../goldens/tk-item-metadata-github.json | 2 +- .../goldens/tk-item-metadata-gitlab-mr.json | 2 +- .../goldens/tk-item-metadata-gitlab.json | 2 +- .../goldens/tk-item-reply-merge.json | 2 +- .../goldens/tk-item-review-github.json | 2 +- .../goldens/tk-item-status-gitlab-mr.json | 2 +- .../goldens/tk-item-status-gitlab.json | 2 +- .../goldens/tk-linear-connect.json | 2 +- .../goldens/tk-linear-item.json | 2 +- .../goldens/tk-linear-team-context.json | 2 +- .../goldens/tk-list-gitlab-items.json | 2 +- .../goldens/tk-list-gitlab-todos.json | 2 +- .../goldens/tk-list-linear.json | 2 +- .../goldens/tk-project-board-load.json | 2 +- .../goldens/tk-project-repo-slugs.json | 2 +- .../tk-project-row-comments-issue.json | 2 +- .../goldens/tk-project-row-comments-pr.json | 2 +- .../goldens/tk-project-row-detail.json | 2 +- .../goldens/tk-project-row-fields.json | 2 +- .../goldens/tk-project-row-files-merge.json | 2 +- .../goldens/tk-project-row-metadata-load.json | 2 +- .../goldens/tk-project-row-review-checks.json | 2 +- .../goldens/tk-project-row-threads.json | 2 +- .../goldens/tk-provider-load.json | 2 +- ...-capability-probe-cutover-reasks-fast.json | 2 +- ...ty-probe-non-string-capabilities-drop.json | 2 +- .../transport-capability-probe-publishes.json | 2 +- ...rt-capability-probe-refused-backs-off.json | 2 +- ...-status-gates-drop-keeps-capabilities.json | 2 +- .../transport-host-status-gates-ready.json | 2 +- ...rt-host-status-gates-refused-degrades.json | 2 +- .../transport-pairing-race-both-refused.json | 2 +- ...t-pairing-race-direct-completes-first.json | 2 +- ...rt-pairing-race-relay-completes-first.json | 2 +- ...g-race-relay-wins-when-direct-refused.json | 2 +- .../goldens/tw-capabilities-advertised.json | 2 +- .../tw-capabilities-cutover-retried.json | 2 +- .../tw-capabilities-legacy-idempotency.json | 2 +- .../tw-create-retry-ambiguous-after-drop.json | 2 +- ...reate-retry-ambiguous-while-connected.json | 2 +- ...e-retry-ambiguous-without-idempotency.json | 2 +- .../goldens/tw-create-retry-created.json | 2 +- .../tw-create-retry-name-collision.json | 2 +- .../tw-create-retry-unretryable-refusal.json | 2 +- .../goldens/tw-create-retry-warning-kept.json | 2 +- .../goldens/tw-hosted-base-resolved.json | 2 +- .../goldens/tw-hosted-base-soft-error.json | 2 +- .../goldens/tw-paste-lookup-resolved.json | 2 +- .../goldens/tw-paste-lookup-slug-refused.json | 2 +- .../tw-paste-lookup-slug-unsupported.json | 2 +- .../goldens/tw-setup-hook-trust-always.json | 2 +- .../goldens/tw-setup-hook-trust-approved.json | 2 +- .../tw-smart-search-all-providers.json | 2 +- ...tw-smart-search-gitlab-provider-error.json | 2 +- .../tw-smart-search-linear-listed.json | 2 +- .../tw-task-preferences-resume-write.json | 2 +- .../tw-workspace-source-presets-refused.json | 2 +- .../goldens/tw-workspace-source-presets.json | 2 +- .../tw-workspace-sparse-missing-preset.json | 2 +- .../goldens/tw-workspace-sparse-saved.json | 2 +- .../tw-workspace-ssh-connect-refused.json | 2 +- .../goldens/tw-workspace-ssh-connected.json | 2 +- .../tw-workspace-ssh-local-agents.json | 2 +- .../goldens/tw-workspace-ssh-not-ready.json | 2 +- .../goldens/worktree-catalog-snapshot.json | 2 +- .../goldens/worktree-home-catalog.json | 2 +- .../goldens/worktree-retired-names.json | 2 +- mobile/rpc-foundation/pilot-scenarios.json | 367 ++++++++ .../MobileAgentSessionHistoryPanel.tsx | 10 +- mobile/src/files/MobileFileExplorerPanel.tsx | 33 +- .../files/mobile-file-explorer-operations.ts | 38 + .../src/home/mobile-home-host-operations.ts | 15 + mobile/src/home/mobile-home-host-requests.ts | 13 +- .../mobile-push-delivery-test-operations.ts | 20 + .../session/mobile-session-read-operations.ts | 11 +- .../settings/notification-display-test.tsx | 13 +- .../tasks/mobile-task-runtime-operations.ts | 19 + .../src/tasks/mobile-tasks-filter-pickers.tsx | 5 +- .../mobile-tasks-refactor-parity.test.ts | 32 +- .../use-mobile-tasks-route-and-item-state.tsx | 12 +- .../agent-history-screen-mount-adapters.ts | 62 ++ .../adapters/home-accounts-mount-adapters.ts | 47 + .../adapters/mounted-operation-modules.ts | 34 + ...notification-test-screen-mount-adapters.ts | 81 ++ .../tasks-linear-workspace-mount-adapters.ts | 81 ++ .../tasks-route-screen-mount-adapters.ts | 99 ++ .../mutants/operation-mutations.ts | 30 + .../mutants/pilot-mutants.test.ts | 11 + .../screen-native-substitutes.ts | 35 +- .../unvalidated-rpc-request-port-inventory.ts | 64 +- .../worktree/worktree-catalog-operations.ts | 11 +- 691 files changed, 8205 insertions(+), 754 deletions(-) create mode 100644 mobile/rpc-foundation/goldens/aivault-history-screen-listed.json create mode 100644 mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json create mode 100644 mobile/rpc-foundation/goldens/home-host-accounts.json create mode 100644 mobile/rpc-foundation/goldens/linear-select-workspace.json create mode 100644 mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json create mode 100644 mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json create mode 100644 mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json create mode 100644 mobile/rpc-foundation/goldens/notifications-display-test-accepted.json create mode 100644 mobile/rpc-foundation/goldens/tasks-route-repo-list.json create mode 100644 mobile/src/files/mobile-file-explorer-operations.ts create mode 100644 mobile/src/notifications/mobile-push-delivery-test-operations.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/agent-history-screen-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/home-accounts-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/notification-test-screen-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/tasks-linear-workspace-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/tasks-route-screen-mount-adapters.ts diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json index 242fe11cbe5..65d2f53a73d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e9cd49c0eb0..e4852c8e4d1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 120b26ac1db..e40f3742a9d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..b2b5b59107e --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json @@ -0,0 +1,365 @@ +{ + "operation": "aiVault.history-screen", + "family": "aiVault.history-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", + "scenarioSha256": "d52d3c5858298a4a6a90bd9a8986b780004477de105fe93f6303d9c303ffea38", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "035edfd9a1b9": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 5, + "RefreshCw": 1, + "SafeAreaView": 1, + "SectionList": 1, + "Text": 5, + "TextInput": 1, + "View": 5 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history", "Workspace", "Project", "All"] + }, + "074d2293c010": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktrees": [ + { + "path": "/repo/feature", + "repoId": "repo-1", + "worktreeId": "wt-history" + }, + { + "path": "/repo/sibling", + "repoId": "repo-1", + "worktreeId": "wt-2" + } + ] + } + } + } + }, + "15686a7a3813": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + }, + "29ba09534e96": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "4912be5d956f": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + }, + "522b745543f1": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "6ae619d3108a": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "8c2a1dcb9598": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "issues": [], + "sessions": [ + { + "agent": "claude", + "branch": "feature", + "codexHome": { + "$rpc": "null" + }, + "createdAt": "2025-12-31T23:00:00.000Z", + "cwd": "/repo/feature", + "executionHostId": "local", + "filePath": "/repo/feature/.claude/sess-1.jsonl", + "id": "s1", + "messageCount": 4, + "model": "opus", + "modifiedAt": "2025-12-31T23:30:00.000Z", + "previewMessages": [ + { + "role": "user", + "text": "fix it", + "timestamp": "2025-12-31T23:00:00.000Z" + } + ], + "sessionId": "sess-1", + "title": "Fix the explorer", + "totalTokens": 1200, + "updatedAt": "2025-12-31T23:30:00.000Z" + } + ] + } + } + } + }, + "a5ba8a3216d2": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "ba9fd57319d3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bc1a8e138f82": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d22bb2f62cea": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ActivityIndicator": 1, + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 2, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history"] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec120260263a": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + } + }, + "recording": { + "scenario": "aivault-history-screen-listed", + "checkpoints": [ + { + "id": "worktrees-pending", + "observation": { + "sender": ["bc1a8e138f82", "ba9fd57319d3"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "ready", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "8c2a1dcb9598"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "035edfd9a1b9", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json new file mode 100644 index 00000000000..42daee20de2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json @@ -0,0 +1,273 @@ +{ + "operation": "aiVault.history-screen", + "family": "aiVault.history-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", + "scenarioSha256": "f50f63c4e2a69793b3d322ed16089c4241ff6169d8f9549106480230fb8dd5e7", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "074d2293c010": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktrees": [ + { + "path": "/repo/feature", + "repoId": "repo-1", + "worktreeId": "wt-history" + }, + { + "path": "/repo/sibling", + "repoId": "repo-1", + "worktreeId": "wt-2" + } + ] + } + } + } + }, + "15686a7a3813": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + }, + "29ba09534e96": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "4912be5d956f": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + }, + "522b745543f1": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "6ae619d3108a": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "a5ba8a3216d2": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "ba9fd57319d3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bc1a8e138f82": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d22bb2f62cea": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ActivityIndicator": 1, + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 2, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history"] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec120260263a": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + } + }, + "recording": { + "scenario": "aivault-history-screen-worktrees", + "checkpoints": [ + { + "id": "worktrees-pending", + "observation": { + "sender": ["bc1a8e138f82", "ba9fd57319d3"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + } + ] + } +} 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 16539153f4e..6de31e3ccc0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6eea99fbcd7..6d01040715d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b329349e867..cb2941f7ad7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e3f52018840..cbcfc8afd3b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c91898d3562..a880308084d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e05bb49ff5..0b27b0a9b19 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a3baab8960d..a16b2b9a5ad 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c1c6f8d66e0..5b524e1021d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b1.json b/mobile/rpc-foundation/goldens/b1.json index 18178b06511..a37a767cc51 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b2.json b/mobile/rpc-foundation/goldens/b2.json index fabb731bbc9..ea713ef5d88 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b3.json b/mobile/rpc-foundation/goldens/b3.json index 1d1996a99f0..63ac52f7ec7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0793dfa32ac..9d1fb1c3224 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4e045caec4d..3dfb2ae56a9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4db02afaa3c..2ff9584f676 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0664dbc60e8..dae38188c78 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e5ac6262efd..64bc25055a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 970957c549a..6d4a188fffd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 71a5b6b098a..b75e77db774 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 89bbd092107..a4712fa8497 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c788767a93e..986c610259b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c763b09b2e5..45b912afd8d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7efda73cb3f..ab1b5b67e13 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6e8966b6477..9f11c86f726 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f5912f41bac..c2190bd082d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 17abcc51661..7683cd80d9d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7f64cc65409..2ce52762c9e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8d2d20596f5..593929bf314 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 06977036582..7738eab8a4a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 54804ad5fa6..0582970bc7f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 25bc3c94f7c..5a10748a841 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 aa29f8272a3..6cd495cd561 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f8b810dcb6d..3e1f69e4dad 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 951f357b575..a56ac0a73dc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7d977f82327..860c7720e7d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 205f834fd74..e39264203e6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 21c12c1252e..f88609716a9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d8a3c3ec997..20cc2fb73cb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 308bd190c0e..3354a1cb4f5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 edb854781f5..22c2cb2f8d5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2c496bcece2..bc0a4d2fbe6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3772c961c4d..92645a0a622 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ce9bad25da8..723926c045b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f9e84ab1b0f..e3570a3aa31 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 387db07301a..20639669275 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 72b5debf7d4..f080bcd175e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0c33524d9ab..cba23171da3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 17c8afde667..7d902480e91 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 200435a69dc..e8e07da588c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c601c3445f1..f5263432ee5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 feb34948998..fe66e0f31f2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 70e3fb0c01a..281c9585276 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1115bef11df..9244d4d158d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e52578ae656..d924c028d6c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 63d5bf51bca..7340f3e7187 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dc3027386b8..f5abae82bce 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 63dc8467ee8..46903176720 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..ed5500b0f0e --- /dev/null +++ b/mobile/rpc-foundation/goldens/home-host-accounts.json @@ -0,0 +1,230 @@ +{ + "operation": "home.host-accounts", + "family": "home.host-accounts", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a", + "scenarioSha256": "366426641e25542fcc6fcd351ece6a1ee897c8b3974c08eb7557eadfa4d3b06f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "2525c654127c": { + "host-1": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "claudeTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "codex": { + "$rpc": "null" + }, + "codexTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + }, + "29e1daf37245": { + "name": "accounts.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}" + }, + "44136fa355b3": {}, + "ae89fde72803": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "codex": { + "$rpc": "null" + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + } + } + }, + "d54161165272": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "e14c03c3141f": { + "name": "accounts", + "value": { + "host-1": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "claudeTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "codex": { + "$rpc": "null" + }, + "codexTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + }, + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "home-host-accounts", + "checkpoints": [ + { + "id": "accounts-pending", + "observation": { + "sender": ["d54161165272"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "accounts-published", + "observation": { + "sender": ["ae89fde72803"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "2525c654127c", + "effects": ["e14c03c3141f"] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/home-host-stats.json b/mobile/rpc-foundation/goldens/home-host-stats.json index 08c0820cce8..38bc772a481 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5ee81e4fbb1..66dc7cfd8d1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1904dd37315..7b18680e48f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d815428bd8e..c2d9046a602 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "5dd5e7eabaabba1e471b13958f59891c3b28f553087c96315598c83a14ded7e7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json index b30ff9f7671..fa4e49ada87 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1230742aaed..8546687cde4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6f8a2f9819b..618b0ecfb29 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 40a445d1b2c..518af709a66 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 abcab370b90..8ab00a73270 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0a24d006b03..20ea837d090 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 59106d63070..a515ab3dcd9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e18d4ab6d8c..8057a8c41b5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 18d35ef7274..84de765b56d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..ee8fc259791 --- /dev/null +++ b/mobile/rpc-foundation/goldens/linear-select-workspace.json @@ -0,0 +1,135 @@ +{ + "operation": "linear.select-workspace-picker", + "family": "linear.select-workspace-picker", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f", + "scenarioSha256": "b6eb40d9a91c89179483afec93fbc121b99ef679d3b2433575b26694d0c577d5", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "06776b3d9986": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "36c0bdbc5f9b": { + "contextLoads": 0, + "error": "", + "selectedWorkspaceId": "workspace-b", + "teamCount": 0 + }, + "4a23506ae3dc": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "99a34c4ee1d1": { + "name": "linear.selectWorkspace#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}" + }, + "c97ff66588a1": { + "name": "linear.context-reloaded", + "value": { + "contextLoads": 1 + }, + "sent": 1 + }, + "d2ade472a8ba": { + "contextLoads": 1, + "error": "", + "selectedWorkspaceId": "workspace-b", + "teamCount": 0 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "linear-select-workspace", + "checkpoints": [ + { + "id": "selected", + "observation": { + "sender": ["4a23506ae3dc"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "36c0bdbc5f9b", + "effects": [] + } + }, + { + "id": "switched", + "observation": { + "sender": ["06776b3d9986"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + } + ] + } +} 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 6a841c9dea9..5441b35a152 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f7230963945..09e7d231fae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..21af25e24cc --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-platform-status.json @@ -0,0 +1,723 @@ +{ + "operation": "aiVault.history-screen", + "family": "aiVault.history-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", + "scenarioSha256": "30e00c0d94413aab61b164fb9a658e526448addc4c42fd8892b1c28335d30beb", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "074d2293c010": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktrees": [ + { + "path": "/repo/feature", + "repoId": "repo-1", + "worktreeId": "wt-history" + }, + { + "path": "/repo/sibling", + "repoId": "repo-1", + "worktreeId": "wt-2" + } + ] + } + } + } + }, + "15686a7a3813": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + }, + "2698c9770ad3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "29ba09534e96": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "377739b45602": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "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 + } + } + } + }, + "4912be5d956f": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + }, + "522b745543f1": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "6ae619d3108a": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "72fe28919674": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "734a1d442442": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "8fa57295e0a5": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "a5ba8a3216d2": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "accf1e896504": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "ba9fd57319d3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bc1a8e138f82": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bcb43d5f686b": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-2", + "ok": false + } + } + }, + "c957a9653ef3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "d22bb2f62cea": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ActivityIndicator": 1, + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 2, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history"] + }, + "de87f6266897": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "eadec2060275": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec120260263a": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + } + }, + "recording": { + "scenario": "matrix-aivault.history-screen-platform-status", + "checkpoints": [ + { + "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", + "observation": { + "sender": ["bc1a8e138f82", "ba9fd57319d3"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.normal:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "8fa57295e0a5", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "accf1e896504", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "734a1d442442", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "eadec2060275", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "377739b45602", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "c957a9653ef3", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "72fe28919674", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "bcb43d5f686b", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "de87f6266897", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "2698c9770ad3", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..88a3d6da275 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-status.get-2.json @@ -0,0 +1,872 @@ +{ + "operation": "aiVault.history-screen", + "family": "aiVault.history-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", + "scenarioSha256": "b146be741484f2a6dca25e97f52b9ed10f8a2b28bd00e6b56acffbcd82136b2f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "074d2293c010": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktrees": [ + { + "path": "/repo/feature", + "repoId": "repo-1", + "worktreeId": "wt-history" + }, + { + "path": "/repo/sibling", + "repoId": "repo-1", + "worktreeId": "wt-2" + } + ] + } + } + } + }, + "0be231dddda1": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 4, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": [ + "Agent Session History", + "orca-history", + "Agent Session History Unavailable", + "Update Orca on this host to browse agent session history." + ] + }, + "15686a7a3813": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + }, + "18c1e8ee98a9": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "18ef6596b779": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history", "Unable to Load", "Retry"] + }, + "1c8a5fa9c737": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "1ca2b2b151f0": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "20368e0f363c": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "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 + } + } + } + }, + "22141179786a": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history", "Unable to Load", "Unknown method", "Retry"] + }, + "266cf07850dd": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-3", + "ok": false + } + } + }, + "29ba09534e96": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "3bf9d347000f": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true + } + } + }, + "4584964f74a7": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "4912be5d956f": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + }, + "4af220e500d6": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history", "Unable to Load", "outer refused", "Retry"] + }, + "522b745543f1": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "5368af075169": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": [ + "Agent Session History", + "orca-history", + "Unable to Load", + "Cannot read properties of undefined (reading 'capabilities')", + "Retry" + ] + }, + "6ae619d3108a": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "70934ebc4e94": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "7f2073d8dcc1": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": [ + "Agent Session History", + "orca-history", + "Unable to Load", + "transport failure", + "Retry" + ] + }, + "8f8b5bf6f808": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-3", + "ok": false + } + } + }, + "a5ba8a3216d2": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "af9574769167": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": [ + "Agent Session History", + "orca-history", + "Unable to Load", + "Unable to reach host", + "Retry" + ] + }, + "ba9fd57319d3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bc1a8e138f82": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "c767ef059f7e": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ChevronLeft": 1, + "Pressable": 3, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 5, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": [ + "Agent Session History", + "orca-history", + "Unable to Load", + "Cannot read properties of null (reading 'capabilities')", + "Retry" + ] + }, + "d22bb2f62cea": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ActivityIndicator": 1, + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 2, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history"] + }, + "d2bc55fb4a14": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-3", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec120260263a": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + } + }, + "recording": { + "scenario": "matrix-aivault.history-screen-status.get-2", + "checkpoints": [ + { + "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", + "observation": { + "sender": ["bc1a8e138f82", "ba9fd57319d3"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.normal:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "3bf9d347000f"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "5368af075169", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "1c8a5fa9c737"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "c767ef059f7e", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "70934ebc4e94"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0be231dddda1", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "4584964f74a7"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0be231dddda1", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "20368e0f363c"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "0be231dddda1", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "266cf07850dd"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "4af220e500d6", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "8f8b5bf6f808"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "af9574769167", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "d2bc55fb4a14"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "22141179786a", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "18c1e8ee98a9"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7f2073d8dcc1", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "1ca2b2b151f0"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "18ef6596b779", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..b2fd28f9517 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-screen-worktree.ps-1.json @@ -0,0 +1,767 @@ +{ + "operation": "aiVault.history-screen", + "family": "aiVault.history-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", + "scenarioSha256": "5365449c24d789c6c01604b520b795502d0bec352032686efecd121fc4497f96", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "074d2293c010": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "worktrees": [ + { + "path": "/repo/feature", + "repoId": "repo-1", + "worktreeId": "wt-history" + }, + { + "path": "/repo/sibling", + "repoId": "repo-1", + "worktreeId": "wt-2" + } + ] + } + } + } + }, + "075724b1ba2e": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[]}}" + }, + "08a62b87ca0b": { + "crash": "Cannot read properties of undefined (reading 'find')", + "elements": {}, + "labels": [], + "text": [] + }, + "111018d23b6c": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "15686a7a3813": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + }, + "29ba09534e96": { + "name": "status.get#2", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "430d32843438": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "481a5e96b319": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "4912be5d956f": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + }, + "4cb0f02a3a16": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": [] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "4fa9e403a3c8": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "522b745543f1": { + "name": "aiVault.listSessions#1", + "args": [ + { + "name": "method", + "value": "aiVault.listSessions" + }, + { + "name": "params", + "value": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "60569b10e210": { + "name": "screen.crash", + "value": { + "message": "Cannot read properties of undefined (reading 'find')" + }, + "sent": 2 + }, + "6ae619d3108a": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + } + }, + "6ed6d686b491": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "97177805ceb8": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "993fb2bd3f3e": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "9f1a49cd671e": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "a5ba8a3216d2": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "ba9fd57319d3": { + "name": "status.get#1", + "args": [ + { + "name": "method", + "value": "status.get" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "bc1a8e138f82": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d22bb2f62cea": { + "crash": { + "$rpc": "null" + }, + "elements": { + "ActivityIndicator": 1, + "ChevronLeft": 1, + "Pressable": 2, + "RefreshCw": 1, + "SafeAreaView": 1, + "Text": 2, + "View": 4 + }, + "labels": ["Back", "Refresh agent sessions"], + "text": ["Agent Session History", "orca-history"] + }, + "e904502f2359": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec120260263a": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + }, + "f2257f595504": { + "name": "worktree.ps#1", + "args": [ + { + "name": "method", + "value": "worktree.ps" + }, + { + "name": "params", + "value": { + "limit": 10000 + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + } + }, + "recording": { + "scenario": "matrix-aivault.history-screen-worktree.ps-1", + "checkpoints": [ + { + "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", + "observation": { + "sender": ["bc1a8e138f82", "ba9fd57319d3"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.normal:worktrees-listed", + "observation": { + "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", + "observation": { + "sender": ["6ed6d686b491", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", + "observation": { + "sender": ["430d32843438", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", + "observation": { + "sender": ["e904502f2359", "6ae619d3108a"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "08a62b87ca0b", + "effects": ["60569b10e210"] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", + "observation": { + "sender": ["f2257f595504", "6ae619d3108a"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "08a62b87ca0b", + "effects": ["60569b10e210"] + } + }, + { + "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", + "observation": { + "sender": ["481a5e96b319", "6ae619d3108a"], + "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "08a62b87ca0b", + "effects": ["60569b10e210"] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", + "observation": { + "sender": ["993fb2bd3f3e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", + "observation": { + "sender": ["97177805ceb8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", + "observation": { + "sender": ["111018d23b6c", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", + "observation": { + "sender": ["4fa9e403a3c8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + }, + { + "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", + "observation": { + "sender": ["9f1a49cd671e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], + "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d22bb2f62cea", + "effects": [] + } + } + ] + } +} 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 9ce7bb79fb8..ab22cec2def 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c9bb611ecd9..058febd448a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 aac0e6cc0f7..77edc7ce7c1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f6e3416f4a5..97f65800c83 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fde32ebeb2f..d4784a272d8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 216c6c3b588..407cc79c31f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 45f41d6661f..a32887b6f35 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 95716c9c02f..d60d763d403 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 756c5c92b5d..e655b25e949 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 49637da56db..8353d7db1f4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2d734e0c723..af35079ebb8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 51135f40954..260a3b99095 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e726e39a0a2..797da166f1f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e75c6515120..c252e298e8b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8d09af90235..e753f37f5b4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6b6b2e100ae..b105a6f73cf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d0b903c75e9..3caaf30cff7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f5c86ad34e7..cb23dbd71d1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6b96d9adca4..d8d77f701ae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8a98c9e53bd..a361c2922a6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f382fcb7346..fc5d60ce0d0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 66c765e0c71..af8e94726bc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4f6a2ada0eb..3f0d13573b7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 948ff471c43..f6b9cc3a78f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e94b60343b4..d09b6908181 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 de071cfd521..b29ae8e1a0b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2469e6789af..35b867f84de 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e51145dc9dd..8a3fa7a8f79 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d4b3e7c275e..df4040174c5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d0a315cf5b9..0feae446eae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1f46d5cab53..f5d2479e48d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b40683499db..11432c4fd11 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fd1384d0d67..f63eb30e5a7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 31ef6a9be06..72fd3538173 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5a09244346c..6e85284b38f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bd2776371aa..622e0dd6a56 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 82d7635c1a3..46b69394329 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 311a3e1d6ac..38d02edd70d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 341dd760922..ea6bebf659c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 db4b77e6e00..254708ecb85 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5a265049a99..523ec59269a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4584db130b9..78e33130d0a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9e9eb60a30f..91e5c24b050 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 08dce59da27..52d16cd7a0f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f6ae40eba32..82b38fc4861 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 eac9ccc0141..2e772ca2192 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f9b7753e45b..583430befa0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7c6735a2f65..04287aefe96 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e6a51c7405a..d398ce2d9e8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2e395f6ce54..5c7a5c92648 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4442d2129fd..cc59443f833 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3b06ca3a10d..ee3d827ddfd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 86dd3f03a82..31c77fc872d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 526675bf887..159a0ba332d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 238b88fd233..3a1a470c49e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 723c529d3ba..fd50ca033e4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 61cebb1e346..e091386b773 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4d4b3bf9053..0e8c7fb71e9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6be7d81cff7..37cefd28f90 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f9991b5b370..0d9698812e8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 636650b5349..78ddd4c8d9b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f8330a94754..fbc33a37948 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c00e22e3913..067874d1c4d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 94a43cfc892..de49e350e4f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 32eafcb25a4..23c8d8953a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..26d8215f56f --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-home.host-accounts-accounts.list-1.json @@ -0,0 +1,680 @@ +{ + "operation": "home.host-accounts", + "family": "home.host-accounts", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a", + "scenarioSha256": "047e4c8fb2c4b374406658ec3954ac00fda96928bdd999a33ab9867284ffb4a4", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "08db21b24271": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "2525c654127c": { + "host-1": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "claudeTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "codex": { + "$rpc": "null" + }, + "codexTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + }, + "29e1daf37245": { + "name": "accounts.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}" + }, + "42fe3b88d871": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "44136fa355b3": {}, + "5fd916142f9b": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "726e66b9a16f": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "746a5e6e181a": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "91042e273e28": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "a20e2f913e09": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "ae89fde72803": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "codex": { + "$rpc": "null" + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + } + } + }, + "c1793b36a3f2": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "cafd198863af": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "d54161165272": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "e14a47430122": { + "name": "accounts.list#1", + "args": [ + { + "name": "method", + "value": "accounts.list" + }, + { + "name": "params", + "value": { + "$rpc": "undefined" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "e14c03c3141f": { + "name": "accounts", + "value": { + "host-1": { + "claude": { + "accounts": [ + { + "email": "claude@example.test", + "id": "claude-1", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": { + "$rpc": "null" + } + }, + "rateLimits": { + "claude": { + "$rpc": "null" + }, + "claudeTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "codex": { + "$rpc": "null" + }, + "codexTarget": { + "runtime": "host", + "wslDistro": { + "$rpc": "null" + } + }, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + }, + "sent": 1 + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-home.host-accounts-accounts.list-1", + "checkpoints": [ + { + "id": "home-host-accounts.prelude:accounts-pending", + "observation": { + "sender": ["d54161165272"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.normal:accounts-published", + "observation": { + "sender": ["ae89fde72803"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "2525c654127c", + "effects": ["e14c03c3141f"] + } + }, + { + "id": "home-host-accounts.result-absent:accounts-published", + "observation": { + "sender": ["cafd198863af"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.result-null:accounts-published", + "observation": { + "sender": ["726e66b9a16f"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.inner-ok-missing:accounts-published", + "observation": { + "sender": ["c1793b36a3f2"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.inner-false-string-error:accounts-published", + "observation": { + "sender": ["08db21b24271"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.inner-false-object-error:accounts-published", + "observation": { + "sender": ["746a5e6e181a"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.outer-refused:accounts-published", + "observation": { + "sender": ["a20e2f913e09"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.outer-refused-no-message:accounts-published", + "observation": { + "sender": ["91042e273e28"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.method-not-found:accounts-published", + "observation": { + "sender": ["5fd916142f9b"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.transport-rejection:accounts-published", + "observation": { + "sender": ["42fe3b88d871"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + }, + { + "id": "home-host-accounts.transport-rejection-no-message:accounts-published", + "observation": { + "sender": ["e14a47430122"], + "payloads": ["29e1daf37245"], + "settlements": { + "load": "eb79a9b3682a" + }, + "state": "44136fa355b3", + "effects": [] + } + } + ] + } +} 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 6b67341ab28..a24c339c124 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "5518e08c1b20f0ddd4cb6bc81ff9af032b1a38daf24f3d3497bac5df8b2d0ec5", "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 801c5c31602..7a0bb85cade 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 df2e9fff010..b545dbbae86 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3119d29f7be..606b4417302 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4413cee90dc..9a97e755c2a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ad3f968af65..1e71acad447 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 398ba791814..236e2b7ea74 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 38e97aee45e..bc8d08acc61 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1b189b527b6..84448464c9d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fd201148ae2..e026016e2f7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7889afad5c5..8d799aedbd1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bc90ce4b419..2fe77a86b2c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e2c46dff8aa..c5581d816e9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5f34fb2c471..905a09196d6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6e5c083b1d0..88c04ca5c4e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 17498d983e1..cb8b8026191 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e42a6176e3d..e5a6909b521 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1ad66ab3b0b..ff6d2dceb5f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b5c8a4b03d8..11c301a7eaa 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ee751db82e5..ca1f9dd78fd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ef473ca70d5..bf682906746 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 95fc0efd205..0f6521987e7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 52d4b4c2e12..349148ce2ac 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 661a0d3733e..94e2de3c672 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5a98129ac8f..a486d62a395 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8b523e8ce8b..ba37f3322b8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1d4ff58fa80..0887f154132 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7a2dca66acb..1862a64ff15 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..fee0966f2e2 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-linear.select-workspace-picker-linear.selectworkspace-1.json @@ -0,0 +1,591 @@ +{ + "operation": "linear.select-workspace-picker", + "family": "linear.select-workspace-picker", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f", + "scenarioSha256": "c7de1f6fc0895d4ddf1b87a83859da46c583f098e058f14c8f85d48120c80c40", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "06776b3d9986": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "1a260f9b2146": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "34abdc8d41b6": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "36c0bdbc5f9b": { + "contextLoads": 0, + "error": "", + "selectedWorkspaceId": "workspace-b", + "teamCount": 0 + }, + "4a23506ae3dc": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "5434c3d0a73f": { + "contextLoads": 0, + "error": "transport failure", + "selectedWorkspaceId": "workspace-b", + "teamCount": 0 + }, + "55f248ebab5b": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "87ae939e1ef2": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "8b0126beaa0f": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "8c94ac859e25": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "99a34c4ee1d1": { + "name": "linear.selectWorkspace#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}" + }, + "9fd9d48475fb": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "b3bc3d5e8602": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "c97ff66588a1": { + "name": "linear.context-reloaded", + "value": { + "contextLoads": 1 + }, + "sent": 1 + }, + "cc85f4131ab5": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "d2ade472a8ba": { + "contextLoads": 1, + "error": "", + "selectedWorkspaceId": "workspace-b", + "teamCount": 0 + }, + "d85b70dd191e": { + "name": "linear.selectWorkspace#1", + "args": [ + { + "name": "method", + "value": "linear.selectWorkspace" + }, + { + "name": "params", + "value": { + "workspaceId": "workspace-b" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-linear.select-workspace-picker-linear.selectworkspace-1", + "checkpoints": [ + { + "id": "linear-select-workspace.prelude:selected", + "observation": { + "sender": ["4a23506ae3dc"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "36c0bdbc5f9b", + "effects": [] + } + }, + { + "id": "linear-select-workspace.normal:switched", + "observation": { + "sender": ["06776b3d9986"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.result-absent:switched", + "observation": { + "sender": ["b3bc3d5e8602"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.result-null:switched", + "observation": { + "sender": ["9fd9d48475fb"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.inner-ok-missing:switched", + "observation": { + "sender": ["8b0126beaa0f"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.inner-false-string-error:switched", + "observation": { + "sender": ["8c94ac859e25"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.inner-false-object-error:switched", + "observation": { + "sender": ["1a260f9b2146"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.outer-refused:switched", + "observation": { + "sender": ["34abdc8d41b6"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.outer-refused-no-message:switched", + "observation": { + "sender": ["55f248ebab5b"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.method-not-found:switched", + "observation": { + "sender": ["d85b70dd191e"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "d2ade472a8ba", + "effects": ["c97ff66588a1"] + } + }, + { + "id": "linear-select-workspace.transport-rejection:switched", + "observation": { + "sender": ["cc85f4131ab5"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "5434c3d0a73f", + "effects": [] + } + }, + { + "id": "linear-select-workspace.transport-rejection-no-message:switched", + "observation": { + "sender": ["87ae939e1ef2"], + "payloads": ["99a34c4ee1d1"], + "settlements": { + "select-b": "eb79a9b3682a" + }, + "state": "36c0bdbc5f9b", + "effects": [] + } + } + ] + } +} 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 e0dafc1b227..7ffa2203aae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 608fdb1d155..80de28b0d1d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3fe508a57c4..b23c5c3833b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1f57c52be6b..57ce984b14b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ad078eb8a9d..cf78b21f110 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1d6d6562849..93d41d19165 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "c4193d972250dbe72907dcd32b8300b22986edfa5eeb651268c3838835177c64", "platform": "darwin", 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 new file mode 100644 index 00000000000..ccabbb57f99 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-notifications.display-test-screen-notifications.testpush-1.json @@ -0,0 +1,733 @@ +{ + "operation": "notifications.display-test-screen", + "family": "notifications.display-test-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9", + "scenarioSha256": "b7a862c0de7dd4efcdf3f4db7c5aeda6b765ab58498f40f3b21232264758b16f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1813829924d9": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "Accepted by Orca’s push service. Check for the notification." + ] + }, + "208105435ce5": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "2632a7be552e": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "Update your desktop to run this test." + ] + }, + "3102dea8de47": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "35ad92adc9dd": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "423fdf156b67": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "489ba4bd43da": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "4e433b95285b": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "4f67ed2e2c74": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "Could not reach the desktop. Try again." + ] + }, + "519501f39af2": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "accepted": true + } + } + } + }, + "6967f95147f9": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 5, + "View": 3 + }, + "labels": ["Sending…"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Sending…", + "Troubleshooting" + ] + }, + "9d82b982e2bd": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "a19d4669147d": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "a31521995940": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "adcb4be58b77": { + "name": "notifications.testPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}" + }, + "b7f125cb7db0": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "transport failure" + ] + }, + "bfc9b1f5d3b6": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "d86c08a509c4": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 5, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting" + ] + }, + "e280f318d7c6": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3e2e816b496": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "Could not send through Orca’s push service. Try again." + ] + } + }, + "recording": { + "scenario": "matrix-notifications.display-test-screen-notifications.testpush-1", + "checkpoints": [ + { + "id": "notifications-display-test-accepted.prelude:mounted", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d86c08a509c4", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.prelude:sending", + "observation": { + "sender": ["9d82b982e2bd"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "6967f95147f9", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.normal:accepted", + "observation": { + "sender": ["519501f39af2"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "1813829924d9", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.result-absent:accepted", + "observation": { + "sender": ["4e433b95285b"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "f3e2e816b496", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.result-null:accepted", + "observation": { + "sender": ["3102dea8de47"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "f3e2e816b496", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.inner-ok-missing:accepted", + "observation": { + "sender": ["35ad92adc9dd"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "f3e2e816b496", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.inner-false-string-error:accepted", + "observation": { + "sender": ["e280f318d7c6"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "f3e2e816b496", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.inner-false-object-error:accepted", + "observation": { + "sender": ["a19d4669147d"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "f3e2e816b496", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.outer-refused:accepted", + "observation": { + "sender": ["bfc9b1f5d3b6"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "4f67ed2e2c74", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.outer-refused-no-message:accepted", + "observation": { + "sender": ["208105435ce5"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "4f67ed2e2c74", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.method-not-found:accepted", + "observation": { + "sender": ["a31521995940"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "2632a7be552e", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.transport-rejection:accepted", + "observation": { + "sender": ["489ba4bd43da"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "b7f125cb7db0", + "effects": [] + } + }, + { + "id": "notifications-display-test-accepted.transport-rejection-no-message:accepted", + "observation": { + "sender": ["423fdf156b67"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "d86c08a509c4", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/matrix-notifications.push-dismissal-notifications.getmissedsince-1.json b/mobile/rpc-foundation/goldens/matrix-notifications.push-dismissal-notifications.getmissedsince-1.json index 211cf2ef8e6..947f4335145 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ec26c88469a..792c8a66e02 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c17e43bde7a..f818ca23ce4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f23cc2f22f2..b5e43dfcdc4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f2f64e11e69..a20dffd1e06 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7ab31e95f5a..6b3286f7db2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 59d7214f130..45287db5678 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a1315db3612..3ccaacc82e5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 205f28ffc47..c3583d4e26d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 03ab6f0b36e..c4f70a4f852 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8617d686196..378e3e682e0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6daa1eb8239..e2ce97a0a99 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4405903c42c..2a2f82bcab7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e9c626ba85..74804d3d40e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fde00e8e7f6..deff4067601 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d153caf18b6..302abda4ea4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 55db656b887..a6f5e571cd5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 564285af2e5..8ada5378608 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 50f1d132ae9..3aea7accfcb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 db68b5c931a..25e805b8170 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4ea5e596611..062afa4476f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 698d0a44a2e..5ddf9967eb1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bd4e7205630..de6a01ec477 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 557a36823b8..241bed0cb2d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0802ec771a1..5f1a198a3d5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2ef37281202..4b9433bda9c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2fc04460012..c1442d7be24 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "389c6118f3137b78e88af6b901554b0331c652063a00d8ba3119e0883ce82f25", "platform": "darwin", 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 d3e3ccf19ac..9057ac7175d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bcec1ca3fa4..6559168de5f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 72ae6357f80..c58d3601668 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c5627d1d6a2..5617e2c989b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5b4d1a43c3b..a77c84ac58c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 526a45ba468..fe144fd0482 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6f8fec1d185..8322a7745ca 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b78a2f27694..f4f2d09da79 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fee7c280f8e..ac4bb6e1b9d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6ba3af4e568..460cc81a4cf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c39ff7d933c..7097f64632f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4076b11734b..861eabf0723 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4dfdfee9414..534390baf6e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1eb88e8f8d0..a843423243d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 eed1b81dc28..deaacb64ec3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 17bf80bfdb6..8a7c318829e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 20af0cdebd7..ab3a4469b63 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "fab12524a09049d976da752cbe1b837a0aee04ce6e1eef75cbf517c862cb0d4a", "platform": "darwin", 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 220e3d44d89..4b06d9ec6b7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 be227577c47..71f29bbe325 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8f964b6ad01..f90d85d16ee 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 41b45d309c2..863f19607a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fe2e2ee3f53..dee31a82ed2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 64bd9060e66..f4e0c18c2c6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a87883ff6ff..bdb65a0bff1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8628cbc5a67..31d5f0dc8a3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 60bf8aff3e9..685a771474c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5f36424bdb6..3cc19eb1407 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 48b598b9b35..529da41db7a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 52efe27a621..cf1a3a00655 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 07e56873f82..61dd62bd489 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 33276a63fe5..3fd889af876 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2bcdf501dde..98447fd83e0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 729a24f03f9..e0c8e8f6054 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dfdcae6df03..c6127f6e137 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e153d047de0..42bccef3489 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b717ca19054..8e4c7840569 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dfc1517cf1c..4a5396da8ff 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f00d98cff93..82b26296b92 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2a44ab1b7f2..0981e8b1c3b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c742bd94be8..51e6e974eb0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 440a7d3bdd8..1569f93c71c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2a6cf2742b0..035ce1c22a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 220bf410f4a..ae35f99d969 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8e71dad5235..84980c4d348 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3039e53f0fd..2a9ddf47bb9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1e957ad7ea6..5f6544ce505 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 26b6bf8cc67..7370cc7b41a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 78229b529a3..993fb15737d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a4eca7c36ee..8449cf4a99e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 73f4aba43ec..bf18cb3460d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cce5f4724f9..cc6a4a9aa83 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 900ee5c2c3c..2c26dd88ed7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 77b9d2f1c37..9f98b2e50f7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 afdcd412917..38c2d24a333 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b7b9127de9d..f0058600c9f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0b758c48c60..4e951f74996 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c5c80b59588..590b1417dc7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ca8295f4c07..6c8102cfba2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 df21a35185b..cb0a3cd879f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cba186442b6..a069c123b16 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1f61027b7e9..b9c6e1f906f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c661dc116cc..9a673220ddf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e91be6d92f1..c9fe05f4242 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bed1cf7965e..499960781b0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8b56f7bb155..1f04c70d55c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0002c2df9b4..21c2e7cda1f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9a9578e719b..421bd51e671 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7dfba9a7326..d092efc8d3f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a0cc4386ab8..dc06a80f280 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 113605cc914..8f9287e5a60 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 17f28b81081..51dfb349215 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6c9daffaf9e..b1b62fb3e22 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b2f3fc13174..2ab94bee6a7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 20e1a1b396b..002463232a5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e49a5b5377f..d32d75c6a2d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 22d1924157f..946995d4400 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9ada2264a05..f6dcdfd58a4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 01421b14842..4183d14c7f4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 38b69708858..b48c8b0b41e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 82aaf124a8f..4d1dbab9c4f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7b30d4cf831..54bf546e57f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8061e95dc60..6b99bca7026 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 815b903fbbc..a403b59585f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8d25484b439..a43de1c4bdb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8cea99c0030..915d00e18f8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2ee9b7f328b..2a6a43f5249 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 be2858f6953..93f1503bf9f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bcd92862ef4..c27fea149a5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a912818a487..8025badc9e3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 22816563058..955ec40ba1c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 569ce1fdd60..2f80cdcb89d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6c3dded62fd..1f74a6f5781 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d9865910f02..54c440ce756 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dfafcc322ab..45ed0ea661a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8656d7041e8..df58f827e29 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 268041182f2..c3dba113d6d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 564e2a7139b..d5ca16efeb7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9476d302fc8..6d78d1ddb92 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b16d0c5d033..7ef2368ba19 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7d550f8a40f..514961f3af6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8300737d312..02ac218b3fe 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 64e81310de2..45c287f077d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 01ce19fb639..382c62b21c7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d4ffab42f96..8aae36a92dc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9db19f7591d..05e9028a01b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1d5ac655a01..5943b2b133c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ab58092a419..4fbd93b1a97 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b0caa1fdf7b..e7feedbef8a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b2bc2c16efc..dff13c46bef 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c8adf2ec070..ffea0704882 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6396299ccd0..4ec5e36a2ff 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8d5b3e24314..73aecb0bfd7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f1f7f09d551..4df40d73491 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c8a9c15f1bb..3f105d715da 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f868ea173d8..e468a2a795b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6096906fb3c..e61f389201b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d8d1034ee00..129852a83b5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d768ef6fb1a..a9bfa40b388 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ebdc013ff2b..6161abb40f0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 442e617f845..cd8bc688a66 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 071df4aa764..c08d0193e51 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2dd6a667eaa..4704e43daef 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 781e8bbe0a6..66c47084934 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 83210fae006..ae420231413 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 57aa678cdcc..a006b7c088b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3c3fe782173..22a8e104a36 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3cd7cff47ad..e66b6c2e4a9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dc01034bdee..f09a6e8a8b2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cb34c10bc98..d2b45554aea 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f247766235e..167d62860ff 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8ec9073ed6d..9e73b4742e5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 289558db71c..8a8dd6ca3a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 72feb83b1bf..6fb7e789b32 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e96f43303c0..ecf468004ec 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e70cd9cf5ee..c114f9a97ba 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4d7d4d708ce..5403614ef35 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a3cefccdc39..26bc34d6b87 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 37728777f83..1230026632f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..a798129970e --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-tasks.route-repo-list-repo.list-1.json @@ -0,0 +1,770 @@ +{ + "operation": "tasks.route-repo-list", + "family": "tasks.route-repo-list", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8", + "scenarioSha256": "6373b83783b1a9b061bede3bba7aa3b573c3a50b897102a094df93f926856fdc", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "06b63e0d9986": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "06fc8e7b85d5": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "2381a3fe154e": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot read properties of undefined (reading 'repos')", + "isRpcDeliveryUnknown": false + } + }, + "26accd69bc48": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "2c8a833ba907": { + "crash": { + "$rpc": "null" + }, + "repoListError": "Unknown method", + "repoListStatus": "error", + "repos": [] + }, + "2ebe4d776f9b": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "32a7c0ae7918": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "outer refused", + "isRpcDeliveryUnknown": false + } + }, + "38e790fd9e9c": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "3afd0fbd92b6": { + "crash": { + "$rpc": "null" + }, + "repoListError": "Cannot read properties of null (reading 'repos')", + "repoListStatus": "error", + "repos": [] + }, + "43e0e76c3901": { + "crash": { + "$rpc": "null" + }, + "repoListError": "outer refused", + "repoListStatus": "error", + "repos": [] + }, + "49bee46155dd": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "repos": [ + { + "id": "repo-1", + "name": "orca" + }, + { + "id": "repo-2", + "name": "relay" + } + ] + } + } + } + }, + "5035ab0dea56": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "error", + "repos": [] + }, + "63dfbb6942f2": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "TypeError", + "message": "Cannot read properties of null (reading 'repos')", + "isRpcDeliveryUnknown": false + } + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "6e5c6593dad8": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "75825f56bde8": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "loaded", + "repos": { + "$rpc": "undefined" + } + }, + "9206a72df4c7": { + "crash": { + "$rpc": "null" + }, + "repoListError": "Cannot read properties of undefined (reading 'repos')", + "repoListStatus": "error", + "repos": [] + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "9d3fa0db2665": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "9d8c57ae3003": { + "crash": { + "$rpc": "null" + }, + "repoListError": "transport failure", + "repoListStatus": "error", + "repos": [] + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "afa949a66032": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "idle", + "repos": [] + }, + "b15e86f79919": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "loading", + "repos": [] + }, + "b948e8307e81": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "Unknown method", + "isRpcDeliveryUnknown": false + } + }, + "b9f0f1e94cd9": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-1", + "ok": false + } + } + }, + "c7584e82c72f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + }, + "cc1facdf008c": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "e341bd05e614": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, + "f5484d90b3f7": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "loaded", + "repos": ["repo-1", "repo-2"] + }, + "f96e83d33565": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "fcd8faa86ca8": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "repo-1", + "name": "orca" + }, + { + "id": "repo-2", + "name": "relay" + } + ] + } + }, + "recording": { + "scenario": "matrix-tasks.route-repo-list-repo.list-1", + "checkpoints": [ + { + "id": "tasks-route-repo-list.prelude:idle", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "afa949a66032", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.prelude:repos-pending", + "observation": { + "sender": ["26accd69bc48"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "9270aeb7d9c6" + }, + "state": "b15e86f79919", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.normal:repos-loaded", + "observation": { + "sender": ["49bee46155dd"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "fcd8faa86ca8" + }, + "state": "f5484d90b3f7", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.result-absent:repos-loaded", + "observation": { + "sender": ["2ebe4d776f9b"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "2381a3fe154e" + }, + "state": "9206a72df4c7", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.result-null:repos-loaded", + "observation": { + "sender": ["38e790fd9e9c"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "63dfbb6942f2" + }, + "state": "3afd0fbd92b6", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.inner-ok-missing:repos-loaded", + "observation": { + "sender": ["06b63e0d9986"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "eb79a9b3682a" + }, + "state": "75825f56bde8", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.inner-false-string-error:repos-loaded", + "observation": { + "sender": ["f96e83d33565"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "eb79a9b3682a" + }, + "state": "75825f56bde8", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.inner-false-object-error:repos-loaded", + "observation": { + "sender": ["9d3fa0db2665"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "eb79a9b3682a" + }, + "state": "75825f56bde8", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.outer-refused:repos-loaded", + "observation": { + "sender": ["b9f0f1e94cd9"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "32a7c0ae7918" + }, + "state": "43e0e76c3901", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.outer-refused-no-message:repos-loaded", + "observation": { + "sender": ["06fc8e7b85d5"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "f3b516f62081" + }, + "state": "5035ab0dea56", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.method-not-found:repos-loaded", + "observation": { + "sender": ["e341bd05e614"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "b948e8307e81" + }, + "state": "2c8a833ba907", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.transport-rejection:repos-loaded", + "observation": { + "sender": ["6e5c6593dad8"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "a947768bc0ed" + }, + "state": "9d8c57ae3003", + "effects": [] + } + }, + { + "id": "tasks-route-repo-list.transport-rejection-no-message:repos-loaded", + "observation": { + "sender": ["cc1facdf008c"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "c7584e82c72f" + }, + "state": "5035ab0dea56", + "effects": [] + } + } + ] + } +} 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 2ed0051f607..798f62629f6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7997179a191..af3e02713fd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0ea4a32efc3..50f2e6791dd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ec24868d714..1851e4ce4db 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b00d5f52b15..62b8ef91c5a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b1b0f58928a..2d02aa0aa17 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 026cc96e2cc..9461d24979d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e53df12bf02..4d7c147ca23 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b330f1c7970..63063d4f1e9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1d79579640a..bccb3745591 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1f5c2ef262e..b8e0496e43c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7b6c95cd443..5f23e7da3a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 37a61562cfb..6fb9f908890 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 73995204869..de5e7bc7271 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 51d2afa65f9..a413ac2bba2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8efe582dda3..a9e53efc568 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 34014f55428..b84d2daadda 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bd0d8149092..e722d14d0c0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d3293456de6..46dcd2041f0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e80a48e99d7..c84b09bb145 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7746eb62867..14870e3b31a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4d98d857f47..47b80537f86 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 29213197dd5..4330e3bcb5e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 39adb2ae774..0b3cccce848 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3166f7bffff..b0b7b546c98 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d9729f4528e..f84dc64c13d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f1baaa3f994..6d612966432 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ebd7afc6ef6..a3da69c46db 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b04b4063aea..8a960fa1753 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0bafe892b58..88c34903f51 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 58ed79961fb..442f56c694b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 09157dc8b7c..0b0efde1d41 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 246a6130694..408e6de4d59 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0d7b984a6aa..5d94adf50cb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5b6c488132d..4be21c2d95a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c5327761ea9..bc0997b797a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 16f55c82ade..68c042b313e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b3708de7e4e..4b34a8bb756 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 14045696de2..fd18e7c0e0b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a84923cddcf..2f47bffb8a4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 10cb836769f..e4c3806f3ca 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 47a1c2cc14e..bb1a0ce8b94 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 86afbf9bc6c..0e51e9dbaca 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d2c7ff1ebc1..b6d224d2aae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 89bdc32b170..a41739846b5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 87b1a7e9bfd..46804c6c0db 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 53018828988..23863c8a3e3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 06793d22952..a6a4a15da84 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0058c4f6d7f..d1ccfa4ca13 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "db0397f8f6ae28de0cc7afd91552ee9416d7f7054a76a42aac02f480c6f363d5", "platform": "darwin", 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 7f326b91250..238367cb37a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a2ef47d4af5..fa5ae53a678 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1a0f442d965..3d78957d5db 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6cb77130490..c069bcab30f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fb356b5db39..3c11dfc97da 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c3a8cfe1a9b..cc30bc773da 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5cc91781681..1c171854dfa 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 544677d255c..4a87f4beadc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d1ccf8bffb7..c8e6defdca0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dc4bffa108d..1e1729cf0cc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 48a534f7025..9f9ba736e32 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ab06f7620b5..800e1289536 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 91f97dabb41..13ffdf7ed83 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f9bcb198514..a5855dd0954 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4b8aac20e5d..5587aa85b05 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa", "scenarioSha256": "41ac47445191a24de5e48877478bdab6fd9c030f48024ea43e053de7b6b68bb5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json new file mode 100644 index 00000000000..16eaf3d3d2f --- /dev/null +++ b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json @@ -0,0 +1,187 @@ +{ + "operation": "notifications.display-test-screen", + "family": "notifications.display-test-screen", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9", + "scenarioSha256": "e19c4ff95d568edbb5c0d6058eb17843be31bdfd528825985963f8ece8cbc652", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1813829924d9": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 6, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting", + "Accepted by Orca’s push service. Check for the notification." + ] + }, + "519501f39af2": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "accepted": true + } + } + } + }, + "6967f95147f9": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 5, + "View": 3 + }, + "labels": ["Sending…"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Sending…", + "Troubleshooting" + ] + }, + "9d82b982e2bd": { + "name": "notifications.testPush#1", + "args": [ + { + "name": "method", + "value": "notifications.testPush" + }, + { + "name": "params", + "value": { + "$rpc": "null" + } + }, + { + "name": "options", + "value": { + "failWhenDisconnected": true, + "timeoutMs": 20000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "adcb4be58b77": { + "name": "notifications.testPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}" + }, + "d86c08a509c4": { + "crash": { + "$rpc": "null" + }, + "elements": { + "Pressable": 2, + "Text": 5, + "View": 3 + }, + "labels": ["Send test notification"], + "text": [ + "Having trouble receiving alerts?", + "Send a test through Orca’s push service.", + "Send test notification", + "Send test notification", + "Troubleshooting" + ] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "notifications-display-test-accepted", + "checkpoints": [ + { + "id": "mounted", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "d86c08a509c4", + "effects": [] + } + }, + { + "id": "sending", + "observation": { + "sender": ["9d82b982e2bd"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "6967f95147f9", + "effects": [] + } + }, + { + "id": "accepted", + "observation": { + "sender": ["519501f39af2"], + "payloads": ["adcb4be58b77"], + "settlements": { + "mount": "eb79a9b3682a", + "press": "eb79a9b3682a" + }, + "state": "1813829924d9", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json index da7287ac416..9ef5b49de04 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a676fdcb35f..8594aeea70a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 242b1951a99..1583cf0f4a0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f354afabc4a..94d19065741 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6a828951985..e4001d6c09b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7bff1a54573..04de9e0a412 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4f17928436c..5252085d440 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b7974418130..d35b7040158 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d6c0dac8608..9436a1d960a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0dc4d399aab..9246be5b1f7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 647b127470c..3f1814a290a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7944f746c7e..43cb9474f84 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c49847e4506..79c9f69edb8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 90226003aea..cfc51d1f248 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bdc88640016..325ca2e5ddf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4548c49e413..447c8d9ada2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cfbbe43591e..c8b0137d713 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 64f8a714f9a..9f7526798e1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 929eff3d094..dd79cc4458a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 927e9967ab9..60ee75557d1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c121fe1e560..9809627a2bf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dae03518838..1d5a26b3621 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3bc73e9418d..40baaa8b052 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4ec6be5a0a9..8d37b59990c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5dfa353f750..efa787404df 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3283dd9bb4a..bb8ba71f581 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 15abf22f85f..a4580390dbf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 020afdb59e8..1c9e4374447 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6ae43b2e328..7c5d4f41f00 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 50af47e1e47..3786dcd5a39 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8ab329840eb..3272f1b35c2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1c6fe570d94..8886b7a7a49 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f9910d0b0e4..365e1204f4f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5dd305c32e3..28f787ed025 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 85d4daf5866..73e1b011889 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 28fd1dd0010..5d62ffd3e89 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 107c805a5a7..858c02002f5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 806727bf9d2..442333b3045 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 861028fd54b..bab07ef44ee 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 be478263106..0f327b1b6e8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d3fc9dbf470..29faef1a8fb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3f2670ff640..81c526daa5a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 888114b725c..a64f9b1e2c8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f7fdb5f833c..0c6356ca5d3 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d72a5ba8943..d97e966c141 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 eb719a12b52..1e39957186b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bd0bffad7f5..fc26d47cb3a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 43f3c3279d7..7fd97214a6b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7da77e10d4a..93f23fd81b2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 709b3ed7e5c..cad373c5cc8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ae90efc3cf1..762a409f4e0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 19d2f3b0720..10a72ea1497 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2dff86d2288..b4a2f9292d8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b43f568ebf5..94d895d23fa 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9b28ac554a0..ae8273c894c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 55a99b2d4c3..2ef7fa08552 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 afa2dbeb508..67464e628d0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 747c59fcf44..d070bec7e1f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e5039401343..07c143a51f9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0c3dd8ee2d3..31c8545fbb9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8399b4e6079..f9e1e4c0281 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 335553c1810..9560a315b88 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5db72062fc0..f5bece53447 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 34fdce4dac5..67dd17e8c65 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0d30683e294..06c7d1f590f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 826be6b02dc..5fa81b6b2b0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5f391bfe082..a300eb0adbd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ea6a9f68c73..4429dedba76 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0cc510b2993..842ea1acd48 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a3fa35e7976..c4cd8ac6031 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a677d0bdbe9..c7fa7e6e6bb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f7c7cf581ce..fd6c7f4b3e6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4b310744b5c..dc720d90730 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cd71748b1b2..9a5eaeb236b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 69711308ad9..6eaa7a55fc7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 817166d068a..a8e154ace3b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0ccef41a660..4f2f9c54120 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 97e8fe98e08..e4c7fee9388 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8213b62afcb..1f7546ebe96 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9a4dd9a4f17..6d99b4474b8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d826a8c6850..983036cba95 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e4685d0d82a..dff7ca081cf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ae943c2debf..1812eb87528 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 397b6514970..d7ca9412661 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 81ed3284fbd..c0188400d1a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f3c09305d45..f495f71dab0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bac5c4a3188..0b2a58f2881 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 890d0a1e34d..24b6ea34896 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1fbfceef61a..3322f260336 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 63a7d12e629..7cab7cea919 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 08f344f5ea0..c3a4f1eceba 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3dd023ccb6b..0f4025efcb0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 20da9b09f6d..56fd71d507c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0d0a6532da5..e322e27d467 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 06f66f7482f..ad125b58074 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 246e5383561..5611480c6c8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cde03759e0e..2958b938ed1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 41ddacdb053..88aced43f41 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8ce56a02350..327cb9d79b4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4b70f7a2640..b344018438a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bb650df900a..ac368885e3e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2b3db55ac65..6bd2c7e61d9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d44557518e9..cd693749839 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 1b6e6a1c919..bd37a2ccefb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 13fce52aae3..1fdbf438465 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0af7ef6f597..af7bcf70702 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8b78fd734b3..66ca6310b20 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 63ce3a3346c..a59f593546c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 208898de170..16347ab5d78 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ca58b440e06..cbf3a47035f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e489508180e..0c0ed7da29c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9ae2ae80510..07961f1b812 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ec51b41dfdc..07026fe47a4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a800c4840f1..24ecf12e3dc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d9598485ec4..8e160b93530 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ecd616b3111..dd3e5ecefb0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cb9b3b98238..ffb7ef6a3e1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 340b8e1ec79..10eeb206a42 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 85d09596af6..76fb17ab7ef 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c4c642babdf..5f386ff41a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 594e96f3b41..a0fbf2e160a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7588e3d6796..f3d8c95a214 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 77bf0f7ef9d..eeea07906cf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e6f0cc004d..3fc3debdf99 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7df440f8b86..6ce0b50450d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 53798ad879a..b2080c6e50c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b8d5c0cfc8b..f2a9854e2d7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 16b8d7493e4..b04fed14d99 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 115f8f4024b..d21675c3329 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e2fa1d30e48..227a1a8476d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bf83a220be8..227a33dc771 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0a28f6a3df3..c38b4ebe0a4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 be7d92cb15b..301bc99fa1a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a015aca91e2..a8989b594bb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e8e6d327bd1..7ef6b9f0685 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 19f23abbe65..c2a6e9e28c9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3b389799fc6..a83a38306cb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2d26583502f..49b9feb84df 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a4119e07024..27e242abdcb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e5b42a33628..89ed036bcac 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f3a44e66e01..9684d7654d4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b0d83b8c350..74ed238a3c2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 04568411b08..7aa4002e171 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8f1054b9d1a..6e0f2d163d5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 efcffbe62e0..c4ac9b517af 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fad25494184..deb1920cdb1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 635f1d90aec..072ada83bfd 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ce4443bbfca..ee5d97fb68e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 da4b691a818..40a0923fcb0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 ba63230bf1e..5baada3b99a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 db637264946..f1b348d2ac7 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2deeb4bb3ae..4ec0b55a0ba 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2efc08bbb49..9434ce2ec3e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6ef8bbf1e03..a9d0190ad29 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3ae781eec19..b643f6049f4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fb12bee8def..cd057eaa04d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 443d614fa99..53c59615ea2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 c2c2f28f386..abea0aa9014 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 69af7e0106c..270fb99ba93 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 new file mode 100644 index 00000000000..993fc4f2b50 --- /dev/null +++ b/mobile/rpc-foundation/goldens/tasks-route-repo-list.json @@ -0,0 +1,182 @@ +{ + "operation": "tasks.route-repo-list", + "family": "tasks.route-repo-list", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8", + "scenarioSha256": "b62ca571d4defcc2e53960033c5b4eb3f7e406b57664664cbc6a173041a9f803", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "26accd69bc48": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "49bee46155dd": { + "name": "repo.list#1", + "args": [ + { + "name": "method", + "value": "repo.list" + }, + { + "name": "params", + "value": { + "$rpc": "absent" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "repos": [ + { + "id": "repo-1", + "name": "orca" + }, + { + "id": "repo-2", + "name": "relay" + } + ] + } + } + } + }, + "6bdbf70bafa2": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "afa949a66032": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "idle", + "repos": [] + }, + "b15e86f79919": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "loading", + "repos": [] + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f5484d90b3f7": { + "crash": { + "$rpc": "null" + }, + "repoListError": "", + "repoListStatus": "loaded", + "repos": ["repo-1", "repo-2"] + }, + "fcd8faa86ca8": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "repo-1", + "name": "orca" + }, + { + "id": "repo-2", + "name": "relay" + } + ] + } + }, + "recording": { + "scenario": "tasks-route-repo-list", + "checkpoints": [ + { + "id": "idle", + "observation": { + "sender": [], + "payloads": [], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "afa949a66032", + "effects": [] + } + }, + { + "id": "repos-pending", + "observation": { + "sender": ["26accd69bc48"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "9270aeb7d9c6" + }, + "state": "b15e86f79919", + "effects": [] + } + }, + { + "id": "repos-loaded", + "observation": { + "sender": ["49bee46155dd"], + "payloads": ["6bdbf70bafa2"], + "settlements": { + "mount": "eb79a9b3682a", + "ensure": "fcd8faa86ca8" + }, + "state": "f5484d90b3f7", + "effects": [] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json index e3c2f269ae3..583b338af99 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 06bb9dd0abd..2a31809b08a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2d8a7022f88..1c920b94f94 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3a9b18b4677..e6c187ea6d4 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 db529309c32..5f9518be479 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7b50176565d..023a6d31223 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 eced0be5882..b7c0904d985 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7bd2474c28b..f3788efdc3c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8f9b2840b4b..99fcdf32728 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d3e22799c37..2182cc9f323 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e92c8371bc..d2001e55d35 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2ff49e82e31..e03ebde7b7e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8e4ef06e34f..dccbf15426a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 182ea899b10..5436e92f77e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 cbdbac19bd0..a3423fc9ce6 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d3475dc2071..98b2949a12e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bfe0f52a3f0..07431987cbb 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e5a516639ee..169ec35bc59 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f467c18fa23..b62c337ed77 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e8ad78306f..1e1cd52eacc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4a5d0d37550..06046752765 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9837e000971..6a0085baadc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a8d10ed05dc..b3b49ebfb7c 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 dcea1d500ef..a21380b1d74 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5a2fb733f65..b2029eb75b1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3be55ef3588..89a01c2e471 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 aa7a7269a57..4758c7de635 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2baf383da3b..9ef88cfd52f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a74ca8e797e..71f1333452a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e893d9c2c5b..d2ec8b74f10 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 62e474ea059..ceb31985838 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f66563b5d55..c63ffe20721 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6f4e5de83dc..0f4b5666b2a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 37885e6323d..a5dfc37f0a2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7ddf6c16337..7e97119c669 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 152b7754eee..f7992a2a771 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3d0fb348e94..3b7b4d16fea 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 be2bc2d100d..18a9882e083 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f7cbd4db2e6..e988ce0e283 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 93e71682a07..ef7489dd113 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 792b673f107..95e2cea4afc 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5c3e3eb9854..1a92b93ef60 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3861fd1faec..5c6e5492ca2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e51213b70b6..a48ffd5422d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 4c3b6ce9c14..9f619a23177 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 70396c66df0..389c1a74c9b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 31419e92b52..cc1ae05c55e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2a3283064ab..de18d393082 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f4eef72d5bc..5797f4cc10b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e703862e038..c82af60d52f 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0ac0e69e17b..0db286c82f8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3be1e1d384b..6fb49d40812 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 00612174461..a343a86e673 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bd1cdb55bc2..4ac28f50548 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 973c8016be8..70cef3caac8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 11077b17037..5a48185a38b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 048946483fc..f56549a0ff9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7ce36a9a902..9e4d3a24898 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 36590513aeb..bb1bed4e0e9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 3e08056f1fc..ee2072dc2a5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a6c2c3b3693..98a80bb9ce0 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b92803eb131..a5803301369 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 0e778e3b74c..9ddd488c409 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 62f8568b460..4a4a29ad8d8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8e0b824193a..b136b388d34 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bbd3c2fcb56..dd784c27b05 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 e8bbd4b9a7b..24173d6408b 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 91f5fb38fb4..489cf1a06e2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7fe63d3dca7..bb8ad4e4ea1 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fc4de86abaa..63d166bc0b2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fa3b033db93..f36f831dd61 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 22d1095523f..aff4170c6ae 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 07e6b6f14e6..c1a5df6975e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 f72ff2cc628..efc3eb8f2f2 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7a5d4cac98a..2df30382131 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 82fd9be2ea7..b766e36ad3d 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 54a37dd6d54..a75a3111109 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 139773bd67f..24d948c2c98 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 5f22839eec5..1de355bc994 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 6f66d4b420b..650c1db2790 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 8119a88f727..c5219fb573e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 7c7d63fb9cf..065becd2f33 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 b631a9f7b4b..d13acd1a7a8 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 2df571b19c0..a3061013eaa 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 a28d97ff663..e0847745de9 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 9d2d148f069..bcac8038c58 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 fe12c76503c..9557a654a28 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 716a636317c..cf7e0dfefe5 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 21267fc727a..f29fa35148e 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 bb71725c48e..72ec5a2cfaf 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 77bc778b9bf..bc5b907e934 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 d256cad6ab0..388861d6c2a 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "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 35a18f15e89..a9a7b9b0746 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": "64a741e034b13bca69c466f93f713aa5c0cf3fbb2bbb02f357003506b17fe353", + "recorderSha256": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "2faa07ee5f12b3ed584117359d3b7aeb9c78a04e8fc49e753372f8c3927a3740", "platform": "darwin", diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json index acf2f71a18e..f0bb180c849 100644 --- a/mobile/rpc-foundation/pilot-scenarios.json +++ b/mobile/rpc-foundation/pilot-scenarios.json @@ -19065,6 +19065,373 @@ "checkpoint": "live-sent" } ] + }, + { + "id": "home-host-accounts", + "operation": "home.host-accounts", + "version": 1, + "family": "home.host-accounts", + "sites": ["mobile/src/home/mobile-home-host-requests.ts"], + "schedules": [], + "steps": [ + { + "action": "load", + "id": "load" + }, + { + "checkpoint": "accounts-pending" + }, + { + "complete": "accounts.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "claude": { + "accounts": [ + { + "id": "claude-1", + "email": "claude@example.test", + "updatedAt": 1700000000000 + } + ], + "activeAccountId": "claude-1" + }, + "codex": { + "accounts": [], + "activeAccountId": null + }, + "rateLimits": { + "claude": null, + "codex": null, + "inactiveClaudeAccounts": [], + "inactiveCodexAccounts": [] + } + } + } + }, + { + "checkpoint": "accounts-published" + } + ] + }, + { + "id": "notifications-display-test-accepted", + "operation": "notifications.display-test-screen", + "version": 1, + "family": "notifications.display-test-screen", + "sites": ["mobile/src/settings/notification-display-test.tsx"], + "schedules": [], + "deviceStore": { + "orca:hosts": "[{\"id\":\"host-1\",\"name\":\"Desk\",\"endpoint\":\"ws://desk.local:7777\",\"publicKeyB64\":\"AAAA\",\"lastConnected\":1700000000000}]" + }, + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "mounted" + }, + { + "action": "send-test", + "id": "press" + }, + { + "checkpoint": "sending" + }, + { + "complete": "notifications.testPush#1", + "params": null, + "reply": { + "ok": true, + "result": { + "accepted": true + } + } + }, + { + "checkpoint": "accepted" + } + ] + }, + { + "id": "aivault-history-screen-worktrees", + "operation": "aiVault.history-screen", + "version": 1, + "family": "aiVault.history-screen", + "sites": ["mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "bind": "platform-status", + "request": "status.get#1", + "params": { + "$undefined": true + } + }, + { + "checkpoint": "worktrees-pending" + }, + { + "complete": "worktree.ps#1", + "params": { + "limit": 10000, + "supportsWorktreeVisibilitySourceDefaults": true + }, + "reply": { + "ok": true, + "result": { + "worktrees": [ + { + "worktreeId": "wt-history", + "path": "/repo/feature", + "repoId": "repo-1" + }, + { + "worktreeId": "wt-2", + "path": "/repo/sibling", + "repoId": "repo-1" + } + ] + } + } + }, + { + "complete": "platform-status", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + }, + { + "complete": "status.get#2", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + }, + { + "checkpoint": "worktrees-listed" + } + ] + }, + { + "id": "aivault-history-screen-listed", + "operation": "aiVault.history-screen", + "version": 1, + "family": "aiVault.history-screen", + "sites": ["mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "bind": "platform-status", + "request": "status.get#1", + "params": { + "$undefined": true + } + }, + { + "checkpoint": "worktrees-pending" + }, + { + "complete": "worktree.ps#1", + "params": { + "limit": 10000, + "supportsWorktreeVisibilitySourceDefaults": true + }, + "reply": { + "ok": true, + "result": { + "worktrees": [ + { + "worktreeId": "wt-history", + "path": "/repo/feature", + "repoId": "repo-1" + }, + { + "worktreeId": "wt-2", + "path": "/repo/sibling", + "repoId": "repo-1" + } + ] + } + } + }, + { + "complete": "platform-status", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + }, + { + "complete": "status.get#2", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "capabilities": ["aiVault.v1"] + } + } + }, + { + "checkpoint": "worktrees-listed" + }, + { + "complete": "aiVault.listSessions#1", + "params": { + "force": false, + "limit": 500, + "scopePaths": ["/repo/feature"] + }, + "reply": { + "ok": true, + "result": { + "sessions": [ + { + "id": "s1", + "executionHostId": "local", + "agent": "claude", + "sessionId": "sess-1", + "title": "Fix the explorer", + "cwd": "/repo/feature", + "branch": "feature", + "model": "opus", + "filePath": "/repo/feature/.claude/sess-1.jsonl", + "codexHome": null, + "createdAt": "2025-12-31T23:00:00.000Z", + "updatedAt": "2025-12-31T23:30:00.000Z", + "modifiedAt": "2025-12-31T23:30:00.000Z", + "messageCount": 4, + "totalTokens": 1200, + "previewMessages": [ + { + "role": "user", + "text": "fix it", + "timestamp": "2025-12-31T23:00:00.000Z" + } + ] + } + ], + "issues": [] + } + } + }, + { + "checkpoint": "ready" + } + ] + }, + { + "id": "tasks-route-repo-list", + "operation": "tasks.route-repo-list", + "version": 1, + "family": "tasks.route-repo-list", + "sites": ["mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "idle" + }, + { + "action": "ensure-repos", + "id": "ensure" + }, + { + "checkpoint": "repos-pending" + }, + { + "complete": "repo.list#1", + "params": { + "$undefined": true + }, + "reply": { + "ok": true, + "result": { + "repos": [ + { + "id": "repo-1", + "name": "orca" + }, + { + "id": "repo-2", + "name": "relay" + } + ] + } + } + }, + { + "checkpoint": "repos-loaded" + } + ] + }, + { + "id": "linear-select-workspace", + "operation": "linear.select-workspace-picker", + "version": 1, + "family": "linear.select-workspace-picker", + "sites": ["mobile/src/tasks/mobile-tasks-filter-pickers.tsx"], + "schedules": [], + "steps": [ + { + "action": "select-workspace", + "id": "select-b", + "args": { + "workspace": "workspace-b" + } + }, + { + "checkpoint": "selected" + }, + { + "complete": "linear.selectWorkspace#1", + "params": { + "workspaceId": "workspace-b" + }, + "reply": { + "ok": true, + "result": { + "ok": true + } + } + }, + { + "checkpoint": "switched" + } + ] } ] } diff --git a/mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx b/mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx index 6be4acf29c7..515362d826c 100644 --- a/mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx +++ b/mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx @@ -15,9 +15,9 @@ import { useRouter } from 'expo-router' import { ChevronLeft, RefreshCw } from 'lucide-react-native' import { colors } from '../theme/mobile-theme' import { useHostClient } from '../transport/client-context' -import type { RpcSuccess } from '../transport/types' import type { RpcClient } from '../transport/rpc-client' import { readMobileRuntimeHostPlatform } from '../transport/mobile-runtime-host-platform' +import { worktreeCatalogRead } from '../worktree/worktree-catalog-operations' import { getWorktreeLabel } from '../session/worktree-label' import { buildMobileAiVaultResumeLaunch, @@ -88,12 +88,14 @@ export function MobileAgentSessionHistoryPanel({ let cancelled = false void (async () => { try { - const worktreeResponse = await client.sendRequest('worktree.ps', { limit: 10000 }) + const worktreeReply = await worktreeCatalogRead.request(client, { limit: 10000 }) if (cancelled) { return } - if (worktreeResponse.ok) { - const result = (worktreeResponse as RpcSuccess).result as { worktrees: Worktree[] } + const catalog = worktreeCatalogRead.interpret(worktreeReply) + if (catalog.accepted) { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = catalog.value as { worktrees: Worktree[] } setWorktrees(result.worktrees) } } catch { diff --git a/mobile/src/files/MobileFileExplorerPanel.tsx b/mobile/src/files/MobileFileExplorerPanel.tsx index 7e67bf81b5f..619bfd5c4a2 100644 --- a/mobile/src/files/MobileFileExplorerPanel.tsx +++ b/mobile/src/files/MobileFileExplorerPanel.tsx @@ -19,7 +19,7 @@ import { type FileExplorerRow, type MobileDirEntry } from './file-tree' -import type { RpcSuccess } from '../transport/types' +import type { RpcFailure } from '../transport/types' import { colors } from '../theme/mobile-theme' import { beginDirectoryLoad, @@ -33,6 +33,7 @@ import { isMobileMethodUnavailableError, type LegacyFilesListResult } from './file-list-fallback' +import { fileDirectoryRead, legacyFileListRead } from './mobile-file-explorer-operations' import { fileExplorerStyles as styles } from './mobile-file-explorer-styles' import { MobileFileExplorerRow } from './mobile-file-explorer-row' import { navigateToMobileFilePreview } from './mobile-file-preview-navigation' @@ -107,22 +108,23 @@ export function MobileFileExplorerPanel(props: { })) try { - const response = await client.sendRequest('files.readDir', { + const response = await fileDirectoryRead.request(client, { worktree: `id:${worktreeId}`, relativePath }) - if (!response.ok) { + const directory = fileDirectoryRead.interpret(response) + if (!directory.accepted) { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: this policy skips only a refusal, so an unaccepted reply is a failure envelope. + const refusal = (response as RpcFailure).error // Why: desktops that predate the files.readDir mobile allowlist // entry still serve the capped files.list; fall back so the Files // tab keeps working until the desktop updates. - if ( - rootLoad && - isMobileMethodUnavailableError(response.error?.code, response.error?.message) - ) { - const legacy = await client.sendRequest('files.list', { + if (rootLoad && isMobileMethodUnavailableError(refusal?.code, refusal?.message)) { + const legacyReply = await legacyFileListRead.request(client, { worktree: `id:${worktreeId}` }) - if (legacy.ok) { + const legacy = legacyFileListRead.interpret(legacyReply) + if (legacy.accepted) { if ( !isCurrentDirectoryLoad( directoryLoadRevisionsRef.current, @@ -132,7 +134,8 @@ export function MobileFileExplorerPanel(props: { ) { return } - const legacyResult = (legacy as RpcSuccess).result as LegacyFilesListResult + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const legacyResult = legacy.value as LegacyFilesListResult setDirectoryCache(directoryCacheFromFileList(legacyResult.files)) // Why: the capped list silently omits files past the cap — keep // the legacy explorer's "Showing first 5000" note. @@ -140,17 +143,21 @@ export function MobileFileExplorerPanel(props: { return } throw new Error( - legacy.error?.message || response.error?.message || 'Unable to load files' + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: this policy skips only a refusal, so an unaccepted reply is a failure envelope. + (legacyReply as RpcFailure).error?.message || + refusal?.message || + 'Unable to load files' ) } - throw new Error(response.error?.message || 'Unable to load files') + throw new Error(refusal?.message || 'Unable to load files') } if ( !isCurrentDirectoryLoad(directoryLoadRevisionsRef.current, scopeRef.current, loadToken) ) { return } - const entries = (response as RpcSuccess).result as MobileDirEntry[] + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const entries = directory.value as MobileDirEntry[] if (rootLoad) { setLegacyListTruncated(false) } diff --git a/mobile/src/files/mobile-file-explorer-operations.ts b/mobile/src/files/mobile-file-explorer-operations.ts new file mode 100644 index 00000000000..d325fbea245 --- /dev/null +++ b/mobile/src/files/mobile-file-explorer-operations.ts @@ -0,0 +1,38 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +/** + * The Files tab's directory read and the capped list it falls back to. + * + * Both skip rather than throw, because neither refusal is an error the operation decides: the + * `files.readDir` refusal is what selects the fallback (a desktop predating the mobile allowlist + * answers `method_not_found`), and the `files.list` refusal supplies the message the screen shows. + * No acceptance policy exposes a refusal code, so the panel reads the envelope's own error the way + * `mobile-file-preview-operations.ts` does, and only these two consumers want one. + */ +export const fileDirectoryRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.read-directory-or-skip', + method: 'files.readDir', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('directory-entries') + }) +) + +/** + * The legacy capped list. A second reader on `files.list`: the native-chat inventory's + * `files.list-or-skip` reads the `files` member alone, and the explorer also needs `truncated` to + * keep the "Showing first 5000" note. Widening that one to a payload reader would split the + * `workspace-files` variant it shares with `files.searchPaths`, whose caller feeds both through one + * `extractPaths`, and only move the member read into that hook — so the explorer declares its own. + */ +export const legacyFileListRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'files.legacy-explorer-list-or-skip', + method: 'files.list', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('legacy-file-list') + }) +) diff --git a/mobile/src/home/mobile-home-host-operations.ts b/mobile/src/home/mobile-home-host-operations.ts index 9bd77db3710..d1251f96268 100644 --- a/mobile/src/home/mobile-home-host-operations.ts +++ b/mobile/src/home/mobile-home-host-operations.ts @@ -15,3 +15,18 @@ export const homeHostStatsRead = bindDeferredRpcOperation( read: rpcUncheckedPayloadReader('home-stats-summary') }) ) + +/** + * The Home card's per-host accounts snapshot. Decorative like the counts above: a refused list + * leaves the card on the snapshot it already holds, so refusal is a skip. The payload stays + * unchecked because `decodeAccountsSnapshot` is what validates it, at the call site. + */ +export const homeHostAccountsRead = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'accounts.home-snapshot-or-skip', + method: 'accounts.list', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('home-accounts-snapshot') + }) +) diff --git a/mobile/src/home/mobile-home-host-requests.ts b/mobile/src/home/mobile-home-host-requests.ts index 70ba1f93c20..6697d7e4962 100644 --- a/mobile/src/home/mobile-home-host-requests.ts +++ b/mobile/src/home/mobile-home-host-requests.ts @@ -8,8 +8,7 @@ import { type TaskProvider } from '../tasks/mobile-task-providers' import type { RpcClient } from '../transport/rpc-client' -import { sendSingleFlightRequest } from '../transport/request-single-flight' -import { homeHostStatsRead } from './mobile-home-host-operations' +import { homeHostAccountsRead, homeHostStatsRead } from './mobile-home-host-operations' type HomeTaskSettings = { visibleTaskProviders?: unknown @@ -62,10 +61,12 @@ export function fetchMobileHomeAccounts( setSnapshots: HomeAccountsSetter, disposed: () => boolean ): void { - sendSingleFlightRequest(client, hostId, 'accounts.list') - .then((response) => { - if (!disposed() && response.ok) { - const snapshot = decodeAccountsSnapshot(response.result) + homeHostAccountsRead + .requestSingleFlight(client, hostId) + .then((reply) => { + const accounts = homeHostAccountsRead.interpret(reply) + if (!disposed() && accounts.accepted) { + const snapshot = decodeAccountsSnapshot(accounts.value) setSnapshots((previous) => ({ ...previous, [hostId]: snapshot })) } }) diff --git a/mobile/src/notifications/mobile-push-delivery-test-operations.ts b/mobile/src/notifications/mobile-push-delivery-test-operations.ts new file mode 100644 index 00000000000..cc67ba83d27 --- /dev/null +++ b/mobile/src/notifications/mobile-push-delivery-test-operations.ts @@ -0,0 +1,20 @@ +import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' + +/** + * The settings screen's "send a test notification" probe. + * + * A skip rather than a throw, because the screen walks its connected desktops and a `forbidden` or + * `method_not_found` refusal means "try the next one" rather than "stop": the code decides that, so + * the refusal stays at the call site. Separate from the registration sends, which keep this + * device's push route current and have no screen to report on. + */ +export const pushDeliveryTest = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'notifications.test-push-or-skip', + method: 'notifications.testPush', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('push-test-result') + }) +) diff --git a/mobile/src/session/mobile-session-read-operations.ts b/mobile/src/session/mobile-session-read-operations.ts index cb3caa76fe0..cce92927180 100644 --- a/mobile/src/session/mobile-session-read-operations.ts +++ b/mobile/src/session/mobile-session-read-operations.ts @@ -28,12 +28,13 @@ export type MobileRuntimeRepoSummary = { id: string; connectionId?: string | nul const repoListReader = rpcUncheckedMemberReader('runtime-repo-list', 'repos') /** - * The repo list, read for one workspace's connection id. Call sites disagree about a refusal, so - * each of the two operations below declares its own policy over the same reader rather than - * sharing one, and every consumer joins whichever policy it already had. + * The repo list. Call sites disagree about a refusal, so each of the two operations below declares + * its own policy over the same reader rather than sharing one, and every consumer joins whichever + * policy it already had. * - * Throw-message: the new-tab agent loader has nothing to show without the list, and the terminal - * accessory's connection lookup raised the host's message the same way. + * Throw-message: the new-tab agent loader and the terminal accessory's connection lookup both + * resolve one workspace's connection id and raise the host's message without the list, and the + * tasks route keeps the whole list for its repo pickers. * * Skip: the native-chat readability probe answers "not readable" and lets the screen render, and * the new-workspace dialog's repo refresh leaves the list it already has. diff --git a/mobile/src/settings/notification-display-test.tsx b/mobile/src/settings/notification-display-test.tsx index f00c0af5625..c8f0f562e3d 100644 --- a/mobile/src/settings/notification-display-test.tsx +++ b/mobile/src/settings/notification-display-test.tsx @@ -2,6 +2,8 @@ import { useEffect, useRef, useState } from 'react' import { Pressable, StyleSheet, Text, View } from 'react-native' import { useAllHostClients } from '../transport/use-all-host-clients' import { loadHostCatalog } from '../transport/host-store' +import { pushDeliveryTest } from '../notifications/mobile-push-delivery-test-operations' +import type { RpcFailure } from '../transport/types' import type { MobilePushTestResult } from '../../../src/shared/mobile-push-contract' import { colors, spacing, typography } from '../theme/mobile-theme' @@ -33,18 +35,21 @@ export function NotificationDisplayTest({ onTroubleshoot }: { onTroubleshoot: () } let unavailable = 'Update your desktop to run this test.' for (const { client } of connected) { - const response = await client.sendRequest('notifications.testPush', null, { + const reply = await pushDeliveryTest.request(client, null, { timeoutMs: 20000, failWhenDisconnected: true }) - if (!response.ok) { - const code = response.error?.code + const delivered = pushDeliveryTest.interpret(reply) + if (!delivered.accepted) { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: this policy skips only a refusal, so an unaccepted reply is a failure envelope. + const code = (reply as RpcFailure).error?.code if (code === 'forbidden' || code === 'method_not_found') { continue } throw new Error('Could not reach the desktop. Try again.') } - const result = response.result as MobilePushTestResult + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + const result = delivered.value as MobilePushTestResult if (result?.accepted) { setMessage('Accepted by Orca’s push service. Check for the notification.') return diff --git a/mobile/src/tasks/mobile-task-runtime-operations.ts b/mobile/src/tasks/mobile-task-runtime-operations.ts index bf77d496df6..3bc2ecce48c 100644 --- a/mobile/src/tasks/mobile-task-runtime-operations.ts +++ b/mobile/src/tasks/mobile-task-runtime-operations.ts @@ -85,3 +85,22 @@ export const taskSettingsWrite = bindDeferredRpcOperation( read: rpcUncheckedPayloadReader('setting-written') }) ) + +/** + * Switching the connected Linear workspace from the filter sheet. + * + * Declared but never interpreted, and deliberately: the picker chains `loadLinearContext` off the + * send without reading the reply, so a refused switch reloads the context exactly as an accepted + * one does and only a transport rejection reaches the error copy. Interpreting here would make a + * refusal visible for the first time, which is a product change and not this one. See + * unvalidated-rpc-request-port-inventory.ts for the ticket. + */ +export const linearWorkspaceSelect = bindDeferredRpcOperation( + defineRpcOperation({ + name: 'linear.select-workspace-or-skip', + method: 'linear.selectWorkspace', + acceptance: 'success-result-or-skip', + barrier: 'after-caller-barrier', + read: rpcUncheckedPayloadReader('linear-workspace-selection') + }) +) diff --git a/mobile/src/tasks/mobile-tasks-filter-pickers.tsx b/mobile/src/tasks/mobile-tasks-filter-pickers.tsx index 78d406db9ac..ede5c505167 100644 --- a/mobile/src/tasks/mobile-tasks-filter-pickers.tsx +++ b/mobile/src/tasks/mobile-tasks-filter-pickers.tsx @@ -9,6 +9,7 @@ import { PickerModal, ActivityIndicator } from './mobile-tasks-dependencies' +import { linearWorkspaceSelect } from './mobile-task-runtime-operations' import { styles } from './mobile-tasks-legacy-styles' import { GITLAB_VIEW_OPTIONS, @@ -169,8 +170,8 @@ export function renderMobileTasksLinearWorkspacePicker(model: ConnectionPresenta setSelectedLinearWorkspaceId(workspaceId) setSelectedLinearTeamIds(new Set()) if (client) { - void client - .sendRequest('linear.selectWorkspace', { workspaceId }) + void linearWorkspaceSelect + .request(client, { workspaceId }) .then(() => loadLinearContext()) .catch((err) => { setError(err instanceof Error ? err.message : 'Failed to switch workspace') diff --git a/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts b/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts index d51c77f7222..f91b59e05a4 100644 --- a/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts +++ b/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts @@ -16,27 +16,29 @@ const hash = (parts: string[] | string): string => .update(Array.isArray(parts) ? parts.join('\n') : parts) .digest('hex') -// Bound provider requests change source signatures the same way bound workspace-creation and +// Bound requests change source signatures the same way bound provider, workspace-creation and // settings requests did: the method string and the envelope read leave the screen and an operation // name arrives. The behaviour they used to pin is pinned by the recordings in -// mobile/rpc-foundation/goldens instead, which did not move. Statement, declaration, render and -// style counts are unchanged, and `semantics` is a pure deletion — 148 lines out, none in: 70 -// `rpc:` call signatures, 75 method literals over 58 methods, and three duplicated discriminant -// comparisons that only existed because one `sendRequest` had to pick both a method and a matching -// params shape from the same `item.source.type` test. -const PROVIDER_RPC_SCREEN_HOOKS = '7af4478d440cd913770b8a2d5e96c33aaf956192d2a820787af0727a0f33c018' +// mobile/rpc-foundation/goldens instead, which did not move. +// +// The screen-holdout migration takes the last two sends out of this family — the filter sheet's +// linear.selectWorkspace and the screen-root hook's repo.list. Hook, statement, declaration, render +// and style counts are all unchanged, and `semantics` is a pure deletion of four lines, none in: +// two `rpc:` call signatures and the two method literals they carried. The render-token hash moves +// because the picker's handler now names an operation instead of the client. +const SCREEN_RPC_SCREEN_HOOKS = '1b455d87ed00a1e70a5b3cac0110272e818da9a0d245e9043fc9d2649587831f' const PRE_REFACTOR_DIFF_HOOKS = '93c7189b32bed8456cc51814fffa8ce80cf62011ef968a9d53ddec2b9686f58f' -const PROVIDER_RPC_STATEMENTS = '13cd2225760647eff19c027be26fa60100b3274b340e8c3b674b499d96d214a5' +const SCREEN_RPC_STATEMENTS = '67ea80f265e4a2e25b3d7e7d9b93664a150a27b93dcfbc39cbdd551de7b4a653' const MAIN_REBASED_DECLARATIONS = '6ad0397123e59fc1047a14049c86ff31d81723673a7a7f5c41677471aec58415' -const PROVIDER_RPC_SEMANTICS = '3d9fa237c5a2aa471004dd745cfb76ffe1600a351058e3d4ea08185421175301' +const SCREEN_RPC_SEMANTICS = '7e40c7efa07993071e57db0fe1d46099a56e3831033b512480dd195d7a1dc24c' const PRE_REFACTOR_STYLES = '1db6af69c791d9963928541ad5310942fcbda6d984b422c90b6eb92b6816579a' -const PRE_REFACTOR_RENDER_TREE = '2111145136b1e4fbca150d4792d735a90e992488e9934cfc1a8b8f3be981f39f' +const SCREEN_RPC_RENDER_TREE = '46d5a3ce9d71a8281a1e7b17411fb1dd963a4f392a5d095bc126b6a7cff4b92d' describe('Mobile Tasks refactor parity', () => { it('preserves recursively flattened hook and dependency order', () => { const screenHooks = readFlattenedMobileTasksHookSignatures('MobileTasksScreen') expect(screenHooks).toHaveLength(350) - expect(hash(screenHooks)).toBe(PROVIDER_RPC_SCREEN_HOOKS) + expect(hash(screenHooks)).toBe(SCREEN_RPC_SCREEN_HOOKS) const diffHooks = readFlattenedMobileTasksHookSignatures('GitHubPrFileDiff') expect(diffHooks).toHaveLength(3) @@ -46,7 +48,7 @@ describe('Mobile Tasks refactor parity', () => { it('preserves every screen statement in execution order', () => { const statements = readFlattenedMobileTasksCoreStatements() expect(statements).toHaveLength(417) - expect(hash(statements)).toBe(PROVIDER_RPC_STATEMENTS) + expect(hash(statements)).toBe(SCREEN_RPC_STATEMENTS) }) it('preserves every moved top-level declaration', () => { @@ -57,14 +59,14 @@ describe('Mobile Tasks refactor parity', () => { it('preserves RPC calls, runtime strings, and JSX host signatures', () => { const semantics = readMobileTasksSemanticSource() - expect(semantics.split('\n')).toHaveLength(3_304) - expect(hash(semantics)).toBe(PROVIDER_RPC_SEMANTICS) + expect(semantics.split('\n')).toHaveLength(3_300) + expect(hash(semantics)).toBe(SCREEN_RPC_SEMANTICS) }) it('preserves render expressions and event handlers in tree order', () => { const tokens = readFlattenedMobileTasksRenderTokens() expect(tokens).toHaveLength(35_195) - expect(hash(tokens)).toBe(PRE_REFACTOR_RENDER_TREE) + expect(hash(tokens)).toBe(SCREEN_RPC_RENDER_TREE) }) it('preserves every StyleSheet property and value', () => { diff --git a/mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx b/mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx index 7e692e2e1a9..e9b4caa564b 100644 --- a/mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx +++ b/mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx @@ -16,6 +16,7 @@ import { useSafeAreaInsets, useState } from './mobile-tasks-dependencies' +import { newTabRepoListRead } from '../session/mobile-session-read-operations' import { type ActionableTaskItem, DEFAULT_LINEAR_DISPLAY_PROPERTIES, @@ -40,8 +41,7 @@ import { type TaskResumeState, type TaskSort, type TasksSupportState, - getTaskPresetQuery, - isSuccess + getTaskPresetQuery } from './mobile-tasks-legacy-foundation' import { useMobileTasksItemState } from './use-mobile-tasks-item-state' @@ -60,11 +60,9 @@ export function useMobileTasksRouteAndItemState() { client, client && connState === 'connected' ? async () => { - const response = await client.sendRequest('repo.list') - if (!isSuccess(response)) { - throw new Error(response.error.message) - } - return (response.result as { repos: RepoSummary[] }).repos + const reply = await newTabRepoListRead.request(client) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + return newTabRepoListRead.interpret(reply) as RepoSummary[] } : null ) diff --git a/mobile/src/test-support/rpc-recording/adapters/agent-history-screen-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/agent-history-screen-mount-adapters.ts new file mode 100644 index 00000000000..1e80a793523 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/agent-history-screen-mount-adapters.ts @@ -0,0 +1,62 @@ +import { createElement, type Context } from 'react' +import { projectMountedScreen, screenMount } from '../mounted-screen-tree' +import { mountFixture } from '../recorder-fixture-shape' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { RpcClientContextValue } from '../../../transport/rpc-client-context-contract' + +const HOST = 'host-1' +const WORKTREE = 'wt-history' + +/** The panel reads its client through the shared context, whose handle is module-private. */ +export const agentHistoryScreenMountExposures: readonly OperationExposure[] = [ + ['client-context.tsx', '\nexports.recorderHostClientContext = Ctx;'] +] + +/** The agent history screen: the worktree list that seeds its scopes, then the session scan. */ +export function agentHistoryScreenMountAdapters( + modules: ReturnType +): Record { + return { + 'aiVault.history-screen': ({ client, effect }) => { + const Panel = modules.load< + typeof import('../../../agent-history/MobileAgentSessionHistoryPanel') + >( + 'mobile/src/agent-history/MobileAgentSessionHistoryPanel.tsx' + ).MobileAgentSessionHistoryPanel + const { recorderHostClientContext } = modules.load<{ + recorderHostClientContext: Context + }>('mobile/src/transport/client-context.tsx') + const context = mountFixture({ + acquire: () => client, + release: () => {}, + getKnownState: () => 'connected', + getClientId: () => 'client-1', + getAllClients: () => [{ hostId: HOST, client }], + subscribeHostState: () => () => {} + }) + const screen = screenMount( + () => + createElement( + recorderHostClientContext.Provider, + { value: context }, + createElement(Panel, { hostId: HOST, worktreeId: WORKTREE, name: 'orca-history' }) + ), + effect + ) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + throw new Error(`Unknown agent history screen action: ${name}`) + }, + state: () => projectMountedScreen(screen), + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/home-accounts-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/home-accounts-mount-adapters.ts new file mode 100644 index 00000000000..5c14685cb1b --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/home-accounts-mount-adapters.ts @@ -0,0 +1,47 @@ +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const HOST = 'host-1' + +/** + * The Home card's per-host accounts read. Its decoder is re-exported through `AccountUsage.tsx`, + * so this recording is also what proves that screen module loads under the mount loader. + */ +export function homeAccountsMountAdapters( + modules: ReturnType +): Record { + return { + 'home.host-accounts': (context) => { + const fetchAccounts = modules.load( + 'mobile/src/home/mobile-home-host-requests.ts' + ).fetchMobileHomeAccounts + let snapshots: Record = {} + let disposed = false + return { + action(name) { + if (name === 'unmount') { + disposed = true + return + } + if (name !== 'load') { + throw new Error(`Unknown home accounts action: ${name}`) + } + return fetchAccounts( + context.client, + HOST, + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the recorder observes the published map as data, not as a decoded snapshot. + ((update: (value: Record) => Record) => { + snapshots = update(snapshots) + context.effect('accounts', snapshots) + }) as Parameters[2], + () => disposed + ) + }, + state: () => ({ ...snapshots }), + dispose: () => { + disposed = true + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts index dfac0af8776..6f27713b1c3 100644 --- a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts +++ b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts @@ -3,6 +3,10 @@ import { agentHistoryMountAdapters, agentHistoryMountExposures } from './agent-history-mount-adapters' +import { + agentHistoryScreenMountAdapters, + agentHistoryScreenMountExposures +} from './agent-history-screen-mount-adapters' import { browserMountAdapters } from './browser-mount-adapters' import { clipboardImageMountAdapters } from './clipboard-image-mount-adapters' import { codexResetCreditMountAdapters } from './codex-reset-credit-mount-adapters' @@ -17,11 +21,16 @@ import { fileInventoryMountAdapters } from './file-inventory-mount-adapters' import { fileTapOpenMountAdapters } from './file-tap-open-mount-adapters' import { fileRequestMountAdapters } from './file-request-mount-adapters' import { githubPrMountAdapters } from './github-pr-mount-adapters' +import { homeAccountsMountAdapters } from './home-accounts-mount-adapters' import { hostScreenMountAdapters } from './host-screen-mount-adapters' import { hostWorktreeActionMountAdapters } from './host-worktree-action-mount-adapters' import { hostedReviewMountAdapters } from './hosted-review-mount-adapters' import { nativeChatWriteMountAdapters } from './native-chat-write-mount-adapters' import { newTabAgentMountAdapters } from './new-tab-agent-mount-adapters' +import { + notificationTestScreenMountAdapters, + notificationTestScreenMountExposures +} from './notification-test-screen-mount-adapters' import { newWorkspaceMountAdapters } from './new-workspace-mount-adapters' import { newWorkspaceRepositoryMountAdapters } from './new-workspace-repository-mount-adapters' import { pairingJournalMountAdapters } from './pairing-journal-mount-adapters' @@ -44,6 +53,7 @@ import { taskItemConversationMountAdapters } from './task-item-conversation-moun import { taskItemDetailMountAdapters } from './task-item-detail-mount-adapters' import { taskItemHostedMetadataMountAdapters } from './task-item-hosted-metadata-mount-adapters' import { taskItemMetadataMountAdapters } from './task-item-metadata-mount-adapters' +import { tasksLinearWorkspaceMountAdapters } from './tasks-linear-workspace-mount-adapters' import { taskListMountAdapters } from './task-list-mount-adapters' import { taskMountAdapters } from './task-mount-adapters' import { taskProjectBoardLoadMountAdapters } from './task-project-board-load-mount-adapters' @@ -51,6 +61,10 @@ import { taskProjectRowCommentMountAdapters } from './task-project-row-comment-m import { taskProjectRowFieldMountAdapters } from './task-project-row-field-mount-adapters' import { taskProjectRowMergeMountAdapters } from './task-project-row-merge-mount-adapters' import { taskProjectRowReadMountAdapters } from './task-project-row-read-mount-adapters' +import { + tasksRouteScreenMountAdapters, + tasksRouteScreenMountExposures +} from './tasks-route-screen-mount-adapters' import { taskWorkspaceHookMountAdapters } from './task-workspace-hook-mount-adapters' import { taskWorkspaceSenderMountAdapters } from './task-workspace-sender-mount-adapters' import { terminalMountAdapters } from './terminal-mount-adapters' @@ -70,6 +84,11 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ mounts: agentHistoryMountAdapters, exposes: agentHistoryMountExposures }, + { + source: 'agent-history-screen-mount-adapters.ts', + mounts: agentHistoryScreenMountAdapters, + exposes: agentHistoryScreenMountExposures + }, { source: 'ai-vault-resume-mount-adapters.ts', mounts: aiVaultResumeMountAdapters }, { source: 'browser-mount-adapters.ts', mounts: browserMountAdapters }, { source: 'clipboard-image-mount-adapters.ts', mounts: clipboardImageMountAdapters }, @@ -86,6 +105,7 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ { source: 'file-tap-open-mount-adapters.ts', mounts: fileTapOpenMountAdapters }, { source: 'file-request-mount-adapters.ts', mounts: fileRequestMountAdapters }, { source: 'github-pr-mount-adapters.ts', mounts: githubPrMountAdapters }, + { source: 'home-accounts-mount-adapters.ts', mounts: homeAccountsMountAdapters }, { source: 'host-screen-mount-adapters.ts', mounts: hostScreenMountAdapters }, { source: 'host-worktree-action-mount-adapters.ts', @@ -99,6 +119,11 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ source: 'new-workspace-repository-mount-adapters.ts', mounts: newWorkspaceRepositoryMountAdapters }, + { + source: 'notification-test-screen-mount-adapters.ts', + mounts: notificationTestScreenMountAdapters, + exposes: notificationTestScreenMountExposures + }, { source: 'pairing-journal-mount-adapters.ts', mounts: pairingJournalMountAdapters }, { source: 'push-dismissal-mount-adapters.ts', mounts: pushDismissalMountAdapters }, { @@ -140,6 +165,10 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ }, { source: 'task-item-metadata-mount-adapters.ts', mounts: taskItemMetadataMountAdapters }, { source: 'task-list-mount-adapters.ts', mounts: taskListMountAdapters }, + { + source: 'tasks-linear-workspace-mount-adapters.ts', + mounts: tasksLinearWorkspaceMountAdapters + }, { source: 'task-mount-adapters.ts', mounts: taskMountAdapters }, { source: 'task-project-board-load-mount-adapters.ts', @@ -152,6 +181,11 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ { source: 'task-project-row-field-mount-adapters.ts', mounts: taskProjectRowFieldMountAdapters }, { source: 'task-project-row-merge-mount-adapters.ts', mounts: taskProjectRowMergeMountAdapters }, { source: 'task-project-row-read-mount-adapters.ts', mounts: taskProjectRowReadMountAdapters }, + { + source: 'tasks-route-screen-mount-adapters.ts', + mounts: tasksRouteScreenMountAdapters, + exposes: tasksRouteScreenMountExposures + }, { source: 'task-workspace-hook-mount-adapters.ts', mounts: taskWorkspaceHookMountAdapters }, { source: 'task-workspace-sender-mount-adapters.ts', mounts: taskWorkspaceSenderMountAdapters }, { source: 'terminal-mount-adapters.ts', mounts: terminalMountAdapters }, diff --git a/mobile/src/test-support/rpc-recording/adapters/notification-test-screen-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/notification-test-screen-mount-adapters.ts new file mode 100644 index 00000000000..135007a99a5 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/notification-test-screen-mount-adapters.ts @@ -0,0 +1,81 @@ +import { createElement, type Context } from 'react' +import { performHookAction } from '../hook-mount' +import { projectMountedScreen, renderedElementProps, screenMount } from '../mounted-screen-tree' +import { mountFixture } from '../recorder-fixture-shape' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { RpcClientContextValue } from '../../../transport/rpc-client-context-contract' + +const HOST = 'host-1' + +/** + * `useAllHostClients` reads the shared context through the module-private handle in + * `client-context.tsx`, so exposing it mounts the real acquire/release cycle over a scripted client. + */ +export const notificationTestScreenMountExposures: readonly OperationExposure[] = [ + ['client-context.tsx', '\nexports.recorderHostClientContext = Ctx;'] +] + +/** The settings push probe: one `notifications.testPush` per connected desktop. */ +export function notificationTestScreenMountAdapters( + modules: ReturnType +): Record { + return { + 'notifications.display-test-screen': ({ client, effect }) => { + const Probe = modules.load( + 'mobile/src/settings/notification-display-test.tsx' + ).NotificationDisplayTest + const { recorderHostClientContext } = modules.load<{ + recorderHostClientContext: Context + }>('mobile/src/transport/client-context.tsx') + const context = mountFixture({ + acquire: () => client, + release: () => {}, + closeIfUnused: () => {}, + releaseAndCloseIfUnused: () => {}, + getState: () => 'connected', + getActivePath: () => 'lan', + getPendingPath: () => null, + isPairingRejected: () => false, + isHostSignedOut: () => false, + getAllClients: () => [{ hostId: HOST, client }], + subscribeHostState: () => () => {}, + subscribeAllHosts: () => () => {} + }) + const screen = screenMount( + () => + createElement( + recorderHostClientContext.Provider, + { value: context }, + createElement(Probe, { onTroubleshoot: () => effect('screen.troubleshoot', {}) }) + ), + effect + ) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + if (name === 'send-test') { + // An inert Pressable never fires, so the scripted press is the adapter reading back the + // handler the screen rendered and calling it. + const button = renderedElementProps(screen.tree(), 'Pressable').find( + (props) => props.accessibilityRole === 'button' + ) + const press = button?.onPress + if (typeof press !== 'function') { + throw new Error('The probe rendered no send button to press') + } + return performHookAction(() => press()) + } + throw new Error(`Unknown notification test action: ${name}`) + }, + state: () => projectMountedScreen(screen), + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/tasks-linear-workspace-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/tasks-linear-workspace-mount-adapters.ts new file mode 100644 index 00000000000..ca2c91116e4 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/tasks-linear-workspace-mount-adapters.ts @@ -0,0 +1,81 @@ +import { isValidElement } from 'react' +import { performHookAction } from '../hook-mount' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { ConnectionPresentationModel } from '../../../tasks/use-mobile-tasks-connection-presentation' + +/** + * Switching the Linear workspace from the tasks filter sheet. + * + * `renderMobileTasksLinearWorkspacePicker` is a render helper the surface calls as a function, not + * a component, so the element it returns is the whole of its output and `onSelect` on that element + * is the same closure the picker would invoke on a press. It is read off the element rather than + * off a mounted tree because the picker draws inside `BottomDrawer`, whose reanimated timing driver + * and gesture builder the recorder would have to impersonate to make a row exist — and the workspace + * a press carries comes from the scenario either way. + */ +export function tasksLinearWorkspaceMountAdapters( + modules: ReturnType +): Record { + return { + 'linear.select-workspace-picker': ({ client, effect }) => { + const renderPicker = modules.load< + typeof import('../../../tasks/mobile-tasks-filter-pickers') + >('mobile/src/tasks/mobile-tasks-filter-pickers.tsx').renderMobileTasksLinearWorkspacePicker + let selectedWorkspaceId: ConnectionPresentationModel['selectedLinearWorkspaceId'] = + 'workspace-a' + let teamCount = 2 + let error = '' + let contextLoads = 0 + const model = (): ConnectionPresentationModel => + mountFixture({ + client, + linearWorkspaceOptions: [ + { value: 'workspace-a', label: 'Acme' }, + { value: 'workspace-b', label: 'Beta' } + ], + loadLinearContext: () => { + contextLoads++ + effect('linear.context-reloaded', { contextLoads }) + return Promise.resolve() + }, + selectedLinearWorkspaceId: selectedWorkspaceId, + setError: (next) => { + error = typeof next === 'function' ? next(error) : next + }, + setSelectedLinearTeamIds: (next) => { + teamCount = (typeof next === 'function' ? next(new Set()) : next).size + }, + setSelectedLinearWorkspaceId: (next) => { + selectedWorkspaceId = typeof next === 'function' ? next(selectedWorkspaceId) : next + }, + setShowLinearWorkspacePicker: () => {}, + showLinearWorkspacePicker: true, + taskUiReady: true + }) + return { + action(name, args) { + if (name !== 'select-workspace') { + throw new Error(`Unknown linear workspace action: ${name}`) + } + const element = renderPicker(model()) + if (!isValidElement<{ onSelect?: unknown }>(element)) { + throw new Error('The workspace picker rendered no element') + } + const select = element.props.onSelect + if (typeof select !== 'function') { + throw new Error('The workspace picker carries no onSelect') + } + const workspace = args.workspace + if (typeof workspace !== 'string') { + throw new Error('A workspace selection names the workspace it picks') + } + return performHookAction(() => select(workspace)) + }, + state: () => ({ selectedWorkspaceId, teamCount, error, contextLoads }), + dispose: () => {} + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/tasks-route-screen-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/tasks-route-screen-mount-adapters.ts new file mode 100644 index 00000000000..4e485d8c1d8 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/tasks-route-screen-mount-adapters.ts @@ -0,0 +1,99 @@ +import { createElement, type Context } from 'react' +import { screenMount } from '../mounted-screen-tree' +import { performHookAction } from '../hook-mount' +import { mountFixture } from '../recorder-fixture-shape' +import type { OperationExposure, operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { RpcClientContextValue } from '../../../transport/rpc-client-context-contract' + +const HOST = 'host-1' + +/** The screen-root hook reads its client through the context handle `client-context.tsx` keeps. */ +export const tasksRouteScreenMountExposures: readonly OperationExposure[] = [ + ['client-context.tsx', '\nexports.recorderHostClientContext = Ctx;'] +] + +/** The tasks screen root: the repo list its pickers and its create form are hydrated from. */ +export function tasksRouteScreenMountAdapters( + modules: ReturnType +): Record { + return { + 'tasks.route-repo-list': ({ client, effect }) => { + const useRoute = modules.load< + typeof import('../../../tasks/use-mobile-tasks-route-and-item-state') + >( + 'mobile/src/tasks/use-mobile-tasks-route-and-item-state.tsx' + ).useMobileTasksRouteAndItemState + const { recorderHostClientContext } = modules.load<{ + recorderHostClientContext: Context + }>('mobile/src/transport/client-context.tsx') + const context = mountFixture({ + acquire: () => client, + release: () => {}, + getKnownState: () => 'connected', + getClientId: () => 'client-1', + getReconnectAttempt: () => 0, + getLastConnectedAt: () => 0, + getAllClients: () => [{ hostId: HOST, client }], + subscribeHostState: () => () => {}, + getState: () => 'connected', + getActivePath: () => 'lan', + getPendingPath: () => null, + isPairingRejected: () => false, + isHostSignedOut: () => false + }) + // A holder rather than a binding: Harness is a component, so it cannot assign an outer name. + const observed: { model?: ReturnType } = {} + function Harness(): null { + observed.model = useRoute() + return null + } + const screen = screenMount( + () => + createElement( + recorderHostClientContext.Provider, + { value: context }, + createElement(Harness) + ), + effect + ) + const model = (): ReturnType => { + const found = observed.model + if (!found) { + throw new Error('The tasks route hook is not mounted') + } + return found + } + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + if (name === 'ensure-repos') { + return performHookAction(() => model().repoListEnsureLoaded()) + } + throw new Error(`Unknown tasks route action: ${name}`) + }, + state: () => { + const crash = screen.crash() + if (crash !== null) { + return { crash } + } + const repos = model().repos + return { + crash, + // A reply whose result carries no `repos` array is published as it arrived, so the + // projection records what the screen holds rather than assuming a list. + repos: Array.isArray(repos) ? repos.map((repo) => repo?.id) : repos, + repoListStatus: model().repoList.state.status, + repoListError: model().repoList.state.error + } + }, + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts index 50f5dbc5d1a..15dfc9bbc32 100644 --- a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts +++ b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts @@ -62,6 +62,36 @@ export const OPERATION_MUTATIONS = { return response }),` }, + // Decodes the reply envelope instead of the accepted snapshot, so the Home card publishes nothing + // where a host answered. + 'home-accounts-envelope': { + file: 'mobile-home-host-requests.ts', + before: 'const snapshot = decodeAccountsSnapshot(accounts.value)', + after: 'const snapshot = decodeAccountsSnapshot(reply)' + }, + // Reads the push test result one level above the envelope, so an accepted test reports failure. + 'push-test-envelope': { + file: 'notification-display-test.tsx', + before: 'const result = delivered.value as MobilePushTestResult', + after: 'const result = reply as unknown as MobilePushTestResult' + }, + // Publishes the repo reply's payload instead of the member the reader took off it. + 'task-screen-repo-envelope': { + file: 'use-mobile-tasks-route-and-item-state.tsx', + before: 'return newTabRepoListRead.interpret(reply) as RepoSummary[]', + after: 'return (reply as { result?: unknown }).result as RepoSummary[]' + }, + // Drops the context reload the workspace switch chains off its send, so the sheet keeps showing + // the previous workspace's teams after the host accepted the change. + 'linear-workspace-context-reload': { + file: 'mobile-tasks-filter-pickers.tsx', + before: ` void linearWorkspaceSelect + .request(client, { workspaceId }) + .then(() => loadLinearContext())`, + after: ` void linearWorkspaceSelect + .request(client, { workspaceId }) + .then(() => undefined)` + }, // Reads the overrides one level above the settings envelope. 'bot-overrides-envelope': { file: 'settings-read-operations.ts', diff --git a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts index 158f15e2be8..b9f66c59885 100644 --- a/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts +++ b/mobile/src/test-support/rpc-recording/mutants/pilot-mutants.test.ts @@ -17,6 +17,13 @@ const input = readScenarios( ) const goldens = process.env.RPC_FOUNDATION_GOLDENS ?? resolve(root, 'mobile/rpc-foundation/goldens') // One mutant per adapter family, so every family's state projection is shown to be load-bearing. +// `aiVault.history-screen` carries none: every change to what `worktree.ps` publishes also moves +// the `scopePaths` the next scripted completion asserts, so a mutant aborts the sequence instead of +// diverging from it. Do not read that family's reply matrix as an accepted-vs-refused oracle +// either: the screen paints the same spinner, labels and zero rows either way, so `normal`'s +// projected state is identical to all seven non-crashing partitions. What holds the family is the +// next request's `scopePaths` (`["/repo/feature"]` when the rows are read, `[]` when they are not) +// and the crash channel the three `inner-*` partitions land in. const mutants: Record = { b1: 'race', b2: 'acceptance', @@ -30,6 +37,10 @@ const mutants: Record = { 'settings-workspace-submit-fulfilled': 'workspace-submit-envelope', 'settings-task-workspace-fulfilled': 'task-workspace-envelope', 'native-chat-write-delivery-unknown': 'native-chat-send-delivery-unknown', + 'home-host-accounts': 'home-accounts-envelope', + 'notifications-display-test-accepted': 'push-test-envelope', + 'tasks-route-repo-list': 'task-screen-repo-envelope', + 'linear-select-workspace': 'linear-workspace-context-reload', 'terminal-input-send-refused': 'terminal-send-refusal-restores-draft', 'terminal-worktree-connection-resolved': 'worktree-connection-first-repo' } diff --git a/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts index 1a518be95d5..0fb6d49ac4c 100644 --- a/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts +++ b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts @@ -22,12 +22,18 @@ export function screenNativeSubstitutes(): Map { return new Map([ [ 'react-native-safe-area-context', - partialNativeModule('react-native-safe-area-context', inertNativeElements(['SafeAreaView'])) + partialNativeModule('react-native-safe-area-context', { + ...inertNativeElements(['SafeAreaView']), + useSafeAreaInsets: () => SAFE_AREA_INSETS + }) ], [ 'expo-router', // One router per recording, so a screen that closes over it keeps a stable callback. - partialNativeModule('expo-router', { useRouter: constantRouter }) + partialNativeModule('expo-router', { + useRouter: constantRouter, + useLocalSearchParams: constantRoute + }) ], ['lucide-react-native', inertIconModule()] ]) @@ -38,6 +44,20 @@ function constantRouter(): typeof ROUTER { return ROUTER } +/** + * The route one recording runs on, pinned for the same reason the window size is: a screen's own + * address is not a device reading, and for a route screen it is what the props are for a panel an + * adapter mounts directly. It shapes no recorded parameter — the one screen that reads it sends + * `repo.list`, which takes none (`tasks.route-repo-list`). + */ +const ROUTE = { hostId: 'host-1' } +function constantRoute(): typeof ROUTE { + return ROUTE +} + +/** A phone's insets, fixed the way the window size is. Nothing here is measured. */ +const SAFE_AREA_INSETS = { top: 47, right: 0, bottom: 34, left: 0 } + const ABSOLUTE_FILL = { position: 'absolute', left: 0, right: 0, top: 0, bottom: 0 } /** The same merge the real `flatten` does, and pure, so a screen reading one style sees it. */ @@ -51,7 +71,16 @@ function flattenStyle(style: unknown): unknown { /** The react-native primitives and module members a mounted screen reads. */ export function reactNativeScreenMembers(): Record { return { - ...inertNativeElements(['ActivityIndicator', 'FlatList', 'Pressable', 'Text', 'View']), + ...inertNativeElements([ + 'ActivityIndicator', + 'FlatList', + 'Pressable', + 'RefreshControl', + 'SectionList', + 'Text', + 'TextInput', + 'View' + ]), StyleSheet: { create: (sheet: unknown) => sheet, flatten: flattenStyle, diff --git a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts index 236dde30676..90f62db5880 100644 --- a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts +++ b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts @@ -52,17 +52,27 @@ export const UNVALIDATED_RPC_REQUEST_PORT_OWNERS: readonly UnvalidatedRpcRequest /** Call sites awaiting migration to a typed operation. Grouped by the feature area that owns them. */ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcRequestPortEntry[] = [ // app/h/[hostId]/ — Expo route screens + // Holdout behind two gates. The first is the mount: the screen reads + // `expo-router.useFocusEffect` and `react-native.ScrollView`, neither is a substituted member, so + // the trap refuses before any effect runs. Substituting exactly those two clears it and exposes + // the second gate — the mount effect that opens `accounts.subscribe`, which the request-only + // runner refuses, leaving `status.get` as the only send and taking the tree with it. So the + // refresh control and the account rows carrying `accounts.list` and the three `accounts.select*` + // methods never exist to be driven. Subscriptions are a later step, and the two members are left + // out here because the engine gains `useFocusEffect` on its own track. { file: 'app/h/[hostId]/accounts.tsx', references: 2 }, // app/ — Expo route screens + // Holdout: not the screen. It renders to completion under inert reanimated and gesture-handler + // substitutes, and then sends nothing: its host list comes from `loadHosts()`, which joins a + // device token held in the keychain through expo-secure-store. A scenario can declare the async + // store and the notification tray, not a credential, so `loadHosts()` answers with an empty list + // and the screen has no client. `notifications.testPush` migrated because its screen reads + // `loadHostCatalog()`, which keeps a credential-less entry. Line ~193 also reads `ms` off the + // reply envelope instead of off its result, so the value is always undefined; that is a product + // defect with its own fix and re-record, not something this migration may quietly repair. { file: 'app/terminal-settings.tsx', references: 3 }, - // src/agent-history/ — agent history loads. The history scan and its resume metadata migrated in - // step 4; see mobile-agent-history-operations.ts. - // Holdout: the last reach is a worktree.ps inside the screen component's own effect, which no - // recording can mount without a fabricated react-native view tree. - { file: 'src/agent-history/MobileAgentSessionHistoryPanel.tsx', references: 1 }, - // src/components/ — shared widgets that fetch their own data. Nothing is left here: the New // Workspace drawer's execution target, setup hook, runtime context and Codex capability probe // migrated in step 4, and the last two followed once a scenario could declare the device store @@ -71,23 +81,15 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // in tasks/mobile-workspace-source-operations.ts, and the repo.list readers the dialog now shares // in session/mobile-session-read-operations.ts. - // src/files/ — file read, write and preview. The preview loader, the terminal-artifact grant - // refresh and save, the session file tab and the mutation-ownership capture migrated in step 4: - // see mobile-file-preview-operations.ts, mobile-file-tab-doc-operations.ts and - // mobile-file-ownership-operations.ts. The explorer panel's two sends sit inline in a React - // Native screen, which the recorder cannot mount and so cannot record. - { file: 'src/files/MobileFileExplorerPanel.tsx', references: 2 }, - - // src/home/ — home screen host reads. The stats card and both task-provider probes migrated in - // step 4 (mobile-home-host-operations.ts, plus the shared task-tooling reads in - // tasks/mobile-task-runtime-operations.ts). The accounts read stays: its decoder is re-exported - // through a React Native screen module, which no recording can load. - { file: 'src/home/mobile-home-host-requests.ts', references: 2 }, - // src/host-screen/ — host screen catalog and actions. The repo and label metadata reads, the // desktop view-settings mirror and the list's pin, remove and activate mutations migrated in - // step 4; see host-screen-operations.ts. What is left sends from inside a React Native screen, - // which the recorder cannot mount. + // step 4; see host-screen-operations.ts. + // Holdout: the last `worktree.sleep` is an `onPress` this file builds for `ActionSheetContent`, + // which renders only inside an open `BottomDrawer`. Nothing gates those children — the drawer + // mounts on `visible || mounted` and `MountedBottomDrawer` renders them unconditionally inside + // its `Modal`. The block is that module's imports: reanimated and gesture-handler, neither of + // which has a substitute, so reaching this send means standing in for both engines rather than + // pinning a device input. { file: 'src/host-screen/host-screen-overlays.tsx', references: 1 }, // src/notifications/ — push registration and delivery. Registration and unregistration migrated @@ -134,9 +136,6 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // terminal subscription, which is a later step. { file: 'src/session/use-mobile-session-terminal-stream-display.ts', references: 1 }, - // src/settings/ — notification display probe - { file: 'src/settings/notification-display-test.tsx', references: 1 }, - // src/source-control/ — one dynamic dispatcher left; the other 13 files migrated in step 4. // Its single reference multiplexes git.commit, git.status, git.upstreamStatus, git.fetch, // git.pull, git.push and every `{ method, params }` action step five other hooks hand it, so @@ -149,23 +148,16 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // references across 22 files to zero. See mobile-task-item-detail-operations.ts, // mobile-task-list-operations.ts, mobile-task-item-comment-operations.ts, // mobile-task-item-state-operations.ts and mobile-task-project-board-operations.ts, alongside - // the workspace-creation modules. Three files cannot reach zero, and none of them for the - // reason the previous note gave — both `{ method, params }` sites turned out to be local - // two-literal ternaries over the item type, and both migrated: + // the workspace-creation modules. + // One is left, and it is not a call site: // // - mobile-tasks-source-family.test-support.ts matches the literal `'sendRequest'` in a // source scanner rather than sending anything. - // - mobile-tasks-filter-pickers.tsx sends linear.selectWorkspace from an `onSelect` prop of - // a native PickerModal. Migrating it needs a recorded wire, and the recorder cannot mount - // a module that renders react-native views. - // - use-mobile-tasks-route-and-item-state.tsx reads repo.list from a closure inside the - // screen-root hook, which calls useLocalSearchParams, useRouter, useHostClient and - // useSafeAreaInsets. The recorder has no substitute for any of them. // - // All three need new recorder capability, not another scenario. - { file: 'src/tasks/mobile-tasks-filter-pickers.tsx', references: 1 }, + // The other two migrated on screen mounting: the filter sheet's linear.selectWorkspace is driven + // through the render helper's own element, and the screen-root hook's repo.list through the hook + // mounted over substitutes for its route and its insets. { file: 'src/tasks/mobile-tasks-source-family.test-support.ts', references: 1 }, - { file: 'src/tasks/use-mobile-tasks-route-and-item-state.tsx', references: 1 }, // src/transport/ — what is left of pairing, probing and capability reads after step 4. The // protocol gate, the retrying capability probe, the candidate race, credential rotation, the diff --git a/mobile/src/worktree/worktree-catalog-operations.ts b/mobile/src/worktree/worktree-catalog-operations.ts index 067f5ef3773..6f7f32d82a1 100644 --- a/mobile/src/worktree/worktree-catalog-operations.ts +++ b/mobile/src/worktree/worktree-catalog-operations.ts @@ -1,13 +1,14 @@ import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' -// The two workspace-catalog reads, both best-effort: a refused catalog leaves the last proven -// counts and the last confirmed rows in place rather than rendering a host as empty (STA-3123). +// Both reads here are best-effort: a refused catalog leaves the last proven counts and the last +// confirmed rows in place rather than rendering a host as empty (STA-3123). /** - * worktree.ps. One family for both readers — the Home card's summary and the host screen's - * snapshot poll — because they ask the same question with the same acceptance. The payload stays - * unchecked: the snapshot client admits an `unchanged` envelope the card never sees. + * worktree.ps. One family for all three readers — the Home card's summary, the host screen's + * snapshot poll and the agent-history panel's `scopePaths` seed — because they ask the same + * question with the same acceptance. The payload stays unchecked: the snapshot client admits an + * `unchanged` envelope the card never sees. */ export const worktreeCatalogRead = bindDeferredRpcOperation( defineRpcOperation({ From d4c19d5db4b3663f00331604d70bd4fa57a70020 Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:42:58 -0400 Subject: [PATCH 07/28] test(mobile): let the RPC recorder open a subscription and script its frames (step 6 capability) (#20920) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(mobile): let the RPC recorder open a subscription and script its frames The request-only runner threw on `client.subscribe`, which is why seven raw-port holdouts read "the recording runner refuses to open one". It no longer does. `ScriptedRpcTransport` drops the real `RpcClientStreamRegistry` into each physical session, the way it already reuses `RpcClientRequestTracker` for requests, so subscribe params, frame routing and the unsubscribe wire all come from product code. Per session, not shared: a frame is routed by the session that published its subscribe, and after a cutover the retiring registry is what holds a cancelled subscribe long enough to unsubscribe it once its id arrives. A subscribe writes to `payloads` through the same hook a request does, named by per-method occurrence, and frame ids come from the transport's existing counter because the real `DirectRpcClient` shares one counter across requests and streams. New scenario step kind `frame`: it names a subscribe payload, asserts its params the way `complete` does, and hands a whole host response to the real `handleResponse`, so `ready`, a data event, the host's end-of-stream pair and a refusal are one step kind rather than four. Every `payloads` entry now carries `sent`, the request count at write time, the same stamp `effects` already use. Without it, swapping `client.subscribe` and the first `sendRequest` in a product source moves zero bytes: a subscribe publishes synchronously while a request waits for connected, so the payload order is identical either way and only `sent` moves. The reply matrix now drives frames as sites, named by payload and occurrence because one subscribe carries many frames. Nine of the eleven partitions apply; the two transport rejections are what a request promise fails with and a subscription holds none. Success shapes keep the scripted frame's `streaming` flag, which is what routes a response to the open stream. `useFocusEffect` is substituted as `useEffect`, so a route's focus cleanup is recorded at unmount and a blur-triggered unsubscribe stays unrecorded; the README says so rather than a driven focus substitute no recording reads. Four tests, each killing a named mutation: routing a frame through the current session instead of the publisher, delivering a frame to the request tracker, dropping the `sent` stamp, and reading only `'complete' in step`. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): record the two runtime client-event stream consumers Two families, both driven through the new frame step, as the capability proof for the subscription recorder. `session.live-worktree-name` mounts `use-live-worktree-name.ts` end to end: subscribe, `worktree.show`, a `ready` frame, the fulfilled name, a `worktreesChanged` frame, the follow-up `worktree.show`, then unmount and the `runtime.clientEvents.unsubscribe` its focus cleanup sends. `worktree.host-refresh` mounts `startHostWorktreeRefresh`, whose whole output is when it calls the two fetches it is handed. It sends no request of its own, so it is also the family that would have thrown `No scripted reply to drive a matrix over` before a frame was a matrix site. The 3 s foreground poll is driven by an `advance` step, which puts `WORKTREE_REFRESH_MS` under recorded time. Both adapters live in one new module, registered like every other domain, so the two families' goldens are pinned to a file that holds only them. No product source changes and no call site migrated: the seven raw-port holdouts and the `client.subscribe` zero-reference assertion belong to the migration PRs. `accounts.subscribe` in `use-mobile-home-host-connections.ts` is left out. Its snapshot decoder is re-exported through a React Native screen module the loader cannot reach, which is the same wall the accounts read has always been behind, so it needs a substitute beyond what these two read. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record every golden for the subscription recorder Engine files changed, so `recorderSha256` moves and every header re-digests, and `payloads` entries carry a new `sent` key. Nothing recorded moved. Recorded from a detached worktree at the pinned baseline with this branch's recorder laid over it, per the README's awkward case; `baseline` is unchanged. Decoding both sides through the value pool and ignoring `recorderSha256` and the new `sent` key: 641 compared, 6 header-only (the six goldens with no payload at all), 635 sent-only, 0 other, 9 added, 0 deleted. The 9 added are the two new families: a pilot golden each, four reply-matrix sites for the live title (two requests and two frames) and three for the host refresher (three frames, and no request of its own). Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): take the broad object parameter out of the frame partitions `audit:anti-slop`'s no-object-parameters rule fires on a parameter typed `object`, which the frame-partition helper took to spread a success envelope. One function narrowing `unknown` to a spreadable envelope replaces the two that split the check, and the streaming flag is now read as `=== true` rather than by key presence, matching `isStreamingOpenerReply`. An engine edit moves `recorderSha256`, so every golden re-digests again. Decoded through the value pool, all 650 differ on that header alone and on nothing else. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): refresh the recorder's own scenario and golden counts The paragraph still claimed 78 scenarios and 153 goldens over 210 tests, which went stale across the domain additions since. It is 330 scenarios, 650 goldens and 757 tests as of this branch. The figures quoted further down are measurements of the change each one describes, so they stay as written; a line now says so. Prose is excluded from `recorderSha256`, so this moves no golden. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): take the inert optional off a frame, and pin the replay re-read Review of #20920 found four things the first pass got wrong. The `optional` flag on a frame step never gated anything: the registry routes every streaming response to the id that opened the stream, retired or not, so `frame()` only ever throws for a non-streaming reply. Dropping the parameter, the step field and the downstream marking moves the scenario digest of two matrix goldens and no recorded byte. The session comment claimed a mechanism that is not there. The re-send after a cutover comes from the logical client's own subscription replay, not from the registry being per-session; a shared registry is byte-identical. What being per-session buys is a frame routed through the session that published its subscribe, which is what `DirectRpcClient` does too. The host-refresh scenario now cuts over and answers a second `ready`, so the reconnect replay branch is recorded: deleting its re-read moves this family. Before, that branch was source no golden reached. README over-claimed the subscribe port as covered. Nine product call sites subscribe, two are recorded, and the other seven are now named with what stops each. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record for the frame flag removal and the replay cutover 644 goldens move on `recorderSha256` alone, from the engine edit. Two more also move `scenarioSha256`: the live-worktree-name matrix variants that used to carry `optional: true` on a downstream frame. Four bodies move, all in `host-worktree-refresh` — the pilot and its three matrix goldens now record the cutover, the re-subscribe payload, the retiring unsubscribe and the extra worktree/repo read the replay branch does. One golden is added, for the matrix site the second subscribe payload opens. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): count the golden the second subscribe payload adds Prose only; moves no golden. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): pin the live-worktree-name replay re-read too The same cutover treatment as host-refresh: the scenario now migrates the logical client, answers a second `ready` on the re-sent subscribe, and answers the title read the replay branch makes. Before this, deleting that re-read from `use-live-worktree-name.ts` moved no golden. No engine file changes, so `recorderSha256` holds and 646 goldens are byte-identical. Five bodies move with their scenario digest, all in this family, and two matrix goldens are added for the sites the second subscribe payload and the third title read open. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): say what a request count cannot order, and name the accounts wall `sent` counts requests, so it orders payloads and effects against sends and not against each other. A family that sends none has no ordering at all: `host-worktree-refresh` keeps `sent` at 0 through every checkpoint, and moving its two initial reads across the subscribe moves no golden. The fix is one write ordinal shared by all three lists, which forces a full refresh. The `accounts.subscribe` wall was misdiagnosed. The loader reaches `decodeAccountsSnapshot` and it throws its own domain error; what the runner cannot supply is the multi-host client context `useAllHostClients` reads. Also honest about the record recipe: where a branch must not repin `baseline`, the detached-pin worktree is the only one that runs, merged main or not. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): file only a subscribe as an open stream, and drop three unused seams The registry sends its unsubscribes through the same `sendEncrypted` hook as its subscribes, and the hook filed every payload under `openStreams`. A frame aimed at an unsubscribe name therefore routed at that wire id, matched no stream, recorded nothing and reported success — where the README promises `Missing subscription payload`. A latch around the session's `subscribe` wrapper files only what a subscribe published. Its test fails without the latch. Three seams no caller varies, the same shape as the `optional` flag: `frameReplyPartitions` took a `scripted` reply to copy `streaming` from, but every frame site scripts a streaming reply, so the flag is stamped and a non-streaming unary closer as a base frame is called unsupported; the divergence map's three-deep ternary is early returns, since `index > divergence` already implies `index !== divergence`; and `MatrixSite` is no longer exported. Body-inert: re-recording into a scratch dir at this tree moves all 653 goldens on `recorderSha256` and nothing else, decoded through the value pool. The goldens are left stale for the merge re-record. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record every golden after the main merge One record at the pin, with this branch's recorder, scenarios and driver script overlaid on a fresh detached worktree. Decoded through the value pool against `origin/main`: 667 shared goldens, 6 header-only on `recorderSha256`, 661 also gaining the `sent` stamp this branch puts on every payload entry, nothing else moved, and 12 added — the two client-event families and their matrices. No `adapterSha256` moved, so main's adapter work was already recorded against its own goldens. Those 12 are byte-identical to their pre-merge bodies, `recorderSha256` aside, so the merge changed nothing this branch recorded. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- .../aivault-history-scan-fulfilled.json | 18 +- .../aivault-history-scan-unsupported.json | 13 +- .../aivault-history-scan-worktrees-late.json | 29 +- .../aivault-history-screen-listed.json | 42 +- .../aivault-history-screen-worktrees.json | 40 +- .../aivault-resume-launch-create-refused.json | 13 +- .../aivault-resume-launch-invalid-tab.json | 13 +- .../goldens/aivault-resume-launch-locked.json | 22 +- .../goldens/aivault-resume-launch-sent.json | 22 +- .../aivault-resume-prepare-refused.json | 13 +- .../goldens/aivault-resume-prepare-repin.json | 9 +- .../aivault-resume-prepare-skipped.json | 2 +- .../aivault-resume-prepare-unavailable.json | 9 +- mobile/rpc-foundation/goldens/b1.json | 44 +- mobile/rpc-foundation/goldens/b2.json | 11 +- mobile/rpc-foundation/goldens/b3.json | 26 +- .../goldens/browser-dialog-accepted.json | 13 +- .../goldens/browser-dialog-dismissed.json | 13 +- .../goldens/browser-keyboard-input.json | 18 +- .../browser-pointer-click-accepted.json | 9 +- .../browser-pointer-click-fallback.json | 34 +- .../goldens/browser-wheel-scrolled.json | 22 +- .../clipboard-image-attachment-anonymous.json | 34 +- ...-image-attachment-blocked-before-send.json | 29 +- .../clipboard-image-attachment-cancelled.json | 2 +- .../clipboard-image-attachment-pasted.json | 36 +- ...board-image-attachment-upload-refused.json | 13 +- ...-image-upload-aborts-on-chunk-failure.json | 27 +- .../clipboard-image-upload-chunked.json | 27 +- ...rd-image-upload-single-frame-fallback.json | 22 +- .../clipboard-image-upload-start-refused.json | 13 +- .../goldens/codex-reset-credit-consumed.json | 15 +- .../goldens/codex-reset-credit-resumed.json | 15 +- .../goldens/components-codex-capability.json | 13 +- .../goldens/components-setup-ask.json | 15 +- .../goldens/components-target-local.json | 11 +- .../goldens/components-target-ssh.json | 38 +- .../goldens/diff-review-branch-compare.json | 66 +- .../goldens/diff-review-branch-file-diff.json | 15 +- ...f-review-notes-refused-before-compare.json | 57 +- .../diff-review-refused-file-diff.json | 31 +- .../goldens/diff-review-snapshot.json | 57 +- .../diff-review-status-unavailable.json | 9 +- .../diff-review-worktree-file-diff.json | 33 +- .../goldens/file-tap-open-refused.json | 22 +- .../goldens/file-tap-opens-worktree-file.json | 24 +- .../file-tap-previews-absolute-artifact.json | 9 +- .../goldens/file-tap-resolve-miss.json | 13 +- .../goldens/file-tap-resolve-refused.json | 13 +- .../files-explorer-legacy-fallback.json | 20 +- .../goldens/files-explorer-readdir.json | 11 +- .../goldens/files-ownership-local.json | 22 +- .../goldens/files-ownership-ssh.json | 31 +- .../files-preview-artifact-direct.json | 9 +- .../goldens/files-preview-artifact-image.json | 9 +- .../goldens/files-preview-grant-refresh.json | 29 +- .../goldens/files-preview-worktree-image.json | 9 +- .../goldens/files-preview-worktree.json | 9 +- .../goldens/files-save-blind.json | 13 +- .../goldens/files-save-verified.json | 20 +- .../goldens/files-tab-doc-shapes.json | 27 +- .../goldens/home-host-accounts.json | 15 +- .../goldens/home-host-stats.json | 15 +- .../goldens/host-view-settings-sync.json | 24 +- ...host-worktree-actions-pin-open-delete.json | 33 +- .../goldens/host-worktree-delete-refused.json | 15 +- .../goldens/host-worktree-refresh-stream.json | 258 +++ .../interruptions-inventory-lifecycle.json | 32 +- ...ions-settings-bot-overrides-fulfilled.json | 21 +- .../goldens/inventory-lifecycle.json | 20 +- .../goldens/inventory-repeat-query.json | 31 +- .../rpc-foundation/goldens/lifecycle-b3.json | 106 +- .../lifecycle-inventory-lifecycle.json | 76 +- ...ycle-settings-bot-overrides-fulfilled.json | 50 +- ...cle-settings-task-hydration-fulfilled.json | 322 ++-- ...-settings-workspace-context-fulfilled.json | 266 +-- .../goldens/linear-select-workspace.json | 15 +- .../goldens/live-worktree-name-stream.json | 335 ++++ ...d-launch-agentsession.createsupport-1.json | 29 +- ...ivault.history-aivault.listsessions-1.json | 42 +- ...ivault.history-screen-platform-status.json | 60 +- ...x-aivault.history-screen-status.get-2.json | 60 +- ...-aivault.history-screen-worktree.ps-1.json | 71 +- .../matrix-aivault.history-status.get-1.json | 38 +- ...-launch-session.tabs.createterminal-1.json | 42 +- ...aivault.resume-launch-terminal.send-1.json | 42 +- ...ration-aivault.preparesessionresume-1.json | 33 +- ...browser.dialog-browser.dialogaccept-1.json | 33 +- ...keyboard-browser.keyboardinserttext-1.json | 38 +- ...x-browser.keyboard-browser.keypress-1.json | 38 +- ...er.pointer-click-browser.mouseclick-1.json | 56 +- ...ser.pointer-click-browser.mousedown-1.json | 54 +- ...ser.pointer-click-browser.mousemove-1.json | 54 +- ...owser.pointer-click-browser.mouseup-1.json | 54 +- ...rix-browser.wheel-browser.mousemove-1.json | 42 +- ...ix-browser.wheel-browser.mousewheel-1.json | 42 +- ...tachment-clipboard.startimageupload-1.json | 58 +- ...pload-clipboard.saveimageastempfile-1.json | 42 +- ...e-upload-clipboard.startimageupload-1.json | 58 +- ...s.codex-reset-capability-status.get-1.json | 33 +- ...it-accounts.consumecodexresetcredit-1.json | 35 +- ...target-local-preflight.detectagents-1.json | 31 +- ...target-preflight.detectremoteagents-1.json | 60 +- ...onents.execution-target-ssh.connect-1.json | 60 +- ...nents.execution-target-ssh.getstate-1.json | 74 +- ...ew-workspace-repositories-repo.list-1.json | 35 +- ...-components.setup-script-repo.hooks-1.json | 35 +- ...ix-files.explorer-screen-files.list-1.json | 44 +- ...files.explorer-screen-files.readdir-1.json | 44 +- ...les.mutation-ownership-ssh.getstate-1.json | 51 +- ...files.mutation-ownership-status.get-1.json | 53 +- ...es.mutation-ownership-worktree.show-1.json | 53 +- ...iew-load-files.readterminalartifact-1.json | 35 +- ...iew-load-files.readterminalartifact-2.json | 51 +- ...view-load-files.resolveterminalpath-1.json | 51 +- ...iew-save-files.readterminalartifact-1.json | 40 +- ...ew-save-files.writeterminalartifact-1.json | 40 +- .../matrix-files.tab-doc-files.read-1.json | 51 +- ...rix-files.tab-doc-files.readpreview-1.json | 51 +- .../matrix-files.tab-doc-git.diff-1.json | 51 +- ...-files.terminal-path-tap-files.open-1.json | 64 +- ...-path-tap-files.resolveterminalpath-1.json | 64 +- ....base-ref-chain-repo.baserefdefault-1.json | 55 +- ...matrix-git.base-ref-chain-repo.list-1.json | 75 +- ...ix-git.base-ref-chain-worktree.show-1.json | 75 +- ...essage-ai-git.generatecommitmessage-1.json | 35 +- ...matrix-git.history-read-git.history-1.json | 35 +- ...ix-git.remote-prerequisite-git.push-1.json | 31 +- ...x-git.review-preparation-git.status-1.json | 35 +- ...ent-mutation-github.addissuecomment-1.json | 225 +-- ...tion-github.addprreviewcommentreply-1.json | 245 +-- ...ub.project.deleteissuecommentbyslug-1.json | 161 +- ...ub.project.updateissuecommentbyslug-1.json | 181 +- ...mutation-github.resolvereviewthread-1.json | 205 +-- ...x-github.pr-mutation-github.mergepr-1.json | 384 +++-- ...r-mutation-github.removeprreviewers-1.json | 302 ++-- ...-mutation-github.requestprreviewers-1.json | 322 ++-- ...ub.pr-mutation-github.rerunprchecks-1.json | 202 +-- ...b.pr-mutation-github.setprautomerge-1.json | 364 ++-- ...ub.pr-mutation-github.updateprstate-1.json | 342 ++-- ....pr-read-github.listassignableusers-1.json | 243 +-- ...ithub.pr-read-github.prcheckdetails-1.json | 363 ++-- ...trix-github.pr-read-github.prchecks-1.json | 465 ++--- ...x-github.pr-read-github.prforbranch-1.json | 503 +++--- ...trix-github.pr-read-github.reposlug-1.json | 545 +++--- ...thub.pr-read-github.workitemdetails-1.json | 485 +++--- ...thub.pr-read-hostedreview.forbranch-1.json | 525 +++--- ...title-mutation-github.updateprtitle-1.json | 33 +- ...ix-home.host-accounts-accounts.list-1.json | 35 +- ...atrix-home.host-stats-stats.summary-1.json | 35 +- ...sh-runtime.clientevents.subscribe-1-1.json | 1172 +++++++++++++ ...sh-runtime.clientevents.subscribe-1-2.json | 1056 ++++++++++++ ...sh-runtime.clientevents.subscribe-1-3.json | 901 ++++++++++ ...sh-runtime.clientevents.subscribe-2-1.json | 607 +++++++ .../matrix-host.view-settings-ui.get-1.json | 44 +- .../matrix-host.view-settings-ui.set-1.json | 44 +- ....worktree-actions-worktree.activate-1.json | 73 +- ...x-host.worktree-actions-worktree.rm-1.json | 55 +- ...-host.worktree-actions-worktree.set-1.json | 75 +- ...-hostedreview.create-chain-git.push-1.json | 93 +- ...ew.create-chain-hostedreview.create-1.json | 73 +- ...tedreview.create-chain-worktree.set-1.json | 53 +- ...dreview.create-intent-git.bulkstage-1.json | 692 ++++---- ...stedreview.create-intent-git.commit-1.json | 596 +++---- ...te-intent-git.generatecommitmessage-1.json | 292 ++-- ...hostedreview.create-intent-git.push-1.json | 582 ++++--- ...stedreview.create-intent-git.status-1.json | 355 ++-- ...stedreview.create-intent-git.status-2.json | 312 ++-- ...stedreview.create-intent-git.status-3.json | 672 ++++---- ...stedreview.create-intent-git.status-4.json | 554 +++--- ...w.create-intent-hostedreview.create-1.json | 416 ++--- ...hostedreview.getcreationeligibility-1.json | 612 +++---- ...hostedreview.getcreationeligibility-2.json | 594 +++---- ...edreview.create-intent-worktree.set-1.json | 430 ++--- ...hostedreview.getcreationeligibility-1.json | 35 +- ...-legacy-inventory-files.searchpaths-1.json | 136 +- ...-legacy-inventory-files.searchpaths-2.json | 111 +- ...trix-legacy-inventory-fresh-inventory.json | 64 +- ...matrix-legacy-inventory-old-inventory.json | 104 +- ...near-detail-barrier-linear.getissue-1.json | 66 +- ...detail-barrier-linear.issuecomments-1.json | 46 +- ...space-picker-linear.selectworkspace-1.json | 35 +- ...me-runtime.clientevents.subscribe-1-1.json | 988 +++++++++++ ...me-runtime.clientevents.subscribe-1-2.json | 866 ++++++++++ ...me-runtime.clientevents.subscribe-2-1.json | 647 +++++++ ...ix-live-worktree-name-worktree.show-1.json | 1522 +++++++++++++++++ ...ix-live-worktree-name-worktree.show-2.json | 1402 +++++++++++++++ ...ix-live-worktree-name-worktree.show-3.json | 1092 ++++++++++++ ...ativechat.image-paste-terminal.send-1.json | 40 +- ...ativechat.image-paste-terminal.send-2.json | 40 +- ...e-upload-clipboard.startimageupload-1.json | 58 +- ...ings.mutatenativechatsessionoptions-1.json | 33 +- ...chestration.workerterminaluserinput-1.json | 42 +- ...vechat.terminal-write-terminal.send-1.json | 42 +- ...-test-screen-notifications.testpush-1.json | 35 +- ...missal-notifications.getmissedsince-1.json | 35 +- ...stration-notifications.registerpush-1.json | 38 +- ...ration-notifications.unregisterpush-1.json | 38 +- ...rix-pairing.pre-profile-direct-status.json | 60 +- ...ng.pre-profile-pairing.getendpoints-1.json | 60 +- ....pre-profile-pairing.provisionrelay-1.json | 60 +- ...trix-pairing.pre-profile-relay-status.json | 60 +- ...se-github.project.updateissuebyslug-1.json | 37 +- ...ntial-rotation-pairing.getendpoints-1.json | 51 +- ...ntial-rotation-pairing.getendpoints-2.json | 51 +- ...ial-rotation-pairing.provisionrelay-1.json | 51 +- ...direct-upgrade-pairing.getendpoints-1.json | 49 +- ...direct-upgrade-pairing.getendpoints-2.json | 49 +- ...rect-upgrade-pairing.provisionrelay-1.json | 49 +- ...iring-recovery-pairing.getendpoints-1.json | 62 +- ...ion.content-create-files.createfile-1.json | 60 +- ...x-session.content-create-files.open-1.json | 60 +- ...x-session.content-create-status.get-1.json | 60 +- ...ession.content-create-worktree.show-1.json | 60 +- ...ix-session.diff-notes-worktree.show-1.json | 33 +- ...on.diff-review-actions-worktree.set-1.json | 33 +- ...rix-session.diff-review-base-ref-show.json | 157 +- ...ssion.diff-review-git.branchcompare-1.json | 157 +- ...trix-session.diff-review-git.status-1.json | 77 +- ...atrix-session.diff-review-repo.list-1.json | 157 +- ...atrix-session.diff-review-review-show.json | 157 +- ...sion.markdown-save-markdown.savetab-1.json | 33 +- ...n.native-chat-readability-repo.list-1.json | 29 +- ...chestration.workerterminaluserinput-1.json | 69 +- ...sion.native-chat-stop-terminal.send-1.json | 83 +- ...sion.native-chat-stop-terminal.send-2.json | 45 +- ...pr-branch-context-git.branchcompare-1.json | 60 +- ...ession.pr-branch-context-git.status-1.json | 56 +- ...session.pr-branch-context-repo.list-1.json | 56 +- ...ion.pr-branch-context-worktree.show-1.json | 56 +- ...-triage-session.tabs.createterminal-1.json | 44 +- ...rix-session.pr-triage-terminal.send-1.json | 44 +- ...ab-activation-session.tabs.activate-1.json | 38 +- ...ssion.tab-activation-terminal.focus-1.json | 42 +- ...ix-session.tab-close-terminal.close-1.json | 33 +- ...sion.tab-documents-markdown.readtab-1.json | 29 +- ...on.tab-reveal-session.tabs.activate-1.json | 42 +- ...ession.tab-reveal-session.tabs.list-1.json | 62 +- ...abs-stream-health-session.tabs.list-1.json | 33 +- ...chestration.workerterminaluserinput-1.json | 42 +- ...n.terminal-input-send-terminal.send-1.json | 40 +- ...on.terminal-inventory-terminal.list-1.json | 33 +- ...chestration.workerterminaluserinput-1.json | 53 +- ...session.terminal-paste-settings.get-1.json | 69 +- ...ession.terminal-paste-terminal.send-1.json | 51 +- ...ssion.worktree-connection-repo.list-1.json | 40 +- ...on.worktree-connection-settings.get-1.json | 40 +- ...t-read-preflight.detectremoteagents-1.json | 53 +- ...atrix-settings-agent-read-repo.list-1.json | 53 +- ...ix-settings-agent-read-settings.get-1.json | 49 +- ...ettings-best-effort-settings.update-1.json | 35 +- ...settings.bot-overrides-settings.get-1.json | 35 +- ...ttings.home-providers-linear.status-1.json | 53 +- ...ings.home-providers-preflight.check-1.json | 53 +- ...ettings.home-providers-settings.get-1.json | 53 +- ...s-settings.getterminalquickcommands-1.json | 38 +- ...ettings.updateterminalquickcommands-1.json | 42 +- ...ettings.repo-metadata-host.platform-1.json | 60 +- ...ix-settings.repo-metadata-repo.list-1.json | 80 +- ...settings.repo-metadata-settings.get-1.json | 60 +- ...po-metadata-ssh.listtargetsummaries-1.json | 78 +- ...esume-metadata-folderworkspace.list-1.json | 261 +-- ...s.resume-metadata-projectgroup.list-1.json | 261 +-- ...-settings.resume-metadata-repo.list-1.json | 263 +-- ...ttings.resume-metadata-settings.get-1.json | 163 +- ...ettings.resume-metadata-worktree.ps-1.json | 161 +- ...ttings.task-hydration-linear.status-1.json | 167 +- ...ings.task-hydration-preflight.check-1.json | 167 +- ...ettings.task-hydration-settings.get-1.json | 167 +- ...-settings.task-hydration-status.get-1.json | 107 +- ...trix-settings.task-hydration-ui.get-1.json | 167 +- ....task-workspace-create-settings.get-1.json | 46 +- ...sk-workspace-create-worktree.create-1.json | 46 +- ...ettings.task-workspace-settings.get-1.json | 37 +- ...ngs.workspace-context-linear.status-1.json | 60 +- ...s.workspace-context-preflight.check-1.json | 58 +- ...ings.workspace-context-settings.get-1.json | 60 +- ...x-settings.workspace-context-ui.get-1.json | 60 +- ...tings.workspace-submit-settings.get-1.json | 52 +- ...tation-chunk-speech.dictation.chunk-1.json | 33 +- ...ion-session-speech.dictation.finish-1.json | 51 +- ...tion-session-speech.dictation.start-1.json | 51 +- ...ation-start-speech.dictation.cancel-1.json | 42 +- ...tation-start-speech.dictation.start-1.json | 42 +- ....setup-sheet-speech.dictation.setup-1.json | 56 +- ...ch.setup-sheet-speech.models.delete-1.json | 56 +- ....setup-sheet-speech.models.download-1.json | 56 +- ...eech.setup-sheet-speech.models.list-1.json | 56 +- ...cks-files-github.addprreviewcomment-1.json | 171 +- ...-checks-files-github.prfilecontents-1.json | 183 +- ...m-checks-files-github.rerunprchecks-1.json | 245 +-- ...ks-files-github.resolvereviewthread-1.json | 203 +-- ...checks-files-github.setprfileviewed-1.json | 221 +-- ...mment-github-github.addissuecomment-1.json | 33 +- ...mment-gitlab-gitlab.addissuecomment-1.json | 33 +- ...mment-gitlab-mr-gitlab.addmrcomment-1.json | 33 +- ...etail-github-github.workitemdetails-1.json | 33 +- ...etail-gitlab-gitlab.workitemdetails-1.json | 33 +- ....item-detail-linear-linear.getissue-1.json | 42 +- ...-detail-linear-linear.issuecomments-1.json | 42 +- ...metadata-github.listassignableusers-1.json | 42 +- ...m-detail-metadata-github.listlabels-1.json | 42 +- ...ks.item-merge-gitlab-gitlab.mergemr-1.json | 33 +- ...tem-metadata-github-github.updatepr-1.json | 33 +- ...-metadata-gitlab-gitlab.updateissue-1.json | 33 +- ...-metadata-gitlab-mr-gitlab.updatemr-1.json | 33 +- ...-reply-merge-github.addissuecomment-1.json | 108 +- ...erge-github.addprreviewcommentreply-1.json | 126 +- ...sks.item-reply-merge-github.mergepr-1.json | 88 +- ...item-reply-merge-linear.updateissue-1.json | 68 +- ....item-review-github-github.prchecks-1.json | 46 +- ...ew-github-github.requestprreviewers-1.json | 64 +- ...em-status-gitlab-github.updateissue-1.json | 42 +- ...em-status-gitlab-gitlab.updateissue-1.json | 64 +- ...atus-gitlab-mr-gitlab.updatemrstate-1.json | 33 +- ...tasks.linear-connect-linear.connect-1.json | 33 +- ....linear-item-linear.addissuecomment-1.json | 95 +- ...asks.linear-item-linear.createissue-1.json | 57 +- ...x-tasks.linear-item-linear.getissue-1.json | 77 +- ...inear-team-context-linear.listteams-1.json | 64 +- ...near-team-context-linear.teamstates-1.json | 44 +- ...-tasks.paste-lookup-github.reposlug-1.json | 121 +- ...-tasks.paste-lookup-github.workitem-1.json | 126 +- ...e-lookup-github.workitembyownerrepo-1.json | 106 +- ....paste-lookup-gitlab.workitembypath-1.json | 86 +- ...-load-github.project.listaccessible-1.json | 221 +-- ...board-load-github.project.listviews-1.json | 201 +-- ...board-load-github.project.listviews-2.json | 173 +- ...oard-load-github.project.resolveref-1.json | 83 +- ...board-load-github.project.viewtable-1.json | 183 +- ....project-repo-slugs-github.reposlug-1.json | 33 +- ...ithub.project.addissuecommentbyslug-1.json | 77 +- ...ue-github.project.updateissuebyslug-1.json | 95 +- ...ub.project.updateissuecommentbyslug-1.json | 57 +- ...hub.project.updatepullrequestbyslug-1.json | 33 +- ...ithub.project.workitemdetailsbyslug-1.json | 33 +- ...ields-github.project.clearitemfield-1.json | 77 +- ...ithub.project.updateissuetypebyslug-1.json | 57 +- ...elds-github.project.updateitemfield-1.json | 95 +- ...les-merge-github.addprreviewcomment-1.json | 225 +-- ...ject-row-files-merge-github.mergepr-1.json | 205 +-- ...w-files-merge-github.prfilecontents-1.json | 245 +-- ...-row-files-merge-github.updateissue-1.json | 185 +- ...ow-files-merge-github.updateprstate-1.json | 173 +- ...b.project.listassignableusersbyslug-1.json | 49 +- ...github.project.listissuetypesbyslug-1.json | 49 +- ...oad-github.project.listlabelsbyslug-1.json | 47 +- ...t-row-review-checks-github.prchecks-1.json | 104 +- ...ew-checks-github.requestprreviewers-1.json | 126 +- ...-review-checks-github.rerunprchecks-1.json | 86 +- ...eview-checks-github.setprfileviewed-1.json | 68 +- ...-row-threads-github.addissuecomment-1.json | 64 +- ...eads-github.addprreviewcommentreply-1.json | 84 +- ...ub.project.deleteissuecommentbyslug-1.json | 122 +- ...-threads-github.resolvereviewthread-1.json | 104 +- ...provider-load-github.countworkitems-1.json | 161 +- ....provider-load-github.listworkitems-1.json | 181 +- ...asks.provider-load-linear.listteams-1.json | 221 +-- ...x-tasks.provider-load-linear.status-1.json | 168 +- ...tasks.provider-load-settings.update-1.json | 201 +-- ...rix-tasks.route-repo-list-repo.list-1.json | 35 +- ...-source-search-github.listworkitems-1.json | 245 +-- ...-source-search-gitlab.listworkitems-1.json | 225 +-- ...art-source-search-linear.listissues-1.json | 165 +- ...t-source-search-linear.searchissues-1.json | 201 +-- ...smart-source-search-repo.searchrefs-1.json | 185 +- ...sk-create-github-github.createissue-1.json | 64 +- ...asks.task-create-github-repo.update-1.json | 46 +- ...sk-create-gitlab-gitlab.createissue-1.json | 33 +- ...sk-create-linear-linear.createissue-1.json | 33 +- ...t-gitlab-items-gitlab.listworkitems-1.json | 33 +- ...task-list-gitlab-todos-gitlab.todos-1.json | 33 +- ....task-list-linear-linear.listissues-1.json | 86 +- ...ask-list-linear-linear.searchissues-1.json | 48 +- ...ks.workspace-source-repo.searchrefs-1.json | 44 +- ...workspace-source-repo.sparsepresets-1.json | 64 +- ...kspace-sparse-repo.savesparsepreset-1.json | 46 +- ...tasks.workspace-sparse-ssh.getstate-1.json | 64 +- ...ce-ssh-local-preflight.detectagents-1.json | 33 +- ...ce-ssh-preflight.detectremoteagents-1.json | 95 +- ...trix-tasks.workspace-ssh-repo.hooks-1.json | 55 +- ...rix-tasks.workspace-ssh-ssh.connect-1.json | 77 +- ...-terminal.query-reply-terminal.send-1.json | 33 +- ...chestration.workerterminaluserinput-1.json | 42 +- ...ix-terminal.raw-input-terminal.send-1.json | 42 +- ...chestration.workerterminaluserinput-1.json | 42 +- ...chestration.workerterminaluserinput-2.json | 38 +- ...wport-refit-terminal.updateviewport-1.json | 33 +- ...ansport.capability-probe-status.get-1.json | 33 +- ...nsport.host-status-gates-status.get-1.json | 33 +- ...-transport.pairing-race-direct-status.json | 38 +- ...x-transport.pairing-race-relay-status.json | 42 +- ...rktree.catalog-snapshot-worktree.ps-1.json | 35 +- ...rktree.create-retry-worktree.create-1.json | 33 +- ...x-worktree.home-catalog-worktree.ps-1.json | 35 +- ....hosted-base-worktree.resolvemrbase-1.json | 40 +- ....hosted-base-worktree.resolveprbase-1.json | 60 +- ...red-names-worktree.listretirednames-1.json | 35 +- ...x-worktree.review-link-worktree.set-1.json | 35 +- ...ree.runtime-capabilities-status.get-1.json | 33 +- ...ix-worktree.setup-hook-trust-ui.set-1.json | 33 +- .../native-chat-image-paste-single.json | 18 +- ...e-chat-image-paste-stops-on-rejection.json | 18 +- ...ative-chat-image-paste-trailing-image.json | 20 +- .../native-chat-image-paste-two-images.json | 29 +- .../native-chat-image-upload-cancelled.json | 2 +- ...native-chat-image-upload-second-fails.json | 36 +- .../native-chat-image-upload-single.json | 27 +- ...ative-chat-image-upload-start-refused.json | 13 +- .../goldens/native-chat-image-upload-two.json | 64 +- .../native-chat-readability-local-repo.json | 9 +- .../native-chat-readability-refused.json | 13 +- .../native-chat-readability-remote-repo.json | 9 +- ...native-chat-session-option-pick-empty.json | 2 +- ...tive-chat-session-option-pick-refused.json | 9 +- ...tive-chat-session-option-pick-written.json | 13 +- .../goldens/native-chat-stop-accepted.json | 25 +- .../native-chat-stop-both-rejected.json | 18 +- .../native-chat-stop-delivery-unknown.json | 18 +- .../goldens/native-chat-write-accepted.json | 22 +- .../goldens/native-chat-write-clear-line.json | 13 +- .../native-chat-write-delivery-unknown.json | 13 +- .../goldens/native-chat-write-rejected.json | 13 +- .../native-chat-write-typed-command.json | 57 +- .../new-workspace-repositories-fulfilled.json | 11 +- .../notifications-display-test-accepted.json | 15 +- .../notifications-push-gateway-rejected.json | 9 +- .../notifications-push-registered.json | 18 +- ...re-profile-direct-wins-and-provisions.json | 40 +- ...ovision-unsupported-saves-direct-host.json | 29 +- .../pairing-pre-profile-times-out.json | 20 +- .../goldens/pr-branch-identity.json | 34 +- .../goldens/pr-branch-repo-context.json | 9 +- .../goldens/pr-comment-mutation.json | 61 +- .../pr-comment-resolve-unconfirmed.json | 24 +- .../goldens/pr-mutation-in-band-failure.json | 42 +- .../goldens/pr-mutation-status.json | 82 +- .../goldens/pr-read-fork-routing.json | 31 +- .../goldens/pr-read-surface.json | 103 +- .../goldens/pr-read-upstream-error.json | 31 +- .../goldens/pr-title-mutation.json | 9 +- .../goldens/pr-title-unconfirmed.json | 20 +- .../goldens/pr-triage-invalid-terminal.json | 13 +- .../goldens/pr-triage-launch.json | 24 +- .../goldens/pr-triage-send-locked.json | 22 +- .../goldens/probe-new-tab-both-refused.json | 27 +- .../probe-new-tab-null-sibling-refused.json | 27 +- ...probe-new-tab-refused-sibling-rejects.json | 29 +- ...probe-new-tab-rejects-sibling-refused.json | 27 +- .../push-dismissal-tray-reconciled.json | 15 +- .../goldens/quick-commands-load-refused.json | 13 +- .../quick-commands-loaded-and-saved.json | 18 +- ...uick-commands-save-refused-rolls-back.json | 18 +- .../goldens/relay-direct-upgrade-commits.json | 29 +- ...ect-upgrade-unsupported-host-declines.json | 13 +- ...ay-pairing-recovery-invite-authorizes.json | 34 +- ...lay-pairing-recovery-resume-committed.json | 13 +- .../relay-rotation-installs-and-commits.json | 31 +- ...ay-rotation-resumes-committed-pending.json | 13 +- .../review-create-terminal-refused.json | 13 +- .../review-mark-reviewed-persists.json | 13 +- .../review-mark-reviewed-rolls-back.json | 13 +- .../goldens/review-open-in-session.json | 13 +- .../review-send-notes-heals-stale-input.json | 18 +- .../goldens/review-stage-file.json | 13 +- .../goldens/review-stage-refused.json | 13 +- .../goldens/sc-base-ref-default.json | 35 +- .../goldens/sc-base-ref-repo-fallback.json | 20 +- .../goldens/sc-base-ref-unavailable.json | 27 +- .../goldens/sc-base-ref-worktree-hit.json | 22 +- .../sc-commit-message-cancel-rejected.json | 9 +- .../goldens/sc-commit-message-canceled.json | 16 +- .../goldens/sc-commit-message-generated.json | 15 +- .../goldens/sc-create-existing-review.json | 18 +- ...reate-intent-stage-commit-push-create.json | 190 +- .../sc-create-link-failure-is-non-fatal.json | 18 +- .../sc-create-pushes-then-creates.json | 33 +- .../sc-create-refused-empty-message.json | 13 +- .../sc-create-rejected-empty-message.json | 13 +- .../goldens/sc-eligibility-fetched.json | 15 +- .../goldens/sc-history-loaded.json | 15 +- .../goldens/sc-pr-link-hosted-review.json | 18 +- .../goldens/sc-pr-link-read.json | 20 +- .../goldens/sc-pr-link-set.json | 11 +- .../sc-prefill-unavailable-on-refusal.json | 13 +- .../sc-prefill-unavailable-on-rejection.json | 13 +- .../sc-prerequisite-force-with-lease.json | 9 +- .../goldens/sc-prerequisite-publish.json | 13 +- .../goldens/sc-prerequisite-push.json | 11 +- .../goldens/sc-prerequisite-skipped.json | 2 +- .../goldens/sc-reveal-first-poll.json | 22 +- .../goldens/sc-reveal-timeout.json | 40 +- .../sc-review-commit-inner-failure.json | 13 +- ...c-review-commit-refused-empty-message.json | 13 +- .../goldens/sc-review-commit-rejected.json | 13 +- .../goldens/sc-review-commit.json | 13 +- .../sc-review-status-entries-not-array.json | 13 +- .../goldens/sc-review-status-normalized.json | 15 +- .../rpc-foundation/goldens/schedules-b3.json | 46 +- ...les-settings-home-providers-fulfilled.json | 55 +- .../schedules-settings-new-tab-ssh.json | 55 +- ...ules-settings-repo-metadata-fulfilled.json | 62 +- ...es-settings-resume-metadata-fulfilled.json | 173 +- ...les-settings-task-hydration-fulfilled.json | 177 +- ...-settings-workspace-context-fulfilled.json | 64 +- .../session-create-browser-refused.json | 9 +- .../goldens/session-create-browser-tab.json | 9 +- ...ession-create-markdown-name-collision.json | 51 +- .../goldens/session-create-markdown-note.json | 38 +- .../session-diff-notes-load-refused.json | 13 +- .../goldens/session-diff-notes-loaded.json | 13 +- .../goldens/session-file-tab-read.json | 9 +- .../session-markdown-save-conflict.json | 13 +- .../goldens/session-markdown-saved.json | 13 +- .../session-markdown-tab-disk-fallback.json | 18 +- .../goldens/session-markdown-tab-read.json | 9 +- .../goldens/session-markdown-tab-refused.json | 9 +- ...ion-tab-activation-focus-and-activate.json | 18 +- .../session-tab-activation-refused.json | 13 +- ...ession-tab-activation-transport-error.json | 9 +- .../session-tab-close-refused-keeps-tab.json | 13 +- .../session-tab-close-session-tab.json | 13 +- .../goldens/session-tab-close-terminal.json | 13 +- .../goldens/session-tab-rename.json | 13 +- .../goldens/session-tabs-health-errored.json | 13 +- .../session-tabs-health-reconciled.json | 9 +- .../goldens/session-tabs-health-refused.json | 9 +- ...abs-health-stale-application-revision.json | 9 +- ...session-terminal-list-dedupes-handles.json | 13 +- .../session-terminal-list-empty-guarded.json | 13 +- .../goldens/session-terminal-list-merged.json | 13 +- .../session-terminal-list-refused.json | 13 +- .../settings-bot-overrides-fulfilled.json | 15 +- ...ettings-bot-overrides-refresh-refused.json | 28 +- .../settings-bot-overrides-refused.json | 11 +- ...ettings-bot-overrides-transport-error.json | 11 +- .../goldens/settings-home-coalesced.json | 113 +- .../settings-home-providers-fulfilled.json | 33 +- ...ings-home-providers-refuse-after-data.json | 84 +- .../settings-home-providers-refused.json | 33 +- ...ttings-home-providers-transport-error.json | 33 +- .../goldens/settings-new-tab-refused.json | 27 +- .../goldens/settings-new-tab-ssh.json | 27 +- .../settings-new-tab-transport-error.json | 27 +- .../goldens/settings-repo-cache-expiry.json | 59 +- .../settings-repo-metadata-fulfilled.json | 36 +- ...tings-repo-metadata-refuse-after-data.json | 98 +- .../settings-repo-metadata-refused.json | 36 +- .../settings-repo-metadata-single-host.json | 9 +- ...ettings-repo-metadata-transport-error.json | 36 +- .../settings-resume-metadata-fulfilled.json | 61 +- ...ngs-resume-metadata-refuse-after-data.json | 150 +- .../settings-resume-metadata-refused.json | 61 +- ...tings-resume-metadata-transport-error.json | 61 +- .../settings-task-hydration-fulfilled.json | 67 +- ...ings-task-hydration-refuse-after-data.json | 152 +- .../settings-task-hydration-refused.json | 67 +- ...ttings-task-hydration-transport-error.json | 67 +- ...settings-task-workspace-create-linear.json | 24 +- ...-task-workspace-create-pr-start-point.json | 33 +- .../settings-task-workspace-fulfilled.json | 15 +- .../settings-task-workspace-refused.json | 15 +- ...ttings-task-workspace-transport-error.json | 15 +- .../goldens/settings-task-write.json | 15 +- .../settings-workspace-context-fulfilled.json | 38 +- ...s-workspace-context-refuse-after-data.json | 110 +- .../settings-workspace-context-refused.json | 38 +- ...ngs-workspace-context-transport-error.json | 38 +- .../settings-workspace-submit-fulfilled.json | 15 +- .../settings-workspace-submit-refused.json | 11 +- ...ings-workspace-submit-transport-error.json | 11 +- .../speech-audio-chunk-acknowledged.json | 9 +- .../speech-desktop-start-fulfilled.json | 9 +- ...speech-desktop-start-recording-failed.json | 18 +- .../speech-desktop-start-superseded.json | 22 +- .../speech-dictation-session-cancelled.json | 18 +- .../speech-dictation-session-transcript.json | 18 +- .../speech-setup-sheet-denied-to-mobile.json | 9 +- .../goldens/speech-setup-sheet-fulfilled.json | 36 +- .../speech-setup-sheet-legacy-desktop.json | 9 +- .../goldens/structured-launch-created.json | 18 +- .../structured-launch-definitive-refusal.json | 18 +- ...uctured-launch-replays-dropped-create.json | 31 +- .../structured-launch-support-refused.json | 9 +- .../structured-launch-unsupported.json | 9 +- .../goldens/tasks-route-repo-list.json | 11 +- .../goldens/terminal-input-send-accepted.json | 20 +- .../goldens/terminal-input-send-refused.json | 13 +- .../goldens/terminal-live-input-accepted.json | 22 +- .../goldens/terminal-paste-accepted.json | 29 +- .../goldens/terminal-paste-refused.json | 20 +- .../terminal-query-reply-accepted.json | 13 +- .../terminal-query-reply-unsubscribed.json | 2 +- .../goldens/terminal-raw-input-refused.json | 9 +- .../goldens/terminal-raw-input-reported.json | 22 +- .../terminal-takeover-report-accepted.json | 9 +- .../terminal-takeover-report-retried.json | 14 +- .../terminal-viewport-refit-applied.json | 13 +- ...erminal-viewport-refit-legacy-desktop.json | 13 +- ...terminal-worktree-connection-resolved.json | 18 +- .../goldens/tk-create-github.json | 24 +- .../goldens/tk-create-gitlab.json | 13 +- .../goldens/tk-create-linear.json | 13 +- .../goldens/tk-item-checks-files.json | 59 +- .../goldens/tk-item-comment-github.json | 9 +- .../goldens/tk-item-comment-gitlab-mr.json | 13 +- .../goldens/tk-item-comment-gitlab.json | 13 +- .../goldens/tk-item-detail-github.json | 13 +- .../goldens/tk-item-detail-gitlab.json | 13 +- .../goldens/tk-item-detail-linear.json | 22 +- .../goldens/tk-item-detail-metadata.json | 22 +- .../goldens/tk-item-merge-gitlab.json | 13 +- .../goldens/tk-item-metadata-github.json | 13 +- .../goldens/tk-item-metadata-gitlab-mr.json | 13 +- .../goldens/tk-item-metadata-gitlab.json | 13 +- .../goldens/tk-item-reply-merge.json | 46 +- .../goldens/tk-item-review-github.json | 24 +- .../goldens/tk-item-status-gitlab-mr.json | 13 +- .../goldens/tk-item-status-gitlab.json | 20 +- .../goldens/tk-linear-connect.json | 13 +- .../goldens/tk-linear-item.json | 35 +- .../goldens/tk-linear-team-context.json | 24 +- .../goldens/tk-list-gitlab-items.json | 13 +- .../goldens/tk-list-gitlab-todos.json | 13 +- .../goldens/tk-list-linear.json | 26 +- .../goldens/tk-project-board-load.json | 61 +- .../goldens/tk-project-repo-slugs.json | 9 +- .../tk-project-row-comments-issue.json | 35 +- .../goldens/tk-project-row-comments-pr.json | 13 +- .../goldens/tk-project-row-detail.json | 13 +- .../goldens/tk-project-row-fields.json | 35 +- .../goldens/tk-project-row-files-merge.json | 63 +- .../goldens/tk-project-row-metadata-load.json | 27 +- .../goldens/tk-project-row-review-checks.json | 40 +- .../goldens/tk-project-row-threads.json | 42 +- .../goldens/tk-provider-load.json | 61 +- ...-capability-probe-cutover-reasks-fast.json | 20 +- ...ty-probe-non-string-capabilities-drop.json | 11 +- .../transport-capability-probe-publishes.json | 9 +- ...rt-capability-probe-refused-backs-off.json | 20 +- ...-status-gates-drop-keeps-capabilities.json | 15 +- .../transport-host-status-gates-ready.json | 13 +- ...rt-host-status-gates-refused-degrades.json | 13 +- .../transport-pairing-race-both-refused.json | 18 +- ...t-pairing-race-direct-completes-first.json | 18 +- ...rt-pairing-race-relay-completes-first.json | 18 +- ...g-race-relay-wins-when-direct-refused.json | 18 +- .../goldens/tw-capabilities-advertised.json | 13 +- .../tw-capabilities-cutover-retried.json | 20 +- .../tw-capabilities-legacy-idempotency.json | 13 +- .../tw-create-retry-ambiguous-after-drop.json | 15 +- ...reate-retry-ambiguous-while-connected.json | 13 +- ...e-retry-ambiguous-without-idempotency.json | 13 +- .../goldens/tw-create-retry-created.json | 13 +- .../tw-create-retry-name-collision.json | 24 +- .../tw-create-retry-unretryable-refusal.json | 13 +- .../goldens/tw-create-retry-warning-kept.json | 13 +- .../goldens/tw-hosted-base-resolved.json | 20 +- .../goldens/tw-hosted-base-soft-error.json | 20 +- .../goldens/tw-paste-lookup-resolved.json | 44 +- .../goldens/tw-paste-lookup-slug-refused.json | 18 +- .../tw-paste-lookup-slug-unsupported.json | 11 +- .../goldens/tw-setup-hook-trust-always.json | 9 +- .../goldens/tw-setup-hook-trust-approved.json | 13 +- .../tw-smart-search-all-providers.json | 61 +- ...tw-smart-search-gitlab-provider-error.json | 24 +- .../tw-smart-search-linear-listed.json | 13 +- .../tw-task-preferences-resume-write.json | 20 +- .../tw-workspace-source-presets-refused.json | 13 +- .../goldens/tw-workspace-source-presets.json | 24 +- .../tw-workspace-sparse-missing-preset.json | 22 +- .../goldens/tw-workspace-sparse-saved.json | 24 +- .../tw-workspace-ssh-connect-refused.json | 33 +- .../goldens/tw-workspace-ssh-connected.json | 35 +- .../tw-workspace-ssh-local-agents.json | 13 +- .../goldens/tw-workspace-ssh-not-ready.json | 33 +- .../goldens/worktree-catalog-snapshot.json | 15 +- .../goldens/worktree-home-catalog.json | 15 +- .../goldens/worktree-retired-names.json | 15 +- mobile/rpc-foundation/pilot-scenarios.json | 220 +++ .../src/test-support/rpc-recording/README.md | 95 +- .../client-event-stream-mount-adapters.ts | 93 + .../adapters/mounted-operation-modules.ts | 2 + .../rpc-recording/recording-runner.test.ts | 210 ++- .../rpc-recording/recording-scenario.ts | 11 +- .../reply-matrix-normal-result.ts | 9 +- .../rpc-recording/reply-matrix.ts | 111 +- .../rpc-recording/run-recording.ts | 2 + .../screen-native-substitutes.ts | 12 + .../rpc-recording/scripted-rpc-transport.ts | 99 +- 690 files changed, 33542 insertions(+), 20125 deletions(-) create mode 100644 mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json create mode 100644 mobile/rpc-foundation/goldens/live-worktree-name-stream.json create mode 100644 mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json create mode 100644 mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json create mode 100644 mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json create mode 100644 mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json create mode 100644 mobile/src/test-support/rpc-recording/adapters/client-event-stream-mount-adapters.ts diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json index 65d2f53a73d..326d896138b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "0431ac82cbb8c60b16f4432fd0da7cff665485d668e512b20fc1168ec63db3fe", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "681cb0d74271": { + "56c96fec6d08": { "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 2 }, "6e50957443ea": { "name": "status.get#1", @@ -54,6 +51,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "b567072e5440": { "name": "aiVault.listSessions#1", "args": [ @@ -131,7 +133,7 @@ "id": "ready", "observation": { "sender": ["6e50957443ea", "b567072e5440"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json index e4852c8e4d1..f933f5e5ebc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "e97c6db772a70ee1912419ac67835b6074aaf9a341d4360389a11465f08092c5", "platform": "darwin", @@ -24,10 +24,6 @@ "kind": "unsupported" } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "6f30f8b6f3d7": { "name": "status.get#1", "args": [ @@ -61,6 +57,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -77,7 +78,7 @@ "id": "unsupported", "observation": { "sender": ["6f30f8b6f3d7"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 e40f3742a9d..376d17d14ba 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "10011c7c75e74d9c2e880c5458c9156264ae07e91956a80946ede1d4e684952a", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "33d053404f10": { "activeWorktreePath": { "$rpc": "null" @@ -72,6 +68,11 @@ } } }, + "4f3bdb245d26": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 3 + }, "6e50957443ea": { "name": "status.get#1", "args": [ @@ -105,6 +106,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "9cac597c56da": { "name": "status.get#2", "args": [ @@ -138,9 +144,10 @@ } } }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "cd739a80b7a8": { "activeWorktreePath": "/repo/feature", @@ -168,10 +175,6 @@ "value": { "$rpc": "undefined" } - }, - "f191cc9d24e3": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" } }, "recording": { @@ -181,7 +184,7 @@ "id": "held", "observation": { "sender": ["6e50957443ea"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -193,7 +196,7 @@ "id": "ready", "observation": { "sender": ["6e50957443ea", "9cac597c56da", "38364726a135"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "f191cc9d24e3"], + "payloads": ["852980e2efc0", "b33a14df0df6", "4f3bdb245d26"], "settlements": { "mount": "eb79a9b3682a", "worktrees-loaded": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json b/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json index b2b5b59107e..5a3a0e261eb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", "scenarioSha256": "d52d3c5858298a4a6a90bd9a8986b780004477de105fe93f6303d9c303ffea38", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "017d690f964b": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 4 + }, "035edfd9a1b9": { "crash": { "$rpc": "null" @@ -74,10 +79,6 @@ } } }, - "15686a7a3813": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "29ba09534e96": { "name": "status.get#2", "args": [ @@ -111,10 +112,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "522b745543f1": { "name": "aiVault.listSessions#1", "args": [ @@ -238,10 +235,6 @@ } } }, - "a5ba8a3216d2": { - "name": "status.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ba9fd57319d3": { "name": "status.get#1", "args": [ @@ -308,6 +301,16 @@ "labels": ["Back", "Refresh agent sessions"], "text": ["Agent Session History", "orca-history"] }, + "d4ef0569dbbc": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 3 + }, + "de79fb948454": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -316,9 +319,10 @@ "$rpc": "undefined" } }, - "ec120260263a": { - "name": "status.get#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "ff0ffaddbbf7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -328,7 +332,7 @@ "id": "worktrees-pending", "observation": { "sender": ["bc1a8e138f82", "ba9fd57319d3"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -340,7 +344,7 @@ "id": "worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -352,7 +356,7 @@ "id": "ready", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "8c2a1dcb9598"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json index 42daee20de2..2a7fd8cb954 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", "scenarioSha256": "f50f63c4e2a69793b3d322ed16089c4241ff6169d8f9549106480230fb8dd5e7", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "017d690f964b": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 4 + }, "074d2293c010": { "name": "worktree.ps#1", "args": [ @@ -57,10 +62,6 @@ } } }, - "15686a7a3813": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "29ba09534e96": { "name": "status.get#2", "args": [ @@ -94,10 +95,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "522b745543f1": { "name": "aiVault.listSessions#1", "args": [ @@ -158,10 +155,6 @@ } } }, - "a5ba8a3216d2": { - "name": "status.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ba9fd57319d3": { "name": "status.get#1", "args": [ @@ -228,6 +221,16 @@ "labels": ["Back", "Refresh agent sessions"], "text": ["Agent Session History", "orca-history"] }, + "d4ef0569dbbc": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 3 + }, + "de79fb948454": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -236,9 +239,10 @@ "$rpc": "undefined" } }, - "ec120260263a": { - "name": "status.get#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "ff0ffaddbbf7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -248,7 +252,7 @@ "id": "worktrees-pending", "observation": { "sender": ["bc1a8e138f82", "ba9fd57319d3"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -260,7 +264,7 @@ "id": "worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, 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 6de31e3ccc0..2e7646be211 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "ebf1bbc01ad7704fe79eff0969fcc2d4af8ebfa7c2410d2ed9d3ae8c6976b434", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "58d16e8809a2": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "62643ed38326": { "failure": "Workspace is busy", "launched": "unlaunched" @@ -67,6 +63,11 @@ "ok": false } } + }, + "af416f104f9a": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 } }, "recording": { @@ -76,7 +77,7 @@ "id": "create-refused", "observation": { "sender": ["a7dec90e01a8"], - "payloads": ["58d16e8809a2"], + "payloads": ["af416f104f9a"], "settlements": { "bare": "6e913cd7b306" }, 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 6d01040715d..af441c0f6af 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "281ccf5a082f3788ae8bf19f742ea4baf35c20c78bc91d7d91873845583e1a91", "platform": "darwin", @@ -17,6 +17,11 @@ "failure": "Created terminal response was invalid", "launched": "unlaunched" }, + "495d8519301e": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "681fc4d59b92": { "status": "rejected", "startedAt": 0, @@ -70,10 +75,6 @@ } } } - }, - "eb30e498d168": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" } }, "recording": { @@ -83,7 +84,7 @@ "id": "invalid-tab", "observation": { "sender": ["af9961132c24"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json index cb2941f7ad7..c1c71716023 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "941fcf202417c94ef546f5ee331983689d8b72397dac6f61dda944ca24abed9e", "platform": "darwin", @@ -23,6 +23,16 @@ "isRpcDeliveryUnknown": false } }, + "39cabd8258a3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}", + "sent": 2 + }, + "495d8519301e": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "5f84c02b1f7b": { "name": "terminal.send#1", "args": [ @@ -107,17 +117,9 @@ } } }, - "a9a45875782f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" - }, "da57c90b80d6": { "failure": "Terminal input is locked", "launched": "unlaunched" - }, - "eb30e498d168": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" } }, "recording": { @@ -127,7 +129,7 @@ "id": "input-locked", "observation": { "sender": ["6b1e36abce6b", "5f84c02b1f7b"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "0f026fafa7e1" }, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json index cbcfc8afd3b..7145918ca41 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "f0ac1c996e5b1b4043e0a081978476c6c2dd8a5d517d5752857721205a588fb0", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "39cabd8258a3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}", + "sent": 2 + }, "400d946a183d": { "failure": { "$rpc": "null" @@ -23,6 +28,11 @@ "title": "codex" } }, + "495d8519301e": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "6b1e36abce6b": { "name": "session.tabs.createTerminal#1", "args": [ @@ -116,14 +126,6 @@ } } } - }, - "a9a45875782f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" - }, - "eb30e498d168": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" } }, "recording": { @@ -133,7 +135,7 @@ "id": "resumed", "observation": { "sender": ["6b1e36abce6b", "a84f5d45a48b"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json index a880308084d..346df8229cc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "dc9926f95475413627315e1f1c96740ececa697c6a0a5e3c42e18cfd4d58448a", "platform": "darwin", @@ -60,13 +60,14 @@ } } }, + "770627dbd25d": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}", + "sent": 1 + }, "7e4864f4412b": { "failure": "codex home is locked", "prepared": "unprepared" - }, - "9a6c365d544f": { - "name": "aiVault.prepareSessionResume#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" } }, "recording": { @@ -76,7 +77,7 @@ "id": "refused", "observation": { "sender": ["3a299ed75c3d"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "1c21b98bedb1" }, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json index 0b27b0a9b19..26325d09eb4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "6719aea706086a68709894546f9595264407db2df94fa56180cb3c68b08aaa69", "platform": "darwin", @@ -35,9 +35,10 @@ "filePath": "/sessions/rollout.jsonl" } }, - "9a6c365d544f": { + "770627dbd25d": { "name": "aiVault.prepareSessionResume#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}", + "sent": 1 }, "d8803e70463f": { "name": "aiVault.prepareSessionResume#1", @@ -84,7 +85,7 @@ "id": "repinned", "observation": { "sender": ["d8803e70463f"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "15e10cea84b9" }, diff --git a/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json index a16b2b9a5ad..ee4691d8355 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 5b524e1021d..5e92416f32b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "9a6c365d544f": { + "770627dbd25d": { "name": "aiVault.prepareSessionResume#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}", + "sent": 1 }, "a25c46d6c1db": { "name": "aiVault.prepareSessionResume#1", @@ -84,7 +85,7 @@ "id": "degraded-to-legacy", "observation": { "sender": ["a25c46d6c1db"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, diff --git a/mobile/rpc-foundation/goldens/b1.json b/mobile/rpc-foundation/goldens/b1.json index a37a767cc51..ba10ea97012 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3", "platform": "darwin", @@ -74,9 +74,10 @@ } } }, - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "387248eb3124": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 3 }, "3b6419fbab75": { "status": "fulfilled", @@ -86,10 +87,6 @@ "$rpc": "undefined" } }, - "4c6301522bc0": { - "name": "files.list#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "602e35a92eec": { "files": [] }, @@ -130,17 +127,14 @@ } } }, - "6fcbcfd641a6": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" - }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "a129552fdc6e": { "files": ["third.ts"] }, + "a4643cbb0362": { + "name": "files.list#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 4 + }, "b2434f1de9f6": { "name": "files.list#1", "args": [ @@ -166,6 +160,11 @@ "startedAt": 120 } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -202,6 +201,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -266,7 +270,7 @@ "id": "old-pending", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -279,7 +283,7 @@ "id": "stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -295,7 +299,7 @@ "id": "third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -312,7 +316,7 @@ "id": "fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/b2.json b/mobile/rpc-foundation/goldens/b2.json index ea713ef5d88..15690be0114 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693", "platform": "darwin", @@ -46,9 +46,10 @@ "itemType": "ISSUE" } }, - "52a7a7239fbb": { + "219dced97206": { "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}", + "sent": 1 }, "6f0142de3930": { "name": "github.project.updateIssueBySlug#1", @@ -150,7 +151,7 @@ "id": "pending", "observation": { "sender": ["e5673036d45e"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -163,7 +164,7 @@ "id": "settled", "observation": { "sender": ["6f0142de3930"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/b3.json b/mobile/rpc-foundation/goldens/b3.json index 63ac52f7ec7..8cd636faa25 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "130e493fcd7765e037405f59e6cc78a0cc1793b1ae092cad933ff9d5a9df8b7a", "platform": "darwin", @@ -86,6 +86,11 @@ "$rpc": "null" } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4e7c4654b51d": { "name": "linear.issueComments#1", "args": [ @@ -123,6 +128,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "780aaf1d97be": { "error": "", "loading": true, @@ -142,14 +152,6 @@ "value": "", "sent": 0 }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -197,7 +199,7 @@ "id": "pending", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -209,7 +211,7 @@ "id": "issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -221,7 +223,7 @@ "id": "settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json index 9d1fb1c3224..bcafd502daa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "95f377bc4d8bf1248cafed26b2e9f425ad37e8d3c99e354bd6a8c67eb9bd9b1b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2a884fbac9d5": { - "name": "browser.dialogAccept#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}" - }, "9855d4ec3415": { "busy": false, "dialog": { @@ -36,6 +32,11 @@ "$rpc": "undefined" } }, + "f11babba920d": { + "name": "browser.dialogAccept#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}", + "sent": 1 + }, "f23289a40300": { "name": "browser.dialogAccept#1", "args": [ @@ -78,7 +79,7 @@ "id": "dismissed", "observation": { "sender": ["f23289a40300"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json b/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json index 3dfb2ae56a9..077dc1ece0f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "5071188ee492a4ced5be793b2dab32baa9750ee6535128635f274fd79198e2f1", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "786423f11435": { + "name": "browser.dialogDismiss#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogDismiss\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}", + "sent": 1 + }, "9855d4ec3415": { "busy": false, "dialog": { @@ -58,10 +63,6 @@ } } }, - "e14582853169": { - "name": "browser.dialogDismiss#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogDismiss\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -78,7 +79,7 @@ "id": "dismissed", "observation": { "sender": ["be3e7ad116a5"], - "payloads": ["e14582853169"], + "payloads": ["786423f11435"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/browser-keyboard-input.json b/mobile/rpc-foundation/goldens/browser-keyboard-input.json index 2ff9584f676..3f67ecead74 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "eb2294c30af70ebc2bac092dc5105249ae8cf1941f750406622f7ff6dd70cc1b", "platform": "darwin", @@ -13,13 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "04ae34c3208f": { - "name": "browser.keypress#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}" - }, - "37ef5fe93769": { + "1bc6d9688999": { "name": "browser.keyboardInsertText#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}", + "sent": 1 + }, + "2f4d80d09d24": { + "name": "browser.keypress#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}", + "sent": 2 }, "5fe64ef6c1f3": { "name": "toast", @@ -125,7 +127,7 @@ "id": "typed", "observation": { "sender": ["770254847b6a", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json index dae38188c78..f3fb255e09a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "73faa87b359a11959543542016295bb6b36a10934dd99ad5c1a77a4290a608cd", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e463da3d358": { + "0da10b838d9e": { "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 }, "5b621e308200": { "name": "browser.mouseClick#1", @@ -83,7 +84,7 @@ "id": "clicked", "observation": { "sender": ["5b621e308200"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json b/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json index 64bc25055a2..e235a455769 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "20779e28880cf62340bc34cef8f40a49311e11262ac069df909743da9b5500ff", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0da10b838d9e": { + "name": "browser.mouseClick#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 + }, + "11a7e8034273": { + "name": "browser.mouseDown#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 3 + }, "1961908d1da1": { "name": "browser.mouseDown#1", "args": [ @@ -48,13 +58,10 @@ } } }, - "1e463da3d358": { - "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" - }, - "278a20085af8": { + "25ad8c6e489e": { "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 2 }, "41b41cc39e88": { "name": "browser.mouseUp#1", @@ -102,9 +109,10 @@ "keyboardValue": "hello", "pointerModifiers": [] }, - "ad7da1632835": { - "name": "browser.mouseDown#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" + "aa160e9b114e": { + "name": "browser.mouseUp#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 4 }, "b3273afd3ec2": { "name": "browser.mouseMove#1", @@ -182,10 +190,6 @@ } } }, - "eaa436587fe0": { - "name": "browser.mouseUp#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -202,7 +206,7 @@ "id": "clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json b/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json index 6d4a188fffd..e7a97f34f91 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "e1bc21248ccff45ff217e385a51618b6f5724c037bfbefa03bb76a48dd4d793b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "3ae1d19b9c51": { - "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" - }, "56a99047a121": { "name": "browser.mouseMove#1", "args": [ @@ -53,6 +49,11 @@ } } }, + "60d1415b69e8": { + "name": "browser.mouseMove#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 1 + }, "71b1fb55eafa": { "name": "browser.mouseWheel#1", "args": [ @@ -89,10 +90,6 @@ } } }, - "8bf9a97ea141": { - "name": "browser.mouseWheel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}" - }, "9855d4ec3415": { "busy": false, "dialog": { @@ -104,6 +101,11 @@ "keyboardValue": "hello", "pointerModifiers": [] }, + "d2d492cca894": { + "name": "browser.mouseWheel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -120,7 +122,7 @@ "id": "scrolled", "observation": { "sender": ["56a99047a121", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json index b75e77db774..da4d2d0a95d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "d4031721b16d7c281c544e7b2eef774fd20dda1890d7ebaadcbbb1eda4d276fd", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1062fb0e8dcf": { + "037a93bf236b": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false}}" + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false}}", + "sent": 4 }, "1c2f6fe81321": { "name": "before-terminal-send", @@ -61,15 +62,16 @@ } } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f71b4d3d25c": { "name": "upload-start", "value": {}, "sent": 0 }, + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "7e48c58139e5": { "name": "clipboard.startImageUpload#1", "args": [ @@ -116,13 +118,10 @@ "$rpc": "null" } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" - }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "e93276a9971b": { "name": "clipboard.commitImageUpload#1", @@ -155,6 +154,11 @@ } } }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 + }, "f1a3d38271bc": { "name": "clipboard.appendImageUploadChunk#1", "args": [ @@ -198,7 +202,7 @@ "id": "rejected", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "308e09c6a619"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "1062fb0e8dcf"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515", "037a93bf236b"], "settlements": { "anonymous": "7ed3d39f0607" }, 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 a4712fa8497..18c69a92794 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "ea04d03c15d3cb94be7fe111a8a6219c4e0304095679bbae62af623f5b36c9f4", "platform": "darwin", @@ -20,15 +20,16 @@ }, "sent": 3 }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f71b4d3d25c": { "name": "upload-start", "value": {}, "sent": 0 }, + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "7e48c58139e5": { "name": "clipboard.startImageUpload#1", "args": [ @@ -75,13 +76,10 @@ "$rpc": "null" } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" - }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "e93276a9971b": { "name": "clipboard.commitImageUpload#1", @@ -114,6 +112,11 @@ } } }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 + }, "f1a3d38271bc": { "name": "clipboard.appendImageUploadChunk#1", "args": [ @@ -157,7 +160,7 @@ "id": "blocked", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515"], "settlements": { "blocked": "7ed3d39f0607" }, diff --git a/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json index 986c610259b..0b3b629db1e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 45b912afd8d..7afa7a329af 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "60273f74d8fe869723cbbd1a459d7d789a92e07a0f1e9444b42e2d7767e5bec1", "platform": "darwin", @@ -20,15 +20,16 @@ }, "sent": 3 }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f71b4d3d25c": { "name": "upload-start", "value": {}, "sent": 0 }, + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "7e48c58139e5": { "name": "clipboard.startImageUpload#1", "args": [ @@ -69,13 +70,15 @@ "settledAt": 0, "value": true }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + "860d6a5b4609": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 4 }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "b7a44aafa946": { "attached": true, @@ -124,10 +127,6 @@ } } }, - "d202dd09e1ff": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/img.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "e93276a9971b": { "name": "clipboard.commitImageUpload#1", "args": [ @@ -159,6 +158,11 @@ } } }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 + }, "f1a3d38271bc": { "name": "clipboard.appendImageUploadChunk#1", "args": [ @@ -202,7 +206,7 @@ "id": "attached", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b", "bc40e57896c9"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "d202dd09e1ff"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515", "860d6a5b4609"], "settlements": { "normal": "84e5ca07cb7a" }, 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 ab1b5b67e13..889c693ee63 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "e7f492523421873f045726e15ec95eac26d43f7e971a33fd89ec1a9749492987", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f71b4d3d25c": { "name": "upload-start", "value": {}, @@ -32,6 +28,11 @@ "isRpcDeliveryUnknown": false } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "cc325ad637ea": { "attached": "unattached", "failure": "Image is too large" @@ -79,7 +80,7 @@ "id": "upload-refused", "observation": { "sender": ["ec6fd7f06461"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "765ab192e1a5" }, 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 9f11c86f726..eac8ff687f3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "195c2f15d81c70012ea88750ab3f84bfe512f7e422f7d2d09fb7919bd9cfd85a", "platform": "darwin", @@ -49,13 +49,15 @@ } } }, - "75e35171f9cf": { - "name": "clipboard.abortImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.abortImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}" - }, - "930e54058461": { + "48054ee45c76": { "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, + "63762ba12023": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":null}}", + "sent": 1 }, "9cfc668f592b": { "name": "clipboard.abortImageUpload#1", @@ -90,14 +92,15 @@ } } }, - "a517d3be2ecf": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":null}}" - }, "b49be31d506e": { "failure": "Upload slot expired", "path": "unsaved" }, + "bf6d0aeb2281": { + "name": "clipboard.abortImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.abortImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}", + "sent": 3 + }, "ead0111942f4": { "status": "rejected", "startedAt": 0, @@ -152,7 +155,7 @@ "id": "aborted", "observation": { "sender": ["eddc5bc46b9b", "3de611958398", "9cfc668f592b"], - "payloads": ["a517d3be2ecf", "930e54058461", "75e35171f9cf"], + "payloads": ["63762ba12023", "48054ee45c76", "bf6d0aeb2281"], "settlements": { "local": "ead0111942f4" }, diff --git a/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json index c2190bd082d..742ff76673b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "160101326d39705c2036c12646ff6b13d997a1cf91bdc86e5e29279ba31867e4", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 }, "7ab518750e0f": { "status": "fulfilled", @@ -57,9 +58,10 @@ } } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "a77b999a5f7c": { "failure": { @@ -67,10 +69,6 @@ }, "path": "/tmp/img.png" }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "e93276a9971b": { "name": "clipboard.commitImageUpload#1", "args": [ @@ -102,6 +100,11 @@ } } }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 + }, "f1a3d38271bc": { "name": "clipboard.appendImageUploadChunk#1", "args": [ @@ -145,7 +148,7 @@ "id": "uploaded", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "e93276a9971b"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515"], "settlements": { "remote": "7ab518750e0f" }, 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 7683cd80d9d..71cbd280a63 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "89ffa843d08ee27dd44b7bba507ce84661b0df73c35f7a8c273e004604710dc9", "platform": "darwin", @@ -48,10 +48,6 @@ } } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "61599dd8e71a": { "name": "clipboard.saveImageAsTempFile#1", "args": [ @@ -84,21 +80,27 @@ } } }, - "7a67576b4db6": { - "name": "clipboard.saveImageAsTempFile#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" - }, "7f1260e77032": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": "/tmp/legacy.png" }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "923de2c0221d": { "failure": { "$rpc": "null" }, "path": "/tmp/legacy.png" + }, + "d6a7fe2e0164": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}", + "sent": 2 } }, "recording": { @@ -108,7 +110,7 @@ "id": "fell-back", "observation": { "sender": ["12f2bb1c7b16", "61599dd8e71a"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "7f1260e77032" }, 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 2ce52762c9e..e1d04a5943e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "bf0227939c2d41d6a1ebc5b07a31196043e78f1580811bd32ec6fc5f447f5934", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "765ab192e1a5": { "status": "rejected", "startedAt": 0, @@ -27,6 +23,11 @@ "isRpcDeliveryUnknown": false } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "a69f0ea71c3c": { "failure": "Image is too large", "path": "unsaved" @@ -74,7 +75,7 @@ "id": "start-refused", "observation": { "sender": ["ec6fd7f06461"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "765ab192e1a5" }, diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json index 593929bf314..540a5d5f380 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e", "scenarioSha256": "00260be9809576607ac91bfacd9fa6cc4f8a190c6b88804c977ea07d36d7162e", "platform": "darwin", @@ -18,6 +18,11 @@ "$rpc": "null" } }, + "31c5054bc660": { + "name": "accounts.consumeCodexResetCredit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}", + "sent": 1 + }, "60304d1e19bb": { "settled": { "attemptJournalRetained": false, @@ -64,10 +69,6 @@ "status": "pending", "startedAt": 0 }, - "95625d997965": { - "name": "accounts.consumeCodexResetCredit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}" - }, "ab755576c214": { "name": "device-store.setItem", "value": { @@ -263,7 +264,7 @@ "id": "requested", "observation": { "sender": ["90f55bfe00c2"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "9270aeb7d9c6" }, @@ -275,7 +276,7 @@ "id": "consumed", "observation": { "sender": ["c4a98628ea44"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "fed9e1669a83" }, diff --git a/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json index 7738eab8a4a..6dbb5b74a2a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e", "scenarioSha256": "d85a4031b701e563941afcdd7375cf78a1ee1487a0dab722f8516c2bc8d3dcee", "platform": "darwin", @@ -203,14 +203,15 @@ } } }, + "897e4d77e2a0": { + "name": "accounts.consumeCodexResetCredit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"11111111-1111-4111-8111-111111111111\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "b9cf7ce248dc": { - "name": "accounts.consumeCodexResetCredit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"11111111-1111-4111-8111-111111111111\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}" - }, "c19953b572ef": { "name": "accounts.consumeCodexResetCredit#1", "args": [ @@ -262,7 +263,7 @@ "id": "requested", "observation": { "sender": ["c19953b572ef"], - "payloads": ["b9cf7ce248dc"], + "payloads": ["897e4d77e2a0"], "settlements": { "confirm": "9270aeb7d9c6" }, @@ -274,7 +275,7 @@ "id": "consumed", "observation": { "sender": ["1c9f0c57c36d"], - "payloads": ["b9cf7ce248dc"], + "payloads": ["897e4d77e2a0"], "settlements": { "confirm": "074c5080c062" }, diff --git a/mobile/rpc-foundation/goldens/components-codex-capability.json b/mobile/rpc-foundation/goldens/components-codex-capability.json index 0582970bc7f..562910e3da3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "88570b9d2376863c7f88d7ed8c745a5fb771deddbc7409f8944fa861dd4bdce9", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "578b9d38ecc7": { "supported": true }, @@ -58,6 +54,11 @@ "startedAt": 0, "settledAt": 0, "value": true + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 } }, "recording": { @@ -67,7 +68,7 @@ "id": "settled", "observation": { "sender": ["6a0093a8288b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "84e5ca07cb7a" }, diff --git a/mobile/rpc-foundation/goldens/components-setup-ask.json b/mobile/rpc-foundation/goldens/components-setup-ask.json index 5a10748a841..619eaabdedc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "d4052f119c7ed68dc922c8beeb0074701f1532b10e48e284fb71aa165a17e437", "platform": "darwin", @@ -104,6 +104,11 @@ "$rpc": "null" } }, + "d9f709e8100e": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -111,10 +116,6 @@ "value": { "$rpc": "undefined" } - }, - "f5dc0ce1e7b8": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -124,7 +125,7 @@ "id": "hooks-pending", "observation": { "sender": ["28e75475e9e0"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -136,7 +137,7 @@ "id": "settled", "observation": { "sender": ["3515a8adcd6d"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/components-target-local.json b/mobile/rpc-foundation/goldens/components-target-local.json index 6cd495cd561..bf634188855 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "2e0d3021621698b63117e250dd5e9762b5bfb3dc1911e27c510e9539bd2ee6c9", "platform": "darwin", @@ -97,9 +97,10 @@ } } }, - "cf32edc950ac": { + "c56f76942e16": { "name": "preflight.detectAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -117,7 +118,7 @@ "id": "detect-pending", "observation": { "sender": ["3579737ce1a6"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -129,7 +130,7 @@ "id": "settled", "observation": { "sender": ["6806cee7c59f"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/components-target-ssh.json b/mobile/rpc-foundation/goldens/components-target-ssh.json index 3e1f69e4dad..a7570e3b837 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "82b891c7a7a2f255e2d22a372ee6112c9cc1f650259244e87f2e8c1356e97e5f", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0a7094a9a9ac": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" + "0b078c630b23": { + "name": "preflight.detectRemoteAgents#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 4 + }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 }, "4e2e9a890ced": { "detected": ["codex"], @@ -28,10 +34,6 @@ "status": "connected" } }, - "57095302d8c1": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "6004e75ef39e": { "name": "preflight.detectRemoteAgents#2", "args": [ @@ -57,9 +59,10 @@ "startedAt": 0 } }, - "66a99391260b": { - "name": "preflight.detectRemoteAgents#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" + "77f42ff60d15": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 3 }, "81c9c204b647": { "name": "ssh.connect#1", @@ -172,6 +175,11 @@ } } }, + "bb1f9f7430c4": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 2 + }, "ca123825be51": { "name": "ssh.getState#1", "args": [ @@ -219,10 +227,6 @@ "value": { "$rpc": "undefined" } - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" } }, "recording": { @@ -232,7 +236,7 @@ "id": "state-pending", "observation": { "sender": ["ca123825be51"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -244,7 +248,7 @@ "id": "settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/diff-review-branch-compare.json b/mobile/rpc-foundation/goldens/diff-review-branch-compare.json index a56ac0a73dc..6f604b37b8a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b7579013e65f0f5fe503c10cf2294cb9d4ac1938108275de001db6e02cf2cc21", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1bf084a7263a": { + "200c85aa119b": { "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 2 }, "229fc359ecb7": { "status": "fulfilled", @@ -28,26 +29,6 @@ } } }, - "25793d7c00a5": { - "name": "repo.list#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "4337656f224b": { - "name": "git.branchCompare#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" - }, - "54ee9546dc6f": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" - }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "632a4405f3fe": { "name": "repo.list#2", "args": [ @@ -157,6 +138,16 @@ } } }, + "74dba677d335": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 3 + }, + "768c9c0dbef7": { + "name": "repo.list#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 + }, "78b49c8df1cc": { "name": "git.branchCompare#1", "args": [ @@ -228,6 +219,11 @@ } } }, + "8bee98be77d2": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 5 + }, "9f5d0ac26269": { "branchCompare": { "result": { @@ -247,6 +243,16 @@ "diff": "unloaded", "snapshot": "unloaded" }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, + "be3553f1a790": { + "name": "git.branchCompare#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 6 + }, "eb882796a820": { "name": "repo.list#1", "args": [ @@ -303,7 +309,7 @@ "id": "unavailable", "observation": { "sender": ["67a8e862c3ba", "eb882796a820", "78b49c8df1cc"], - "payloads": ["1bf084a7263a", "594101d24d72", "54ee9546dc6f"], + "payloads": ["200c85aa119b", "ad49fec56c14", "74dba677d335"], "settlements": { "unavailable": "ef9013648cfb" }, @@ -323,12 +329,12 @@ "6e017fb85c11" ], "payloads": [ - "1bf084a7263a", - "594101d24d72", - "54ee9546dc6f", - "31bd76fdf517", - "25793d7c00a5", - "4337656f224b" + "200c85aa119b", + "ad49fec56c14", + "74dba677d335", + "8bee98be77d2", + "768c9c0dbef7", + "be3553f1a790" ], "settlements": { "unavailable": "ef9013648cfb", 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 860c7720e7d..bef96f7774c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "6c71b0f217a464dffbc6f5736605b840edac74ebaf0664edc0ab85984bb64328", "platform": "darwin", @@ -22,10 +22,6 @@ "kind": "binary" } }, - "37ae1f091153": { - "name": "git.branchDiff#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchDiff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"compare\":{\"baseRef\":\"origin/main\",\"baseOid\":\"base-oid\",\"headOid\":\"head-oid\",\"mergeBase\":\"merge-base\"}}}" - }, "38fb361f406c": { "status": "rejected", "startedAt": 0, @@ -44,6 +40,11 @@ }, "snapshot": "unloaded" }, + "67cae2e16a3b": { + "name": "git.branchDiff#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchDiff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"compare\":{\"baseRef\":\"origin/main\",\"baseOid\":\"base-oid\",\"headOid\":\"head-oid\",\"mergeBase\":\"merge-base\"}}}", + "sent": 1 + }, "ce89618d90b4": { "name": "git.branchDiff#1", "args": [ @@ -92,7 +93,7 @@ "id": "branch", "observation": { "sender": ["ce89618d90b4"], - "payloads": ["37ae1f091153"], + "payloads": ["67cae2e16a3b"], "settlements": { "branch": "365c17523d76" }, @@ -104,7 +105,7 @@ "id": "no-compare", "observation": { "sender": ["ce89618d90b4"], - "payloads": ["37ae1f091153"], + "payloads": ["67cae2e16a3b"], "settlements": { "branch": "365c17523d76", "no-compare": "38fb361f406c" 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 e39264203e6..d06160685b9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "3e7fa054f77587b9ac24b6732a9926273b0f2ff35a266e633d0ccd1dada932cc", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -76,18 +81,6 @@ "startedAt": 0 } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3ec8052ccdb3": { "name": "worktree.show#1", "args": [ @@ -124,10 +117,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -176,14 +165,30 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "c70359272e10": { "name": "worktree.show#1", "args": [ @@ -316,7 +321,7 @@ "id": "notes-refused", "observation": { "sender": ["3feccf790548", "c70359272e10", "26accd69bc48", "ed34044b22f4"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "31bd76fdf517"], + "payloads": ["40b17d95f271", "c0edcb195574", "67fead2b3d30", "6f43dceb9058"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -335,11 +340,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "eae2ae6e9c42" 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 f88609716a9..9b2d93aa602 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "d1b04fe2945a2799ac8465d8fd9e45ab790ae29b401a0cf4fef68ebc5fa3cc76", "platform": "darwin", @@ -31,9 +31,15 @@ "kind": "deleted" } }, - "505493c5c2e4": { + "2eee9b17f40e": { "name": "git.diff#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 3 + }, + "414ef6b1967c": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 1 }, "5768cc374e1d": { "branchCompare": "unloaded", @@ -43,10 +49,6 @@ }, "snapshot": "unloaded" }, - "5d5bb4ccf70d": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}" - }, "67daf7391fee": { "status": "rejected", "startedAt": 0, @@ -57,10 +59,6 @@ "isRpcDeliveryUnknown": false } }, - "7994a1073c64": { - "name": "git.diff#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}" - }, "a58da3417608": { "name": "git.diff#3", "args": [ @@ -97,6 +95,11 @@ } } }, + "b5ca1f0a42b7": { + "name": "git.diff#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 2 + }, "c40409188ab0": { "name": "git.diff#2", "args": [ @@ -185,7 +188,7 @@ "id": "diff-too-large", "observation": { "sender": ["dde75a860803"], - "payloads": ["5d5bb4ccf70d"], + "payloads": ["414ef6b1967c"], "settlements": { "diff-too-large": "0698901154de" }, @@ -197,7 +200,7 @@ "id": "deleted", "observation": { "sender": ["dde75a860803", "c40409188ab0"], - "payloads": ["5d5bb4ccf70d", "7994a1073c64"], + "payloads": ["414ef6b1967c", "b5ca1f0a42b7"], "settlements": { "diff-too-large": "0698901154de", "deleted": "2ecd0366533c" @@ -210,7 +213,7 @@ "id": "refused", "observation": { "sender": ["dde75a860803", "c40409188ab0", "a58da3417608"], - "payloads": ["5d5bb4ccf70d", "7994a1073c64", "505493c5c2e4"], + "payloads": ["414ef6b1967c", "b5ca1f0a42b7", "2eee9b17f40e"], "settlements": { "diff-too-large": "0698901154de", "deleted": "2ecd0366533c", diff --git a/mobile/rpc-foundation/goldens/diff-review-snapshot.json b/mobile/rpc-foundation/goldens/diff-review-snapshot.json index 20cc2fb73cb..3cfad461b90 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "fa0a81462196458fdded5b7c00aa4e73975c2111afdd8dac115871490a481da2", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -51,18 +56,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3ec8052ccdb3": { "name": "worktree.show#1", "args": [ @@ -99,10 +92,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -151,6 +140,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4cb3f61eba79": { "name": "worktree.show#2", "args": [ @@ -189,9 +183,15 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", @@ -222,6 +222,11 @@ "startedAt": 0 } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "da3aebbee6f2": { "name": "git.branchCompare#1", "args": [ @@ -542,7 +547,7 @@ "id": "pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -561,11 +566,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" diff --git a/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json b/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json index 3354a1cb4f5..30f605b401d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "182f37fbe6ae7c0694b50d603ecd4a03bc9a8c7c9738ebb775b47eb5f3b9660f", "platform": "darwin", @@ -22,9 +22,10 @@ "message": "Update Orca desktop to review changes on mobile." } }, - "317a243394fa": { + "40b17d95f271": { "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 }, "55c07df45014": { "branchCompare": "unloaded", @@ -76,7 +77,7 @@ "id": "unavailable", "observation": { "sender": ["93b9682c496c"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "unavailable": "14804a5e414f" }, 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 22c2cb2f8d5..c90d7f54229 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "538b68485a2268d311fcc7e13ff1a3e446ba4aa010bc18633af8e938a6688257", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "2eee9b17f40e": { + "name": "git.diff#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 3 + }, + "3a70a3afc2d9": { + "name": "git.diff#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":true}}", + "sent": 2 + }, "411c5ed8537e": { "name": "git.diff#2", "args": [ @@ -49,9 +59,10 @@ } } }, - "505493c5c2e4": { - "name": "git.diff#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}" + "414ef6b1967c": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 1 }, "55227363ca22": { "status": "rejected", @@ -63,10 +74,6 @@ "isRpcDeliveryUnknown": false } }, - "5d5bb4ccf70d": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":false}}" - }, "66c8c0206a53": { "name": "git.diff#3", "args": [ @@ -165,10 +172,6 @@ } } }, - "f5b40bc1bb4b": { - "name": "git.diff#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"filePath\":\"src/app.ts\",\"staged\":true}}" - }, "f68945ffc2ea": { "branchCompare": "unloaded", "diff": { @@ -185,7 +188,7 @@ "id": "binary", "observation": { "sender": ["9d975272847c"], - "payloads": ["5d5bb4ccf70d"], + "payloads": ["414ef6b1967c"], "settlements": { "binary": "84090dfad90d" }, @@ -197,7 +200,7 @@ "id": "too-large", "observation": { "sender": ["9d975272847c", "411c5ed8537e"], - "payloads": ["5d5bb4ccf70d", "f5b40bc1bb4b"], + "payloads": ["414ef6b1967c", "3a70a3afc2d9"], "settlements": { "binary": "84090dfad90d", "too-large": "8675e0f40158" @@ -210,7 +213,7 @@ "id": "invalid", "observation": { "sender": ["9d975272847c", "411c5ed8537e", "66c8c0206a53"], - "payloads": ["5d5bb4ccf70d", "f5b40bc1bb4b", "505493c5c2e4"], + "payloads": ["414ef6b1967c", "3a70a3afc2d9", "2eee9b17f40e"], "settlements": { "binary": "84090dfad90d", "too-large": "8675e0f40158", diff --git a/mobile/rpc-foundation/goldens/file-tap-open-refused.json b/mobile/rpc-foundation/goldens/file-tap-open-refused.json index bc0a4d2fbe6..ad0c1e4244e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "a927e85c3ae58cd3b017955fe28aeffec6a5471b51d782f116639a3aaf4af77d", "platform": "darwin", @@ -63,6 +63,16 @@ "value": {}, "sent": 1 }, + "52c3c247865d": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}", + "sent": 2 + }, + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "9a73d7a9fdc6": { "name": "files.open#1", "args": [ @@ -105,10 +115,6 @@ "$rpc": "null" } }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -116,10 +122,6 @@ "value": { "$rpc": "undefined" } - }, - "f334b291fecc": { - "name": "files.open#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" } }, "recording": { @@ -129,7 +131,7 @@ "id": "open-refused", "observation": { "sender": ["18cda90904c3", "9a73d7a9fdc6"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a" }, 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 92645a0a622..7274b0584b8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "297ea4075333e178ca20247eb0abf6600efb44fe2b33f5142d1c1cabffb5a2d3", "platform": "darwin", @@ -68,6 +68,16 @@ "value": {}, "sent": 2 }, + "52c3c247865d": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}", + "sent": 2 + }, + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "b765beef262e": { "status": "fulfilled", "startedAt": 0, @@ -79,10 +89,6 @@ } ] }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "d9a357a79330": { "name": "files.open#1", "args": [ @@ -125,10 +131,6 @@ "$rpc": "undefined" } }, - "f334b291fecc": { - "name": "files.open#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" - }, "f8a009b4a36e": { "activeSessionTabId": "tab-opened", "failed": 0, @@ -145,7 +147,7 @@ "id": "switched", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -158,7 +160,7 @@ "id": "settled", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" 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 723926c045b..d9c9906171e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "f1844c2608ce90250fddfc78c0b35bb1bf3647598a5ab2914eca0d8cb4403a38", "platform": "darwin", @@ -68,9 +68,10 @@ "$rpc": "null" } }, - "d88940bfb593": { + "9120b59f16ec": { "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 }, "e8e7c23384dc": { "name": "push-preview-route", @@ -107,7 +108,7 @@ "id": "previewed", "observation": { "sender": ["403de322e21f"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json index e3570a3aa31..df491e24be7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "0f76b96408081737b3d630ee837dbb80bcce6670b6acc4f1f7c033a69bd40533", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "b03e10f6707b": { "name": "files.resolveTerminalPath#1", "args": [ @@ -58,10 +63,6 @@ "$rpc": "null" } }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -78,7 +79,7 @@ "id": "missed", "observation": { "sender": ["b03e10f6707b"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json index 20639669275..7623d7fbe01 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "1ada35966dfb65afbb9b3dc8139961b8f042e2d53241b9608a080d0e655a5987", "platform": "darwin", @@ -51,6 +51,11 @@ } } }, + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "c7ce9c8dc60e": { "activeSessionTabId": "tab-source", "failed": 1, @@ -58,10 +63,6 @@ "$rpc": "null" } }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -78,7 +79,7 @@ "id": "refused", "observation": { "sender": ["8a3fab4d308f"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json index f080bcd175e..7be60558a5b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07", "scenarioSha256": "ec02d3f76085619fad35231e12654ec6e926e423c6799fd0df53708743000612", "platform": "darwin", @@ -39,10 +39,6 @@ "startedAt": 0 } }, - "1a3946e517d4": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}" - }, "30859af566b0": { "name": "files.readDir#1", "args": [ @@ -124,9 +120,10 @@ } } }, - "b5b1bc83b44d": { + "87ae27687a19": { "name": "files.readDir#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}", + "sent": 1 }, "b85511fb8929": { "crash": { @@ -144,6 +141,11 @@ "rows": ["dir:src", "file:README.md"], "text": ["Files", "orca-files", " - Showing first 5000"] }, + "c3a91710450a": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}", + "sent": 2 + }, "e91880eefe86": { "crash": { "$rpc": "null" @@ -176,7 +178,7 @@ "id": "loading", "observation": { "sender": ["195987bc4ef2"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -188,7 +190,7 @@ "id": "legacy-listed", "observation": { "sender": ["30859af566b0", "80bd28a48dda"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/files-explorer-readdir.json b/mobile/rpc-foundation/goldens/files-explorer-readdir.json index cba23171da3..10cd4701af9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07", "scenarioSha256": "0b87a230cf1c4219e415c840a088502c8bda7cd2fb525bde1a83a5903d6fd96b", "platform": "darwin", @@ -96,9 +96,10 @@ } } }, - "b5b1bc83b44d": { + "87ae27687a19": { "name": "files.readDir#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}", + "sent": 1 }, "e91880eefe86": { "crash": { @@ -132,7 +133,7 @@ "id": "loading", "observation": { "sender": ["195987bc4ef2"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -144,7 +145,7 @@ "id": "listed", "observation": { "sender": ["23a7ef6123a7"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/files-ownership-local.json b/mobile/rpc-foundation/goldens/files-ownership-local.json index 7d902480e91..66414330bb8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8d24f52eb4194c3bc5d9f0dcabade6d7a09c066f79f911657647ed21dbecb3b1", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "548f05412e41": { "status": "fulfilled", "startedAt": 0, @@ -25,6 +21,11 @@ "expectedExecutionHostId": "local" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8bdc2aec524d": { "name": "worktree.show#1", "args": [ @@ -60,10 +61,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -101,6 +98,11 @@ "ownership": { "expectedExecutionHostId": "local" } + }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 } }, "recording": { @@ -110,7 +112,7 @@ "id": "settled", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "548f05412e41" }, diff --git a/mobile/rpc-foundation/goldens/files-ownership-ssh.json b/mobile/rpc-foundation/goldens/files-ownership-ssh.json index e8e07da588c..a0d5a2eb280 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "4cd0be3a1c338b4b68211c717fd10738653c553fdb3b072db6706ff8175a8bd1", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "29bfbe94cca9": { "status": "fulfilled", "startedAt": 0, @@ -27,6 +23,11 @@ "expectedSshTargetId": "target-1" } }, + "2f24cdd633b5": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}", + "sent": 3 + }, "518ec57c381a": { "ownership": "uncaptured" }, @@ -106,18 +107,15 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a0341e6a5d84": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -182,6 +180,11 @@ "expectedSshConnectionGeneration": 3, "expectedSshTargetId": "target-1" } + }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 } }, "recording": { @@ -191,7 +194,7 @@ "id": "status-pending", "observation": { "sender": ["bc119660f0c1"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9270aeb7d9c6" }, @@ -203,7 +206,7 @@ "id": "settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "6116946241ca"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "29bfbe94cca9" }, diff --git a/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json b/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json index f5263432ee5..ca17ac46f55 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "dd8b7a0916a84c7d763a163759c02210ae99f8fbccfccaa98796b8610c5da97c", "platform": "darwin", @@ -71,9 +71,10 @@ "truncated": false } }, - "e0401d205ea2": { + "a3bce9470bbb": { "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 } }, "recording": { @@ -83,7 +84,7 @@ "id": "settled", "observation": { "sender": ["194fabd9b9d8"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "500d95d47092" }, diff --git a/mobile/rpc-foundation/goldens/files-preview-artifact-image.json b/mobile/rpc-foundation/goldens/files-preview-artifact-image.json index fe66e0f31f2..4df06735ddb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "d15c1f4e0f95b5c49a8f889d2d37458225293d7306c8439690d972d2df4c29c0", "platform": "darwin", @@ -51,9 +51,10 @@ } } }, - "4a07826edb3b": { + "6df57490419a": { "name": "files.readTerminalArtifactPreview#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifactPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/shot.png\",\"grantId\":\"grant-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifactPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/shot.png\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "7659b8b575da": { "preview": { @@ -80,7 +81,7 @@ "id": "settled", "observation": { "sender": ["25b0318e985e"], - "payloads": ["4a07826edb3b"], + "payloads": ["6df57490419a"], "settlements": { "load": "eee847a9d90d" }, diff --git a/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json b/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json index 281c9585276..f59e424e048 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "055f3b45442c1736f10ee98c493e2ece1885fdb68d925ee627e2ba20853537e0", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "044dee71a9cd": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "25b0d1737c71": { "name": "files.readTerminalArtifact#1", "args": [ @@ -103,6 +108,11 @@ "truncated": false } }, + "5824e53bc730": { + "name": "files.readTerminalArtifact#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}", + "sent": 3 + }, "5f446c109a9a": { "name": "files.readTerminalArtifact#2", "args": [ @@ -169,17 +179,10 @@ "status": "pending", "startedAt": 0 }, - "9a56ffbdd5bf": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}" - }, - "c283e01480f7": { - "name": "files.readTerminalArtifact#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}" - }, - "e0401d205ea2": { + "a3bce9470bbb": { "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "e81d5596c201": { "name": "files.readTerminalArtifact#1", @@ -216,7 +219,7 @@ "id": "read-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "9270aeb7d9c6" }, @@ -228,7 +231,7 @@ "id": "settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "5f446c109a9a"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "500d95d47092" }, diff --git a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json index 9244d4d158d..83f15493103 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "0ffaffb472b663e08a42317d799a2a000211dda5b127fb21cc64f04f73800130", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "3acec737cb08": { + "146931cb2534": { "name": "files.readPreview#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}", + "sent": 1 }, "7659b8b575da": { "preview": { @@ -79,7 +80,7 @@ "id": "settled", "observation": { "sender": ["f6564bdb4e19"], - "payloads": ["3acec737cb08"], + "payloads": ["146931cb2534"], "settlements": { "load": "eee847a9d90d" }, diff --git a/mobile/rpc-foundation/goldens/files-preview-worktree.json b/mobile/rpc-foundation/goldens/files-preview-worktree.json index d924c028d6c..fb95b4e2668 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "bcba4a7d9d929078c5ed80fc7e1acd45859d0b4c559767a919b0396dc6a70a3e", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02ea3f503180": { + "3d04ed6e70c6": { "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 1 }, "3f8bf3069e3d": { "status": "fulfilled", @@ -82,7 +83,7 @@ "id": "settled", "observation": { "sender": ["9babe9503a83"], - "payloads": ["02ea3f503180"], + "payloads": ["3d04ed6e70c6"], "settlements": { "load": "3f8bf3069e3d" }, diff --git a/mobile/rpc-foundation/goldens/files-save-blind.json b/mobile/rpc-foundation/goldens/files-save-blind.json index 7340f3e7187..ff3f64f6409 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8b5c3e87d989966d7b252f19a537040cd5078ba9355a824e7e49af3424390a3e", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "39c6d10eb5a5": { - "name": "files.writeTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}" - }, "54a6055a16b5": { "status": "fulfilled", "startedAt": 0, @@ -61,6 +57,11 @@ } } }, + "940260ab6fb3": { + "name": "files.writeTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}", + "sent": 1 + }, "b3f873eb7d0c": { "saved": { "status": "saved" @@ -74,7 +75,7 @@ "id": "settled", "observation": { "sender": ["936b6553a1e7"], - "payloads": ["39c6d10eb5a5"], + "payloads": ["940260ab6fb3"], "settlements": { "save": "54a6055a16b5" }, diff --git a/mobile/rpc-foundation/goldens/files-save-verified.json b/mobile/rpc-foundation/goldens/files-save-verified.json index f5abae82bce..eb3e439e468 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "6e124d16173074d851d58593b20b25889ed13a3d8021c08fbed53b85a7d3196e", "platform": "darwin", @@ -64,18 +64,20 @@ "935100df69e4": { "saved": "unsaved" }, - "a3886e3a9791": { - "name": "files.writeTerminalArtifact#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}" + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "b3f873eb7d0c": { "saved": { "status": "saved" } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" + "d76588bfa9bd": { + "name": "files.writeTerminalArtifact#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}", + "sent": 2 }, "e391aec81b96": { "name": "files.readTerminalArtifact#1", @@ -149,7 +151,7 @@ "id": "verify-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "9270aeb7d9c6" }, @@ -161,7 +163,7 @@ "id": "settled", "observation": { "sender": ["e391aec81b96", "7875007ef392"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, diff --git a/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json b/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json index 46903176720..8ef9e8f23ef 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "b636221f719dae19a3af6772b687b0bcb300c9910645d23e98c309578ec1c5c5", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02ea3f503180": { - "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" - }, "323bf6059754": { "name": "files.readPreview#1", "args": [ @@ -53,9 +49,15 @@ } } }, - "5c610ebe58ed": { + "3be6ef0e9bd8": { "name": "files.readPreview#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}", + "sent": 2 + }, + "3d04ed6e70c6": { + "name": "files.read#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 1 }, "9babe9503a83": { "name": "files.read#1", @@ -93,6 +95,11 @@ } } }, + "b185e249da6e": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}", + "sent": 3 + }, "b5c68b76c498": { "status": "fulfilled", "startedAt": 0, @@ -183,10 +190,6 @@ "status": "ready" } }, - "fad4ca11a316": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}" - }, "ffe1c534d459": { "status": "fulfilled", "startedAt": 0, @@ -217,7 +220,7 @@ "id": "settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", diff --git a/mobile/rpc-foundation/goldens/home-host-accounts.json b/mobile/rpc-foundation/goldens/home-host-accounts.json index ed5500b0f0e..25ebd7840ab 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a", "scenarioSha256": "366426641e25542fcc6fcd351ece6a1ee897c8b3974c08eb7557eadfa4d3b06f", "platform": "darwin", @@ -55,11 +55,12 @@ } } }, - "29e1daf37245": { - "name": "accounts.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}" - }, "44136fa355b3": {}, + "6432de87fc3e": { + "name": "accounts.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}", + "sent": 1 + }, "ae89fde72803": { "name": "accounts.list#1", "args": [ @@ -205,7 +206,7 @@ "id": "accounts-pending", "observation": { "sender": ["d54161165272"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -217,7 +218,7 @@ "id": "accounts-published", "observation": { "sender": ["ae89fde72803"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/home-host-stats.json b/mobile/rpc-foundation/goldens/home-host-stats.json index 38bc772a481..4b784c79548 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "bd5f4e5f24a29d96c4c98950691c6571918332f71ebb1f29ee97a9abc857ac29", "platform": "darwin", @@ -58,10 +58,6 @@ }, "sent": 1 }, - "7bf81b1e94c5": { - "name": "stats.summary#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}" - }, "9a84a7559023": { "host-1": { "activeWorktrees": 1, @@ -93,6 +89,11 @@ "startedAt": 0 } }, + "dcf607ac617e": { + "name": "stats.summary#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -109,7 +110,7 @@ "id": "stats-pending", "observation": { "sender": ["a392ac528c2b"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -121,7 +122,7 @@ "id": "settled", "observation": { "sender": ["0ebcc6f6a4cb"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/host-view-settings-sync.json b/mobile/rpc-foundation/goldens/host-view-settings-sync.json index 66dc7cfd8d1..433d5a6acff 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "1ee6031227fa3efd5b36841afa60f7b2264eacdd9c6126e5851d5acb39ffaadd", "platform": "darwin", @@ -13,19 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "045d8ec6a888": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}", + "sent": 2 + }, "1207e1b06040": { "name": "workspaceStatuses", "value": [], "sent": 1 }, - "292b632037a0": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}" - }, - "5907841fc56d": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "5fbdd64c75bc": { "name": "ui.get#1", "args": [ @@ -159,6 +156,11 @@ "sortMode": "recent", "statuses": [] }, + "c178812d69e7": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 1 + }, "d88f3b1774b1": { "name": "filters", "value": { @@ -190,7 +192,7 @@ "id": "ui-pending", "observation": { "sender": ["5fbdd64c75bc"], - "payloads": ["5907841fc56d"], + "payloads": ["c178812d69e7"], "settlements": { "mount": "eb79a9b3682a", "sync": "9270aeb7d9c6" @@ -203,7 +205,7 @@ "id": "settled", "observation": { "sender": ["a424515cabc9", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", 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 7b18680e48f..1a40ef839e9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "720add498c79425ca8efc9764fd5d8307fe33bc891842604cfc899f770b79811", "platform": "darwin", @@ -104,6 +104,11 @@ } } }, + "2c2ff4eed497": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}", + "sent": 1 + }, "3e27f9568029": { "name": "lastKnownWorktrees", "value": [ @@ -126,9 +131,10 @@ ], "sent": 0 }, - "4caf7515e224": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}" + "43444aeb669c": { + "name": "worktree.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}", + "sent": 2 }, "56b6d4fb8c56": { "name": "worktree.set#1", @@ -164,10 +170,6 @@ } } }, - "69d698d4f352": { - "name": "worktree.rm#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" - }, "6e959a9dd70e": { "confirmRemoveHost": false, "lastKnownWorktrees": [], @@ -239,6 +241,11 @@ "value": ["wt-1"], "sent": 0 }, + "ba712c70aeb2": { + "name": "worktree.rm#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}", + "sent": 3 + }, "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", "value": "|wt-1", @@ -270,10 +277,6 @@ "startedAt": 0 } }, - "c3eecb0c6e96": { - "name": "worktree.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}" - }, "e3e3c397a66a": { "name": "worktree.rm#1", "args": [ @@ -316,7 +319,7 @@ "id": "pin-optimistic", "observation": { "sender": ["bf2b36bda2d2"], - "payloads": ["4caf7515e224"], + "payloads": ["2c2ff4eed497"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a" @@ -329,7 +332,7 @@ "id": "delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -351,7 +354,7 @@ "id": "settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json index c2d9046a602..249857e02be 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "5dd5e7eabaabba1e471b13958f59891c3b28f553087c96315598c83a14ded7e7", "platform": "darwin", @@ -35,15 +35,16 @@ ], "sent": 1 }, - "3fd02e693647": { - "name": "worktree.rm#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" - }, "4390dbd60885": { "name": "lastKnownWorktrees", "value": [], "sent": 0 }, + "6f5a073918ed": { + "name": "worktree.rm#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}", + "sent": 1 + }, "77c8169fffce": { "name": "worktrees", "value": [], @@ -206,7 +207,7 @@ "id": "delete-optimistic", "observation": { "sender": ["e3e3c397a66a"], - "payloads": ["3fd02e693647"], + "payloads": ["6f5a073918ed"], "settlements": { "mount": "eb79a9b3682a", "delete": "9270aeb7d9c6" @@ -219,7 +220,7 @@ "id": "restored", "observation": { "sender": ["e97d1f006b72"], - "payloads": ["3fd02e693647"], + "payloads": ["6f5a073918ed"], "settlements": { "mount": "eb79a9b3682a", "delete": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json b/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json new file mode 100644 index 00000000000..c3b29f06c24 --- /dev/null +++ b/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json @@ -0,0 +1,258 @@ +{ + "operation": "worktree.host-refresh", + "family": "host-worktree-refresh", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "6ac11f1ab42fea3b718d9714e512a4e8a344aea66ae170fbe9ef2b5ae82dbe0a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1e5c2d0839f0": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": true + }, + "32ad88ec13e3": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "force": true, + "queueIfInFlight": true + } + }, + "sent": 0 + }, + "519cd29a30fa": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "5f7bd3b1a756": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 0 + }, + "61f865a194bf": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "6d9fd24a7491": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 2, + "running": true + }, + "8297145c6199": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 1, + "running": true + }, + "8f638d83589d": { + "name": "fetchWorktrees", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "91e9a84a208f": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": false + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "cfd2555aae81": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "e54e98a537b8": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "edb34b7fcc08": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": true + }, + "f2af146a9f12": { + "status": "fulfilled", + "startedAt": 3000, + "settledAt": 3000, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "host-worktree-refresh-stream", + "checkpoints": [ + { + "id": "started", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "edb34b7fcc08", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "91e9a84a208f", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + } + ] + } +} diff --git a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json index fa4e49ada87..453d527bb60 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "d6c57a5153d915f0a0c0fd9e305cac70b41b7eb8be226fc865227ebf1821e5d1", "platform": "darwin", @@ -13,17 +13,9 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "602e35a92eec": { "files": [] }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "b5b30ad54c76": { "name": "files.list#1", "args": [ @@ -55,6 +47,11 @@ } } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -127,6 +124,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -182,7 +184,7 @@ "id": "inventory-lifecycle.timeout:interrupted", "observation": { "sender": ["c0821dc354d7", "ee88659ed950"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -195,7 +197,7 @@ "id": "inventory-lifecycle.timeout:settled", "observation": { "sender": ["c0821dc354d7", "ee88659ed950"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -208,7 +210,7 @@ "id": "inventory-lifecycle.disconnect:interrupted", "observation": { "sender": ["c0821dc354d7", "b5b30ad54c76"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -222,7 +224,7 @@ "id": "inventory-lifecycle.disconnect:settled", "observation": { "sender": ["c0821dc354d7", "b5b30ad54c76"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -236,7 +238,7 @@ "id": "inventory-lifecycle.cutover:interrupted", "observation": { "sender": ["c0821dc354d7", "ccb16672d904"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -250,7 +252,7 @@ "id": "inventory-lifecycle.cutover:settled", "observation": { "sender": ["c0821dc354d7", "ccb16672d904"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 8546687cde4..429688c615e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "2d5c6dea28aa1a7bb9e4aa14a4c8441527d9ad401ad30161f05ea1f8da836bb2", "platform": "darwin", @@ -75,9 +75,10 @@ } }, "4f53cda18c2b": [], - "7ddcb1852b39": { + "5c52bc3f9e55": { "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "7fc945a92540": { "name": "settings.get#1", @@ -157,7 +158,7 @@ "id": "settings-bot-overrides-fulfilled.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -169,7 +170,7 @@ "id": "settings-bot-overrides-fulfilled.timeout:interrupted", "observation": { "sender": ["7fc945a92540"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -181,7 +182,7 @@ "id": "settings-bot-overrides-fulfilled.timeout:settled", "observation": { "sender": ["7fc945a92540"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -193,7 +194,7 @@ "id": "settings-bot-overrides-fulfilled.disconnect:interrupted", "observation": { "sender": ["af6903aed166"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "disconnect": "eb79a9b3682a" @@ -206,7 +207,7 @@ "id": "settings-bot-overrides-fulfilled.disconnect:settled", "observation": { "sender": ["af6903aed166"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "disconnect": "eb79a9b3682a" @@ -219,7 +220,7 @@ "id": "settings-bot-overrides-fulfilled.cutover:interrupted", "observation": { "sender": ["06eff8247d02"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "cutover": "eb79a9b3682a" @@ -232,7 +233,7 @@ "id": "settings-bot-overrides-fulfilled.cutover:settled", "observation": { "sender": ["06eff8247d02"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "cutover": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/inventory-lifecycle.json b/mobile/rpc-foundation/goldens/inventory-lifecycle.json index 618b0ecfb29..56104881fe3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "3471f5bcd6923c7b8ba3a737bb45b5239689deb78c00e85a828f38a6d6d68a05", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "64847315695c": { "name": "files.list#1", "args": [ @@ -54,9 +50,10 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 }, "c0821dc354d7": { "name": "files.searchPaths#1", @@ -94,6 +91,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -113,7 +115,7 @@ "id": "settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/inventory-repeat-query.json b/mobile/rpc-foundation/goldens/inventory-repeat-query.json index 518af709a66..9077f526229 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "73a468d5c7a51c2dbb7af2642f0050d05d861fce29295460c48d7c51f86bf57f", "platform": "darwin", @@ -63,9 +63,10 @@ "$rpc": "undefined" } }, - "1df364c141e7": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"beta\",\"limit\":16}}" + "0d4bc47af85a": { + "name": "files.searchPaths#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"gamma\",\"limit\":16}}", + "sent": 3 }, "3642acfe438f": { "files": ["beta.ts"] @@ -105,9 +106,10 @@ "startedAt": 360 } }, - "702153114450": { - "name": "files.searchPaths#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"gamma\",\"limit\":16}}" + "76d5760bc8ba": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"beta\",\"limit\":16}}", + "sent": 2 }, "7e0cf12e6220": { "name": "files.searchPaths#3", @@ -148,10 +150,6 @@ } } }, - "a1e1a76515f9": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"alpha\",\"limit\":16}}" - }, "a7201fe6aca9": { "name": "files.searchPaths#2", "args": [ @@ -191,6 +189,11 @@ } } }, + "cf1cd4765877": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"alpha\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -215,7 +218,7 @@ "id": "cached-alpha", "observation": { "sender": ["07ed03809186", "a7201fe6aca9", "6908b2a7adc8"], - "payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"], + "payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"], "settlements": { "mount": "eb79a9b3682a", "alpha": "eb79a9b3682a", @@ -231,7 +234,7 @@ "id": "stale-search-ignored", "observation": { "sender": ["07ed03809186", "a7201fe6aca9", "7e0cf12e6220"], - "payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"], + "payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"], "settlements": { "mount": "eb79a9b3682a", "alpha": "eb79a9b3682a", @@ -247,7 +250,7 @@ "id": "cached-beta-cancels-debounce", "observation": { "sender": ["07ed03809186", "a7201fe6aca9", "7e0cf12e6220"], - "payloads": ["a1e1a76515f9", "1df364c141e7", "702153114450"], + "payloads": ["cf1cd4765877", "76d5760bc8ba", "0d4bc47af85a"], "settlements": { "mount": "eb79a9b3682a", "alpha": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/lifecycle-b3.json b/mobile/rpc-foundation/goldens/lifecycle-b3.json index 8ab00a73270..fad1cbd80ed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "8be12d116865d27e8dfd37921d2c723d63da101ec1197b1f5b2d9510838e1943", "platform": "darwin", @@ -53,9 +53,10 @@ "value": "comments transport error", "sent": 2 }, - "2b9e0df88a93": { + "310d25d529be": { "name": "linear.getIssue#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 4 }, "39ca42c97176": { "name": "detailError", @@ -95,6 +96,11 @@ "$rpc": "null" } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4e7c4654b51d": { "name": "linear.issueComments#1", "args": [ @@ -132,6 +138,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "5ca77e9853cb": { "name": "detailPayload", "value": { @@ -151,6 +162,11 @@ "$rpc": "null" } }, + "7c849571656d": { + "name": "linear.issueComments#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 4 + }, "8b45b8e00ec0": { "name": "linear.getIssue#2", "args": [ @@ -215,18 +231,6 @@ "startedAt": 0 } }, - "ae1e9660892e": { - "name": "linear.issueComments#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -274,7 +278,7 @@ "id": "b3.prelude:pending", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -286,7 +290,7 @@ "id": "b3.prelude:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -298,7 +302,7 @@ "id": "b3.reset-before-1:lifecycle-boundary", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -318,7 +322,7 @@ "id": "b3.reset-before-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -338,7 +342,7 @@ "id": "b3.reset-before-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -358,7 +362,7 @@ "id": "b3.reset-after-1:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -378,7 +382,7 @@ "id": "b3.reset-after-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -398,7 +402,7 @@ "id": "b3.reset-after-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -418,7 +422,7 @@ "id": "b3.reset-before-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -438,7 +442,7 @@ "id": "b3.reset-before-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -458,7 +462,7 @@ "id": "b3.reset-after-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -480,7 +484,7 @@ "id": "b3.reset-after-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -502,7 +506,7 @@ "id": "b3.unmount-before-1:lifecycle-boundary", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -515,7 +519,7 @@ "id": "b3.unmount-before-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -528,7 +532,7 @@ "id": "b3.unmount-before-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -541,7 +545,7 @@ "id": "b3.unmount-before-1:remounted", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -562,7 +566,7 @@ "id": "b3.unmount-after-1:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -575,7 +579,7 @@ "id": "b3.unmount-after-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -588,7 +592,7 @@ "id": "b3.unmount-after-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -601,7 +605,7 @@ "id": "b3.unmount-after-1:remounted", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -622,7 +626,7 @@ "id": "b3.unmount-before-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -635,7 +639,7 @@ "id": "b3.unmount-before-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -648,7 +652,7 @@ "id": "b3.unmount-before-2:remounted", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -669,7 +673,7 @@ "id": "b3.unmount-after-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -688,7 +692,7 @@ "id": "b3.unmount-after-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -707,7 +711,7 @@ "id": "b3.unmount-after-2:remounted", "observation": { "sender": ["034a83431f03", "4e7c4654b51d", "8b45b8e00ec0", "9ea1594bdfc8"], - "payloads": ["bb215a1eb59b", "e7f73629d075", "2b9e0df88a93", "ae1e9660892e"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f", "310d25d529be", "7c849571656d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -730,7 +734,7 @@ "id": "b3.blur-before-1:lifecycle-boundary", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -743,7 +747,7 @@ "id": "b3.blur-before-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -756,7 +760,7 @@ "id": "b3.blur-before-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -775,7 +779,7 @@ "id": "b3.blur-after-1:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -788,7 +792,7 @@ "id": "b3.blur-after-1:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -801,7 +805,7 @@ "id": "b3.blur-after-1:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -820,7 +824,7 @@ "id": "b3.blur-before-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -833,7 +837,7 @@ "id": "b3.blur-before-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -852,7 +856,7 @@ "id": "b3.blur-after-2:lifecycle-boundary", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -871,7 +875,7 @@ "id": "b3.blur-after-2:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json index 20ea837d090..6e5565492ea 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "46bbafcc57fe2e3aee41a14bc26a0375b7b56e58030705fe4c28841a272b2560", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "356af7179c37": { "name": "files.searchPaths#1", "args": [ @@ -84,10 +80,6 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "b2434f1de9f6": { "name": "files.list#1", "args": [ @@ -113,6 +105,11 @@ "startedAt": 120 } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -149,6 +146,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -176,7 +178,7 @@ "id": "inventory-lifecycle.reset-before-1:lifecycle-boundary", "observation": { "sender": ["356af7179c37"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -190,7 +192,7 @@ "id": "inventory-lifecycle.reset-before-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -204,7 +206,7 @@ "id": "inventory-lifecycle.reset-after-1:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -218,7 +220,7 @@ "id": "inventory-lifecycle.reset-after-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -232,7 +234,7 @@ "id": "inventory-lifecycle.reset-before-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -246,7 +248,7 @@ "id": "inventory-lifecycle.reset-before-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -260,7 +262,7 @@ "id": "inventory-lifecycle.reset-after-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -274,7 +276,7 @@ "id": "inventory-lifecycle.reset-after-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -288,7 +290,7 @@ "id": "inventory-lifecycle.unmount-before-1:lifecycle-boundary", "observation": { "sender": ["356af7179c37"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -302,7 +304,7 @@ "id": "inventory-lifecycle.unmount-before-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -316,7 +318,7 @@ "id": "inventory-lifecycle.unmount-before-1:remounted", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -331,7 +333,7 @@ "id": "inventory-lifecycle.unmount-after-1:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -345,7 +347,7 @@ "id": "inventory-lifecycle.unmount-after-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -359,7 +361,7 @@ "id": "inventory-lifecycle.unmount-after-1:remounted", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -374,7 +376,7 @@ "id": "inventory-lifecycle.unmount-before-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -388,7 +390,7 @@ "id": "inventory-lifecycle.unmount-before-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -402,7 +404,7 @@ "id": "inventory-lifecycle.unmount-before-2:remounted", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -417,7 +419,7 @@ "id": "inventory-lifecycle.unmount-after-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -431,7 +433,7 @@ "id": "inventory-lifecycle.unmount-after-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -445,7 +447,7 @@ "id": "inventory-lifecycle.unmount-after-2:remounted", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -460,7 +462,7 @@ "id": "inventory-lifecycle.blur-before-1:lifecycle-boundary", "observation": { "sender": ["356af7179c37"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -474,7 +476,7 @@ "id": "inventory-lifecycle.blur-before-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -488,7 +490,7 @@ "id": "inventory-lifecycle.blur-after-1:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -502,7 +504,7 @@ "id": "inventory-lifecycle.blur-after-1:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -516,7 +518,7 @@ "id": "inventory-lifecycle.blur-before-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -530,7 +532,7 @@ "id": "inventory-lifecycle.blur-before-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -544,7 +546,7 @@ "id": "inventory-lifecycle.blur-after-2:lifecycle-boundary", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -558,7 +560,7 @@ "id": "inventory-lifecycle.blur-after-2:settled", "observation": { "sender": ["c0821dc354d7", "64847315695c"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 a515ab3dcd9..c8a77bd38d2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "eb80283956c93849778f23cbabf1dbf83b72744197af4f6f50335b2fc1590d87", "platform": "darwin", @@ -38,7 +38,17 @@ "startedAt": 0 } }, + "271aee91b48d": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, "4f53cda18c2b": [], + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7ad8a0996352": { "name": "settings.get#2", "args": [ @@ -103,14 +113,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "8f6fe9452bda": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "d52c8e96e222": ["bot-user"], "eb79a9b3682a": { "status": "fulfilled", @@ -128,7 +130,7 @@ "id": "settings-bot-overrides-fulfilled.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -140,7 +142,7 @@ "id": "settings-bot-overrides-fulfilled.reset-before-1:lifecycle-boundary", "observation": { "sender": ["090c88478661", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -153,7 +155,7 @@ "id": "settings-bot-overrides-fulfilled.reset-before-1:settled", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -166,7 +168,7 @@ "id": "settings-bot-overrides-fulfilled.reset-after-1:lifecycle-boundary", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -179,7 +181,7 @@ "id": "settings-bot-overrides-fulfilled.reset-after-1:settled", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-reset": "eb79a9b3682a" @@ -192,7 +194,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-before-1:lifecycle-boundary", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -205,7 +207,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-before-1:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -218,7 +220,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-before-1:remounted", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -232,7 +234,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-after-1:lifecycle-boundary", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -245,7 +247,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-after-1:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -258,7 +260,7 @@ "id": "settings-bot-overrides-fulfilled.unmount-after-1:remounted", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a", @@ -272,7 +274,7 @@ "id": "settings-bot-overrides-fulfilled.blur-before-1:lifecycle-boundary", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -285,7 +287,7 @@ "id": "settings-bot-overrides-fulfilled.blur-before-1:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -298,7 +300,7 @@ "id": "settings-bot-overrides-fulfilled.blur-after-1:lifecycle-boundary", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -311,7 +313,7 @@ "id": "settings-bot-overrides-fulfilled.blur-after-1:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" 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 8057a8c41b5..8f31197cae4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3a8eab831602443d320ca0aa0f35dc269d8d511e76bdae8fd025c433561d068d", "platform": "darwin", @@ -94,10 +94,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -207,6 +203,11 @@ "value": false, "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -256,6 +257,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -396,10 +402,6 @@ } } }, - "70c1fe53348e": { - "name": "status.get#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "758b8c1db523": { "name": "projectRepoNotInOrca", "value": { @@ -436,11 +438,21 @@ "value": false, "sent": 5 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, "83f55c58a6c5": { "name": "showCreateTargetPicker", "value": false, "sent": 5 }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -517,6 +529,16 @@ "value": false, "sent": 5 }, + "96cb852fd9c8": { + "name": "status.get#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 6 + }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9abed258acba": { "name": "showGitHubPagePicker", "value": false, @@ -640,10 +662,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "afb75a8d93f3": { "name": "showLinearWorkspacePicker", "value": false, @@ -847,10 +865,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -875,10 +889,6 @@ "value": false, "sent": 5 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -887,10 +897,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "ef60e60436d0": { "name": "showGitLabViewPicker", "value": false, @@ -943,11 +949,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1008,11 +1014,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1074,11 +1080,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1141,12 +1147,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -1247,11 +1253,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1313,11 +1319,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1380,12 +1386,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -1486,11 +1492,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1552,11 +1558,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1619,12 +1625,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -1725,11 +1731,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1791,11 +1797,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -1858,12 +1864,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -1964,11 +1970,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2030,11 +2036,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2097,12 +2103,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -2203,11 +2209,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2269,11 +2275,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2336,12 +2342,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -2442,11 +2448,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2508,11 +2514,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2575,12 +2581,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -2681,11 +2687,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2766,11 +2772,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2852,12 +2858,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", 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 84de765b56d..07f792808b1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "136fb1d8d5925ad12ba22f4dd6c72573a9ad03b6a6ec8308668f0d9cd71aa36d", "platform": "darwin", @@ -63,14 +63,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, - "13028e692551": { - "name": "preflight.check#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -107,6 +99,16 @@ }, "trust": {} }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, + "31184e123046": { + "name": "linear.status#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 8 + }, "39bfd36b44ed": { "name": "ui.get#2", "args": [ @@ -132,14 +134,6 @@ "startedAt": 0 } }, - "3fc2a1b54e13": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4938921744c6": { "name": "ui.get#1", "args": [ @@ -173,6 +167,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -233,9 +232,15 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 + }, + "762a39050969": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 8 }, "789980530ae3": { "name": "linear.status#1", @@ -295,6 +300,11 @@ "startedAt": 0 } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -334,18 +344,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, - "847430ffa968": { - "name": "linear.status#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, - "84b10f34b617": { - "name": "ui.get#2", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "8a63b85fee0c": { "providers": [], "settings": { @@ -407,6 +405,11 @@ "startedAt": 0 } }, + "dee8051f4ae6": { + "name": "ui.get#2", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 8 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -415,6 +418,11 @@ "$rpc": "undefined" } }, + "f1c1823caa54": { + "name": "preflight.check#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 8 + }, "f6a09f8c5b85": { "providers": [], "settings": { @@ -430,7 +438,7 @@ "id": "settings-workspace-context-fulfilled.prelude:settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -442,7 +450,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-1:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -455,7 +463,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-1:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -478,14 +486,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -500,7 +508,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-1:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -513,7 +521,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-1:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -536,14 +544,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -558,7 +566,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-2:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -571,7 +579,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-2:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -594,14 +602,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -616,7 +624,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-2:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -629,7 +637,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-2:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -652,14 +660,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -674,7 +682,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-3:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -687,7 +695,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-3:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -710,14 +718,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -732,7 +740,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-3:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -745,7 +753,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-3:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -768,14 +776,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -790,7 +798,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-4:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -803,7 +811,7 @@ "id": "settings-workspace-context-fulfilled.unmount-before-4:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -826,14 +834,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -848,7 +856,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-4:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -861,7 +869,7 @@ "id": "settings-workspace-context-fulfilled.unmount-after-4:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-unmount": "eb79a9b3682a" @@ -884,14 +892,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -906,7 +914,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-1:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -919,7 +927,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-1:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -932,7 +940,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-1:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -945,7 +953,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-1:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -958,7 +966,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-2:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -971,7 +979,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-2:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -984,7 +992,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-2:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -997,7 +1005,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-2:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1010,7 +1018,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-3:lifecycle-boundary", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1023,7 +1031,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-3:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1036,7 +1044,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-3:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1049,7 +1057,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-3:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1062,7 +1070,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-4:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "a4760ef5a9f4", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1075,7 +1083,7 @@ "id": "settings-workspace-context-fulfilled.blur-before-4:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1088,7 +1096,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-4:lifecycle-boundary", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" @@ -1101,7 +1109,7 @@ "id": "settings-workspace-context-fulfilled.blur-after-4:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "lifecycle-blur": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/linear-select-workspace.json b/mobile/rpc-foundation/goldens/linear-select-workspace.json index ee8fc259791..53cfe7cf4fe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f", "scenarioSha256": "b6eb40d9a91c89179483afec93fbc121b99ef679d3b2433575b26694d0c577d5", "platform": "darwin", @@ -77,10 +77,6 @@ "startedAt": 0 } }, - "99a34c4ee1d1": { - "name": "linear.selectWorkspace#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}" - }, "c97ff66588a1": { "name": "linear.context-reloaded", "value": { @@ -94,6 +90,11 @@ "selectedWorkspaceId": "workspace-b", "teamCount": 0 }, + "ea687d1f2a99": { + "name": "linear.selectWorkspace#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -110,7 +111,7 @@ "id": "selected", "observation": { "sender": ["4a23506ae3dc"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -122,7 +123,7 @@ "id": "switched", "observation": { "sender": ["06776b3d9986"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/live-worktree-name-stream.json b/mobile/rpc-foundation/goldens/live-worktree-name-stream.json new file mode 100644 index 00000000000..76fb3256322 --- /dev/null +++ b/mobile/rpc-foundation/goldens/live-worktree-name-stream.json @@ -0,0 +1,335 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "056abf42b34537025fed30a4401bd465c93bc21558babb826f21b5c803b487eb", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "live-worktree-name-stream", + "checkpoints": [ + { + "id": "subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + } + ] + } +} 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 5441b35a152..a8c6a7e1d22 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "211e3780edc0ff5fa0529c0de0e8bc2fd746a19c8a6b4e49900f6c4e56d53f7c", "platform": "darwin", @@ -101,9 +101,10 @@ "kind": "unsupported" } }, - "4a8f44bda967": { + "3db129933d79": { "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 }, "551313dcc738": { "launched": { @@ -447,7 +448,7 @@ "id": "structured-launch-unsupported.normal:unsupported", "observation": { "sender": ["bef30d717da6"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "dd51c5566f19" }, @@ -459,7 +460,7 @@ "id": "structured-launch-unsupported.result-absent:unsupported", "observation": { "sender": ["b5992e9c9c01"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "f0bb9de9827c" }, @@ -471,7 +472,7 @@ "id": "structured-launch-unsupported.result-null:unsupported", "observation": { "sender": ["70998d5a1f56"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "f0bb9de9827c" }, @@ -483,7 +484,7 @@ "id": "structured-launch-unsupported.inner-ok-missing:unsupported", "observation": { "sender": ["add0a607a4c6"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "f0bb9de9827c" }, @@ -495,7 +496,7 @@ "id": "structured-launch-unsupported.inner-false-string-error:unsupported", "observation": { "sender": ["af6b02a86254"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "f0bb9de9827c" }, @@ -507,7 +508,7 @@ "id": "structured-launch-unsupported.inner-false-object-error:unsupported", "observation": { "sender": ["03bae1ffdae6"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "f0bb9de9827c" }, @@ -519,7 +520,7 @@ "id": "structured-launch-unsupported.outer-refused:unsupported", "observation": { "sender": ["f698ccf3773d"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, @@ -531,7 +532,7 @@ "id": "structured-launch-unsupported.outer-refused-no-message:unsupported", "observation": { "sender": ["0972c78c3d52"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, @@ -543,7 +544,7 @@ "id": "structured-launch-unsupported.method-not-found:unsupported", "observation": { "sender": ["99caa4276b06"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, @@ -555,7 +556,7 @@ "id": "structured-launch-unsupported.transport-rejection:unsupported", "observation": { "sender": ["e4a3b2c6a246"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, @@ -567,7 +568,7 @@ "id": "structured-launch-unsupported.transport-rejection-no-message:unsupported", "observation": { "sender": ["c0c67a317e23"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, 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 09e7d231fae..9195bdf4f80 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "efb8d1cd2a2ff0ade4cdc48a1aacec565e33b405bbe95c100b86534cdde49740", "platform": "darwin", @@ -25,10 +25,6 @@ "message": "Cannot read properties of undefined (reading 'sessions')" } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "232a27ecb718": { "name": "aiVault.listSessions#1", "args": [ @@ -74,6 +70,11 @@ "message": "Unable to load agent sessions" } }, + "56c96fec6d08": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 2 + }, "61f76365e23c": { "activeWorktreePath": "/repo/feature", "hostStatusResult": { @@ -121,10 +122,6 @@ } } }, - "681cb0d74271": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "698f848e6967": { "activeWorktreePath": "/repo/feature", "hostStatusResult": { @@ -206,6 +203,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "a07975f2dc20": { "name": "aiVault.listSessions#1", "args": [ @@ -582,7 +584,7 @@ "id": "aivault-history-scan-fulfilled.normal:ready", "observation": { "sender": ["6e50957443ea", "b567072e5440"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -594,7 +596,7 @@ "id": "aivault-history-scan-fulfilled.result-absent:ready", "observation": { "sender": ["6e50957443ea", "fe995263cbdb"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -606,7 +608,7 @@ "id": "aivault-history-scan-fulfilled.result-null:ready", "observation": { "sender": ["6e50957443ea", "63954da09bd5"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -618,7 +620,7 @@ "id": "aivault-history-scan-fulfilled.inner-ok-missing:ready", "observation": { "sender": ["6e50957443ea", "a07975f2dc20"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -630,7 +632,7 @@ "id": "aivault-history-scan-fulfilled.inner-false-string-error:ready", "observation": { "sender": ["6e50957443ea", "cb6df2fa8b89"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -642,7 +644,7 @@ "id": "aivault-history-scan-fulfilled.inner-false-object-error:ready", "observation": { "sender": ["6e50957443ea", "b439901fb32e"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -654,7 +656,7 @@ "id": "aivault-history-scan-fulfilled.outer-refused:ready", "observation": { "sender": ["6e50957443ea", "e52e185c004d"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -666,7 +668,7 @@ "id": "aivault-history-scan-fulfilled.outer-refused-no-message:ready", "observation": { "sender": ["6e50957443ea", "82e315fc9ae9"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -678,7 +680,7 @@ "id": "aivault-history-scan-fulfilled.method-not-found:ready", "observation": { "sender": ["6e50957443ea", "b4700df437ac"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -690,7 +692,7 @@ "id": "aivault-history-scan-fulfilled.transport-rejection:ready", "observation": { "sender": ["6e50957443ea", "232a27ecb718"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -702,7 +704,7 @@ "id": "aivault-history-scan-fulfilled.transport-rejection-no-message:ready", "observation": { "sender": ["6e50957443ea", "c5357db644f1"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, 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 21af25e24cc..27d10f033be 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", "scenarioSha256": "30e00c0d94413aab61b164fb9a658e526448addc4c42fd8892b1c28335d30beb", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "017d690f964b": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 4 + }, "074d2293c010": { "name": "worktree.ps#1", "args": [ @@ -57,10 +62,6 @@ } } }, - "15686a7a3813": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -161,10 +162,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "522b745543f1": { "name": "aiVault.listSessions#1", "args": [ @@ -322,10 +319,6 @@ } } }, - "a5ba8a3216d2": { - "name": "status.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "accf1e896504": { "name": "status.get#1", "args": [ @@ -493,6 +486,16 @@ "labels": ["Back", "Refresh agent sessions"], "text": ["Agent Session History", "orca-history"] }, + "d4ef0569dbbc": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 3 + }, + "de79fb948454": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 2 + }, "de87f6266897": { "name": "status.get#1", "args": [ @@ -566,9 +569,10 @@ "$rpc": "undefined" } }, - "ec120260263a": { - "name": "status.get#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "ff0ffaddbbf7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -578,7 +582,7 @@ "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", "observation": { "sender": ["bc1a8e138f82", "ba9fd57319d3"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -590,7 +594,7 @@ "id": "aivault-history-screen-worktrees.normal:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -602,7 +606,7 @@ "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", "observation": { "sender": ["074d2293c010", "8fa57295e0a5", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -614,7 +618,7 @@ "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", "observation": { "sender": ["074d2293c010", "accf1e896504", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -626,7 +630,7 @@ "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", "observation": { "sender": ["074d2293c010", "734a1d442442", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -638,7 +642,7 @@ "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", "observation": { "sender": ["074d2293c010", "eadec2060275", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -650,7 +654,7 @@ "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", "observation": { "sender": ["074d2293c010", "377739b45602", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -662,7 +666,7 @@ "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", "observation": { "sender": ["074d2293c010", "c957a9653ef3", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -674,7 +678,7 @@ "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", "observation": { "sender": ["074d2293c010", "72fe28919674", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -686,7 +690,7 @@ "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", "observation": { "sender": ["074d2293c010", "bcb43d5f686b", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -698,7 +702,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", "observation": { "sender": ["074d2293c010", "de87f6266897", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -710,7 +714,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", "observation": { "sender": ["074d2293c010", "2698c9770ad3", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, 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 88a3d6da275..8b93ecd28d6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", "scenarioSha256": "b146be741484f2a6dca25e97f52b9ed10f8a2b28bd00e6b56acffbcd82136b2f", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "017d690f964b": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 4 + }, "074d2293c010": { "name": "worktree.ps#1", "args": [ @@ -77,10 +82,6 @@ "Update Orca on this host to browse agent session history." ] }, - "15686a7a3813": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "18c1e8ee98a9": { "name": "status.get#2", "args": [ @@ -373,10 +374,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "4af220e500d6": { "crash": { "$rpc": "null" @@ -561,10 +558,6 @@ } } }, - "a5ba8a3216d2": { - "name": "status.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "af9574769167": { "crash": { "$rpc": "null" @@ -707,6 +700,16 @@ } } }, + "d4ef0569dbbc": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 3 + }, + "de79fb948454": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -715,9 +718,10 @@ "$rpc": "undefined" } }, - "ec120260263a": { - "name": "status.get#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "ff0ffaddbbf7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -727,7 +731,7 @@ "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", "observation": { "sender": ["bc1a8e138f82", "ba9fd57319d3"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -739,7 +743,7 @@ "id": "aivault-history-screen-worktrees.normal:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -751,7 +755,7 @@ "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "3bf9d347000f"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -763,7 +767,7 @@ "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "1c8a5fa9c737"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -775,7 +779,7 @@ "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "70934ebc4e94"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -787,7 +791,7 @@ "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "4584964f74a7"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -799,7 +803,7 @@ "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "20368e0f363c"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -811,7 +815,7 @@ "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "266cf07850dd"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -823,7 +827,7 @@ "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "8f8b5bf6f808"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -835,7 +839,7 @@ "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "d2bc55fb4a14"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -847,7 +851,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "18c1e8ee98a9"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, @@ -859,7 +863,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "1ca2b2b151f0"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc"], "settlements": { "mount": "eb79a9b3682a" }, 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 b2fd28f9517..26f939f28ce 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "694e6a331a7b0a742059ac6575ee8fd5cdeb3ba80abe58cbd216f6bc4a24e400", "scenarioSha256": "5365449c24d789c6c01604b520b795502d0bec352032686efecd121fc4497f96", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "017d690f964b": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 4 + }, "074d2293c010": { "name": "worktree.ps#1", "args": [ @@ -57,10 +62,6 @@ } } }, - "075724b1ba2e": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[]}}" - }, "08a62b87ca0b": { "crash": "Cannot read properties of undefined (reading 'find')", "elements": {}, @@ -101,10 +102,6 @@ } } }, - "15686a7a3813": { - "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" - }, "29ba09534e96": { "name": "status.get#2", "args": [ @@ -207,10 +204,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "4cb0f02a3a16": { "name": "aiVault.listSessions#1", "args": [ @@ -366,6 +359,11 @@ } } }, + "8b42c7661500": { + "name": "aiVault.listSessions#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[]}}", + "sent": 4 + }, "97177805ceb8": { "name": "worktree.ps#1", "args": [ @@ -465,10 +463,6 @@ } } }, - "a5ba8a3216d2": { - "name": "status.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ba9fd57319d3": { "name": "status.get#1", "args": [ @@ -535,6 +529,16 @@ "labels": ["Back", "Refresh agent sessions"], "text": ["Agent Session History", "orca-history"] }, + "d4ef0569dbbc": { + "name": "status.get#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 3 + }, + "de79fb948454": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 2 + }, "e904502f2359": { "name": "worktree.ps#1", "args": [ @@ -576,10 +580,6 @@ "$rpc": "undefined" } }, - "ec120260263a": { - "name": "status.get#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "f2257f595504": { "name": "worktree.ps#1", "args": [ @@ -613,6 +613,11 @@ } } } + }, + "ff0ffaddbbf7": { + "name": "status.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -622,7 +627,7 @@ "id": "aivault-history-screen-worktrees.prelude:worktrees-pending", "observation": { "sender": ["bc1a8e138f82", "ba9fd57319d3"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -634,7 +639,7 @@ "id": "aivault-history-screen-worktrees.normal:worktrees-listed", "observation": { "sender": ["074d2293c010", "6ae619d3108a", "29ba09534e96", "522b745543f1"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "15686a7a3813"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "017d690f964b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -646,7 +651,7 @@ "id": "aivault-history-screen-worktrees.result-absent:worktrees-listed", "observation": { "sender": ["6ed6d686b491", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -658,7 +663,7 @@ "id": "aivault-history-screen-worktrees.result-null:worktrees-listed", "observation": { "sender": ["430d32843438", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -670,7 +675,7 @@ "id": "aivault-history-screen-worktrees.inner-ok-missing:worktrees-listed", "observation": { "sender": ["e904502f2359", "6ae619d3108a"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -682,7 +687,7 @@ "id": "aivault-history-screen-worktrees.inner-false-string-error:worktrees-listed", "observation": { "sender": ["f2257f595504", "6ae619d3108a"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -694,7 +699,7 @@ "id": "aivault-history-screen-worktrees.inner-false-object-error:worktrees-listed", "observation": { "sender": ["481a5e96b319", "6ae619d3108a"], - "payloads": ["4912be5d956f", "a5ba8a3216d2"], + "payloads": ["de79fb948454", "ff0ffaddbbf7"], "settlements": { "mount": "eb79a9b3682a" }, @@ -706,7 +711,7 @@ "id": "aivault-history-screen-worktrees.outer-refused:worktrees-listed", "observation": { "sender": ["993fb2bd3f3e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -718,7 +723,7 @@ "id": "aivault-history-screen-worktrees.outer-refused-no-message:worktrees-listed", "observation": { "sender": ["97177805ceb8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -730,7 +735,7 @@ "id": "aivault-history-screen-worktrees.method-not-found:worktrees-listed", "observation": { "sender": ["111018d23b6c", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -742,7 +747,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection:worktrees-listed", "observation": { "sender": ["4fa9e403a3c8", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, @@ -754,7 +759,7 @@ "id": "aivault-history-screen-worktrees.transport-rejection-no-message:worktrees-listed", "observation": { "sender": ["9f1a49cd671e", "6ae619d3108a", "29ba09534e96", "4cb0f02a3a16"], - "payloads": ["4912be5d956f", "a5ba8a3216d2", "ec120260263a", "075724b1ba2e"], + "payloads": ["de79fb948454", "ff0ffaddbbf7", "d4ef0569dbbc", "8b42c7661500"], "settlements": { "mount": "eb79a9b3682a" }, 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 ab22cec2def..761a8727752 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7add46922ba5486e56c8acd99a53d083b605f5d98f3cc44ee3cb350ec0406080", "scenarioSha256": "a5698ca720dad08561a509c9c18f7586611fc68c58bd86791f4fcefc7915ab1f", "platform": "darwin", @@ -61,10 +61,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -141,9 +137,10 @@ "message": "Cannot read properties of undefined (reading 'capabilities')" } }, - "681cb0d74271": { + "56c96fec6d08": { "name": "aiVault.listSessions#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.listSessions\",\"params\":{\"limit\":500,\"force\":false,\"scopePaths\":[\"/repo/feature\"]}}", + "sent": 2 }, "698f848e6967": { "activeWorktreePath": "/repo/feature", @@ -232,6 +229,11 @@ "kind": "unsupported" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "88200d49083c": { "name": "status.get#1", "args": [ @@ -582,7 +584,7 @@ "id": "aivault-history-scan-fulfilled.normal:ready", "observation": { "sender": ["6e50957443ea", "b567072e5440"], - "payloads": ["1e5b32902af7", "681cb0d74271"], + "payloads": ["852980e2efc0", "56c96fec6d08"], "settlements": { "mount": "eb79a9b3682a" }, @@ -594,7 +596,7 @@ "id": "aivault-history-scan-fulfilled.result-absent:ready", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -606,7 +608,7 @@ "id": "aivault-history-scan-fulfilled.result-null:ready", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -618,7 +620,7 @@ "id": "aivault-history-scan-fulfilled.inner-ok-missing:ready", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -630,7 +632,7 @@ "id": "aivault-history-scan-fulfilled.inner-false-string-error:ready", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -642,7 +644,7 @@ "id": "aivault-history-scan-fulfilled.inner-false-object-error:ready", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -654,7 +656,7 @@ "id": "aivault-history-scan-fulfilled.outer-refused:ready", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -666,7 +668,7 @@ "id": "aivault-history-scan-fulfilled.outer-refused-no-message:ready", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -678,7 +680,7 @@ "id": "aivault-history-scan-fulfilled.method-not-found:ready", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -690,7 +692,7 @@ "id": "aivault-history-scan-fulfilled.transport-rejection:ready", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -702,7 +704,7 @@ "id": "aivault-history-scan-fulfilled.transport-rejection-no-message:ready", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 058febd448a..bce7b0d6ca2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "f721ab4438c4183927ce5ebc5fd6f1f18414701a5fa3b2807c359785829962a3", "platform": "darwin", @@ -80,6 +80,11 @@ "isRpcDeliveryUnknown": false } }, + "39cabd8258a3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}", + "sent": 2 + }, "3ad18553135a": { "name": "session.tabs.createTerminal#1", "args": [ @@ -136,6 +141,11 @@ "failure": "Created terminal response was invalid", "launched": "unlaunched" }, + "495d8519301e": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "4ee71a589941": { "name": "session.tabs.createTerminal#1", "args": [ @@ -464,10 +474,6 @@ "isRpcDeliveryUnknown": true } }, - "a9a45875782f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -617,10 +623,6 @@ "failure": "transport failure", "launched": "unlaunched" }, - "eb30e498d168": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "efa7e20c5a6f": { "failure": "outer refused", "launched": "unlaunched" @@ -637,7 +639,7 @@ "id": "aivault-resume-launch-sent.normal:resumed", "observation": { "sender": ["6b1e36abce6b", "a84f5d45a48b"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -649,7 +651,7 @@ "id": "aivault-resume-launch-sent.result-absent:resumed", "observation": { "sender": ["671d748c842b"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, @@ -661,7 +663,7 @@ "id": "aivault-resume-launch-sent.result-null:resumed", "observation": { "sender": ["d34341547b51"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, @@ -673,7 +675,7 @@ "id": "aivault-resume-launch-sent.inner-ok-missing:resumed", "observation": { "sender": ["3ad18553135a"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, @@ -685,7 +687,7 @@ "id": "aivault-resume-launch-sent.inner-false-string-error:resumed", "observation": { "sender": ["92613ac6d4fa"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, @@ -697,7 +699,7 @@ "id": "aivault-resume-launch-sent.inner-false-object-error:resumed", "observation": { "sender": ["4ee71a589941"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "681fc4d59b92" }, @@ -709,7 +711,7 @@ "id": "aivault-resume-launch-sent.outer-refused:resumed", "observation": { "sender": ["611cf7134d32"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "32a7c0ae7918" }, @@ -721,7 +723,7 @@ "id": "aivault-resume-launch-sent.outer-refused-no-message:resumed", "observation": { "sender": ["cb0891b6056d"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "30ec57518c05" }, @@ -733,7 +735,7 @@ "id": "aivault-resume-launch-sent.method-not-found:resumed", "observation": { "sender": ["00ce2da4b927"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "b948e8307e81" }, @@ -745,7 +747,7 @@ "id": "aivault-resume-launch-sent.transport-rejection:resumed", "observation": { "sender": ["dbc538c406b0"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "a947768bc0ed" }, @@ -757,7 +759,7 @@ "id": "aivault-resume-launch-sent.transport-rejection-no-message:resumed", "observation": { "sender": ["80ce09f50b96"], - "payloads": ["eb30e498d168"], + "payloads": ["495d8519301e"], "settlements": { "full": "c7584e82c72f" }, 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 77edc7ce7c1..b321931a613 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "aa812132ede83e4aced73a644e996df82a38bfc70ead70a5db2e9af8a8b1bfff", "platform": "darwin", @@ -197,6 +197,11 @@ } } }, + "39cabd8258a3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}", + "sent": 2 + }, "400d946a183d": { "failure": { "$rpc": "null" @@ -207,6 +212,11 @@ "title": "codex" } }, + "495d8519301e": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "54558214b507": { "failure": "Unknown method", "launched": "unlaunched" @@ -398,10 +408,6 @@ "isRpcDeliveryUnknown": true } }, - "a9a45875782f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-9\",\"text\":\"codex resume rollout\",\"enter\":true}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -497,10 +503,6 @@ "failure": "transport failure", "launched": "unlaunched" }, - "eb30e498d168": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"env\":{\"ORCA_RESUME\":\"1\"},\"envToDelete\":[\"CODEX_HOME\"],\"launchAgent\":\"codex\",\"clientMutationId\":\"resume-mutation-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "efa7e20c5a6f": { "failure": "outer refused", "launched": "unlaunched" @@ -553,7 +555,7 @@ "id": "aivault-resume-launch-sent.normal:resumed", "observation": { "sender": ["6b1e36abce6b", "a84f5d45a48b"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -565,7 +567,7 @@ "id": "aivault-resume-launch-sent.result-absent:resumed", "observation": { "sender": ["6b1e36abce6b", "17ee408f637d"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -577,7 +579,7 @@ "id": "aivault-resume-launch-sent.result-null:resumed", "observation": { "sender": ["6b1e36abce6b", "335573146591"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -589,7 +591,7 @@ "id": "aivault-resume-launch-sent.inner-ok-missing:resumed", "observation": { "sender": ["6b1e36abce6b", "3253374e68e6"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -601,7 +603,7 @@ "id": "aivault-resume-launch-sent.inner-false-string-error:resumed", "observation": { "sender": ["6b1e36abce6b", "9b68cd60047e"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -613,7 +615,7 @@ "id": "aivault-resume-launch-sent.inner-false-object-error:resumed", "observation": { "sender": ["6b1e36abce6b", "dac3aef412ff"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "6e79da536ca9" }, @@ -625,7 +627,7 @@ "id": "aivault-resume-launch-sent.outer-refused:resumed", "observation": { "sender": ["6b1e36abce6b", "049bcc141657"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "32a7c0ae7918" }, @@ -637,7 +639,7 @@ "id": "aivault-resume-launch-sent.outer-refused-no-message:resumed", "observation": { "sender": ["6b1e36abce6b", "fa85a657c342"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "8511f0debfc0" }, @@ -649,7 +651,7 @@ "id": "aivault-resume-launch-sent.method-not-found:resumed", "observation": { "sender": ["6b1e36abce6b", "0f7c8cc35709"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "b948e8307e81" }, @@ -661,7 +663,7 @@ "id": "aivault-resume-launch-sent.transport-rejection:resumed", "observation": { "sender": ["6b1e36abce6b", "c27cefd487fc"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "a947768bc0ed" }, @@ -673,7 +675,7 @@ "id": "aivault-resume-launch-sent.transport-rejection-no-message:resumed", "observation": { "sender": ["6b1e36abce6b", "71b34bf921d6"], - "payloads": ["eb30e498d168", "a9a45875782f"], + "payloads": ["495d8519301e", "39cabd8258a3"], "settlements": { "full": "c7584e82c72f" }, 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 97f65800c83..2b992405563 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "c3b400967b0b1c7bd3f82a278f4b10855ade72d384922ec4d34795c7bb20084d", "platform": "darwin", @@ -237,6 +237,11 @@ } } }, + "770627dbd25d": { + "name": "aiVault.prepareSessionResume#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}", + "sent": 1 + }, "954fabd8665f": { "failure": "transport failure", "prepared": "unprepared" @@ -314,10 +319,6 @@ } } }, - "9a6c365d544f": { - "name": "aiVault.prepareSessionResume#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"aiVault.prepareSessionResume\",\"params\":{\"agent\":\"codex\",\"filePath\":\"/sessions/rollout.jsonl\",\"codexHome\":\"/hosts/codex-runtime-home/home\",\"executionHostId\":\"local\"}}" - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -522,7 +523,7 @@ "id": "aivault-resume-prepare-repin.normal:repinned", "observation": { "sender": ["d8803e70463f"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "15e10cea84b9" }, @@ -534,7 +535,7 @@ "id": "aivault-resume-prepare-repin.result-absent:repinned", "observation": { "sender": ["3cb5dd9bacb9"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -546,7 +547,7 @@ "id": "aivault-resume-prepare-repin.result-null:repinned", "observation": { "sender": ["b8c26ad576fc"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -558,7 +559,7 @@ "id": "aivault-resume-prepare-repin.inner-ok-missing:repinned", "observation": { "sender": ["eb577fc22483"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -570,7 +571,7 @@ "id": "aivault-resume-prepare-repin.inner-false-string-error:repinned", "observation": { "sender": ["110d8c28ad70"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -582,7 +583,7 @@ "id": "aivault-resume-prepare-repin.inner-false-object-error:repinned", "observation": { "sender": ["9736bcb85d7d"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -594,7 +595,7 @@ "id": "aivault-resume-prepare-repin.outer-refused:repinned", "observation": { "sender": ["dbbdae8f39e4"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "32a7c0ae7918" }, @@ -606,7 +607,7 @@ "id": "aivault-resume-prepare-repin.outer-refused-no-message:repinned", "observation": { "sender": ["6c0717cacf4f"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "06345cef27f9" }, @@ -618,7 +619,7 @@ "id": "aivault-resume-prepare-repin.method-not-found:repinned", "observation": { "sender": ["1174bbe22a9f"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "e839ea279e77" }, @@ -630,7 +631,7 @@ "id": "aivault-resume-prepare-repin.transport-rejection:repinned", "observation": { "sender": ["1cc5c362a1d4"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "a947768bc0ed" }, @@ -642,7 +643,7 @@ "id": "aivault-resume-prepare-repin.transport-rejection-no-message:repinned", "observation": { "sender": ["97f3b981d81f"], - "payloads": ["9a6c365d544f"], + "payloads": ["770627dbd25d"], "settlements": { "prepare": "c7584e82c72f" }, 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 d4784a272d8..8a72be96d22 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "9cae732e4227d4c2fe874a5fb2e104552c16cbc91b59523de8fd46454660cde8", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2a884fbac9d5": { - "name": "browser.dialogAccept#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}" - }, "5aec187274b4": { "name": "browser.dialogAccept#1", "args": [ @@ -376,6 +372,11 @@ "$rpc": "undefined" } }, + "f11babba920d": { + "name": "browser.dialogAccept#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.dialogAccept\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\"}}", + "sent": 1 + }, "f23289a40300": { "name": "browser.dialogAccept#1", "args": [ @@ -418,7 +419,7 @@ "id": "browser-dialog-accepted.normal:dismissed", "observation": { "sender": ["f23289a40300"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -431,7 +432,7 @@ "id": "browser-dialog-accepted.result-absent:dismissed", "observation": { "sender": ["5aec187274b4"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -444,7 +445,7 @@ "id": "browser-dialog-accepted.result-null:dismissed", "observation": { "sender": ["8533958036cf"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -457,7 +458,7 @@ "id": "browser-dialog-accepted.inner-ok-missing:dismissed", "observation": { "sender": ["c7183380b73f"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -470,7 +471,7 @@ "id": "browser-dialog-accepted.inner-false-string-error:dismissed", "observation": { "sender": ["953ba6dbc96d"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -483,7 +484,7 @@ "id": "browser-dialog-accepted.inner-false-object-error:dismissed", "observation": { "sender": ["cfb5f50809ac"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -496,7 +497,7 @@ "id": "browser-dialog-accepted.outer-refused:dismissed", "observation": { "sender": ["df5eefc7ff6e"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -509,7 +510,7 @@ "id": "browser-dialog-accepted.outer-refused-no-message:dismissed", "observation": { "sender": ["cb0512cac66f"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -522,7 +523,7 @@ "id": "browser-dialog-accepted.method-not-found:dismissed", "observation": { "sender": ["c5aedd728f13"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -535,7 +536,7 @@ "id": "browser-dialog-accepted.transport-rejection:dismissed", "observation": { "sender": ["8cb6223a7fb0"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" @@ -548,7 +549,7 @@ "id": "browser-dialog-accepted.transport-rejection-no-message:dismissed", "observation": { "sender": ["7a4be66fde79"], - "payloads": ["2a884fbac9d5"], + "payloads": ["f11babba920d"], "settlements": { "mount": "eb79a9b3682a", "dialog": "eb79a9b3682a" 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 407cc79c31f..80556e3b814 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "fc3411f3f4cb58b6a1338ea943f59446fda7819931814e9ab002e35e2de42462", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "04ae34c3208f": { - "name": "browser.keypress#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}" - }, "144ab1dd2183": { "name": "browser.keyboardInsertText#1", "args": [ @@ -89,9 +85,15 @@ } } }, - "37ef5fe93769": { + "1bc6d9688999": { "name": "browser.keyboardInsertText#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}", + "sent": 1 + }, + "2f4d80d09d24": { + "name": "browser.keypress#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}", + "sent": 2 }, "5fe64ef6c1f3": { "name": "toast", @@ -486,7 +488,7 @@ "id": "browser-keyboard-input.normal:typed", "observation": { "sender": ["770254847b6a", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -500,7 +502,7 @@ "id": "browser-keyboard-input.result-absent:typed", "observation": { "sender": ["9cb8fe568bd4", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -514,7 +516,7 @@ "id": "browser-keyboard-input.result-null:typed", "observation": { "sender": ["dc5a9a12c863", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -528,7 +530,7 @@ "id": "browser-keyboard-input.inner-ok-missing:typed", "observation": { "sender": ["efee2aff072a", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -542,7 +544,7 @@ "id": "browser-keyboard-input.inner-false-string-error:typed", "observation": { "sender": ["144ab1dd2183", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -556,7 +558,7 @@ "id": "browser-keyboard-input.inner-false-object-error:typed", "observation": { "sender": ["8a5920bc8d54", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -570,7 +572,7 @@ "id": "browser-keyboard-input.outer-refused:typed", "observation": { "sender": ["d3f89a91cfd0", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -584,7 +586,7 @@ "id": "browser-keyboard-input.outer-refused-no-message:typed", "observation": { "sender": ["14c2ef2f5804", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -598,7 +600,7 @@ "id": "browser-keyboard-input.method-not-found:typed", "observation": { "sender": ["93f857f8c023", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -612,7 +614,7 @@ "id": "browser-keyboard-input.transport-rejection:typed", "observation": { "sender": ["7609d27b7093", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -626,7 +628,7 @@ "id": "browser-keyboard-input.transport-rejection-no-message:typed", "observation": { "sender": ["842f974ec87b", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", 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 a32887b6f35..4159ab764fc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "c1df871e84d4399e9a447caaff244241933c0dfc7c3d5e114d022e54b0ed7ed4", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "04ae34c3208f": { + "1bc6d9688999": { + "name": "browser.keyboardInsertText#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}", + "sent": 1 + }, + "2f4d80d09d24": { "name": "browser.keypress#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keypress\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"key\":\"Enter\"}}", + "sent": 2 }, "368e34201541": { "name": "browser.keypress#1", @@ -52,10 +58,6 @@ } } }, - "37ef5fe93769": { - "name": "browser.keyboardInsertText#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.keyboardInsertText\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"text\":\"hello\"}}" - }, "3c82ed937461": { "name": "browser.keypress#1", "args": [ @@ -475,7 +477,7 @@ "id": "browser-keyboard-input.normal:typed", "observation": { "sender": ["770254847b6a", "c532c7fdcc69"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -489,7 +491,7 @@ "id": "browser-keyboard-input.result-absent:typed", "observation": { "sender": ["770254847b6a", "72b0cf4a3571"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -503,7 +505,7 @@ "id": "browser-keyboard-input.result-null:typed", "observation": { "sender": ["770254847b6a", "3c82ed937461"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -517,7 +519,7 @@ "id": "browser-keyboard-input.inner-ok-missing:typed", "observation": { "sender": ["770254847b6a", "368e34201541"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -531,7 +533,7 @@ "id": "browser-keyboard-input.inner-false-string-error:typed", "observation": { "sender": ["770254847b6a", "f1c7c94fd8da"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -545,7 +547,7 @@ "id": "browser-keyboard-input.inner-false-object-error:typed", "observation": { "sender": ["770254847b6a", "e35aacc63861"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -559,7 +561,7 @@ "id": "browser-keyboard-input.outer-refused:typed", "observation": { "sender": ["770254847b6a", "be48c9f97d81"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -573,7 +575,7 @@ "id": "browser-keyboard-input.outer-refused-no-message:typed", "observation": { "sender": ["770254847b6a", "c2f31140b989"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -587,7 +589,7 @@ "id": "browser-keyboard-input.method-not-found:typed", "observation": { "sender": ["770254847b6a", "92ab66cd3f6d"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -601,7 +603,7 @@ "id": "browser-keyboard-input.transport-rejection:typed", "observation": { "sender": ["770254847b6a", "8795eb123f48"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", @@ -615,7 +617,7 @@ "id": "browser-keyboard-input.transport-rejection-no-message:typed", "observation": { "sender": ["770254847b6a", "7b06f0a27e27"], - "payloads": ["37ef5fe93769", "04ae34c3208f"], + "payloads": ["1bc6d9688999", "2f4d80d09d24"], "settlements": { "mount": "eb79a9b3682a", "text": "eb79a9b3682a", 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 d60d763d403..96b833f3feb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "74adcaa668164bc7430e9984f100988bf72975dc8ebbe6b52fac34367cf31a4d", "platform": "darwin", @@ -53,6 +53,16 @@ } } }, + "0da10b838d9e": { + "name": "browser.mouseClick#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 + }, + "11a7e8034273": { + "name": "browser.mouseDown#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 3 + }, "1961908d1da1": { "name": "browser.mouseDown#1", "args": [ @@ -88,13 +98,10 @@ } } }, - "1e463da3d358": { - "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" - }, - "278a20085af8": { + "25ad8c6e489e": { "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 2 }, "34576a93431d": { "name": "browser.mouseClick#1", @@ -413,6 +420,11 @@ } } }, + "aa160e9b114e": { + "name": "browser.mouseUp#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 4 + }, "abc677cb9976": { "name": "browser.mouseClick#1", "args": [ @@ -449,10 +461,6 @@ } } }, - "ad7da1632835": { - "name": "browser.mouseDown#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "afced8593b1c": { "name": "browser.mouseClick#1", "args": [ @@ -571,10 +579,6 @@ } } }, - "eaa436587fe0": { - "name": "browser.mouseUp#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -591,7 +595,7 @@ "id": "browser-pointer-click-fallback.normal:clicked-by-fallback", "observation": { "sender": ["5b621e308200"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -604,7 +608,7 @@ "id": "browser-pointer-click-fallback.result-absent:clicked-by-fallback", "observation": { "sender": ["abc677cb9976"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -617,7 +621,7 @@ "id": "browser-pointer-click-fallback.result-null:clicked-by-fallback", "observation": { "sender": ["735fc5dcca31", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -630,7 +634,7 @@ "id": "browser-pointer-click-fallback.inner-ok-missing:clicked-by-fallback", "observation": { "sender": ["a7ceef6dfd2f"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -643,7 +647,7 @@ "id": "browser-pointer-click-fallback.inner-false-string-error:clicked-by-fallback", "observation": { "sender": ["afced8593b1c"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -656,7 +660,7 @@ "id": "browser-pointer-click-fallback.inner-false-object-error:clicked-by-fallback", "observation": { "sender": ["cf4e140ac028"], - "payloads": ["1e463da3d358"], + "payloads": ["0da10b838d9e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -669,7 +673,7 @@ "id": "browser-pointer-click-fallback.outer-refused:clicked-by-fallback", "observation": { "sender": ["878ba478dddf", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -682,7 +686,7 @@ "id": "browser-pointer-click-fallback.outer-refused-no-message:clicked-by-fallback", "observation": { "sender": ["044a62b795de", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -695,7 +699,7 @@ "id": "browser-pointer-click-fallback.method-not-found:clicked-by-fallback", "observation": { "sender": ["761d5b8a1761", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -708,7 +712,7 @@ "id": "browser-pointer-click-fallback.transport-rejection:clicked-by-fallback", "observation": { "sender": ["34576a93431d", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -721,7 +725,7 @@ "id": "browser-pointer-click-fallback.transport-rejection-no-message:clicked-by-fallback", "observation": { "sender": ["37c2665d53f3", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" 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 e655b25e949..f5c32a17b07 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "db84000f262c6812db55b5f735ab7fe32c914e9ab52b9a7ccc0c21386b782298", "platform": "darwin", @@ -48,6 +48,16 @@ } } }, + "0da10b838d9e": { + "name": "browser.mouseClick#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 + }, + "11a7e8034273": { + "name": "browser.mouseDown#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 3 + }, "1961908d1da1": { "name": "browser.mouseDown#1", "args": [ @@ -118,10 +128,6 @@ } } }, - "1e463da3d358": { - "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" - }, "1f12c04c7775": { "name": "browser.mouseDown#1", "args": [ @@ -194,9 +200,10 @@ } } }, - "278a20085af8": { + "25ad8c6e489e": { "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 2 }, "3ba11435b34e": { "name": "browser.mouseDown#1", @@ -383,9 +390,10 @@ } } }, - "ad7da1632835": { - "name": "browser.mouseDown#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" + "aa160e9b114e": { + "name": "browser.mouseUp#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 4 }, "b3273afd3ec2": { "name": "browser.mouseMove#1", @@ -532,10 +540,6 @@ } } }, - "eaa436587fe0": { - "name": "browser.mouseUp#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -552,7 +556,7 @@ "id": "browser-pointer-click-fallback.normal:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -565,7 +569,7 @@ "id": "browser-pointer-click-fallback.result-absent:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "3ba11435b34e", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -578,7 +582,7 @@ "id": "browser-pointer-click-fallback.result-null:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "0ba3061956e5", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -591,7 +595,7 @@ "id": "browser-pointer-click-fallback.inner-ok-missing:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1ca524430075", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -604,7 +608,7 @@ "id": "browser-pointer-click-fallback.inner-false-string-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "226c752bd1ca", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -617,7 +621,7 @@ "id": "browser-pointer-click-fallback.inner-false-object-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "6852541b6089", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -630,7 +634,7 @@ "id": "browser-pointer-click-fallback.outer-refused:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "98781daac6f5"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -643,7 +647,7 @@ "id": "browser-pointer-click-fallback.outer-refused-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1f12c04c7775"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -656,7 +660,7 @@ "id": "browser-pointer-click-fallback.method-not-found:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "bb3551a9d839"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -669,7 +673,7 @@ "id": "browser-pointer-click-fallback.transport-rejection:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "89e7c0ea8d33"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -682,7 +686,7 @@ "id": "browser-pointer-click-fallback.transport-rejection-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "c7797ce9e235"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" 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 8353d7db1f4..4b90ce6892b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "35ef15037791fa2e87456ee4585ddaaa00fbf5cde578d7c0b5df143cd40dd9a1", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0da10b838d9e": { + "name": "browser.mouseClick#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 + }, + "11a7e8034273": { + "name": "browser.mouseDown#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 3 + }, "12b0c1bdb4ff": { "name": "browser.mouseMove#1", "args": [ @@ -84,13 +94,10 @@ } } }, - "1e463da3d358": { - "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" - }, - "278a20085af8": { + "25ad8c6e489e": { "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 2 }, "3052368779e3": { "name": "browser.mouseMove#1", @@ -283,9 +290,10 @@ "keyboardValue": "hello", "pointerModifiers": [] }, - "ad7da1632835": { - "name": "browser.mouseDown#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" + "aa160e9b114e": { + "name": "browser.mouseUp#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 4 }, "b3273afd3ec2": { "name": "browser.mouseMove#1", @@ -542,10 +550,6 @@ } } }, - "eaa436587fe0": { - "name": "browser.mouseUp#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -562,7 +566,7 @@ "id": "browser-pointer-click-fallback.normal:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -575,7 +579,7 @@ "id": "browser-pointer-click-fallback.result-absent:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "e7d1715da1e8", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -588,7 +592,7 @@ "id": "browser-pointer-click-fallback.result-null:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "12b0c1bdb4ff", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -601,7 +605,7 @@ "id": "browser-pointer-click-fallback.inner-ok-missing:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "ea5bfc2dc03d", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -614,7 +618,7 @@ "id": "browser-pointer-click-fallback.inner-false-string-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "346fa7b7e051", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -627,7 +631,7 @@ "id": "browser-pointer-click-fallback.inner-false-object-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "be93dec09243", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -640,7 +644,7 @@ "id": "browser-pointer-click-fallback.outer-refused:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b7845e202b66"], - "payloads": ["1e463da3d358", "278a20085af8"], + "payloads": ["0da10b838d9e", "25ad8c6e489e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -653,7 +657,7 @@ "id": "browser-pointer-click-fallback.outer-refused-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "60433b36ae23"], - "payloads": ["1e463da3d358", "278a20085af8"], + "payloads": ["0da10b838d9e", "25ad8c6e489e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -666,7 +670,7 @@ "id": "browser-pointer-click-fallback.method-not-found:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "848344a1650c"], - "payloads": ["1e463da3d358", "278a20085af8"], + "payloads": ["0da10b838d9e", "25ad8c6e489e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -679,7 +683,7 @@ "id": "browser-pointer-click-fallback.transport-rejection:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "3052368779e3"], - "payloads": ["1e463da3d358", "278a20085af8"], + "payloads": ["0da10b838d9e", "25ad8c6e489e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -692,7 +696,7 @@ "id": "browser-pointer-click-fallback.transport-rejection-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "cdedc2083eee"], - "payloads": ["1e463da3d358", "278a20085af8"], + "payloads": ["0da10b838d9e", "25ad8c6e489e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" 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 af35079ebb8..ea4c98e955a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "47868afdd6d593526ea6f0a0a1e19377ee8306ab70636f2dace0da9ef2454397", "platform": "darwin", @@ -48,6 +48,16 @@ } } }, + "0da10b838d9e": { + "name": "browser.mouseClick#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}", + "sent": 1 + }, + "11a7e8034273": { + "name": "browser.mouseDown#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 3 + }, "1961908d1da1": { "name": "browser.mouseDown#1", "args": [ @@ -83,10 +93,6 @@ } } }, - "1e463da3d358": { - "name": "browser.mouseClick#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseClick\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80,\"button\":\"left\",\"modifiers\":[],\"radius\":14}}" - }, "22b944083246": { "name": "browser.mouseUp#1", "args": [ @@ -120,9 +126,10 @@ } } }, - "278a20085af8": { + "25ad8c6e489e": { "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 2 }, "41b41cc39e88": { "name": "browser.mouseUp#1", @@ -274,9 +281,10 @@ "keyboardValue": "hello", "pointerModifiers": [] }, - "ad7da1632835": { - "name": "browser.mouseDown#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseDown\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" + "aa160e9b114e": { + "name": "browser.mouseUp#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}", + "sent": 4 }, "affb8c2e1014": { "name": "browser.mouseUp#1", @@ -494,10 +502,6 @@ } } }, - "eaa436587fe0": { - "name": "browser.mouseUp#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseUp\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"button\":\"left\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -552,7 +556,7 @@ "id": "browser-pointer-click-fallback.normal:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "41b41cc39e88"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -565,7 +569,7 @@ "id": "browser-pointer-click-fallback.result-absent:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "c4a8ab904481"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -578,7 +582,7 @@ "id": "browser-pointer-click-fallback.result-null:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "55278458fd06"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -591,7 +595,7 @@ "id": "browser-pointer-click-fallback.inner-ok-missing:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "0b8577f118ef"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -604,7 +608,7 @@ "id": "browser-pointer-click-fallback.inner-false-string-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "e1791e2206cd"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -617,7 +621,7 @@ "id": "browser-pointer-click-fallback.inner-false-object-error:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "ef2f396492d9"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -630,7 +634,7 @@ "id": "browser-pointer-click-fallback.outer-refused:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "affb8c2e1014"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -643,7 +647,7 @@ "id": "browser-pointer-click-fallback.outer-refused-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "807c12c1fba8"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -656,7 +660,7 @@ "id": "browser-pointer-click-fallback.method-not-found:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "b6e807143994"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -669,7 +673,7 @@ "id": "browser-pointer-click-fallback.transport-rejection:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "50c3560a450b"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" @@ -682,7 +686,7 @@ "id": "browser-pointer-click-fallback.transport-rejection-no-message:clicked-by-fallback", "observation": { "sender": ["cf9ea7b52a57", "b3273afd3ec2", "1961908d1da1", "22b944083246"], - "payloads": ["1e463da3d358", "278a20085af8", "ad7da1632835", "eaa436587fe0"], + "payloads": ["0da10b838d9e", "25ad8c6e489e", "11a7e8034273", "aa160e9b114e"], "settlements": { "mount": "eb79a9b3682a", "click": "eb79a9b3682a" 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 260a3b99095..0d78a824372 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "c1283bbfb340e968bbd4c86ac63489995d6191290751316228d27779dc6a2c55", "platform": "darwin", @@ -196,10 +196,6 @@ } } }, - "3ae1d19b9c51": { - "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" - }, "56a99047a121": { "name": "browser.mouseMove#1", "args": [ @@ -236,6 +232,11 @@ } } }, + "60d1415b69e8": { + "name": "browser.mouseMove#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 1 + }, "63c8cd9dbd5c": { "name": "browser.mouseMove#1", "args": [ @@ -308,10 +309,6 @@ } } }, - "8bf9a97ea141": { - "name": "browser.mouseWheel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}" - }, "9855d4ec3415": { "busy": false, "dialog": { @@ -394,6 +391,11 @@ } } }, + "d2d492cca894": { + "name": "browser.mouseWheel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}", + "sent": 2 + }, "d7c29eb4797b": { "name": "browser.mouseMove#1", "args": [ @@ -480,7 +482,7 @@ "id": "browser-wheel-scrolled.normal:scrolled", "observation": { "sender": ["56a99047a121", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -493,7 +495,7 @@ "id": "browser-wheel-scrolled.result-absent:scrolled", "observation": { "sender": ["e9f7ceb55fe0", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -506,7 +508,7 @@ "id": "browser-wheel-scrolled.result-null:scrolled", "observation": { "sender": ["63c8cd9dbd5c", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -519,7 +521,7 @@ "id": "browser-wheel-scrolled.inner-ok-missing:scrolled", "observation": { "sender": ["22a1fb464229", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -532,7 +534,7 @@ "id": "browser-wheel-scrolled.inner-false-string-error:scrolled", "observation": { "sender": ["a6b85f927c18", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -545,7 +547,7 @@ "id": "browser-wheel-scrolled.inner-false-object-error:scrolled", "observation": { "sender": ["2cdb242ced7a", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -558,7 +560,7 @@ "id": "browser-wheel-scrolled.outer-refused:scrolled", "observation": { "sender": ["1f5a0be7a1a8"], - "payloads": ["3ae1d19b9c51"], + "payloads": ["60d1415b69e8"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -571,7 +573,7 @@ "id": "browser-wheel-scrolled.outer-refused-no-message:scrolled", "observation": { "sender": ["d7c29eb4797b"], - "payloads": ["3ae1d19b9c51"], + "payloads": ["60d1415b69e8"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -584,7 +586,7 @@ "id": "browser-wheel-scrolled.method-not-found:scrolled", "observation": { "sender": ["329c4e091114"], - "payloads": ["3ae1d19b9c51"], + "payloads": ["60d1415b69e8"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -597,7 +599,7 @@ "id": "browser-wheel-scrolled.transport-rejection:scrolled", "observation": { "sender": ["3052368779e3"], - "payloads": ["3ae1d19b9c51"], + "payloads": ["60d1415b69e8"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -610,7 +612,7 @@ "id": "browser-wheel-scrolled.transport-rejection-no-message:scrolled", "observation": { "sender": ["cdedc2083eee"], - "payloads": ["3ae1d19b9c51"], + "payloads": ["60d1415b69e8"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" 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 797da166f1f..0ff8b9bac9d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55971752f963202d30160851197a301089b0f3ebd0c46725af1a461d8310d658", "scenarioSha256": "092777c9ce457dcae95eafbe083c70510580569ac74e31c0d4224ac94b9fad76", "platform": "darwin", @@ -89,10 +89,6 @@ } } }, - "3ae1d19b9c51": { - "name": "browser.mouseMove#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}" - }, "3d2559c47ac0": { "name": "browser.mouseWheel#1", "args": [ @@ -202,6 +198,11 @@ } } }, + "60d1415b69e8": { + "name": "browser.mouseMove#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseMove\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"x\":40,\"y\":80}}", + "sent": 1 + }, "68930a4fb066": { "name": "browser.mouseWheel#1", "args": [ @@ -311,10 +312,6 @@ } } }, - "8bf9a97ea141": { - "name": "browser.mouseWheel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}" - }, "9855d4ec3415": { "busy": false, "dialog": { @@ -430,6 +427,11 @@ } } }, + "d2d492cca894": { + "name": "browser.mouseWheel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"browser.mouseWheel\",\"params\":{\"worktree\":\"id:worktree-1\",\"page\":\"page-1\",\"dx\":0,\"dy\":-120}}", + "sent": 2 + }, "e7e871a97516": { "name": "browser.mouseWheel#1", "args": [ @@ -480,7 +482,7 @@ "id": "browser-wheel-scrolled.normal:scrolled", "observation": { "sender": ["56a99047a121", "71b1fb55eafa"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -493,7 +495,7 @@ "id": "browser-wheel-scrolled.result-absent:scrolled", "observation": { "sender": ["56a99047a121", "c3a7e8d1a1a5"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -506,7 +508,7 @@ "id": "browser-wheel-scrolled.result-null:scrolled", "observation": { "sender": ["56a99047a121", "68930a4fb066"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -519,7 +521,7 @@ "id": "browser-wheel-scrolled.inner-ok-missing:scrolled", "observation": { "sender": ["56a99047a121", "3d2559c47ac0"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -532,7 +534,7 @@ "id": "browser-wheel-scrolled.inner-false-string-error:scrolled", "observation": { "sender": ["56a99047a121", "69ac9de0ee4a"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -545,7 +547,7 @@ "id": "browser-wheel-scrolled.inner-false-object-error:scrolled", "observation": { "sender": ["56a99047a121", "03b40646208d"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -558,7 +560,7 @@ "id": "browser-wheel-scrolled.outer-refused:scrolled", "observation": { "sender": ["56a99047a121", "1c44b93a0de8"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -571,7 +573,7 @@ "id": "browser-wheel-scrolled.outer-refused-no-message:scrolled", "observation": { "sender": ["56a99047a121", "60398cced00c"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -584,7 +586,7 @@ "id": "browser-wheel-scrolled.method-not-found:scrolled", "observation": { "sender": ["56a99047a121", "a81f1310f255"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -597,7 +599,7 @@ "id": "browser-wheel-scrolled.transport-rejection:scrolled", "observation": { "sender": ["56a99047a121", "e7e871a97516"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" @@ -610,7 +612,7 @@ "id": "browser-wheel-scrolled.transport-rejection-no-message:scrolled", "observation": { "sender": ["56a99047a121", "ae30023f85cc"], - "payloads": ["3ae1d19b9c51", "8bf9a97ea141"], + "payloads": ["60d1415b69e8", "d2d492cca894"], "settlements": { "mount": "eb79a9b3682a", "wheel": "eb79a9b3682a" 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 c252e298e8b..292836ca503 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "fc690a2ac59a6fbcdc08f9b91e769cd793f5a48d9034a50c2d587ce0d0fca3d9", "platform": "darwin", @@ -120,10 +120,6 @@ "isRpcDeliveryUnknown": false } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5573fed479c2": { "attached": "unattached", "failure": { @@ -274,9 +270,10 @@ } } }, - "7a67576b4db6": { - "name": "clipboard.saveImageAsTempFile#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 }, "7d50e9097d4b": { "name": "clipboard.saveImageAsTempFile#1", @@ -342,10 +339,6 @@ "attached": "unattached", "failure": "" }, - "8504c3b81dd7": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "873e759fa035": { "name": "clipboard.startImageUpload#1", "args": [ @@ -381,6 +374,11 @@ "attached": "unattached", "failure": "Cannot destructure property 'uploadId' of 'startResponse.result' as it is undefined." }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -424,6 +422,11 @@ } } }, + "a8cff4297929": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -434,10 +437,6 @@ "isRpcDeliveryUnknown": true } }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "b782aed57bef": { "name": "clipboard.startImageUpload#1", "args": [ @@ -507,6 +506,11 @@ "startedAt": 0 } }, + "d6a7fe2e0164": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}", + "sent": 2 + }, "d8eb6923f5c3": { "name": "clipboard.startImageUpload#1", "args": [ @@ -588,7 +592,7 @@ "id": "clipboard-image-attachment-upload-refused.normal:upload-refused", "observation": { "sender": ["7e48c58139e5", "d3e85c1d5bb4"], - "payloads": ["520b3fe0fb07", "b69a955ea891"], + "payloads": ["8dfd1f053efc", "72c805fadcfb"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -600,7 +604,7 @@ "id": "clipboard-image-attachment-upload-refused.result-absent:upload-refused", "observation": { "sender": ["873e759fa035"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "443dd7aae7aa" }, @@ -612,7 +616,7 @@ "id": "clipboard-image-attachment-upload-refused.result-null:upload-refused", "observation": { "sender": ["10eb844da0d9"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "2360f0a18466" }, @@ -624,7 +628,7 @@ "id": "clipboard-image-attachment-upload-refused.inner-ok-missing:upload-refused", "observation": { "sender": ["d8eb6923f5c3", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -636,7 +640,7 @@ "id": "clipboard-image-attachment-upload-refused.inner-false-string-error:upload-refused", "observation": { "sender": ["9dea35e9f187", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -648,7 +652,7 @@ "id": "clipboard-image-attachment-upload-refused.inner-false-object-error:upload-refused", "observation": { "sender": ["64cf59fb95a9", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -660,7 +664,7 @@ "id": "clipboard-image-attachment-upload-refused.outer-refused:upload-refused", "observation": { "sender": ["71c09680e90b"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "32a7c0ae7918" }, @@ -672,7 +676,7 @@ "id": "clipboard-image-attachment-upload-refused.outer-refused-no-message:upload-refused", "observation": { "sender": ["6f4464fb363d"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "f3b516f62081" }, @@ -684,7 +688,7 @@ "id": "clipboard-image-attachment-upload-refused.method-not-found:upload-refused", "observation": { "sender": ["12f2bb1c7b16", "7d50e9097d4b"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -696,7 +700,7 @@ "id": "clipboard-image-attachment-upload-refused.transport-rejection:upload-refused", "observation": { "sender": ["5884da2bfdb4"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "a947768bc0ed" }, @@ -708,7 +712,7 @@ "id": "clipboard-image-attachment-upload-refused.transport-rejection-no-message:upload-refused", "observation": { "sender": ["b782aed57bef"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "c7584e82c72f" }, 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 e753f37f5b4..62ab5bb249f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "fa69748b6d0e29abc37757b48bcb22dac07af1686554200ceaf18b4e3d62e4ac", "platform": "darwin", @@ -197,10 +197,6 @@ } } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f0bdbce1ddf": { "failure": "", "path": "unsaved" @@ -268,10 +264,6 @@ } } }, - "7a67576b4db6": { - "name": "clipboard.saveImageAsTempFile#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" - }, "7a9387a4c64a": { "failure": "transport failure", "path": "unsaved" @@ -317,6 +309,11 @@ } } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "923de2c0221d": { "failure": { "$rpc": "null" @@ -564,6 +561,11 @@ "isRpcDeliveryUnknown": true } }, + "d6a7fe2e0164": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}", + "sent": 2 + }, "e939e5e1437a": { "failure": "Unknown method", "path": "unsaved" @@ -602,7 +604,7 @@ "id": "clipboard-image-upload-single-frame-fallback.normal:fell-back", "observation": { "sender": ["12f2bb1c7b16", "61599dd8e71a"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "7f1260e77032" }, @@ -614,7 +616,7 @@ "id": "clipboard-image-upload-single-frame-fallback.result-absent:fell-back", "observation": { "sender": ["12f2bb1c7b16", "73fe3aca4d79"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "eb79a9b3682a" }, @@ -626,7 +628,7 @@ "id": "clipboard-image-upload-single-frame-fallback.result-null:fell-back", "observation": { "sender": ["12f2bb1c7b16", "b9ede26528d9"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "ee20a1dc39e7" }, @@ -638,7 +640,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-ok-missing:fell-back", "observation": { "sender": ["12f2bb1c7b16", "9bb070695706"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "301151228fa3" }, @@ -650,7 +652,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-false-string-error:fell-back", "observation": { "sender": ["12f2bb1c7b16", "84271db61a98"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "9f00dd54ba64" }, @@ -662,7 +664,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-false-object-error:fell-back", "observation": { "sender": ["12f2bb1c7b16", "9c3a6678afcc"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "ad8a954e879d" }, @@ -674,7 +676,7 @@ "id": "clipboard-image-upload-single-frame-fallback.outer-refused:fell-back", "observation": { "sender": ["12f2bb1c7b16", "16df47fdaef5"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "32a7c0ae7918" }, @@ -686,7 +688,7 @@ "id": "clipboard-image-upload-single-frame-fallback.outer-refused-no-message:fell-back", "observation": { "sender": ["12f2bb1c7b16", "a79e227c913e"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "f3b516f62081" }, @@ -698,7 +700,7 @@ "id": "clipboard-image-upload-single-frame-fallback.method-not-found:fell-back", "observation": { "sender": ["12f2bb1c7b16", "a3d9fec4cf5a"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "b948e8307e81" }, @@ -710,7 +712,7 @@ "id": "clipboard-image-upload-single-frame-fallback.transport-rejection:fell-back", "observation": { "sender": ["12f2bb1c7b16", "44fb3e60f264"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "a947768bc0ed" }, @@ -722,7 +724,7 @@ "id": "clipboard-image-upload-single-frame-fallback.transport-rejection-no-message:fell-back", "observation": { "sender": ["12f2bb1c7b16", "447c096794ae"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "c7584e82c72f" }, 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 b105a6f73cf..bd897e4be8c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "a4bea606723da4d4a86db6e04c46266801149a852a8861b15e637d5c0855c679", "platform": "darwin", @@ -120,10 +120,6 @@ "isRpcDeliveryUnknown": false } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5884da2bfdb4": { "name": "clipboard.startImageUpload#1", "args": [ @@ -299,9 +295,10 @@ } } }, - "7a67576b4db6": { - "name": "clipboard.saveImageAsTempFile#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 }, "7a9387a4c64a": { "failure": "transport failure", @@ -347,10 +344,6 @@ "settledAt": 0, "value": "/tmp/legacy.png" }, - "8504c3b81dd7": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "873e759fa035": { "name": "clipboard.startImageUpload#1", "args": [ @@ -382,6 +375,11 @@ } } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "923de2c0221d": { "failure": { "$rpc": "null" @@ -431,6 +429,11 @@ } } }, + "a8cff4297929": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -441,10 +444,6 @@ "isRpcDeliveryUnknown": true } }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "b782aed57bef": { "name": "clipboard.startImageUpload#1", "args": [ @@ -514,6 +513,11 @@ "startedAt": 0 } }, + "d6a7fe2e0164": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}", + "sent": 2 + }, "d8eb6923f5c3": { "name": "clipboard.startImageUpload#1", "args": [ @@ -601,7 +605,7 @@ "id": "clipboard-image-upload-single-frame-fallback.normal:fell-back", "observation": { "sender": ["7e48c58139e5", "d3e85c1d5bb4"], - "payloads": ["520b3fe0fb07", "b69a955ea891"], + "payloads": ["8dfd1f053efc", "72c805fadcfb"], "settlements": { "remote": "9270aeb7d9c6" }, @@ -613,7 +617,7 @@ "id": "clipboard-image-upload-single-frame-fallback.result-absent:fell-back", "observation": { "sender": ["873e759fa035"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "443dd7aae7aa" }, @@ -625,7 +629,7 @@ "id": "clipboard-image-upload-single-frame-fallback.result-null:fell-back", "observation": { "sender": ["10eb844da0d9"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "2360f0a18466" }, @@ -637,7 +641,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-ok-missing:fell-back", "observation": { "sender": ["d8eb6923f5c3", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "remote": "9270aeb7d9c6" }, @@ -649,7 +653,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-false-string-error:fell-back", "observation": { "sender": ["9dea35e9f187", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "remote": "9270aeb7d9c6" }, @@ -661,7 +665,7 @@ "id": "clipboard-image-upload-single-frame-fallback.inner-false-object-error:fell-back", "observation": { "sender": ["64cf59fb95a9", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "remote": "9270aeb7d9c6" }, @@ -673,7 +677,7 @@ "id": "clipboard-image-upload-single-frame-fallback.outer-refused:fell-back", "observation": { "sender": ["71c09680e90b"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "32a7c0ae7918" }, @@ -685,7 +689,7 @@ "id": "clipboard-image-upload-single-frame-fallback.outer-refused-no-message:fell-back", "observation": { "sender": ["6f4464fb363d"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "f3b516f62081" }, @@ -697,7 +701,7 @@ "id": "clipboard-image-upload-single-frame-fallback.method-not-found:fell-back", "observation": { "sender": ["12f2bb1c7b16", "61599dd8e71a"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "remote": "7f1260e77032" }, @@ -709,7 +713,7 @@ "id": "clipboard-image-upload-single-frame-fallback.transport-rejection:fell-back", "observation": { "sender": ["5884da2bfdb4"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "a947768bc0ed" }, @@ -721,7 +725,7 @@ "id": "clipboard-image-upload-single-frame-fallback.transport-rejection-no-message:fell-back", "observation": { "sender": ["b782aed57bef"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "remote": "c7584e82c72f" }, 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 3caaf30cff7..71f48dfb04f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "06c2ad6d4b464f889a640be7a238f6d0ff7c54b0e93fb5ea22aaa856dadb0336", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -193,6 +189,11 @@ "settledAt": 0, "value": true }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "88200d49083c": { "name": "status.get#1", "args": [ @@ -406,7 +407,7 @@ "id": "components-codex-capability.normal:settled", "observation": { "sender": ["6a0093a8288b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "84e5ca07cb7a" }, @@ -418,7 +419,7 @@ "id": "components-codex-capability.result-absent:settled", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -430,7 +431,7 @@ "id": "components-codex-capability.result-null:settled", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -442,7 +443,7 @@ "id": "components-codex-capability.inner-ok-missing:settled", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -454,7 +455,7 @@ "id": "components-codex-capability.inner-false-string-error:settled", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -466,7 +467,7 @@ "id": "components-codex-capability.inner-false-object-error:settled", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -478,7 +479,7 @@ "id": "components-codex-capability.outer-refused:settled", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -490,7 +491,7 @@ "id": "components-codex-capability.outer-refused-no-message:settled", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -502,7 +503,7 @@ "id": "components-codex-capability.method-not-found:settled", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -514,7 +515,7 @@ "id": "components-codex-capability.transport-rejection:settled", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, @@ -526,7 +527,7 @@ "id": "components-codex-capability.transport-rejection-no-message:settled", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "7ed3d39f0607" }, 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 cb23dbd71d1..a9039d1eeff 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "76b53dea504a688493843e23e8e7d052fc196f559bb1e2579d0fd38bf3156d0e", "scenarioSha256": "cc6de73be00be072f9a3b7fd63459fd1a529c45d0916a67d5fe6d90dbee61e91", "platform": "darwin", @@ -59,6 +59,11 @@ } } }, + "31c5054bc660": { + "name": "accounts.consumeCodexResetCredit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}", + "sent": 1 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -342,10 +347,6 @@ "status": "pending", "startedAt": 0 }, - "95625d997965": { - "name": "accounts.consumeCodexResetCredit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.consumeCodexResetCredit\",\"params\":{\"idempotencyKey\":\"00000000-0000-4000-8000-000000000001\",\"expectedScope\":{\"target\":{\"runtime\":\"host\",\"wslDistro\":null},\"accountId\":\"codex-1\",\"accountRevision\":1700000000000,\"offerRevision\":\"v1:[1,null,null,[],null,null,1700000000000]\"}}}" - }, "a7ee87932ad2": { "name": "accounts.consumeCodexResetCredit#1", "args": [ @@ -763,7 +764,7 @@ "id": "codex-reset-credit-consumed.prelude:requested", "observation": { "sender": ["90f55bfe00c2"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "9270aeb7d9c6" }, @@ -775,7 +776,7 @@ "id": "codex-reset-credit-consumed.normal:consumed", "observation": { "sender": ["c4a98628ea44"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "fed9e1669a83" }, @@ -787,7 +788,7 @@ "id": "codex-reset-credit-consumed.result-absent:consumed", "observation": { "sender": ["1fe9cca0cfea"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "e1ee0a1ae721" }, @@ -799,7 +800,7 @@ "id": "codex-reset-credit-consumed.result-null:consumed", "observation": { "sender": ["ea4200bda9a6"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "e1ee0a1ae721" }, @@ -811,7 +812,7 @@ "id": "codex-reset-credit-consumed.inner-ok-missing:consumed", "observation": { "sender": ["e418952ce431"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "e1ee0a1ae721" }, @@ -823,7 +824,7 @@ "id": "codex-reset-credit-consumed.inner-false-string-error:consumed", "observation": { "sender": ["396ce6536d6c"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "e1ee0a1ae721" }, @@ -835,7 +836,7 @@ "id": "codex-reset-credit-consumed.inner-false-object-error:consumed", "observation": { "sender": ["3e0977e026e9"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "e1ee0a1ae721" }, @@ -847,7 +848,7 @@ "id": "codex-reset-credit-consumed.outer-refused:consumed", "observation": { "sender": ["45c6bf0513f4"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "32a7c0ae7918" }, @@ -859,7 +860,7 @@ "id": "codex-reset-credit-consumed.outer-refused-no-message:consumed", "observation": { "sender": ["3aec3f08d180"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "f3b516f62081" }, @@ -871,7 +872,7 @@ "id": "codex-reset-credit-consumed.method-not-found:consumed", "observation": { "sender": ["6e14949b9d4b"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "b948e8307e81" }, @@ -883,7 +884,7 @@ "id": "codex-reset-credit-consumed.transport-rejection:consumed", "observation": { "sender": ["a7ee87932ad2"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "a947768bc0ed" }, @@ -895,7 +896,7 @@ "id": "codex-reset-credit-consumed.transport-rejection-no-message:consumed", "observation": { "sender": ["b0762ae2d280"], - "payloads": ["95625d997965"], + "payloads": ["31c5054bc660"], "settlements": { "confirm": "c7584e82c72f" }, 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 d8d77f701ae..a51a65b8ca4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "f88ee2f5d19b19cc53dca5180a9b5936a13a00a82e8a4636a5e895262b669dec", "platform": "darwin", @@ -375,9 +375,10 @@ } } }, - "cf32edc950ac": { + "c56f76942e16": { "name": "preflight.detectAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -460,7 +461,7 @@ "id": "components-target-local.prelude:detect-pending", "observation": { "sender": ["3579737ce1a6"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -472,7 +473,7 @@ "id": "components-target-local.normal:settled", "observation": { "sender": ["6806cee7c59f"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -484,7 +485,7 @@ "id": "components-target-local.result-absent:settled", "observation": { "sender": ["6e5fcf24648d"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -496,7 +497,7 @@ "id": "components-target-local.result-null:settled", "observation": { "sender": ["1317fc33bdbe"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -508,7 +509,7 @@ "id": "components-target-local.inner-ok-missing:settled", "observation": { "sender": ["327b46fb8bef"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -520,7 +521,7 @@ "id": "components-target-local.inner-false-string-error:settled", "observation": { "sender": ["0846bea730cf"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -532,7 +533,7 @@ "id": "components-target-local.inner-false-object-error:settled", "observation": { "sender": ["00d70c40c34c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -544,7 +545,7 @@ "id": "components-target-local.outer-refused:settled", "observation": { "sender": ["fb640b2bca4c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -556,7 +557,7 @@ "id": "components-target-local.outer-refused-no-message:settled", "observation": { "sender": ["163b91b6fe9c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -568,7 +569,7 @@ "id": "components-target-local.method-not-found:settled", "observation": { "sender": ["87d7d24a30d2"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -580,7 +581,7 @@ "id": "components-target-local.transport-rejection:settled", "observation": { "sender": ["fbb9eef78275"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -592,7 +593,7 @@ "id": "components-target-local.transport-rejection-no-message:settled", "observation": { "sender": ["70d128c20ae4"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, 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 a361c2922a6..cd954415448 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "79a49cddf66935007afb9be8a30593b778f02237894e5fd4d2898b526fc125df", "platform": "darwin", @@ -44,9 +44,15 @@ } } }, - "0a7094a9a9ac": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" + "0b078c630b23": { + "name": "preflight.detectRemoteAgents#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 4 + }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 }, "245e68137e04": { "name": "preflight.detectRemoteAgents#1", @@ -127,10 +133,6 @@ } } }, - "57095302d8c1": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "6004e75ef39e": { "name": "preflight.detectRemoteAgents#2", "args": [ @@ -190,10 +192,6 @@ } } }, - "66a99391260b": { - "name": "preflight.detectRemoteAgents#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "737995ed36c3": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -261,6 +259,11 @@ } } }, + "77f42ff60d15": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 3 + }, "81c9c204b647": { "name": "ssh.connect#1", "args": [ @@ -444,6 +447,11 @@ } } }, + "bb1f9f7430c4": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 2 + }, "c0d4a122ea86": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -560,10 +568,6 @@ "value": { "$rpc": "undefined" } - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" } }, "recording": { @@ -573,7 +577,7 @@ "id": "components-target-ssh.prelude:state-pending", "observation": { "sender": ["ca123825be51"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -585,7 +589,7 @@ "id": "components-target-ssh.normal:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -598,7 +602,7 @@ "id": "components-target-ssh.result-absent:settled", "observation": { "sender": ["89aa7a3bd619", "8ce8dae8c036", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -611,7 +615,7 @@ "id": "components-target-ssh.result-null:settled", "observation": { "sender": ["89aa7a3bd619", "75cd96280963", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -624,7 +628,7 @@ "id": "components-target-ssh.inner-ok-missing:settled", "observation": { "sender": ["89aa7a3bd619", "ce1d236eece4", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -637,7 +641,7 @@ "id": "components-target-ssh.inner-false-string-error:settled", "observation": { "sender": ["89aa7a3bd619", "245e68137e04", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -650,7 +654,7 @@ "id": "components-target-ssh.inner-false-object-error:settled", "observation": { "sender": ["89aa7a3bd619", "c0d4a122ea86", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -663,7 +667,7 @@ "id": "components-target-ssh.outer-refused:settled", "observation": { "sender": ["89aa7a3bd619", "65a3db621845", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -676,7 +680,7 @@ "id": "components-target-ssh.outer-refused-no-message:settled", "observation": { "sender": ["89aa7a3bd619", "51d7ac902696", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -689,7 +693,7 @@ "id": "components-target-ssh.method-not-found:settled", "observation": { "sender": ["89aa7a3bd619", "737995ed36c3", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -702,7 +706,7 @@ "id": "components-target-ssh.transport-rejection:settled", "observation": { "sender": ["89aa7a3bd619", "07d4c9b0eaf2", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -715,7 +719,7 @@ "id": "components-target-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["89aa7a3bd619", "95dee1165f95", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" 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 fc5d60ce0d0..51e9d009a6c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "8b8f7fe7227d44330e216e0bf5d366c41b54d9bf76acfb24df2c1770984b9f27", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0a7094a9a9ac": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" + "0b078c630b23": { + "name": "preflight.detectRemoteAgents#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 4 + }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 }, "1d5f374a6378": { "name": "ssh.connect#1", @@ -230,10 +236,6 @@ "status": "connected" } }, - "57095302d8c1": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "5a241dd7bf9b": { "name": "ssh.connect#1", "args": [ @@ -328,10 +330,6 @@ "startedAt": 0 } }, - "66a99391260b": { - "name": "preflight.detectRemoteAgents#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "671db70f932a": { "name": "ssh.connect#1", "args": [ @@ -363,6 +361,11 @@ } } }, + "77f42ff60d15": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 3 + }, "81c9c204b647": { "name": "ssh.connect#1", "args": [ @@ -485,6 +488,11 @@ } } }, + "bb1f9f7430c4": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 2 + }, "c04e51232b36": { "detected": { "$rpc": "null" @@ -615,10 +623,6 @@ "value": { "$rpc": "undefined" } - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" } }, "recording": { @@ -628,7 +632,7 @@ "id": "components-target-ssh.prelude:state-pending", "observation": { "sender": ["ca123825be51"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -640,7 +644,7 @@ "id": "components-target-ssh.normal:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -653,7 +657,7 @@ "id": "components-target-ssh.result-absent:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "c9821a8643be"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -666,7 +670,7 @@ "id": "components-target-ssh.result-null:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "5a241dd7bf9b"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -679,7 +683,7 @@ "id": "components-target-ssh.inner-ok-missing:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "2fd7109925e5", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -692,7 +696,7 @@ "id": "components-target-ssh.inner-false-string-error:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "2a9fa3de486c", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -705,7 +709,7 @@ "id": "components-target-ssh.inner-false-object-error:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "5a628e933aa0", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -718,7 +722,7 @@ "id": "components-target-ssh.outer-refused:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "3443aa3290c8"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -731,7 +735,7 @@ "id": "components-target-ssh.outer-refused-no-message:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "33a303634ab9"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -744,7 +748,7 @@ "id": "components-target-ssh.method-not-found:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "1d5f374a6378"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -757,7 +761,7 @@ "id": "components-target-ssh.transport-rejection:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "c5608f9dd27c"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -770,7 +774,7 @@ "id": "components-target-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "671db70f932a"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" 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 af8e94726bc..e065550aebe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "6832d23c6500e4fcb20abe7c53bc4f5abe72180dc0ad747a4907b82d99bc75d0", "platform": "darwin", @@ -46,9 +46,10 @@ } } }, - "0a7094a9a9ac": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" + "0b078c630b23": { + "name": "preflight.detectRemoteAgents#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 4 }, "0eabd872f405": { "name": "ssh.getState#1", @@ -83,6 +84,11 @@ } } }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 + }, "14db652edf02": { "name": "ssh.getState#1", "args": [ @@ -155,10 +161,6 @@ "status": "connected" } }, - "57095302d8c1": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "6004e75ef39e": { "name": "preflight.detectRemoteAgents#2", "args": [ @@ -184,10 +186,6 @@ "startedAt": 0 } }, - "66a99391260b": { - "name": "preflight.detectRemoteAgents#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "71d817ffdd81": { "name": "ssh.connect#1", "args": [ @@ -228,9 +226,10 @@ } } }, - "7c9498659f58": { + "77f42ff60d15": { "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 3 }, "81c9c204b647": { "name": "ssh.connect#1", @@ -272,6 +271,11 @@ } } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "89aa7a3bd619": { "name": "ssh.getState#1", "args": [ @@ -377,10 +381,6 @@ } } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "b705ba88a562": { "name": "ssh.getState#1", "args": [ @@ -415,6 +415,16 @@ } } }, + "bb1f9f7430c4": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 2 + }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "ca123825be51": { "name": "ssh.getState#1", "args": [ @@ -602,10 +612,6 @@ } } }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "ff6c3161dcc7": { "name": "ssh.getState#1", "args": [ @@ -648,7 +654,7 @@ "id": "components-target-ssh.prelude:state-pending", "observation": { "sender": ["ca123825be51"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -660,7 +666,7 @@ "id": "components-target-ssh.normal:settled", "observation": { "sender": ["89aa7a3bd619", "9a892112da5b", "81c9c204b647", "6004e75ef39e"], - "payloads": ["f9dfbe0c0ea7", "0a7094a9a9ac", "57095302d8c1", "66a99391260b"], + "payloads": ["14b354ce0ded", "bb1f9f7430c4", "77f42ff60d15", "0b078c630b23"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -673,7 +679,7 @@ "id": "components-target-ssh.result-absent:settled", "observation": { "sender": ["14db652edf02", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -686,7 +692,7 @@ "id": "components-target-ssh.result-null:settled", "observation": { "sender": ["0eabd872f405", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -699,7 +705,7 @@ "id": "components-target-ssh.inner-ok-missing:settled", "observation": { "sender": ["0a16839c6f87", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -712,7 +718,7 @@ "id": "components-target-ssh.inner-false-string-error:settled", "observation": { "sender": ["b09dd4915f43", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -725,7 +731,7 @@ "id": "components-target-ssh.inner-false-object-error:settled", "observation": { "sender": ["e18278fce524", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -738,7 +744,7 @@ "id": "components-target-ssh.outer-refused:settled", "observation": { "sender": ["d0fad8f739ca", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -751,7 +757,7 @@ "id": "components-target-ssh.outer-refused-no-message:settled", "observation": { "sender": ["ff6c3161dcc7", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -764,7 +770,7 @@ "id": "components-target-ssh.method-not-found:settled", "observation": { "sender": ["b705ba88a562", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -777,7 +783,7 @@ "id": "components-target-ssh.transport-rejection:settled", "observation": { "sender": ["2d910059043a", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -790,7 +796,7 @@ "id": "components-target-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["f36f17f8d448", "71d817ffdd81", "f03117831a8e"], - "payloads": ["f9dfbe0c0ea7", "7c9498659f58", "b69a18178af8"], + "payloads": ["14b354ce0ded", "c461e0bfea7c", "84ca21355dd8"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" 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 3f0d13573b7..9e99666217b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa", "scenarioSha256": "95f7dbb11bca7203d29bd13230d4a286f49ff20596535163094e1bff73e7f3cb", "platform": "darwin", @@ -232,6 +232,11 @@ "$rpc": "null" } }, + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 + }, "6a50de773e54": { "crash": { "$rpc": "null" @@ -242,10 +247,6 @@ "$rpc": "null" } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6e5c6593dad8": { "name": "repo.list#1", "args": [ @@ -477,7 +478,7 @@ "id": "new-workspace-repositories-fulfilled.prelude:loading", "observation": { "sender": ["26accd69bc48"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -489,7 +490,7 @@ "id": "new-workspace-repositories-fulfilled.normal:selected", "observation": { "sender": ["288dd3529eaf"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -501,7 +502,7 @@ "id": "new-workspace-repositories-fulfilled.result-absent:selected", "observation": { "sender": ["2ebe4d776f9b"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -513,7 +514,7 @@ "id": "new-workspace-repositories-fulfilled.result-null:selected", "observation": { "sender": ["38e790fd9e9c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -525,7 +526,7 @@ "id": "new-workspace-repositories-fulfilled.inner-ok-missing:selected", "observation": { "sender": ["06b63e0d9986"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -537,7 +538,7 @@ "id": "new-workspace-repositories-fulfilled.inner-false-string-error:selected", "observation": { "sender": ["f96e83d33565"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -549,7 +550,7 @@ "id": "new-workspace-repositories-fulfilled.inner-false-object-error:selected", "observation": { "sender": ["9d3fa0db2665"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -561,7 +562,7 @@ "id": "new-workspace-repositories-fulfilled.outer-refused:selected", "observation": { "sender": ["b9f0f1e94cd9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -573,7 +574,7 @@ "id": "new-workspace-repositories-fulfilled.outer-refused-no-message:selected", "observation": { "sender": ["06fc8e7b85d5"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -585,7 +586,7 @@ "id": "new-workspace-repositories-fulfilled.method-not-found:selected", "observation": { "sender": ["e341bd05e614"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -597,7 +598,7 @@ "id": "new-workspace-repositories-fulfilled.transport-rejection:selected", "observation": { "sender": ["6e5c6593dad8"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -609,7 +610,7 @@ "id": "new-workspace-repositories-fulfilled.transport-rejection-no-message:selected", "observation": { "sender": ["cc1facdf008c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, 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 f6b9cc3a78f..76aa62d959e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "a844134d7bad3c7c12107d60dbd298f5cfba778703fb9dd0f7ad454615d26b07", "platform": "darwin", @@ -370,6 +370,11 @@ } } }, + "d9f709e8100e": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "daf213730e62": { "name": "repo.hooks#1", "args": [ @@ -441,10 +446,6 @@ "value": { "$rpc": "undefined" } - }, - "f5dc0ce1e7b8": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -454,7 +455,7 @@ "id": "components-setup-ask.prelude:hooks-pending", "observation": { "sender": ["28e75475e9e0"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -466,7 +467,7 @@ "id": "components-setup-ask.normal:settled", "observation": { "sender": ["3515a8adcd6d"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -478,7 +479,7 @@ "id": "components-setup-ask.result-absent:settled", "observation": { "sender": ["daf213730e62"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -490,7 +491,7 @@ "id": "components-setup-ask.result-null:settled", "observation": { "sender": ["1e344a6b5da7"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -502,7 +503,7 @@ "id": "components-setup-ask.inner-ok-missing:settled", "observation": { "sender": ["3cdc23cf6f4a"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -514,7 +515,7 @@ "id": "components-setup-ask.inner-false-string-error:settled", "observation": { "sender": ["0a180dd2149f"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -526,7 +527,7 @@ "id": "components-setup-ask.inner-false-object-error:settled", "observation": { "sender": ["170986cae6b4"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -538,7 +539,7 @@ "id": "components-setup-ask.outer-refused:settled", "observation": { "sender": ["64c03730d628"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -550,7 +551,7 @@ "id": "components-setup-ask.outer-refused-no-message:settled", "observation": { "sender": ["3c9287ca1560"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -562,7 +563,7 @@ "id": "components-setup-ask.method-not-found:settled", "observation": { "sender": ["e6c72f695b50"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -574,7 +575,7 @@ "id": "components-setup-ask.transport-rejection:settled", "observation": { "sender": ["941b6aeb0d6f"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, @@ -586,7 +587,7 @@ "id": "components-setup-ask.transport-rejection-no-message:settled", "observation": { "sender": ["33cfd55c1890"], - "payloads": ["f5dc0ce1e7b8"], + "payloads": ["d9f709e8100e"], "settlements": { "mount": "eb79a9b3682a" }, 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 d09b6908181..478f4ce7785 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07", "scenarioSha256": "38b5590173c1f6791d1b35c0f036e2f844ed4b0e39c880e8e376c5f314adaade", "platform": "darwin", @@ -103,10 +103,6 @@ "startedAt": 0 } }, - "1a3946e517d4": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}" - }, "1ab1c4e91b2b": { "name": "files.list#1", "args": [ @@ -403,6 +399,11 @@ } } }, + "87ae27687a19": { + "name": "files.readDir#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}", + "sent": 1 + }, "8966ebfaf515": { "crash": { "$rpc": "null" @@ -468,10 +469,6 @@ "rows": [], "text": ["Files", "orca-files", "files is not iterable", "Retry"] }, - "b5b1bc83b44d": { - "name": "files.readDir#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}" - }, "b7a3bc68b28f": { "name": "files.list#1", "args": [ @@ -518,6 +515,11 @@ "rows": ["dir:src", "file:README.md"], "text": ["Files", "orca-files", " - Showing first 5000"] }, + "c3a91710450a": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}", + "sent": 2 + }, "e91880eefe86": { "crash": { "$rpc": "null" @@ -616,7 +618,7 @@ "id": "files-explorer-legacy-fallback.prelude:loading", "observation": { "sender": ["195987bc4ef2"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -628,7 +630,7 @@ "id": "files-explorer-legacy-fallback.normal:legacy-listed", "observation": { "sender": ["30859af566b0", "80bd28a48dda"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -640,7 +642,7 @@ "id": "files-explorer-legacy-fallback.result-absent:legacy-listed", "observation": { "sender": ["30859af566b0", "b7a3bc68b28f"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -652,7 +654,7 @@ "id": "files-explorer-legacy-fallback.result-null:legacy-listed", "observation": { "sender": ["30859af566b0", "f8568eb054ee"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -664,7 +666,7 @@ "id": "files-explorer-legacy-fallback.inner-ok-missing:legacy-listed", "observation": { "sender": ["30859af566b0", "f08f593a8be1"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -676,7 +678,7 @@ "id": "files-explorer-legacy-fallback.inner-false-string-error:legacy-listed", "observation": { "sender": ["30859af566b0", "172ce972ddef"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -688,7 +690,7 @@ "id": "files-explorer-legacy-fallback.inner-false-object-error:legacy-listed", "observation": { "sender": ["30859af566b0", "6d857847180e"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -700,7 +702,7 @@ "id": "files-explorer-legacy-fallback.outer-refused:legacy-listed", "observation": { "sender": ["30859af566b0", "7331b73c2e67"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -712,7 +714,7 @@ "id": "files-explorer-legacy-fallback.outer-refused-no-message:legacy-listed", "observation": { "sender": ["30859af566b0", "86cd436cbbb4"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -724,7 +726,7 @@ "id": "files-explorer-legacy-fallback.method-not-found:legacy-listed", "observation": { "sender": ["30859af566b0", "21c8265367a7"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -736,7 +738,7 @@ "id": "files-explorer-legacy-fallback.transport-rejection:legacy-listed", "observation": { "sender": ["30859af566b0", "4d91e2cd49e7"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -748,7 +750,7 @@ "id": "files-explorer-legacy-fallback.transport-rejection-no-message:legacy-listed", "observation": { "sender": ["30859af566b0", "1ab1c4e91b2b"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, 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 b29ae8e1a0b..388c58477ed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "160421b989563424531fc893a115b95b399d1524ebaf1c91caa8b2862b52eb07", "scenarioSha256": "8c1fa604104c5551b8418af225c9420b1292f0c55b392f847985947c66749959", "platform": "darwin", @@ -54,10 +54,6 @@ "startedAt": 0 } }, - "1a3946e517d4": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}" - }, "1fac8f3b8f44": { "crash": { "$rpc": "null" @@ -403,6 +399,11 @@ } } }, + "87ae27687a19": { + "name": "files.readDir#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}", + "sent": 1 + }, "91637dc6ae5b": { "name": "files.readDir#1", "args": [ @@ -518,10 +519,6 @@ } } }, - "b5b1bc83b44d": { - "name": "files.readDir#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readDir\",\"params\":{\"worktree\":\"id:wt-files\",\"relativePath\":\"\"}}" - }, "b85511fb8929": { "crash": { "$rpc": "null" @@ -573,6 +570,11 @@ } } }, + "c3a91710450a": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:wt-files\"}}", + "sent": 2 + }, "e91880eefe86": { "crash": { "$rpc": "null" @@ -612,7 +614,7 @@ "id": "files-explorer-legacy-fallback.prelude:loading", "observation": { "sender": ["195987bc4ef2"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -624,7 +626,7 @@ "id": "files-explorer-legacy-fallback.normal:legacy-listed", "observation": { "sender": ["23a7ef6123a7"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -636,7 +638,7 @@ "id": "files-explorer-legacy-fallback.result-absent:legacy-listed", "observation": { "sender": ["995efbb97b13"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -648,7 +650,7 @@ "id": "files-explorer-legacy-fallback.result-null:legacy-listed", "observation": { "sender": ["2d716277e0b4"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -660,7 +662,7 @@ "id": "files-explorer-legacy-fallback.inner-ok-missing:legacy-listed", "observation": { "sender": ["7fd035a057b5"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -672,7 +674,7 @@ "id": "files-explorer-legacy-fallback.inner-false-string-error:legacy-listed", "observation": { "sender": ["ba58d31f3c54"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -684,7 +686,7 @@ "id": "files-explorer-legacy-fallback.inner-false-object-error:legacy-listed", "observation": { "sender": ["91637dc6ae5b"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -696,7 +698,7 @@ "id": "files-explorer-legacy-fallback.outer-refused:legacy-listed", "observation": { "sender": ["6660284d98a2"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -708,7 +710,7 @@ "id": "files-explorer-legacy-fallback.outer-refused-no-message:legacy-listed", "observation": { "sender": ["4f4a81c91e23"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -720,7 +722,7 @@ "id": "files-explorer-legacy-fallback.method-not-found:legacy-listed", "observation": { "sender": ["30859af566b0", "80bd28a48dda"], - "payloads": ["b5b1bc83b44d", "1a3946e517d4"], + "payloads": ["87ae27687a19", "c3a91710450a"], "settlements": { "mount": "eb79a9b3682a" }, @@ -732,7 +734,7 @@ "id": "files-explorer-legacy-fallback.transport-rejection:legacy-listed", "observation": { "sender": ["b3e7934618ec"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, @@ -744,7 +746,7 @@ "id": "files-explorer-legacy-fallback.transport-rejection-no-message:legacy-listed", "observation": { "sender": ["4f61e2e0cdf7"], - "payloads": ["b5b1bc83b44d"], + "payloads": ["87ae27687a19"], "settlements": { "mount": "eb79a9b3682a" }, 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 35b867f84de..94998b1d9b7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "5815450e8d07f463423ca0bd8237830791c220234201abffc6fa13e698913516", "platform": "darwin", @@ -44,10 +44,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "29bfbe94cca9": { "status": "fulfilled", "startedAt": 0, @@ -58,6 +54,11 @@ "expectedSshTargetId": "target-1" } }, + "2f24cdd633b5": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}", + "sent": 3 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -258,9 +259,10 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -297,10 +299,6 @@ } } }, - "a0341e6a5d84": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -549,6 +547,11 @@ } } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "e7fd41d8b9e6": { "name": "ssh.getState#1", "args": [ @@ -601,7 +604,7 @@ "id": "files-ownership-ssh.prelude:status-pending", "observation": { "sender": ["bc119660f0c1"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9270aeb7d9c6" }, @@ -613,7 +616,7 @@ "id": "files-ownership-ssh.normal:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "6116946241ca"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "29bfbe94cca9" }, @@ -625,7 +628,7 @@ "id": "files-ownership-ssh.result-absent:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "dfc84caa8f54"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "d954a0a142a5" }, @@ -637,7 +640,7 @@ "id": "files-ownership-ssh.result-null:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "504c0e27345c"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "ce2b29907ae3" }, @@ -649,7 +652,7 @@ "id": "files-ownership-ssh.inner-ok-missing:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "c05abe5bc0bc"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "6178f3695366" }, @@ -661,7 +664,7 @@ "id": "files-ownership-ssh.inner-false-string-error:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "b8b7e759edc4"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "6178f3695366" }, @@ -673,7 +676,7 @@ "id": "files-ownership-ssh.inner-false-object-error:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "a7e256068a4e"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "6178f3695366" }, @@ -685,7 +688,7 @@ "id": "files-ownership-ssh.outer-refused:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "7ae12fc753a2"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "32a7c0ae7918" }, @@ -697,7 +700,7 @@ "id": "files-ownership-ssh.outer-refused-no-message:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "e7fd41d8b9e6"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "f3b516f62081" }, @@ -709,7 +712,7 @@ "id": "files-ownership-ssh.method-not-found:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "3bff05e80a36"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "b948e8307e81" }, @@ -721,7 +724,7 @@ "id": "files-ownership-ssh.transport-rejection:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "0cfc3aa2bfb0"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "a947768bc0ed" }, @@ -733,7 +736,7 @@ "id": "files-ownership-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "98a7aa1d359d"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "c7584e82c72f" }, 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 8a3fa7a8f79..a20cb69cf68 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "b9cfb187224a4b42efe8ccfcd96145833730d135c4fffa345716f95991a4700f", "platform": "darwin", @@ -80,10 +80,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "29bfbe94cca9": { "status": "fulfilled", "startedAt": 0, @@ -94,6 +90,11 @@ "expectedSshTargetId": "target-1" } }, + "2f24cdd633b5": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}", + "sent": 3 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -332,6 +333,11 @@ "isRpcDeliveryUnknown": false } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "90817e8c47cb": { "name": "status.get#1", "args": [ @@ -362,10 +368,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -380,10 +382,6 @@ "isRpcDeliveryUnknown": false } }, - "a0341e6a5d84": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -513,6 +511,11 @@ "isRpcDeliveryUnknown": true } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "f2a2b92aa73c": { "name": "status.get#1", "args": [ @@ -601,7 +604,7 @@ "id": "files-ownership-ssh.prelude:status-pending", "observation": { "sender": ["bc119660f0c1"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9270aeb7d9c6" }, @@ -613,7 +616,7 @@ "id": "files-ownership-ssh.normal:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "6116946241ca"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "29bfbe94cca9" }, @@ -625,7 +628,7 @@ "id": "files-ownership-ssh.result-absent:settled", "observation": { "sender": ["90817e8c47cb"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "848eaee9cd6a" }, @@ -637,7 +640,7 @@ "id": "files-ownership-ssh.result-null:settled", "observation": { "sender": ["0d163aa89099"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "68ce4d376250" }, @@ -649,7 +652,7 @@ "id": "files-ownership-ssh.inner-ok-missing:settled", "observation": { "sender": ["48e2bdc38094"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9ce0c7923c41" }, @@ -661,7 +664,7 @@ "id": "files-ownership-ssh.inner-false-string-error:settled", "observation": { "sender": ["f2a2b92aa73c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9ce0c7923c41" }, @@ -673,7 +676,7 @@ "id": "files-ownership-ssh.inner-false-object-error:settled", "observation": { "sender": ["f68f9c806fb2"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9ce0c7923c41" }, @@ -685,7 +688,7 @@ "id": "files-ownership-ssh.outer-refused:settled", "observation": { "sender": ["0b7588536afb"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "32a7c0ae7918" }, @@ -697,7 +700,7 @@ "id": "files-ownership-ssh.outer-refused-no-message:settled", "observation": { "sender": ["a8d9f204690e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "f3b516f62081" }, @@ -709,7 +712,7 @@ "id": "files-ownership-ssh.method-not-found:settled", "observation": { "sender": ["753f8f2aac3b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "b948e8307e81" }, @@ -721,7 +724,7 @@ "id": "files-ownership-ssh.transport-rejection:settled", "observation": { "sender": ["4b0fb2833d76"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "a947768bc0ed" }, @@ -733,7 +736,7 @@ "id": "files-ownership-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["74a9cdb3c227"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "c7584e82c72f" }, 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 df4040174c5..585c3a04739 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "0bf3b17048bceb0bc8592405facd99cb8086274509206d9e55cd589a05d7415f", "platform": "darwin", @@ -80,10 +80,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2588fd63a157": { "status": "rejected", "startedAt": 0, @@ -104,6 +100,11 @@ "expectedSshTargetId": "target-1" } }, + "2f24cdd633b5": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}", + "sent": 3 + }, "2fa02ab5402f": { "name": "worktree.show#1", "args": [ @@ -302,6 +303,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8845bcbdc51b": { "name": "worktree.show#1", "args": [ @@ -336,18 +342,10 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "a0341e6a5d84": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"target-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -521,6 +519,11 @@ } } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -601,7 +604,7 @@ "id": "files-ownership-ssh.prelude:status-pending", "observation": { "sender": ["bc119660f0c1"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "capture": "9270aeb7d9c6" }, @@ -613,7 +616,7 @@ "id": "files-ownership-ssh.normal:settled", "observation": { "sender": ["a56852d6836b", "6ef43f81f7e3", "6116946241ca"], - "payloads": ["1e5b32902af7", "9199aee60486", "a0341e6a5d84"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "2f24cdd633b5"], "settlements": { "capture": "29bfbe94cca9" }, @@ -625,7 +628,7 @@ "id": "files-ownership-ssh.result-absent:settled", "observation": { "sender": ["a56852d6836b", "533d020d6123"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "2588fd63a157" }, @@ -637,7 +640,7 @@ "id": "files-ownership-ssh.result-null:settled", "observation": { "sender": ["a56852d6836b", "39a0b3c0e319"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "b5447f4dd931" }, @@ -649,7 +652,7 @@ "id": "files-ownership-ssh.inner-ok-missing:settled", "observation": { "sender": ["a56852d6836b", "06cbb9a1b167"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "6178f3695366" }, @@ -661,7 +664,7 @@ "id": "files-ownership-ssh.inner-false-string-error:settled", "observation": { "sender": ["a56852d6836b", "8845bcbdc51b"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "6178f3695366" }, @@ -673,7 +676,7 @@ "id": "files-ownership-ssh.inner-false-object-error:settled", "observation": { "sender": ["a56852d6836b", "2fa02ab5402f"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "6178f3695366" }, @@ -685,7 +688,7 @@ "id": "files-ownership-ssh.outer-refused:settled", "observation": { "sender": ["a56852d6836b", "cff8b7a5e7ce"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "32a7c0ae7918" }, @@ -697,7 +700,7 @@ "id": "files-ownership-ssh.outer-refused-no-message:settled", "observation": { "sender": ["a56852d6836b", "0b4d42954d52"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "f3b516f62081" }, @@ -709,7 +712,7 @@ "id": "files-ownership-ssh.method-not-found:settled", "observation": { "sender": ["a56852d6836b", "c6aa5c0a7bd1"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "b948e8307e81" }, @@ -721,7 +724,7 @@ "id": "files-ownership-ssh.transport-rejection:settled", "observation": { "sender": ["a56852d6836b", "fd50303f30ce"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "a947768bc0ed" }, @@ -733,7 +736,7 @@ "id": "files-ownership-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["a56852d6836b", "fc05e7103b6c"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "capture": "c7584e82c72f" }, 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 0feae446eae..584b91171e6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "dbd20e271999641affbd4b52635c8864e25f08aa6db820a46d0773faa09770c6", "platform": "darwin", @@ -295,6 +295,11 @@ } } }, + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -351,10 +356,6 @@ "isRpcDeliveryUnknown": true } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" - }, "e088aa7f81b8": { "name": "files.readTerminalArtifact#1", "args": [ @@ -504,7 +505,7 @@ "id": "files-preview-grant-refresh.prelude:read-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "9270aeb7d9c6" }, @@ -516,7 +517,7 @@ "id": "files-preview-grant-refresh.normal:settled", "observation": { "sender": ["194fabd9b9d8"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "500d95d47092" }, @@ -528,7 +529,7 @@ "id": "files-preview-grant-refresh.result-absent:settled", "observation": { "sender": ["139c55987ba6"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -540,7 +541,7 @@ "id": "files-preview-grant-refresh.result-null:settled", "observation": { "sender": ["7500d091ea19"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -552,7 +553,7 @@ "id": "files-preview-grant-refresh.inner-ok-missing:settled", "observation": { "sender": ["f488aff81e98"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -564,7 +565,7 @@ "id": "files-preview-grant-refresh.inner-false-string-error:settled", "observation": { "sender": ["e088aa7f81b8"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -576,7 +577,7 @@ "id": "files-preview-grant-refresh.inner-false-object-error:settled", "observation": { "sender": ["67427c41b324"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -588,7 +589,7 @@ "id": "files-preview-grant-refresh.outer-refused:settled", "observation": { "sender": ["68b5d189bcca"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -600,7 +601,7 @@ "id": "files-preview-grant-refresh.outer-refused-no-message:settled", "observation": { "sender": ["e2791dca552b"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -612,7 +613,7 @@ "id": "files-preview-grant-refresh.method-not-found:settled", "observation": { "sender": ["ac130adfeffb"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "15467bba2d60" }, @@ -624,7 +625,7 @@ "id": "files-preview-grant-refresh.transport-rejection:settled", "observation": { "sender": ["7886fcdc8065"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "a947768bc0ed" }, @@ -636,7 +637,7 @@ "id": "files-preview-grant-refresh.transport-rejection-no-message:settled", "observation": { "sender": ["9d9aa1c01790"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "c7584e82c72f" }, 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 f5d2479e48d..acc92a4c3f2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "c4a09003352ba4e97a17ec4109cc125298cf7123b317265cc5eca06e8dcc0615", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "044dee71a9cd": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "15467bba2d60": { "status": "fulfilled", "startedAt": 0, @@ -148,6 +153,11 @@ "truncated": false } }, + "5824e53bc730": { + "name": "files.readTerminalArtifact#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}", + "sent": 3 + }, "5f446c109a9a": { "name": "files.readTerminalArtifact#2", "args": [ @@ -283,9 +293,10 @@ "status": "pending", "startedAt": 0 }, - "9a56ffbdd5bf": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}" + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "a947768bc0ed": { "status": "rejected", @@ -368,10 +379,6 @@ } } }, - "c283e01480f7": { - "name": "files.readTerminalArtifact#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}" - }, "c727a49c2e15": { "name": "files.readTerminalArtifact#2", "args": [ @@ -454,10 +461,6 @@ } } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" - }, "e81d5596c201": { "name": "files.readTerminalArtifact#1", "args": [ @@ -603,7 +606,7 @@ "id": "files-preview-grant-refresh.prelude:read-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "9270aeb7d9c6" }, @@ -615,7 +618,7 @@ "id": "files-preview-grant-refresh.normal:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "5f446c109a9a"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "500d95d47092" }, @@ -627,7 +630,7 @@ "id": "files-preview-grant-refresh.result-absent:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "f444aa03ba44"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -639,7 +642,7 @@ "id": "files-preview-grant-refresh.result-null:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "23897314fbe2"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -651,7 +654,7 @@ "id": "files-preview-grant-refresh.inner-ok-missing:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "c01a147cb225"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -663,7 +666,7 @@ "id": "files-preview-grant-refresh.inner-false-string-error:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "68b4cb95d67a"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -675,7 +678,7 @@ "id": "files-preview-grant-refresh.inner-false-object-error:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "edcd6a3e98cd"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -687,7 +690,7 @@ "id": "files-preview-grant-refresh.outer-refused:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "b1c3cb621eff"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -699,7 +702,7 @@ "id": "files-preview-grant-refresh.outer-refused-no-message:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "c727a49c2e15"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -711,7 +714,7 @@ "id": "files-preview-grant-refresh.method-not-found:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "ca6bf3108851"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "15467bba2d60" }, @@ -723,7 +726,7 @@ "id": "files-preview-grant-refresh.transport-rejection:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "ebf2a6ee078d"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "a947768bc0ed" }, @@ -735,7 +738,7 @@ "id": "files-preview-grant-refresh.transport-rejection-no-message:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "70356f9cd814"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "c7584e82c72f" }, 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 11432c4fd11..6fd223b127c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "ecdeff2713e454925158dde09782713d76f39455729bb25688a6ffcfff154f30", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "044dee71a9cd": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "05c972dfc190": { "name": "files.resolveTerminalPath#1", "args": [ @@ -183,6 +188,11 @@ "truncated": false } }, + "5824e53bc730": { + "name": "files.readTerminalArtifact#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}", + "sent": 3 + }, "5f446c109a9a": { "name": "files.readTerminalArtifact#2", "args": [ @@ -320,9 +330,10 @@ "status": "pending", "startedAt": 0 }, - "9a56ffbdd5bf": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"run.txt\",\"cwd\":\"/logs\",\"terminal\":\"terminal-1\"}}" + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "a947768bc0ed": { "status": "rejected", @@ -371,10 +382,6 @@ } } }, - "c283e01480f7": { - "name": "files.readTerminalArtifact#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-2\"}}" - }, "c469c3b9bfe7": { "name": "files.resolveTerminalPath#1", "args": [ @@ -530,10 +537,6 @@ } } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" - }, "e81d5596c201": { "name": "files.readTerminalArtifact#1", "args": [ @@ -613,7 +616,7 @@ "id": "files-preview-grant-refresh.prelude:read-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "load": "9270aeb7d9c6" }, @@ -625,7 +628,7 @@ "id": "files-preview-grant-refresh.normal:settled", "observation": { "sender": ["25b0d1737c71", "3c5492779d85", "5f446c109a9a"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf", "c283e01480f7"], + "payloads": ["a3bce9470bbb", "044dee71a9cd", "5824e53bc730"], "settlements": { "load": "500d95d47092" }, @@ -637,7 +640,7 @@ "id": "files-preview-grant-refresh.result-absent:settled", "observation": { "sender": ["25b0d1737c71", "05c972dfc190"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -649,7 +652,7 @@ "id": "files-preview-grant-refresh.result-null:settled", "observation": { "sender": ["25b0d1737c71", "c469c3b9bfe7"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -661,7 +664,7 @@ "id": "files-preview-grant-refresh.inner-ok-missing:settled", "observation": { "sender": ["25b0d1737c71", "c657a3f0e02b"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -673,7 +676,7 @@ "id": "files-preview-grant-refresh.inner-false-string-error:settled", "observation": { "sender": ["25b0d1737c71", "8ce900375525"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -685,7 +688,7 @@ "id": "files-preview-grant-refresh.inner-false-object-error:settled", "observation": { "sender": ["25b0d1737c71", "d9baab0b6b3c"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -697,7 +700,7 @@ "id": "files-preview-grant-refresh.outer-refused:settled", "observation": { "sender": ["25b0d1737c71", "ad2583c82bfe"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -709,7 +712,7 @@ "id": "files-preview-grant-refresh.outer-refused-no-message:settled", "observation": { "sender": ["25b0d1737c71", "30954e0c83e6"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -721,7 +724,7 @@ "id": "files-preview-grant-refresh.method-not-found:settled", "observation": { "sender": ["25b0d1737c71", "efd7ff51072f"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "15467bba2d60" }, @@ -733,7 +736,7 @@ "id": "files-preview-grant-refresh.transport-rejection:settled", "observation": { "sender": ["25b0d1737c71", "7f321cd7152f"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "a947768bc0ed" }, @@ -745,7 +748,7 @@ "id": "files-preview-grant-refresh.transport-rejection-no-message:settled", "observation": { "sender": ["25b0d1737c71", "de1ef0907023"], - "payloads": ["e0401d205ea2", "9a56ffbdd5bf"], + "payloads": ["a3bce9470bbb", "044dee71a9cd"], "settlements": { "load": "c7584e82c72f" }, 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 f63eb30e5a7..a55e6ab88b1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "1a4f7dff351be244712bedb8f495c83a531cfbfc5b5923267d1ed46bf2d6d11b", "platform": "darwin", @@ -288,9 +288,10 @@ } } }, - "a3886e3a9791": { - "name": "files.writeTerminalArtifact#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}" + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "a947768bc0ed": { "status": "rejected", @@ -353,9 +354,10 @@ "isRpcDeliveryUnknown": true } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" + "d76588bfa9bd": { + "name": "files.writeTerminalArtifact#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}", + "sent": 2 }, "e088aa7f81b8": { "name": "files.readTerminalArtifact#1", @@ -536,7 +538,7 @@ "id": "files-save-verified.prelude:verify-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "9270aeb7d9c6" }, @@ -548,7 +550,7 @@ "id": "files-save-verified.normal:settled", "observation": { "sender": ["e391aec81b96", "7875007ef392"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -560,7 +562,7 @@ "id": "files-save-verified.result-absent:settled", "observation": { "sender": ["139c55987ba6"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -572,7 +574,7 @@ "id": "files-save-verified.result-null:settled", "observation": { "sender": ["7500d091ea19"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -584,7 +586,7 @@ "id": "files-save-verified.inner-ok-missing:settled", "observation": { "sender": ["f488aff81e98"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -596,7 +598,7 @@ "id": "files-save-verified.inner-false-string-error:settled", "observation": { "sender": ["e088aa7f81b8"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -608,7 +610,7 @@ "id": "files-save-verified.inner-false-object-error:settled", "observation": { "sender": ["67427c41b324"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -620,7 +622,7 @@ "id": "files-save-verified.outer-refused:settled", "observation": { "sender": ["68b5d189bcca"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -632,7 +634,7 @@ "id": "files-save-verified.outer-refused-no-message:settled", "observation": { "sender": ["e2791dca552b"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -644,7 +646,7 @@ "id": "files-save-verified.method-not-found:settled", "observation": { "sender": ["ac130adfeffb"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "15467bba2d60" }, @@ -656,7 +658,7 @@ "id": "files-save-verified.transport-rejection:settled", "observation": { "sender": ["7886fcdc8065"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "a947768bc0ed" }, @@ -668,7 +670,7 @@ "id": "files-save-verified.transport-rejection-no-message:settled", "observation": { "sender": ["9d9aa1c01790"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "c7584e82c72f" }, 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 72fd3538173..e84be78c0ea 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "8d443bda91fe5a1fa74910d525bb2ec40f639109bc71afbd42bccd949b3d463f", "platform": "darwin", @@ -329,9 +329,10 @@ } } }, - "a3886e3a9791": { - "name": "files.writeTerminalArtifact#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}" + "a3bce9470bbb": { + "name": "files.readTerminalArtifact#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}", + "sent": 1 }, "a947768bc0ed": { "status": "rejected", @@ -470,9 +471,10 @@ } } }, - "e0401d205ea2": { - "name": "files.readTerminalArtifact#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.readTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\"}}" + "d76588bfa9bd": { + "name": "files.writeTerminalArtifact#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.writeTerminalArtifact\",\"params\":{\"worktree\":\"id:workspace-1\",\"absolutePath\":\"/logs/run.txt\",\"grantId\":\"grant-1\",\"content\":\"next\"}}", + "sent": 2 }, "e391aec81b96": { "name": "files.readTerminalArtifact#1", @@ -546,7 +548,7 @@ "id": "files-save-verified.prelude:verify-pending", "observation": { "sender": ["e81d5596c201"], - "payloads": ["e0401d205ea2"], + "payloads": ["a3bce9470bbb"], "settlements": { "save": "9270aeb7d9c6" }, @@ -558,7 +560,7 @@ "id": "files-save-verified.normal:settled", "observation": { "sender": ["e391aec81b96", "7875007ef392"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -570,7 +572,7 @@ "id": "files-save-verified.result-absent:settled", "observation": { "sender": ["e391aec81b96", "a1ef4333ebe3"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -582,7 +584,7 @@ "id": "files-save-verified.result-null:settled", "observation": { "sender": ["e391aec81b96", "c889a22fe351"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -594,7 +596,7 @@ "id": "files-save-verified.inner-ok-missing:settled", "observation": { "sender": ["e391aec81b96", "78be845b88ca"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -606,7 +608,7 @@ "id": "files-save-verified.inner-false-string-error:settled", "observation": { "sender": ["e391aec81b96", "82f499ca91c8"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -618,7 +620,7 @@ "id": "files-save-verified.inner-false-object-error:settled", "observation": { "sender": ["e391aec81b96", "bddbfe5ee1aa"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "54a6055a16b5" }, @@ -630,7 +632,7 @@ "id": "files-save-verified.outer-refused:settled", "observation": { "sender": ["e391aec81b96", "2e3484ef7995"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "15467bba2d60" }, @@ -642,7 +644,7 @@ "id": "files-save-verified.outer-refused-no-message:settled", "observation": { "sender": ["e391aec81b96", "c09d56029b09"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "15467bba2d60" }, @@ -654,7 +656,7 @@ "id": "files-save-verified.method-not-found:settled", "observation": { "sender": ["e391aec81b96", "4db44f048a4d"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "15467bba2d60" }, @@ -666,7 +668,7 @@ "id": "files-save-verified.transport-rejection:settled", "observation": { "sender": ["e391aec81b96", "3a281590ccf7"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "a947768bc0ed" }, @@ -678,7 +680,7 @@ "id": "files-save-verified.transport-rejection-no-message:settled", "observation": { "sender": ["e391aec81b96", "24195166cf4d"], - "payloads": ["e0401d205ea2", "a3886e3a9791"], + "payloads": ["a3bce9470bbb", "d76588bfa9bd"], "settlements": { "save": "c7584e82c72f" }, 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 6e85284b38f..ddc821cf2dd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "65895c028637185238baf4fd4f1297c11f528a289fe8173a41c48dc5a0b37c26", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02ea3f503180": { - "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" - }, "02ee7655cfac": { "name": "files.read#1", "args": [ @@ -154,6 +150,16 @@ "isRpcDeliveryUnknown": false } }, + "3be6ef0e9bd8": { + "name": "files.readPreview#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}", + "sent": 2 + }, + "3d04ed6e70c6": { + "name": "files.read#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 1 + }, "4771cbfc0dfc": { "name": "files.read#1", "args": [ @@ -207,10 +213,6 @@ } } }, - "5c610ebe58ed": { - "name": "files.readPreview#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}" - }, "65af9a3f5ad4": { "name": "files.read#1", "args": [ @@ -439,6 +441,11 @@ } } }, + "b185e249da6e": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}", + "sent": 3 + }, "b5a9ffe4c713": { "name": "files.read#1", "args": [ @@ -635,10 +642,6 @@ "isRpcDeliveryUnknown": false } }, - "fad4ca11a316": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}" - }, "fb58498a8798": { "diff": { "kind": "diff", @@ -706,7 +709,7 @@ "id": "files-tab-doc-shapes.normal:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -720,7 +723,7 @@ "id": "files-tab-doc-shapes.result-absent:settled", "observation": { "sender": ["b5a9ffe4c713", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "ba9332ae7bb1", "image": "eee847a9d90d", @@ -734,7 +737,7 @@ "id": "files-tab-doc-shapes.result-null:settled", "observation": { "sender": ["6aca770498a6", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "a7c7f43265d5", "image": "eee847a9d90d", @@ -748,7 +751,7 @@ "id": "files-tab-doc-shapes.inner-ok-missing:settled", "observation": { "sender": ["8595b3c0f792", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "5a33eeedb90f", "image": "eee847a9d90d", @@ -762,7 +765,7 @@ "id": "files-tab-doc-shapes.inner-false-string-error:settled", "observation": { "sender": ["987f853ccbc2", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "5a33eeedb90f", "image": "eee847a9d90d", @@ -776,7 +779,7 @@ "id": "files-tab-doc-shapes.inner-false-object-error:settled", "observation": { "sender": ["ae1baf99acb7", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "5a33eeedb90f", "image": "eee847a9d90d", @@ -790,7 +793,7 @@ "id": "files-tab-doc-shapes.outer-refused:settled", "observation": { "sender": ["4771cbfc0dfc", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "32a7c0ae7918", "image": "eee847a9d90d", @@ -804,7 +807,7 @@ "id": "files-tab-doc-shapes.outer-refused-no-message:settled", "observation": { "sender": ["02ee7655cfac", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "f3b516f62081", "image": "eee847a9d90d", @@ -818,7 +821,7 @@ "id": "files-tab-doc-shapes.method-not-found:settled", "observation": { "sender": ["cb1b85f12e0a", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b948e8307e81", "image": "eee847a9d90d", @@ -832,7 +835,7 @@ "id": "files-tab-doc-shapes.transport-rejection:settled", "observation": { "sender": ["22c63b806ef5", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "a947768bc0ed", "image": "eee847a9d90d", @@ -846,7 +849,7 @@ "id": "files-tab-doc-shapes.transport-rejection-no-message:settled", "observation": { "sender": ["65af9a3f5ad4", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "c7584e82c72f", "image": "eee847a9d90d", 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 622e0dd6a56..c9c58f0ee3a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "2ceca0ecd901fd78838fcbdc789cbb6b96f04674b850a0994c7611f5db804915", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02ea3f503180": { - "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" - }, "0fef03f57c61": { "name": "files.readPreview#1", "args": [ @@ -107,6 +103,16 @@ "isRpcDeliveryUnknown": false } }, + "3be6ef0e9bd8": { + "name": "files.readPreview#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}", + "sent": 2 + }, + "3d04ed6e70c6": { + "name": "files.read#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 1 + }, "43465946206b": { "name": "files.readPreview#1", "args": [ @@ -196,10 +202,6 @@ "truncated": false } }, - "5c610ebe58ed": { - "name": "files.readPreview#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}" - }, "62a16026dfb1": { "name": "files.readPreview#1", "args": [ @@ -385,6 +387,11 @@ } } }, + "b185e249da6e": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}", + "sent": 3 + }, "b5c68b76c498": { "status": "fulfilled", "startedAt": 0, @@ -629,10 +636,6 @@ } } }, - "fad4ca11a316": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}" - }, "ffe1c534d459": { "status": "fulfilled", "startedAt": 0, @@ -663,7 +666,7 @@ "id": "files-tab-doc-shapes.normal:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -677,7 +680,7 @@ "id": "files-tab-doc-shapes.result-absent:settled", "observation": { "sender": ["9babe9503a83", "47bde408cf1e", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "2e3bb1c16607", @@ -691,7 +694,7 @@ "id": "files-tab-doc-shapes.result-null:settled", "observation": { "sender": ["9babe9503a83", "0fef03f57c61", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "d6234620430f", @@ -705,7 +708,7 @@ "id": "files-tab-doc-shapes.inner-ok-missing:settled", "observation": { "sender": ["9babe9503a83", "c47f8da1be2f", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "c38abcaf69dd", @@ -719,7 +722,7 @@ "id": "files-tab-doc-shapes.inner-false-string-error:settled", "observation": { "sender": ["9babe9503a83", "a9fc8a97c98b", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "c38abcaf69dd", @@ -733,7 +736,7 @@ "id": "files-tab-doc-shapes.inner-false-object-error:settled", "observation": { "sender": ["9babe9503a83", "62a16026dfb1", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "c38abcaf69dd", @@ -747,7 +750,7 @@ "id": "files-tab-doc-shapes.outer-refused:settled", "observation": { "sender": ["9babe9503a83", "c2ba83cacd09", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "32a7c0ae7918", @@ -761,7 +764,7 @@ "id": "files-tab-doc-shapes.outer-refused-no-message:settled", "observation": { "sender": ["9babe9503a83", "63bda5bd024b", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "f3b516f62081", @@ -775,7 +778,7 @@ "id": "files-tab-doc-shapes.method-not-found:settled", "observation": { "sender": ["9babe9503a83", "f53a3ae32692", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "b948e8307e81", @@ -789,7 +792,7 @@ "id": "files-tab-doc-shapes.transport-rejection:settled", "observation": { "sender": ["9babe9503a83", "a5ebcad292b7", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "a947768bc0ed", @@ -803,7 +806,7 @@ "id": "files-tab-doc-shapes.transport-rejection-no-message:settled", "observation": { "sender": ["9babe9503a83", "43465946206b", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "c7584e82c72f", 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 46b69394329..f2de9ebe86a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "c4db2424b8a35fd97b3fea00b4dd91a3c8d50c6fb73795811ef5402e3d14f8df", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02ea3f503180": { - "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" - }, "0aa81de503dc": { "name": "git.diff#1", "args": [ @@ -180,6 +176,16 @@ "isRpcDeliveryUnknown": false } }, + "3be6ef0e9bd8": { + "name": "files.readPreview#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}", + "sent": 2 + }, + "3d04ed6e70c6": { + "name": "files.read#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 1 + }, "3eca7222b2d0": { "name": "git.diff#1", "args": [ @@ -259,10 +265,6 @@ "isRpcDeliveryUnknown": false } }, - "5c610ebe58ed": { - "name": "files.readPreview#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.readPreview\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/logo.png\"}}" - }, "6f5e5f7888b7": { "name": "git.diff#1", "args": [ @@ -413,6 +415,11 @@ } } }, + "b185e249da6e": { + "name": "git.diff#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}", + "sent": 3 + }, "b5c68b76c498": { "status": "fulfilled", "startedAt": 0, @@ -589,10 +596,6 @@ "isRpcDeliveryUnknown": false } }, - "fad4ca11a316": { - "name": "git.diff#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.diff\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"docs/readme.md\",\"staged\":true}}" - }, "fdb82a72967a": { "name": "git.diff#1", "args": [ @@ -661,7 +664,7 @@ "id": "files-tab-doc-shapes.normal:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "c8fbe8972330"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -675,7 +678,7 @@ "id": "files-tab-doc-shapes.result-absent:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "e56bb4eec9ad"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -689,7 +692,7 @@ "id": "files-tab-doc-shapes.result-null:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "0aa81de503dc"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -703,7 +706,7 @@ "id": "files-tab-doc-shapes.inner-ok-missing:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "af88d9765fd0"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -717,7 +720,7 @@ "id": "files-tab-doc-shapes.inner-false-string-error:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "6f5e5f7888b7"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -731,7 +734,7 @@ "id": "files-tab-doc-shapes.inner-false-object-error:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "fdb82a72967a"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -745,7 +748,7 @@ "id": "files-tab-doc-shapes.outer-refused:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "0fa28155e34e"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -759,7 +762,7 @@ "id": "files-tab-doc-shapes.outer-refused-no-message:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "3eca7222b2d0"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -773,7 +776,7 @@ "id": "files-tab-doc-shapes.method-not-found:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "0ddde941c38a"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -787,7 +790,7 @@ "id": "files-tab-doc-shapes.transport-rejection:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "9cf9915b1ff3"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", @@ -801,7 +804,7 @@ "id": "files-tab-doc-shapes.transport-rejection-no-message:settled", "observation": { "sender": ["9babe9503a83", "323bf6059754", "5225d2d0d430"], - "payloads": ["02ea3f503180", "5c610ebe58ed", "fad4ca11a316"], + "payloads": ["3d04ed6e70c6", "3be6ef0e9bd8", "b185e249da6e"], "settlements": { "text": "b5c68b76c498", "image": "eee847a9d90d", 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 38d02edd70d..9b173e3ee73 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "73dbbb8b96662af57240194be4af5726697d402b624a807d003ab56fea04dbd7", "platform": "darwin", @@ -137,6 +137,11 @@ "value": {}, "sent": 2 }, + "52c3c247865d": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}", + "sent": 2 + }, "650c13434960": { "name": "files.open#1", "args": [ @@ -204,6 +209,11 @@ } } }, + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "b18df88ac812": { "name": "files.open#1", "args": [ @@ -293,10 +303,6 @@ "$rpc": "null" } }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "d9a357a79330": { "name": "files.open#1", "args": [ @@ -472,10 +478,6 @@ } } }, - "f334b291fecc": { - "name": "files.open#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" - }, "f8a009b4a36e": { "activeSessionTabId": "tab-opened", "failed": 0, @@ -492,7 +494,7 @@ "id": "file-tap-opens-worktree-file.normal:switched", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -505,7 +507,7 @@ "id": "file-tap-opens-worktree-file.normal:settled", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -518,7 +520,7 @@ "id": "file-tap-opens-worktree-file.result-absent:switched", "observation": { "sender": ["18cda90904c3", "e53bbf4222bd"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -531,7 +533,7 @@ "id": "file-tap-opens-worktree-file.result-absent:settled", "observation": { "sender": ["18cda90904c3", "e53bbf4222bd"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -544,7 +546,7 @@ "id": "file-tap-opens-worktree-file.result-null:switched", "observation": { "sender": ["18cda90904c3", "c08a54e5680c"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -557,7 +559,7 @@ "id": "file-tap-opens-worktree-file.result-null:settled", "observation": { "sender": ["18cda90904c3", "c08a54e5680c"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -570,7 +572,7 @@ "id": "file-tap-opens-worktree-file.inner-ok-missing:switched", "observation": { "sender": ["18cda90904c3", "230cba644911"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -583,7 +585,7 @@ "id": "file-tap-opens-worktree-file.inner-ok-missing:settled", "observation": { "sender": ["18cda90904c3", "230cba644911"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -596,7 +598,7 @@ "id": "file-tap-opens-worktree-file.inner-false-string-error:switched", "observation": { "sender": ["18cda90904c3", "8d3bc4f0f067"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -609,7 +611,7 @@ "id": "file-tap-opens-worktree-file.inner-false-string-error:settled", "observation": { "sender": ["18cda90904c3", "8d3bc4f0f067"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -622,7 +624,7 @@ "id": "file-tap-opens-worktree-file.inner-false-object-error:switched", "observation": { "sender": ["18cda90904c3", "b18df88ac812"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -635,7 +637,7 @@ "id": "file-tap-opens-worktree-file.inner-false-object-error:settled", "observation": { "sender": ["18cda90904c3", "b18df88ac812"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -648,7 +650,7 @@ "id": "file-tap-opens-worktree-file.outer-refused:switched", "observation": { "sender": ["18cda90904c3", "3e4eebf8cca0"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -661,7 +663,7 @@ "id": "file-tap-opens-worktree-file.outer-refused:settled", "observation": { "sender": ["18cda90904c3", "3e4eebf8cca0"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -674,7 +676,7 @@ "id": "file-tap-opens-worktree-file.outer-refused-no-message:switched", "observation": { "sender": ["18cda90904c3", "dd46a93564da"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -687,7 +689,7 @@ "id": "file-tap-opens-worktree-file.outer-refused-no-message:settled", "observation": { "sender": ["18cda90904c3", "dd46a93564da"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -700,7 +702,7 @@ "id": "file-tap-opens-worktree-file.method-not-found:switched", "observation": { "sender": ["18cda90904c3", "e7105794ab87"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -713,7 +715,7 @@ "id": "file-tap-opens-worktree-file.method-not-found:settled", "observation": { "sender": ["18cda90904c3", "e7105794ab87"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -726,7 +728,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection:switched", "observation": { "sender": ["18cda90904c3", "650c13434960"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -739,7 +741,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection:settled", "observation": { "sender": ["18cda90904c3", "650c13434960"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -752,7 +754,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection-no-message:switched", "observation": { "sender": ["18cda90904c3", "f1dbfddcde3b"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -765,7 +767,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection-no-message:settled", "observation": { "sender": ["18cda90904c3", "f1dbfddcde3b"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" 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 ea6bebf659c..fbc2246388c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e20a76ecd5e820dc4797fb25307810af68b5ced996dba2b9599464a21b5cbe1b", "scenarioSha256": "ba8728e890e0e9c10ea163bd16f4f99fbc9727cd2f9c4ed69c56436d8bc29f89", "platform": "darwin", @@ -216,6 +216,11 @@ "value": {}, "sent": 2 }, + "52c3c247865d": { + "name": "files.open#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}", + "sent": 2 + }, "6ec7ceb8bafd": { "name": "files.resolveTerminalPath#1", "args": [ @@ -289,6 +294,11 @@ } } }, + "9120b59f16ec": { + "name": "files.resolveTerminalPath#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}", + "sent": 1 + }, "986ca89cb4f6": { "name": "files.resolveTerminalPath#1", "args": [ @@ -456,10 +466,6 @@ } } }, - "d88940bfb593": { - "name": "files.resolveTerminalPath#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.resolveTerminalPath\",\"params\":{\"worktree\":\"id:workspace-1\",\"pathText\":\"src/app.ts\",\"crossWorkspace\":true,\"terminal\":\"terminal-1\",\"cwd\":\"/repo\"}}" - }, "d9a357a79330": { "name": "files.open#1", "args": [ @@ -502,10 +508,6 @@ "$rpc": "undefined" } }, - "f334b291fecc": { - "name": "files.open#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" - }, "f8a009b4a36e": { "activeSessionTabId": "tab-opened", "failed": 0, @@ -522,7 +524,7 @@ "id": "file-tap-opens-worktree-file.normal:switched", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -535,7 +537,7 @@ "id": "file-tap-opens-worktree-file.normal:settled", "observation": { "sender": ["18cda90904c3", "d9a357a79330"], - "payloads": ["d88940bfb593", "f334b291fecc"], + "payloads": ["9120b59f16ec", "52c3c247865d"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -548,7 +550,7 @@ "id": "file-tap-opens-worktree-file.result-absent:switched", "observation": { "sender": ["3f64ebc424e8"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -561,7 +563,7 @@ "id": "file-tap-opens-worktree-file.result-absent:settled", "observation": { "sender": ["3f64ebc424e8"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -574,7 +576,7 @@ "id": "file-tap-opens-worktree-file.result-null:switched", "observation": { "sender": ["31f84e3531c0"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -587,7 +589,7 @@ "id": "file-tap-opens-worktree-file.result-null:settled", "observation": { "sender": ["31f84e3531c0"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -600,7 +602,7 @@ "id": "file-tap-opens-worktree-file.inner-ok-missing:switched", "observation": { "sender": ["10db95f1c64d"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -613,7 +615,7 @@ "id": "file-tap-opens-worktree-file.inner-ok-missing:settled", "observation": { "sender": ["10db95f1c64d"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -626,7 +628,7 @@ "id": "file-tap-opens-worktree-file.inner-false-string-error:switched", "observation": { "sender": ["986ca89cb4f6"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -639,7 +641,7 @@ "id": "file-tap-opens-worktree-file.inner-false-string-error:settled", "observation": { "sender": ["986ca89cb4f6"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -652,7 +654,7 @@ "id": "file-tap-opens-worktree-file.inner-false-object-error:switched", "observation": { "sender": ["2f4867eaa094"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -665,7 +667,7 @@ "id": "file-tap-opens-worktree-file.inner-false-object-error:settled", "observation": { "sender": ["2f4867eaa094"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -678,7 +680,7 @@ "id": "file-tap-opens-worktree-file.outer-refused:switched", "observation": { "sender": ["caa3fdbab58a"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -691,7 +693,7 @@ "id": "file-tap-opens-worktree-file.outer-refused:settled", "observation": { "sender": ["caa3fdbab58a"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -704,7 +706,7 @@ "id": "file-tap-opens-worktree-file.outer-refused-no-message:switched", "observation": { "sender": ["9b581f30ecf9"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -717,7 +719,7 @@ "id": "file-tap-opens-worktree-file.outer-refused-no-message:settled", "observation": { "sender": ["9b581f30ecf9"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -730,7 +732,7 @@ "id": "file-tap-opens-worktree-file.method-not-found:switched", "observation": { "sender": ["7f9e906655aa"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -743,7 +745,7 @@ "id": "file-tap-opens-worktree-file.method-not-found:settled", "observation": { "sender": ["7f9e906655aa"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -756,7 +758,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection:switched", "observation": { "sender": ["6ec7ceb8bafd"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -769,7 +771,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection:settled", "observation": { "sender": ["6ec7ceb8bafd"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -782,7 +784,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection-no-message:switched", "observation": { "sender": ["cbff15f6958f"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" @@ -795,7 +797,7 @@ "id": "file-tap-opens-worktree-file.transport-rejection-no-message:settled", "observation": { "sender": ["cbff15f6958f"], - "payloads": ["d88940bfb593"], + "payloads": ["9120b59f16ec"], "settlements": { "tap": "eb79a9b3682a", "list": "b765beef262e" 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 254708ecb85..208f70fe86f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "5605a2984d7692aa80e5e38f804bdfed4b1ce8ac2102def5dc728b1a79dc1acf", "platform": "darwin", @@ -126,6 +126,11 @@ "settledAt": 0, "value": "origin/main" }, + "1e728fd0846c": { + "name": "repo.baseRefDefault#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}", + "sent": 3 + }, "26accd69bc48": { "name": "repo.list#1", "args": [ @@ -151,6 +156,11 @@ "startedAt": 0 } }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "2843e3ab21fc": { "name": "repo.baseRefDefault#1", "args": [ @@ -324,10 +334,6 @@ "startedAt": 0 } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "59ad0b14ed9f": { "name": "repo.baseRefDefault#1", "args": [ @@ -474,6 +480,11 @@ "isRpcDeliveryUnknown": true } }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "b46548195c7a": { "name": "repo.baseRefDefault#1", "args": [ @@ -542,14 +553,6 @@ "isRpcDeliveryUnknown": true } }, - "cd73fe3775d3": { - "name": "repo.baseRefDefault#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}" - }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "deac258dd8b1": { "status": "rejected", "startedAt": 0, @@ -615,7 +618,7 @@ "id": "sc-base-ref-default.prelude:requests-pending", "observation": { "sender": ["535f7698e80e", "26accd69bc48"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -627,7 +630,7 @@ "id": "sc-base-ref-default.prelude:barrier-settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -639,7 +642,7 @@ "id": "sc-base-ref-default.normal:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -651,7 +654,7 @@ "id": "sc-base-ref-default.result-absent:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "634e13dcef43"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -663,7 +666,7 @@ "id": "sc-base-ref-default.result-null:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "59ad0b14ed9f"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -675,7 +678,7 @@ "id": "sc-base-ref-default.inner-ok-missing:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "0be93460f365"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -687,7 +690,7 @@ "id": "sc-base-ref-default.inner-false-string-error:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "2843e3ab21fc"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -699,7 +702,7 @@ "id": "sc-base-ref-default.inner-false-object-error:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "467d43e1ff0f"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -711,7 +714,7 @@ "id": "sc-base-ref-default.outer-refused:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "ea6b907523d7"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "32a7c0ae7918" }, @@ -723,7 +726,7 @@ "id": "sc-base-ref-default.outer-refused-no-message:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "0208d586a748"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "deac258dd8b1" }, @@ -735,7 +738,7 @@ "id": "sc-base-ref-default.method-not-found:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "43be25da851a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, @@ -747,7 +750,7 @@ "id": "sc-base-ref-default.transport-rejection:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "a5632796ed43"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "a947768bc0ed" }, @@ -759,7 +762,7 @@ "id": "sc-base-ref-default.transport-rejection-no-message:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "4200126ab3ab"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "c7584e82c72f" }, 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 523ec59269a..1a5c427de53 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "ed0e97ead1aad0b45bdfc48f5fe4e498810d0cfee88f07d3c6228db56fda1dd9", "platform": "darwin", @@ -59,6 +59,11 @@ "settledAt": 0, "value": "origin/main" }, + "1e728fd0846c": { + "name": "repo.baseRefDefault#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}", + "sent": 3 + }, "26accd69bc48": { "name": "repo.list#1", "args": [ @@ -84,6 +89,11 @@ "startedAt": 0 } }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "397587780f89": { "name": "repo.list#1", "args": [ @@ -214,10 +224,6 @@ } } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "5f661e5b3de8": { "baseRef": "origin/main" }, @@ -354,6 +360,11 @@ } } }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "ae85758452ae": { "name": "repo.list#1", "args": [ @@ -512,14 +523,6 @@ } } }, - "cd73fe3775d3": { - "name": "repo.baseRefDefault#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}" - }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "e31fdb68b5c2": { "name": "repo.list#1", "args": [ @@ -562,7 +565,7 @@ "id": "sc-base-ref-default.prelude:requests-pending", "observation": { "sender": ["535f7698e80e", "26accd69bc48"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -574,7 +577,7 @@ "id": "sc-base-ref-default.normal:barrier-settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -586,7 +589,7 @@ "id": "sc-base-ref-default.normal:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -598,7 +601,7 @@ "id": "sc-base-ref-default.result-absent:barrier-settled", "observation": { "sender": ["6396d004a0e7", "9eb52b24aea4", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -610,7 +613,7 @@ "id": "sc-base-ref-default.result-absent:settled", "observation": { "sender": ["6396d004a0e7", "9eb52b24aea4", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -622,7 +625,7 @@ "id": "sc-base-ref-default.result-null:barrier-settled", "observation": { "sender": ["6396d004a0e7", "63c1ccf6c3e3", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -634,7 +637,7 @@ "id": "sc-base-ref-default.result-null:settled", "observation": { "sender": ["6396d004a0e7", "63c1ccf6c3e3", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -646,7 +649,7 @@ "id": "sc-base-ref-default.inner-ok-missing:barrier-settled", "observation": { "sender": ["6396d004a0e7", "ae85758452ae", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -658,7 +661,7 @@ "id": "sc-base-ref-default.inner-ok-missing:settled", "observation": { "sender": ["6396d004a0e7", "ae85758452ae", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -670,7 +673,7 @@ "id": "sc-base-ref-default.inner-false-string-error:barrier-settled", "observation": { "sender": ["6396d004a0e7", "572ea5e1e980", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -682,7 +685,7 @@ "id": "sc-base-ref-default.inner-false-string-error:settled", "observation": { "sender": ["6396d004a0e7", "572ea5e1e980", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -694,7 +697,7 @@ "id": "sc-base-ref-default.inner-false-object-error:barrier-settled", "observation": { "sender": ["6396d004a0e7", "caa7fdd9839a", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -706,7 +709,7 @@ "id": "sc-base-ref-default.inner-false-object-error:settled", "observation": { "sender": ["6396d004a0e7", "caa7fdd9839a", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -718,7 +721,7 @@ "id": "sc-base-ref-default.outer-refused:barrier-settled", "observation": { "sender": ["6396d004a0e7", "52500878f297", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -730,7 +733,7 @@ "id": "sc-base-ref-default.outer-refused:settled", "observation": { "sender": ["6396d004a0e7", "52500878f297", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -742,7 +745,7 @@ "id": "sc-base-ref-default.outer-refused-no-message:barrier-settled", "observation": { "sender": ["6396d004a0e7", "397587780f89", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -754,7 +757,7 @@ "id": "sc-base-ref-default.outer-refused-no-message:settled", "observation": { "sender": ["6396d004a0e7", "397587780f89", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -766,7 +769,7 @@ "id": "sc-base-ref-default.method-not-found:barrier-settled", "observation": { "sender": ["6396d004a0e7", "e31fdb68b5c2", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -778,7 +781,7 @@ "id": "sc-base-ref-default.method-not-found:settled", "observation": { "sender": ["6396d004a0e7", "e31fdb68b5c2", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -790,7 +793,7 @@ "id": "sc-base-ref-default.transport-rejection:barrier-settled", "observation": { "sender": ["6396d004a0e7", "6e5c6593dad8", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -802,7 +805,7 @@ "id": "sc-base-ref-default.transport-rejection:settled", "observation": { "sender": ["6396d004a0e7", "6e5c6593dad8", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -814,7 +817,7 @@ "id": "sc-base-ref-default.transport-rejection-no-message:barrier-settled", "observation": { "sender": ["6396d004a0e7", "cc1facdf008c", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -826,7 +829,7 @@ "id": "sc-base-ref-default.transport-rejection-no-message:settled", "observation": { "sender": ["6396d004a0e7", "cc1facdf008c", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, 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 78e33130d0a..96a2f500584 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "1db6919b94df3b8548838ff4c206fafa3a09ea096b17c04483f78f9321ccb1ba", "platform": "darwin", @@ -90,6 +90,11 @@ "settledAt": 0, "value": "origin/main" }, + "1e728fd0846c": { + "name": "repo.baseRefDefault#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}", + "sent": 3 + }, "26accd69bc48": { "name": "repo.list#1", "args": [ @@ -115,6 +120,11 @@ "startedAt": 0 } }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "396134225295": { "name": "worktree.show#1", "args": [ @@ -213,10 +223,6 @@ "startedAt": 0 } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "5f661e5b3de8": { "baseRef": "origin/main" }, @@ -389,6 +395,11 @@ } } }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "b46548195c7a": { "name": "repo.baseRefDefault#1", "args": [ @@ -481,14 +492,6 @@ "startedAt": 0 } }, - "cd73fe3775d3": { - "name": "repo.baseRefDefault#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}" - }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "f200ec894167": { "name": "worktree.show#1", "args": [ @@ -562,7 +565,7 @@ "id": "sc-base-ref-default.prelude:requests-pending", "observation": { "sender": ["535f7698e80e", "26accd69bc48"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -574,7 +577,7 @@ "id": "sc-base-ref-default.normal:barrier-settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -586,7 +589,7 @@ "id": "sc-base-ref-default.normal:settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -598,7 +601,7 @@ "id": "sc-base-ref-default.result-absent:barrier-settled", "observation": { "sender": ["a17ceeb9c911", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -610,7 +613,7 @@ "id": "sc-base-ref-default.result-absent:settled", "observation": { "sender": ["a17ceeb9c911", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -622,7 +625,7 @@ "id": "sc-base-ref-default.result-null:barrier-settled", "observation": { "sender": ["9be4cad15ffc", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -634,7 +637,7 @@ "id": "sc-base-ref-default.result-null:settled", "observation": { "sender": ["9be4cad15ffc", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -646,7 +649,7 @@ "id": "sc-base-ref-default.inner-ok-missing:barrier-settled", "observation": { "sender": ["7a891248c223", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -658,7 +661,7 @@ "id": "sc-base-ref-default.inner-ok-missing:settled", "observation": { "sender": ["7a891248c223", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -670,7 +673,7 @@ "id": "sc-base-ref-default.inner-false-string-error:barrier-settled", "observation": { "sender": ["b9eb0b5172ef", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -682,7 +685,7 @@ "id": "sc-base-ref-default.inner-false-string-error:settled", "observation": { "sender": ["b9eb0b5172ef", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -694,7 +697,7 @@ "id": "sc-base-ref-default.inner-false-object-error:barrier-settled", "observation": { "sender": ["396134225295", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -706,7 +709,7 @@ "id": "sc-base-ref-default.inner-false-object-error:settled", "observation": { "sender": ["396134225295", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -718,7 +721,7 @@ "id": "sc-base-ref-default.outer-refused:barrier-settled", "observation": { "sender": ["433ef4e3f075", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -730,7 +733,7 @@ "id": "sc-base-ref-default.outer-refused:settled", "observation": { "sender": ["433ef4e3f075", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -742,7 +745,7 @@ "id": "sc-base-ref-default.outer-refused-no-message:barrier-settled", "observation": { "sender": ["a4456b77f02e", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -754,7 +757,7 @@ "id": "sc-base-ref-default.outer-refused-no-message:settled", "observation": { "sender": ["a4456b77f02e", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -766,7 +769,7 @@ "id": "sc-base-ref-default.method-not-found:barrier-settled", "observation": { "sender": ["f9af0bcc7ed6", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -778,7 +781,7 @@ "id": "sc-base-ref-default.method-not-found:settled", "observation": { "sender": ["f9af0bcc7ed6", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -790,7 +793,7 @@ "id": "sc-base-ref-default.transport-rejection:barrier-settled", "observation": { "sender": ["f200ec894167", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -802,7 +805,7 @@ "id": "sc-base-ref-default.transport-rejection:settled", "observation": { "sender": ["f200ec894167", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, @@ -814,7 +817,7 @@ "id": "sc-base-ref-default.transport-rejection-no-message:barrier-settled", "observation": { "sender": ["09126745f36c", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -826,7 +829,7 @@ "id": "sc-base-ref-default.transport-rejection-no-message:settled", "observation": { "sender": ["09126745f36c", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, 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 91e5c24b050..384c3d25184 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "22ea5279155ecf749aaab521ffd570221ac3169b177fc1daf85ef93a49d38260", "platform": "darwin", @@ -337,10 +337,6 @@ } } }, - "a64074c2ba96": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -434,6 +430,11 @@ "isRpcDeliveryUnknown": true } }, + "c8f48abc0f5d": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, "e96b430d7d35": { "name": "git.generateCommitMessage#1", "args": [ @@ -516,7 +517,7 @@ "id": "sc-commit-message-generated.prelude:pending", "observation": { "sender": ["125fbea5f50a"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "9270aeb7d9c6" }, @@ -528,7 +529,7 @@ "id": "sc-commit-message-generated.normal:settled", "observation": { "sender": ["a09d0ada6684"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "1290c04bc26c" }, @@ -540,7 +541,7 @@ "id": "sc-commit-message-generated.result-absent:settled", "observation": { "sender": ["bfe04c9c1653"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "b95c8d57adc9" }, @@ -552,7 +553,7 @@ "id": "sc-commit-message-generated.result-null:settled", "observation": { "sender": ["68e6f784ba09"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "b95c8d57adc9" }, @@ -564,7 +565,7 @@ "id": "sc-commit-message-generated.inner-ok-missing:settled", "observation": { "sender": ["46920d3cb0c1"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "a0551476eb3b" }, @@ -576,7 +577,7 @@ "id": "sc-commit-message-generated.inner-false-string-error:settled", "observation": { "sender": ["5213fea85cf0"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "a0551476eb3b" }, @@ -588,7 +589,7 @@ "id": "sc-commit-message-generated.inner-false-object-error:settled", "observation": { "sender": ["3f131697d120"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "a0551476eb3b" }, @@ -600,7 +601,7 @@ "id": "sc-commit-message-generated.outer-refused:settled", "observation": { "sender": ["fa7a334b373d"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "5ad7ea556320" }, @@ -612,7 +613,7 @@ "id": "sc-commit-message-generated.outer-refused-no-message:settled", "observation": { "sender": ["63410fd1b187"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "b95c8d57adc9" }, @@ -624,7 +625,7 @@ "id": "sc-commit-message-generated.method-not-found:settled", "observation": { "sender": ["e96b430d7d35"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "3186ccdbc53f" }, @@ -636,7 +637,7 @@ "id": "sc-commit-message-generated.transport-rejection:settled", "observation": { "sender": ["31141af16c2d"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "a947768bc0ed" }, @@ -648,7 +649,7 @@ "id": "sc-commit-message-generated.transport-rejection-no-message:settled", "observation": { "sender": ["c39c20fa07f2"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "c7584e82c72f" }, 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 52d16cd7a0f..ab3be703975 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "86254ed87ad3427d6ee4631d7348075039ba2d4d7496d59f27f03f78580f35a1", "platform": "darwin", @@ -255,6 +255,11 @@ } ] }, + "7e2ddc2aee54": { + "name": "git.history#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.history\",\"params\":{\"worktree\":\"id:repo42::/p\",\"limit\":50}}", + "sent": 1 + }, "8bf6ec174c09": { "name": "git.history#1", "args": [ @@ -437,10 +442,6 @@ "isRpcDeliveryUnknown": true } }, - "d2ac5468a6f5": { - "name": "git.history#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.history\",\"params\":{\"worktree\":\"id:repo42::/p\",\"limit\":50}}" - }, "d32fe6f7afe0": { "name": "git.history#1", "args": [ @@ -576,7 +577,7 @@ "id": "sc-history-loaded.prelude:pending", "observation": { "sender": ["17bc1e177fe1"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "9270aeb7d9c6" }, @@ -588,7 +589,7 @@ "id": "sc-history-loaded.normal:settled", "observation": { "sender": ["6b280ce22422"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "7d520ecb92ad" }, @@ -600,7 +601,7 @@ "id": "sc-history-loaded.result-absent:settled", "observation": { "sender": ["8bf6ec174c09"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "f51f34589c7a" }, @@ -612,7 +613,7 @@ "id": "sc-history-loaded.result-null:settled", "observation": { "sender": ["dfb377a66ab7"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "155f61ed496f" }, @@ -624,7 +625,7 @@ "id": "sc-history-loaded.inner-ok-missing:settled", "observation": { "sender": ["52b4fb4742f7"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "93e7019b0698" }, @@ -636,7 +637,7 @@ "id": "sc-history-loaded.inner-false-string-error:settled", "observation": { "sender": ["ba8b415f2807"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "93e7019b0698" }, @@ -648,7 +649,7 @@ "id": "sc-history-loaded.inner-false-object-error:settled", "observation": { "sender": ["acda0899d438"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "93e7019b0698" }, @@ -660,7 +661,7 @@ "id": "sc-history-loaded.outer-refused:settled", "observation": { "sender": ["b834de93891d"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "32a7c0ae7918" }, @@ -672,7 +673,7 @@ "id": "sc-history-loaded.outer-refused-no-message:settled", "observation": { "sender": ["de21ba03a5c2"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "e7aad6e711f1" }, @@ -684,7 +685,7 @@ "id": "sc-history-loaded.method-not-found:settled", "observation": { "sender": ["d32fe6f7afe0"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "b948e8307e81" }, @@ -696,7 +697,7 @@ "id": "sc-history-loaded.transport-rejection:settled", "observation": { "sender": ["69d0ebdefcd3"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "a947768bc0ed" }, @@ -708,7 +709,7 @@ "id": "sc-history-loaded.transport-rejection-no-message:settled", "observation": { "sender": ["4e27a22332c7"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "c7584e82c72f" }, 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 82b38fc4861..a6541f88294 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "5009c22df7e74a850bcea41fc110ea7d7eb4bdada623837279f32eaa5149a9b8", "platform": "darwin", @@ -260,9 +260,10 @@ "status": "pending", "startedAt": 0 }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "a197c20578aa": { "status": "fulfilled", @@ -515,7 +516,7 @@ "id": "sc-prerequisite-push.prelude:pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "9270aeb7d9c6" }, @@ -527,7 +528,7 @@ "id": "sc-prerequisite-push.normal:settled", "observation": { "sender": ["f9869252c305"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -539,7 +540,7 @@ "id": "sc-prerequisite-push.result-absent:settled", "observation": { "sender": ["7b027798abe5"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -551,7 +552,7 @@ "id": "sc-prerequisite-push.result-null:settled", "observation": { "sender": ["e58ae363032b"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -563,7 +564,7 @@ "id": "sc-prerequisite-push.inner-ok-missing:settled", "observation": { "sender": ["0e00dbc486b4"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -575,7 +576,7 @@ "id": "sc-prerequisite-push.inner-false-string-error:settled", "observation": { "sender": ["3718951f62b7"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -587,7 +588,7 @@ "id": "sc-prerequisite-push.inner-false-object-error:settled", "observation": { "sender": ["a28defbf7f69"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, @@ -599,7 +600,7 @@ "id": "sc-prerequisite-push.outer-refused:settled", "observation": { "sender": ["d493a7059b00"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "1b2778bf67a2" }, @@ -611,7 +612,7 @@ "id": "sc-prerequisite-push.outer-refused-no-message:settled", "observation": { "sender": ["6c0349218dd0"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "3e6cf1f04a9c" }, @@ -623,7 +624,7 @@ "id": "sc-prerequisite-push.method-not-found:settled", "observation": { "sender": ["ae61c1e930df"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "fa93ca01f266" }, @@ -635,7 +636,7 @@ "id": "sc-prerequisite-push.transport-rejection:settled", "observation": { "sender": ["33b2843692a3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "a197c20578aa" }, @@ -647,7 +648,7 @@ "id": "sc-prerequisite-push.transport-rejection-no-message:settled", "observation": { "sender": ["403ae2f01ce3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "fb4429083480" }, 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 2e772ca2192..b9a18ca60cd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "485b2751006ee8fb4df28b228ea7adda85779feae83974eb0f7e795e31c500a1", "platform": "darwin", @@ -281,10 +281,6 @@ } } }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6decf368b25a": { "committed": "uncommitted", "status": { @@ -418,6 +414,11 @@ } } }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -675,7 +676,7 @@ "id": "sc-review-status-normalized.prelude:pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "9270aeb7d9c6" }, @@ -687,7 +688,7 @@ "id": "sc-review-status-normalized.normal:settled", "observation": { "sender": ["302b94359544"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "c7ee072b3a0f" }, @@ -699,7 +700,7 @@ "id": "sc-review-status-normalized.result-absent:settled", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, @@ -711,7 +712,7 @@ "id": "sc-review-status-normalized.result-null:settled", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, @@ -723,7 +724,7 @@ "id": "sc-review-status-normalized.inner-ok-missing:settled", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, @@ -735,7 +736,7 @@ "id": "sc-review-status-normalized.inner-false-string-error:settled", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, @@ -747,7 +748,7 @@ "id": "sc-review-status-normalized.inner-false-object-error:settled", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, @@ -759,7 +760,7 @@ "id": "sc-review-status-normalized.outer-refused:settled", "observation": { "sender": ["18d8663eabd9"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "1b2778bf67a2" }, @@ -771,7 +772,7 @@ "id": "sc-review-status-normalized.outer-refused-no-message:settled", "observation": { "sender": ["41689f68ece0"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "23426bcb23a5" }, @@ -783,7 +784,7 @@ "id": "sc-review-status-normalized.method-not-found:settled", "observation": { "sender": ["483a7fd348d4"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "fa93ca01f266" }, @@ -795,7 +796,7 @@ "id": "sc-review-status-normalized.transport-rejection:settled", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "a947768bc0ed" }, @@ -807,7 +808,7 @@ "id": "sc-review-status-normalized.transport-rejection-no-message:settled", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "c7584e82c72f" }, 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 583430befa0..658a0fa4fcc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "0c8f09683408a919dd3ac2b7cd12197d8745882627134cde95ecee209575b027", "platform": "darwin", @@ -206,10 +206,6 @@ } } }, - "478fd4bcbb87": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" - }, "4fccb238edb1": { "name": "github.addIssueComment#1", "args": [ @@ -246,6 +242,11 @@ } } }, + "5708d54f0f07": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 + }, "5f1bb831eeeb": { "edit-comment": { "ok": true @@ -270,6 +271,11 @@ "ok": false } }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "6e135fd30dcd": { "delete-comment": { "ok": true @@ -439,10 +445,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "8302b53c96cd": { "edit-comment": { "ok": true @@ -677,10 +679,6 @@ "ok": false } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b05590db45b7": { "reply": { "ok": true @@ -732,6 +730,16 @@ } } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c809528f892d": { "name": "github.addIssueComment#1", "args": [ @@ -771,6 +779,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "ca6d007cb7b8": { "name": "github.addIssueComment#1", "args": [ @@ -908,10 +921,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, "dbf8fad741cc": { "reply": { "ok": true @@ -957,10 +966,6 @@ "ok": false } }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "ed14ba07acb1": { "reply": { "ok": true @@ -1038,7 +1043,7 @@ "id": "pr-comment-mutation.prelude:reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -1050,7 +1055,7 @@ "id": "pr-comment-mutation.normal:root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1063,7 +1068,7 @@ "id": "pr-comment-mutation.normal:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1077,7 +1082,7 @@ "id": "pr-comment-mutation.normal:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1099,11 +1104,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1120,7 +1125,7 @@ "id": "pr-comment-mutation.result-absent:root-comment", "observation": { "sender": ["b72d1b08ed71", "7223e2d25a72"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1133,7 +1138,7 @@ "id": "pr-comment-mutation.result-absent:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "7223e2d25a72", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1147,7 +1152,7 @@ "id": "pr-comment-mutation.result-absent:edit-comment", "observation": { "sender": ["b72d1b08ed71", "7223e2d25a72", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1169,11 +1174,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1190,7 +1195,7 @@ "id": "pr-comment-mutation.result-null:root-comment", "observation": { "sender": ["b72d1b08ed71", "4fccb238edb1"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1203,7 +1208,7 @@ "id": "pr-comment-mutation.result-null:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "4fccb238edb1", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1217,7 +1222,7 @@ "id": "pr-comment-mutation.result-null:edit-comment", "observation": { "sender": ["b72d1b08ed71", "4fccb238edb1", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1239,11 +1244,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1260,7 +1265,7 @@ "id": "pr-comment-mutation.inner-ok-missing:root-comment", "observation": { "sender": ["b72d1b08ed71", "45f8781a0214"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1273,7 +1278,7 @@ "id": "pr-comment-mutation.inner-ok-missing:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "45f8781a0214", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1287,7 +1292,7 @@ "id": "pr-comment-mutation.inner-ok-missing:edit-comment", "observation": { "sender": ["b72d1b08ed71", "45f8781a0214", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1309,11 +1314,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1330,7 +1335,7 @@ "id": "pr-comment-mutation.inner-false-string-error:root-comment", "observation": { "sender": ["b72d1b08ed71", "871b2a18f62d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64" @@ -1343,7 +1348,7 @@ "id": "pr-comment-mutation.inner-false-string-error:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "871b2a18f62d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64", @@ -1357,7 +1362,7 @@ "id": "pr-comment-mutation.inner-false-string-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "871b2a18f62d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64", @@ -1379,11 +1384,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1400,7 +1405,7 @@ "id": "pr-comment-mutation.inner-false-object-error:root-comment", "observation": { "sender": ["b72d1b08ed71", "23bd818e8ba6"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64" @@ -1413,7 +1418,7 @@ "id": "pr-comment-mutation.inner-false-object-error:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "23bd818e8ba6", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64", @@ -1427,7 +1432,7 @@ "id": "pr-comment-mutation.inner-false-object-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "23bd818e8ba6", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "9f00dd54ba64", @@ -1449,11 +1454,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1470,7 +1475,7 @@ "id": "pr-comment-mutation.outer-refused:root-comment", "observation": { "sender": ["b72d1b08ed71", "735f219f431b"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "1b2778bf67a2" @@ -1483,7 +1488,7 @@ "id": "pr-comment-mutation.outer-refused:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "735f219f431b", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "1b2778bf67a2", @@ -1497,7 +1502,7 @@ "id": "pr-comment-mutation.outer-refused:edit-comment", "observation": { "sender": ["b72d1b08ed71", "735f219f431b", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "1b2778bf67a2", @@ -1519,11 +1524,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1540,7 +1545,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:root-comment", "observation": { "sender": ["b72d1b08ed71", "6ef76b3e8f0d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "692d2314c7c5" @@ -1553,7 +1558,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "6ef76b3e8f0d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "692d2314c7c5", @@ -1567,7 +1572,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "6ef76b3e8f0d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "692d2314c7c5", @@ -1589,11 +1594,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1610,7 +1615,7 @@ "id": "pr-comment-mutation.method-not-found:root-comment", "observation": { "sender": ["b72d1b08ed71", "08b540c77640"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fa93ca01f266" @@ -1623,7 +1628,7 @@ "id": "pr-comment-mutation.method-not-found:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "08b540c77640", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fa93ca01f266", @@ -1637,7 +1642,7 @@ "id": "pr-comment-mutation.method-not-found:edit-comment", "observation": { "sender": ["b72d1b08ed71", "08b540c77640", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fa93ca01f266", @@ -1659,11 +1664,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1680,7 +1685,7 @@ "id": "pr-comment-mutation.transport-rejection:root-comment", "observation": { "sender": ["b72d1b08ed71", "94828c89cc0f"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "a197c20578aa" @@ -1693,7 +1698,7 @@ "id": "pr-comment-mutation.transport-rejection:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "94828c89cc0f", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "a197c20578aa", @@ -1707,7 +1712,7 @@ "id": "pr-comment-mutation.transport-rejection:edit-comment", "observation": { "sender": ["b72d1b08ed71", "94828c89cc0f", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "a197c20578aa", @@ -1729,11 +1734,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1750,7 +1755,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:root-comment", "observation": { "sender": ["b72d1b08ed71", "ca6d007cb7b8"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fb4429083480" @@ -1763,7 +1768,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "ca6d007cb7b8", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fb4429083480", @@ -1777,7 +1782,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "ca6d007cb7b8", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fb4429083480", @@ -1799,11 +1804,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", 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 04287aefe96..2989bf6ef12 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4f2b61df5e59d2efe81d467214a78132654035cbcb4d929385410b53f735c9fe", "platform": "darwin", @@ -175,10 +175,6 @@ } }, "44136fa355b3": {}, - "478fd4bcbb87": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" - }, "552ab1726647": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -219,6 +215,11 @@ } } }, + "5708d54f0f07": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 + }, "62c50de19f23": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -311,6 +312,11 @@ } } }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "701813316c23": { "delete-comment": { "ok": true @@ -430,10 +436,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "825827297f7a": { "reply": { "error": "Unknown method", @@ -612,10 +614,6 @@ "ok": true } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b3ae95f45617": { "edit-comment": { "ok": true @@ -772,6 +770,16 @@ "ok": true } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c6e854dae600": { "edit-comment": { "ok": true @@ -826,6 +834,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "cb0ebf3e3df2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -924,14 +937,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "ecc3c00f38d4": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -1104,7 +1109,7 @@ "id": "pr-comment-mutation.normal:reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -1116,7 +1121,7 @@ "id": "pr-comment-mutation.normal:root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1129,7 +1134,7 @@ "id": "pr-comment-mutation.normal:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1143,7 +1148,7 @@ "id": "pr-comment-mutation.normal:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1165,11 +1170,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1186,7 +1191,7 @@ "id": "pr-comment-mutation.result-absent:reply", "observation": { "sender": ["b5d7302ebfb7"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -1198,7 +1203,7 @@ "id": "pr-comment-mutation.result-absent:root-comment", "observation": { "sender": ["b5d7302ebfb7", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1211,7 +1216,7 @@ "id": "pr-comment-mutation.result-absent:resolve-thread", "observation": { "sender": ["b5d7302ebfb7", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1225,7 +1230,7 @@ "id": "pr-comment-mutation.result-absent:edit-comment", "observation": { "sender": ["b5d7302ebfb7", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1247,11 +1252,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1268,7 +1273,7 @@ "id": "pr-comment-mutation.result-null:reply", "observation": { "sender": ["766b47e9f1b4"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -1280,7 +1285,7 @@ "id": "pr-comment-mutation.result-null:root-comment", "observation": { "sender": ["766b47e9f1b4", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1293,7 +1298,7 @@ "id": "pr-comment-mutation.result-null:resolve-thread", "observation": { "sender": ["766b47e9f1b4", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1307,7 +1312,7 @@ "id": "pr-comment-mutation.result-null:edit-comment", "observation": { "sender": ["766b47e9f1b4", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1329,11 +1334,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1350,7 +1355,7 @@ "id": "pr-comment-mutation.inner-ok-missing:reply", "observation": { "sender": ["ed1fe986dec4"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -1362,7 +1367,7 @@ "id": "pr-comment-mutation.inner-ok-missing:root-comment", "observation": { "sender": ["ed1fe986dec4", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -1375,7 +1380,7 @@ "id": "pr-comment-mutation.inner-ok-missing:resolve-thread", "observation": { "sender": ["ed1fe986dec4", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1389,7 +1394,7 @@ "id": "pr-comment-mutation.inner-ok-missing:edit-comment", "observation": { "sender": ["ed1fe986dec4", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1411,11 +1416,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1432,7 +1437,7 @@ "id": "pr-comment-mutation.inner-false-string-error:reply", "observation": { "sender": ["ecc3c00f38d4"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "9f00dd54ba64" }, @@ -1444,7 +1449,7 @@ "id": "pr-comment-mutation.inner-false-string-error:root-comment", "observation": { "sender": ["ecc3c00f38d4", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e" @@ -1457,7 +1462,7 @@ "id": "pr-comment-mutation.inner-false-string-error:resolve-thread", "observation": { "sender": ["ecc3c00f38d4", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e", @@ -1471,7 +1476,7 @@ "id": "pr-comment-mutation.inner-false-string-error:edit-comment", "observation": { "sender": ["ecc3c00f38d4", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e", @@ -1493,11 +1498,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "9f00dd54ba64", @@ -1514,7 +1519,7 @@ "id": "pr-comment-mutation.inner-false-object-error:reply", "observation": { "sender": ["067c7f523d70"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "9f00dd54ba64" }, @@ -1526,7 +1531,7 @@ "id": "pr-comment-mutation.inner-false-object-error:root-comment", "observation": { "sender": ["067c7f523d70", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e" @@ -1539,7 +1544,7 @@ "id": "pr-comment-mutation.inner-false-object-error:resolve-thread", "observation": { "sender": ["067c7f523d70", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e", @@ -1553,7 +1558,7 @@ "id": "pr-comment-mutation.inner-false-object-error:edit-comment", "observation": { "sender": ["067c7f523d70", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "9f00dd54ba64", "root-comment": "fbc958e4d46e", @@ -1575,11 +1580,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "9f00dd54ba64", @@ -1596,7 +1601,7 @@ "id": "pr-comment-mutation.outer-refused:reply", "observation": { "sender": ["552ab1726647"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "1b2778bf67a2" }, @@ -1608,7 +1613,7 @@ "id": "pr-comment-mutation.outer-refused:root-comment", "observation": { "sender": ["552ab1726647", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "1b2778bf67a2", "root-comment": "fbc958e4d46e" @@ -1621,7 +1626,7 @@ "id": "pr-comment-mutation.outer-refused:resolve-thread", "observation": { "sender": ["552ab1726647", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "1b2778bf67a2", "root-comment": "fbc958e4d46e", @@ -1635,7 +1640,7 @@ "id": "pr-comment-mutation.outer-refused:edit-comment", "observation": { "sender": ["552ab1726647", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "1b2778bf67a2", "root-comment": "fbc958e4d46e", @@ -1657,11 +1662,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "1b2778bf67a2", @@ -1678,7 +1683,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:reply", "observation": { "sender": ["657bdbc91c07"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "3f582d0e4cd1" }, @@ -1690,7 +1695,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:root-comment", "observation": { "sender": ["657bdbc91c07", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "3f582d0e4cd1", "root-comment": "fbc958e4d46e" @@ -1703,7 +1708,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:resolve-thread", "observation": { "sender": ["657bdbc91c07", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "3f582d0e4cd1", "root-comment": "fbc958e4d46e", @@ -1717,7 +1722,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:edit-comment", "observation": { "sender": ["657bdbc91c07", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "3f582d0e4cd1", "root-comment": "fbc958e4d46e", @@ -1739,11 +1744,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "3f582d0e4cd1", @@ -1760,7 +1765,7 @@ "id": "pr-comment-mutation.method-not-found:reply", "observation": { "sender": ["d4360e5db185"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fa93ca01f266" }, @@ -1772,7 +1777,7 @@ "id": "pr-comment-mutation.method-not-found:root-comment", "observation": { "sender": ["d4360e5db185", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fa93ca01f266", "root-comment": "fbc958e4d46e" @@ -1785,7 +1790,7 @@ "id": "pr-comment-mutation.method-not-found:resolve-thread", "observation": { "sender": ["d4360e5db185", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fa93ca01f266", "root-comment": "fbc958e4d46e", @@ -1799,7 +1804,7 @@ "id": "pr-comment-mutation.method-not-found:edit-comment", "observation": { "sender": ["d4360e5db185", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fa93ca01f266", "root-comment": "fbc958e4d46e", @@ -1821,11 +1826,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fa93ca01f266", @@ -1842,7 +1847,7 @@ "id": "pr-comment-mutation.transport-rejection:reply", "observation": { "sender": ["62c50de19f23"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "a197c20578aa" }, @@ -1854,7 +1859,7 @@ "id": "pr-comment-mutation.transport-rejection:root-comment", "observation": { "sender": ["62c50de19f23", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "a197c20578aa", "root-comment": "fbc958e4d46e" @@ -1867,7 +1872,7 @@ "id": "pr-comment-mutation.transport-rejection:resolve-thread", "observation": { "sender": ["62c50de19f23", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "a197c20578aa", "root-comment": "fbc958e4d46e", @@ -1881,7 +1886,7 @@ "id": "pr-comment-mutation.transport-rejection:edit-comment", "observation": { "sender": ["62c50de19f23", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "a197c20578aa", "root-comment": "fbc958e4d46e", @@ -1903,11 +1908,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "a197c20578aa", @@ -1924,7 +1929,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:reply", "observation": { "sender": ["f4ca6a62d9d6"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fb4429083480" }, @@ -1936,7 +1941,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:root-comment", "observation": { "sender": ["f4ca6a62d9d6", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fb4429083480", "root-comment": "fbc958e4d46e" @@ -1949,7 +1954,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:resolve-thread", "observation": { "sender": ["f4ca6a62d9d6", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fb4429083480", "root-comment": "fbc958e4d46e", @@ -1963,7 +1968,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:edit-comment", "observation": { "sender": ["f4ca6a62d9d6", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fb4429083480", "root-comment": "fbc958e4d46e", @@ -1985,11 +1990,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fb4429083480", 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 d398ce2d9e8..1609993ca39 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "04b2052cce6f24d9e208c992f204355639409ddc9793b3044b394c0e38d3c284", "platform": "darwin", @@ -164,9 +164,15 @@ } }, "44136fa355b3": {}, - "478fd4bcbb87": { + "5708d54f0f07": { "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 + }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "6faee2aa2763": { "name": "github.project.deleteIssueCommentBySlug#1", @@ -278,10 +284,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "8cc87cf6e61d": { "delete-comment": { "error": "Unknown method", @@ -388,10 +390,6 @@ "ok": false } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b527e21e8b74": { "name": "github.project.deleteIssueCommentBySlug#1", "args": [ @@ -538,6 +536,11 @@ } } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, "c48cbac933ba": { "name": "github.project.deleteIssueCommentBySlug#1", "args": [ @@ -573,6 +576,11 @@ } } }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c809528f892d": { "name": "github.addIssueComment#1", "args": [ @@ -612,6 +620,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "cb0ebf3e3df2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -706,10 +719,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, "e4d7b3c37cab": { "name": "github.project.deleteIssueCommentBySlug#1", "args": [ @@ -746,10 +755,6 @@ } } }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "f7ebab409cd3": { "delete-comment": { "error": "inner refused", @@ -812,7 +817,7 @@ "id": "pr-comment-mutation.prelude:reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -824,7 +829,7 @@ "id": "pr-comment-mutation.prelude:root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -837,7 +842,7 @@ "id": "pr-comment-mutation.prelude:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -851,7 +856,7 @@ "id": "pr-comment-mutation.prelude:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -873,11 +878,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -901,11 +906,11 @@ "b5ded9939b2b" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -929,11 +934,11 @@ "c48cbac933ba" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -957,11 +962,11 @@ "23b9ce21023f" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -985,11 +990,11 @@ "cb1da026444f" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1013,11 +1018,11 @@ "2ed368bb030a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1041,11 +1046,11 @@ "e4d7b3c37cab" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1069,11 +1074,11 @@ "b5aaedad11c3" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1097,11 +1102,11 @@ "b527e21e8b74" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1125,11 +1130,11 @@ "6faee2aa2763" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1153,11 +1158,11 @@ "73b514d9f764" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", 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 5c7a5c92648..0f5a6ee302d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "8f849437158296753a84a75dfdbaf69852bcdb6cdc6e8205496961ec16e4be21", "platform": "darwin", @@ -141,9 +141,10 @@ } }, "44136fa355b3": {}, - "478fd4bcbb87": { + "5708d54f0f07": { "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 }, "5b8020b7cd97": { "name": "github.project.updateIssueCommentBySlug#1", @@ -181,6 +182,11 @@ } } }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "6e4455e73475": { "edit-comment": { "error": "transport failure", @@ -297,10 +303,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "828db39cff00": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -557,10 +559,6 @@ "ok": true } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b4b6d25cc9b2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -640,6 +638,11 @@ } } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, "c4b9a96a9273": { "edit-comment": { "error": "inner refused", @@ -655,6 +658,11 @@ "ok": true } }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c809528f892d": { "name": "github.addIssueComment#1", "args": [ @@ -694,6 +702,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "cb0ebf3e3df2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -809,10 +822,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, "db8a1ebee13a": { "delete-comment": { "ok": true @@ -846,10 +855,6 @@ "ok": true } }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "f42f398553af": { "delete-comment": { "ok": true @@ -912,7 +917,7 @@ "id": "pr-comment-mutation.prelude:reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -924,7 +929,7 @@ "id": "pr-comment-mutation.prelude:root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -937,7 +942,7 @@ "id": "pr-comment-mutation.prelude:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -951,7 +956,7 @@ "id": "pr-comment-mutation.normal:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -973,11 +978,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -994,7 +999,7 @@ "id": "pr-comment-mutation.result-absent:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "a793eafd9989"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1016,11 +1021,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1037,7 +1042,7 @@ "id": "pr-comment-mutation.result-null:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "949713a8a738"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1059,11 +1064,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1080,7 +1085,7 @@ "id": "pr-comment-mutation.inner-ok-missing:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "5b8020b7cd97"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1102,11 +1107,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1123,7 +1128,7 @@ "id": "pr-comment-mutation.inner-false-string-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "a8fb7303b43d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1145,11 +1150,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1166,7 +1171,7 @@ "id": "pr-comment-mutation.inner-false-object-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "6e7d4c5dad1f"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1188,11 +1193,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1209,7 +1214,7 @@ "id": "pr-comment-mutation.outer-refused:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "9ba32bb7251a"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1231,11 +1236,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1252,7 +1257,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "b4b6d25cc9b2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1274,11 +1279,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1295,7 +1300,7 @@ "id": "pr-comment-mutation.method-not-found:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "0c83831d655b"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1317,11 +1322,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1338,7 +1343,7 @@ "id": "pr-comment-mutation.transport-rejection:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "828db39cff00"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1360,11 +1365,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1381,7 +1386,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "22ec636a26f2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1403,11 +1408,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", 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 cc59443f833..af18b89509f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "77eba7deff3f15e64795cdcbefd009abfcf2379e7293eefb1f154ca1e99f4d5d", "platform": "darwin", @@ -190,10 +190,6 @@ } }, "44136fa355b3": {}, - "478fd4bcbb87": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" - }, "48692b2b9917": { "edit-comment": { "ok": true @@ -292,6 +288,11 @@ } } }, + "5708d54f0f07": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 + }, "61ff2d7c4cab": { "name": "github.resolveReviewThread#1", "args": [ @@ -362,6 +363,11 @@ } } }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "6c2da6b5529a": { "name": "github.resolveReviewThread#1", "args": [ @@ -442,10 +448,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "8747462b8a7d": { "reply": { "ok": true @@ -552,10 +554,6 @@ "ok": false } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b72d1b08ed71": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -646,6 +644,16 @@ } } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c6cb8d3962d9": { "reply": { "ok": true @@ -733,6 +741,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "cb0ebf3e3df2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -791,14 +804,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "f17b0cbea46c": { "name": "github.resolveReviewThread#1", "args": [ @@ -920,7 +925,7 @@ "id": "pr-comment-mutation.prelude:reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -932,7 +937,7 @@ "id": "pr-comment-mutation.prelude:root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -945,7 +950,7 @@ "id": "pr-comment-mutation.normal:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -959,7 +964,7 @@ "id": "pr-comment-mutation.normal:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -981,11 +986,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1002,7 +1007,7 @@ "id": "pr-comment-mutation.result-absent:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "678d4fa16712"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1016,7 +1021,7 @@ "id": "pr-comment-mutation.result-absent:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "678d4fa16712", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1038,11 +1043,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1059,7 +1064,7 @@ "id": "pr-comment-mutation.result-null:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "4ca64ac9d73c"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1073,7 +1078,7 @@ "id": "pr-comment-mutation.result-null:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "4ca64ac9d73c", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1095,11 +1100,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1116,7 +1121,7 @@ "id": "pr-comment-mutation.inner-ok-missing:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "f4fc444f020f"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1130,7 +1135,7 @@ "id": "pr-comment-mutation.inner-ok-missing:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "f4fc444f020f", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1152,11 +1157,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1173,7 +1178,7 @@ "id": "pr-comment-mutation.inner-false-string-error:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "c909efbc6588"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1187,7 +1192,7 @@ "id": "pr-comment-mutation.inner-false-string-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "c909efbc6588", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1209,11 +1214,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1230,7 +1235,7 @@ "id": "pr-comment-mutation.inner-false-object-error:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "61ff2d7c4cab"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1244,7 +1249,7 @@ "id": "pr-comment-mutation.inner-false-object-error:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "61ff2d7c4cab", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1266,11 +1271,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1287,7 +1292,7 @@ "id": "pr-comment-mutation.outer-refused:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "6c2da6b5529a"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1301,7 +1306,7 @@ "id": "pr-comment-mutation.outer-refused:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "6c2da6b5529a", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1323,11 +1328,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1344,7 +1349,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "432ad7dbe6f4"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1358,7 +1363,7 @@ "id": "pr-comment-mutation.outer-refused-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "432ad7dbe6f4", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1380,11 +1385,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1401,7 +1406,7 @@ "id": "pr-comment-mutation.method-not-found:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "54cb93b42f23"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1415,7 +1420,7 @@ "id": "pr-comment-mutation.method-not-found:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "54cb93b42f23", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1437,11 +1442,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1458,7 +1463,7 @@ "id": "pr-comment-mutation.transport-rejection:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "c13d4eb83ebc"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1472,7 +1477,7 @@ "id": "pr-comment-mutation.transport-rejection:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "c13d4eb83ebc", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1494,11 +1499,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", @@ -1515,7 +1520,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "f17b0cbea46c"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1529,7 +1534,7 @@ "id": "pr-comment-mutation.transport-rejection-no-message:edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "f17b0cbea46c", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -1551,11 +1556,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", 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 ee3d827ddfd..4026f70e77d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "2235d05e0d2c6f1a9518cfdd76870e303cccd35289d6a44334147b6a5b6b675e", "platform": "darwin", @@ -33,10 +33,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "074760f7a997": { "name": "github.mergePR#1", "args": [ @@ -199,10 +195,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -442,6 +434,11 @@ "ok": false } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "81f9a572f5bd": { "auto-merge": { "ok": true @@ -497,6 +494,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "85e381ca8727": { "auto-merge": { "ok": true @@ -571,6 +573,11 @@ "ok": true } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -748,6 +755,11 @@ "ok": false } }, + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 + }, "afb5c5cc70a0": { "merge": { "error": "", @@ -760,10 +772,6 @@ "ok": false } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "b7e39f4a5cb6": { "name": "github.mergePR#1", "args": [ @@ -800,13 +808,10 @@ } } }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "bf7ea23375ff": { "name": "github.mergePR#1", @@ -966,6 +971,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -1085,10 +1095,6 @@ "ok": true } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "f62245202919": { "name": "github.mergePR#1", "args": [ @@ -1242,7 +1248,7 @@ "id": "pr-mutation-status.normal:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1254,7 +1260,7 @@ "id": "pr-mutation-status.normal:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1267,7 +1273,7 @@ "id": "pr-mutation-status.normal:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1281,7 +1287,7 @@ "id": "pr-mutation-status.normal:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1303,11 +1309,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1332,12 +1338,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1355,7 +1361,7 @@ "id": "pr-mutation-status.result-absent:merge", "observation": { "sender": ["14322a66ab67"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1367,7 +1373,7 @@ "id": "pr-mutation-status.result-absent:auto-merge", "observation": { "sender": ["14322a66ab67", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1380,7 +1386,7 @@ "id": "pr-mutation-status.result-absent:close", "observation": { "sender": ["14322a66ab67", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1394,7 +1400,7 @@ "id": "pr-mutation-status.result-absent:request-reviewers", "observation": { "sender": ["14322a66ab67", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1416,11 +1422,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1445,12 +1451,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1468,7 +1474,7 @@ "id": "pr-mutation-status.result-null:merge", "observation": { "sender": ["f6348bae9167"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1480,7 +1486,7 @@ "id": "pr-mutation-status.result-null:auto-merge", "observation": { "sender": ["f6348bae9167", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1493,7 +1499,7 @@ "id": "pr-mutation-status.result-null:close", "observation": { "sender": ["f6348bae9167", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1507,7 +1513,7 @@ "id": "pr-mutation-status.result-null:request-reviewers", "observation": { "sender": ["f6348bae9167", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1529,11 +1535,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1558,12 +1564,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1581,7 +1587,7 @@ "id": "pr-mutation-status.inner-ok-missing:merge", "observation": { "sender": ["8703c2befb8c"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1593,7 +1599,7 @@ "id": "pr-mutation-status.inner-ok-missing:auto-merge", "observation": { "sender": ["8703c2befb8c", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1606,7 +1612,7 @@ "id": "pr-mutation-status.inner-ok-missing:close", "observation": { "sender": ["8703c2befb8c", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1620,7 +1626,7 @@ "id": "pr-mutation-status.inner-ok-missing:request-reviewers", "observation": { "sender": ["8703c2befb8c", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1642,11 +1648,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1671,12 +1677,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1694,7 +1700,7 @@ "id": "pr-mutation-status.inner-false-string-error:merge", "observation": { "sender": ["b7e39f4a5cb6"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "9f00dd54ba64" }, @@ -1706,7 +1712,7 @@ "id": "pr-mutation-status.inner-false-string-error:auto-merge", "observation": { "sender": ["b7e39f4a5cb6", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e" @@ -1719,7 +1725,7 @@ "id": "pr-mutation-status.inner-false-string-error:close", "observation": { "sender": ["b7e39f4a5cb6", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e", @@ -1733,7 +1739,7 @@ "id": "pr-mutation-status.inner-false-string-error:request-reviewers", "observation": { "sender": ["b7e39f4a5cb6", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e", @@ -1755,11 +1761,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "9f00dd54ba64", @@ -1784,12 +1790,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "9f00dd54ba64", @@ -1807,7 +1813,7 @@ "id": "pr-mutation-status.inner-false-object-error:merge", "observation": { "sender": ["f62245202919"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "9f00dd54ba64" }, @@ -1819,7 +1825,7 @@ "id": "pr-mutation-status.inner-false-object-error:auto-merge", "observation": { "sender": ["f62245202919", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e" @@ -1832,7 +1838,7 @@ "id": "pr-mutation-status.inner-false-object-error:close", "observation": { "sender": ["f62245202919", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e", @@ -1846,7 +1852,7 @@ "id": "pr-mutation-status.inner-false-object-error:request-reviewers", "observation": { "sender": ["f62245202919", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "9f00dd54ba64", "auto-merge": "fbc958e4d46e", @@ -1868,11 +1874,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "9f00dd54ba64", @@ -1897,12 +1903,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "9f00dd54ba64", @@ -1920,7 +1926,7 @@ "id": "pr-mutation-status.outer-refused:merge", "observation": { "sender": ["4479a15344d2"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "1b2778bf67a2" }, @@ -1932,7 +1938,7 @@ "id": "pr-mutation-status.outer-refused:auto-merge", "observation": { "sender": ["4479a15344d2", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "1b2778bf67a2", "auto-merge": "fbc958e4d46e" @@ -1945,7 +1951,7 @@ "id": "pr-mutation-status.outer-refused:close", "observation": { "sender": ["4479a15344d2", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "1b2778bf67a2", "auto-merge": "fbc958e4d46e", @@ -1959,7 +1965,7 @@ "id": "pr-mutation-status.outer-refused:request-reviewers", "observation": { "sender": ["4479a15344d2", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "1b2778bf67a2", "auto-merge": "fbc958e4d46e", @@ -1981,11 +1987,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "1b2778bf67a2", @@ -2010,12 +2016,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "1b2778bf67a2", @@ -2033,7 +2039,7 @@ "id": "pr-mutation-status.outer-refused-no-message:merge", "observation": { "sender": ["074760f7a997"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "aa25b877ab14" }, @@ -2045,7 +2051,7 @@ "id": "pr-mutation-status.outer-refused-no-message:auto-merge", "observation": { "sender": ["074760f7a997", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "aa25b877ab14", "auto-merge": "fbc958e4d46e" @@ -2058,7 +2064,7 @@ "id": "pr-mutation-status.outer-refused-no-message:close", "observation": { "sender": ["074760f7a997", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "aa25b877ab14", "auto-merge": "fbc958e4d46e", @@ -2072,7 +2078,7 @@ "id": "pr-mutation-status.outer-refused-no-message:request-reviewers", "observation": { "sender": ["074760f7a997", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "aa25b877ab14", "auto-merge": "fbc958e4d46e", @@ -2094,11 +2100,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "aa25b877ab14", @@ -2123,12 +2129,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "aa25b877ab14", @@ -2146,7 +2152,7 @@ "id": "pr-mutation-status.method-not-found:merge", "observation": { "sender": ["fd07dabe4f38"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fa93ca01f266" }, @@ -2158,7 +2164,7 @@ "id": "pr-mutation-status.method-not-found:auto-merge", "observation": { "sender": ["fd07dabe4f38", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fa93ca01f266", "auto-merge": "fbc958e4d46e" @@ -2171,7 +2177,7 @@ "id": "pr-mutation-status.method-not-found:close", "observation": { "sender": ["fd07dabe4f38", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fa93ca01f266", "auto-merge": "fbc958e4d46e", @@ -2185,7 +2191,7 @@ "id": "pr-mutation-status.method-not-found:request-reviewers", "observation": { "sender": ["fd07dabe4f38", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fa93ca01f266", "auto-merge": "fbc958e4d46e", @@ -2207,11 +2213,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fa93ca01f266", @@ -2236,12 +2242,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fa93ca01f266", @@ -2259,7 +2265,7 @@ "id": "pr-mutation-status.transport-rejection:merge", "observation": { "sender": ["bf7ea23375ff"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "a197c20578aa" }, @@ -2271,7 +2277,7 @@ "id": "pr-mutation-status.transport-rejection:auto-merge", "observation": { "sender": ["bf7ea23375ff", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "a197c20578aa", "auto-merge": "fbc958e4d46e" @@ -2284,7 +2290,7 @@ "id": "pr-mutation-status.transport-rejection:close", "observation": { "sender": ["bf7ea23375ff", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "a197c20578aa", "auto-merge": "fbc958e4d46e", @@ -2298,7 +2304,7 @@ "id": "pr-mutation-status.transport-rejection:request-reviewers", "observation": { "sender": ["bf7ea23375ff", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "a197c20578aa", "auto-merge": "fbc958e4d46e", @@ -2320,11 +2326,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "a197c20578aa", @@ -2349,12 +2355,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "a197c20578aa", @@ -2372,7 +2378,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:merge", "observation": { "sender": ["0b9c507e7144"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fb4429083480" }, @@ -2384,7 +2390,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:auto-merge", "observation": { "sender": ["0b9c507e7144", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fb4429083480", "auto-merge": "fbc958e4d46e" @@ -2397,7 +2403,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:close", "observation": { "sender": ["0b9c507e7144", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fb4429083480", "auto-merge": "fbc958e4d46e", @@ -2411,7 +2417,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:request-reviewers", "observation": { "sender": ["0b9c507e7144", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fb4429083480", "auto-merge": "fbc958e4d46e", @@ -2433,11 +2439,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fb4429083480", @@ -2462,12 +2468,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fb4429083480", 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 31c77fc872d..711fb0f4356 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "2cea87c339b35daf62c963092c01c6379db43f2ee4ca5cb2b5f817975b0caf65", "platform": "darwin", @@ -24,10 +24,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "0e14bd119328": { "merge": { "ok": true @@ -86,10 +82,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -265,6 +257,11 @@ "ok": true } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "7e030fa29a4e": { "auto-merge": { "ok": true @@ -323,6 +320,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "88359e8a639b": { "auto-merge": { "ok": true @@ -341,6 +343,11 @@ "ok": true } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -527,13 +534,15 @@ "ok": true } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "bbb832d9d5a0": { "auto-merge": { @@ -556,10 +565,6 @@ "ok": true } }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" - }, "c3a8e861aedd": { "auto-merge": { "ok": true @@ -667,6 +672,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -848,10 +858,6 @@ } } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "f5bd2f1cf948": { "name": "github.removePRReviewers#1", "args": [ @@ -990,7 +996,7 @@ "id": "pr-mutation-status.prelude:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1002,7 +1008,7 @@ "id": "pr-mutation-status.prelude:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1015,7 +1021,7 @@ "id": "pr-mutation-status.prelude:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1029,7 +1035,7 @@ "id": "pr-mutation-status.prelude:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1051,11 +1057,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1080,12 +1086,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1110,11 +1116,11 @@ "e54d1591f561" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1139,12 +1145,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1169,11 +1175,11 @@ "5beb63c8f3e4" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1198,12 +1204,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1228,11 +1234,11 @@ "ffae51817019" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1257,12 +1263,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1287,11 +1293,11 @@ "5427ca897dae" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1316,12 +1322,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1346,11 +1352,11 @@ "f5bd2f1cf948" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1375,12 +1381,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1405,11 +1411,11 @@ "d8e94101426c" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1434,12 +1440,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1464,11 +1470,11 @@ "ef0f653e02b7" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1493,12 +1499,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1523,11 +1529,11 @@ "613a6a4cb4fa" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1552,12 +1558,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1582,11 +1588,11 @@ "c3af046e05d9" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1611,12 +1617,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1641,11 +1647,11 @@ "a48666d7363e" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1670,12 +1676,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", 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 159a0ba332d..4675a7765c2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "78de11de556c91782590725819b22821732a12d3769f493d165c80bc7fcc1f53", "platform": "darwin", @@ -45,10 +45,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "0c78f24b60d3": { "name": "github.requestPRReviewers#1", "args": [ @@ -217,10 +213,6 @@ } } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -455,6 +447,11 @@ } } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "84790920ad91": { "name": "github.updatePRState#1", "args": [ @@ -492,6 +489,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "89bf464aa7c2": { "name": "github.requestPRReviewers#1", "args": [ @@ -561,6 +563,11 @@ } } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -732,17 +739,15 @@ } } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "ccf2be5c9d44": { "name": "github.mergePR#1", @@ -779,6 +784,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "cf51780f9b0e": { "auto-merge": { "ok": true @@ -996,10 +1006,6 @@ "ok": true } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "f78a6e79f10c": { "name": "github.requestPRReviewers#1", "args": [ @@ -1080,7 +1086,7 @@ "id": "pr-mutation-status.prelude:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1092,7 +1098,7 @@ "id": "pr-mutation-status.prelude:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1105,7 +1111,7 @@ "id": "pr-mutation-status.prelude:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1119,7 +1125,7 @@ "id": "pr-mutation-status.normal:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1141,11 +1147,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1170,12 +1176,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1193,7 +1199,7 @@ "id": "pr-mutation-status.result-absent:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "e672576ed746"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1215,11 +1221,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1244,12 +1250,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1267,7 +1273,7 @@ "id": "pr-mutation-status.result-null:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "6ec670eccd83"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1289,11 +1295,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1318,12 +1324,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1341,7 +1347,7 @@ "id": "pr-mutation-status.inner-ok-missing:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "75ef915d5b00"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1363,11 +1369,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1392,12 +1398,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1415,7 +1421,7 @@ "id": "pr-mutation-status.inner-false-string-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "89bf464aa7c2"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1437,11 +1443,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1466,12 +1472,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1489,7 +1495,7 @@ "id": "pr-mutation-status.inner-false-object-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "2284df572b14"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1511,11 +1517,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1540,12 +1546,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1563,7 +1569,7 @@ "id": "pr-mutation-status.outer-refused:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "2def6ddffe87"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1585,11 +1591,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1614,12 +1620,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1637,7 +1643,7 @@ "id": "pr-mutation-status.outer-refused-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "f78a6e79f10c"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1659,11 +1665,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1688,12 +1694,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1711,7 +1717,7 @@ "id": "pr-mutation-status.method-not-found:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "a8de50be7b29"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1733,11 +1739,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1762,12 +1768,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1785,7 +1791,7 @@ "id": "pr-mutation-status.transport-rejection:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "8ebcbeae2e10"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1807,11 +1813,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1836,12 +1842,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1859,7 +1865,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "0c78f24b60d3"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1881,11 +1887,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1910,12 +1916,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", 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 3a1a470c49e..15df994b9c4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "ac7e91b4d35021eca63af8ce01f9a2c7959109e4cb824009881437cb94dbfe82", "platform": "darwin", @@ -24,10 +24,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "0e14bd119328": { "merge": { "ok": true @@ -120,10 +116,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -418,6 +410,11 @@ } } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "84790920ad91": { "name": "github.updatePRState#1", "args": [ @@ -455,6 +452,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "8826d7101635": { "name": "github.rerunPRChecks#1", "args": [ @@ -498,6 +500,11 @@ "ok": false } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -720,17 +727,15 @@ } } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "ccf2be5c9d44": { "name": "github.mergePR#1", @@ -767,6 +772,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -844,10 +854,6 @@ "ok": false } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "fa93ca01f266": { "status": "fulfilled", "startedAt": 0, @@ -892,7 +898,7 @@ "id": "pr-mutation-status.prelude:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -904,7 +910,7 @@ "id": "pr-mutation-status.prelude:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -917,7 +923,7 @@ "id": "pr-mutation-status.prelude:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -931,7 +937,7 @@ "id": "pr-mutation-status.prelude:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -953,11 +959,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -982,12 +988,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1013,12 +1019,12 @@ "0e51ad314718" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1044,12 +1050,12 @@ "3f8ca94ffe66" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1075,12 +1081,12 @@ "aafbbdcfb21a" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1106,12 +1112,12 @@ "2950918b53d4" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1137,12 +1143,12 @@ "a4720efd2007" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1168,12 +1174,12 @@ "20de9d68ad48" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1199,12 +1205,12 @@ "3669f883f784" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1230,12 +1236,12 @@ "748ead77d5ac" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1261,12 +1267,12 @@ "8826d7101635" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1292,12 +1298,12 @@ "6698707ca0b9" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", 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 fd50ca033e4..2521f2c66e0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "a85682e5009d634bf468b8dbe4f35a957988754ed9c2b07d57ad475c1590d1f6", "platform": "darwin", @@ -78,10 +78,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "06946d968abf": { "name": "github.setPRAutoMerge#1", "args": [ @@ -259,10 +255,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -498,6 +490,11 @@ "ok": true } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "7ae0c6b9f9f0": { "auto-merge": { "error": "outer refused", @@ -583,6 +580,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "8b5e75aec255": { "auto-merge": { "error": "transport failure", @@ -624,6 +626,11 @@ } } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -798,6 +805,11 @@ } } }, + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 + }, "b1f69fae2896": { "auto-merge": { "error": "Unknown method", @@ -819,10 +831,6 @@ "ok": true } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "b3146e73e9ae": { "auto-merge": { "error": "outer refused", @@ -871,9 +879,10 @@ "ok": true } }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "bb2a2b4efa81": { "auto-merge": { @@ -896,10 +905,6 @@ "ok": true } }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" - }, "c04b65fbc242": { "status": "fulfilled", "startedAt": 0, @@ -1007,6 +1012,11 @@ "ok": true } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -1149,10 +1159,6 @@ } } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "f4f598b269ab": { "auto-merge": { "error": "Request failed: github.setPRAutoMerge", @@ -1206,7 +1212,7 @@ "id": "pr-mutation-status.prelude:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1218,7 +1224,7 @@ "id": "pr-mutation-status.normal:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1231,7 +1237,7 @@ "id": "pr-mutation-status.normal:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1245,7 +1251,7 @@ "id": "pr-mutation-status.normal:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1267,11 +1273,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1296,12 +1302,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1319,7 +1325,7 @@ "id": "pr-mutation-status.result-absent:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "8bd96c712db3"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1332,7 +1338,7 @@ "id": "pr-mutation-status.result-absent:close", "observation": { "sender": ["ccf2be5c9d44", "8bd96c712db3", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1346,7 +1352,7 @@ "id": "pr-mutation-status.result-absent:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "8bd96c712db3", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1368,11 +1374,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1397,12 +1403,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1420,7 +1426,7 @@ "id": "pr-mutation-status.result-null:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "eb3396fea61e"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1433,7 +1439,7 @@ "id": "pr-mutation-status.result-null:close", "observation": { "sender": ["ccf2be5c9d44", "eb3396fea61e", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1447,7 +1453,7 @@ "id": "pr-mutation-status.result-null:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "eb3396fea61e", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1469,11 +1475,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1498,12 +1504,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1521,7 +1527,7 @@ "id": "pr-mutation-status.inner-ok-missing:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "4e9bde2a9e22"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1534,7 +1540,7 @@ "id": "pr-mutation-status.inner-ok-missing:close", "observation": { "sender": ["ccf2be5c9d44", "4e9bde2a9e22", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1548,7 +1554,7 @@ "id": "pr-mutation-status.inner-ok-missing:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "4e9bde2a9e22", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1570,11 +1576,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1599,12 +1605,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1622,7 +1628,7 @@ "id": "pr-mutation-status.inner-false-string-error:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "a8e18378c895"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64" @@ -1635,7 +1641,7 @@ "id": "pr-mutation-status.inner-false-string-error:close", "observation": { "sender": ["ccf2be5c9d44", "a8e18378c895", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64", @@ -1649,7 +1655,7 @@ "id": "pr-mutation-status.inner-false-string-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "a8e18378c895", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64", @@ -1671,11 +1677,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1700,12 +1706,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1723,7 +1729,7 @@ "id": "pr-mutation-status.inner-false-object-error:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "06946d968abf"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64" @@ -1736,7 +1742,7 @@ "id": "pr-mutation-status.inner-false-object-error:close", "observation": { "sender": ["ccf2be5c9d44", "06946d968abf", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64", @@ -1750,7 +1756,7 @@ "id": "pr-mutation-status.inner-false-object-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "06946d968abf", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "9f00dd54ba64", @@ -1772,11 +1778,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1801,12 +1807,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1824,7 +1830,7 @@ "id": "pr-mutation-status.outer-refused:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "46830236ac9f"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "1b2778bf67a2" @@ -1837,7 +1843,7 @@ "id": "pr-mutation-status.outer-refused:close", "observation": { "sender": ["ccf2be5c9d44", "46830236ac9f", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "1b2778bf67a2", @@ -1851,7 +1857,7 @@ "id": "pr-mutation-status.outer-refused:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "46830236ac9f", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "1b2778bf67a2", @@ -1873,11 +1879,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1902,12 +1908,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1925,7 +1931,7 @@ "id": "pr-mutation-status.outer-refused-no-message:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "cbbd452ef29a"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "c04b65fbc242" @@ -1938,7 +1944,7 @@ "id": "pr-mutation-status.outer-refused-no-message:close", "observation": { "sender": ["ccf2be5c9d44", "cbbd452ef29a", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "c04b65fbc242", @@ -1952,7 +1958,7 @@ "id": "pr-mutation-status.outer-refused-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "cbbd452ef29a", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "c04b65fbc242", @@ -1974,11 +1980,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2003,12 +2009,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -2026,7 +2032,7 @@ "id": "pr-mutation-status.method-not-found:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "01ba040ce320"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fa93ca01f266" @@ -2039,7 +2045,7 @@ "id": "pr-mutation-status.method-not-found:close", "observation": { "sender": ["ccf2be5c9d44", "01ba040ce320", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fa93ca01f266", @@ -2053,7 +2059,7 @@ "id": "pr-mutation-status.method-not-found:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "01ba040ce320", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fa93ca01f266", @@ -2075,11 +2081,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2104,12 +2110,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -2127,7 +2133,7 @@ "id": "pr-mutation-status.transport-rejection:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "16535a751cb9"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "a197c20578aa" @@ -2140,7 +2146,7 @@ "id": "pr-mutation-status.transport-rejection:close", "observation": { "sender": ["ccf2be5c9d44", "16535a751cb9", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "a197c20578aa", @@ -2154,7 +2160,7 @@ "id": "pr-mutation-status.transport-rejection:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "16535a751cb9", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "a197c20578aa", @@ -2176,11 +2182,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2205,12 +2211,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -2228,7 +2234,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "d48d668c5f80"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fb4429083480" @@ -2241,7 +2247,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:close", "observation": { "sender": ["ccf2be5c9d44", "d48d668c5f80", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fb4429083480", @@ -2255,7 +2261,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "d48d668c5f80", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fb4429083480", @@ -2277,11 +2283,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2306,12 +2312,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", 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 e091386b773..701a31e1a38 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "30f321fcbfaf09505bc6e18e64c09ca49c0dcdb7c5e12c4e27c2429b3e1066ca", "platform": "darwin", @@ -77,10 +77,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "080376e913d5": { "auto-merge": { "ok": true @@ -115,10 +111,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -518,6 +510,11 @@ "ok": true } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "84790920ad91": { "name": "github.updatePRState#1", "args": [ @@ -555,6 +552,11 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, "8538f9e6b0d6": { "auto-merge": { "ok": true @@ -585,6 +587,11 @@ "ok": true } }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "905485b38db4": { "auto-merge": { "ok": true @@ -761,9 +768,10 @@ } } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 }, "b6bd018118e6": { "auto-merge": { @@ -801,13 +809,10 @@ "ok": true } }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "be1602979f64": { "auto-merge": { @@ -915,6 +920,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -1124,10 +1134,6 @@ "ok": true } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "fa93ca01f266": { "status": "fulfilled", "startedAt": 0, @@ -1172,7 +1178,7 @@ "id": "pr-mutation-status.prelude:merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -1184,7 +1190,7 @@ "id": "pr-mutation-status.prelude:auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -1197,7 +1203,7 @@ "id": "pr-mutation-status.normal:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1211,7 +1217,7 @@ "id": "pr-mutation-status.normal:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1233,11 +1239,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1262,12 +1268,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1285,7 +1291,7 @@ "id": "pr-mutation-status.result-absent:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "67c594a9f909"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1299,7 +1305,7 @@ "id": "pr-mutation-status.result-absent:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "67c594a9f909", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1321,11 +1327,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1350,12 +1356,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1373,7 +1379,7 @@ "id": "pr-mutation-status.result-null:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "51627485f0a0"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1387,7 +1393,7 @@ "id": "pr-mutation-status.result-null:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "51627485f0a0", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1409,11 +1415,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1438,12 +1444,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1461,7 +1467,7 @@ "id": "pr-mutation-status.inner-ok-missing:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "4a0d5a41060e"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1475,7 +1481,7 @@ "id": "pr-mutation-status.inner-ok-missing:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "4a0d5a41060e", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1497,11 +1503,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1526,12 +1532,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1549,7 +1555,7 @@ "id": "pr-mutation-status.inner-false-string-error:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "a23d0040b1a3"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1563,7 +1569,7 @@ "id": "pr-mutation-status.inner-false-string-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "a23d0040b1a3", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1585,11 +1591,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1614,12 +1620,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1637,7 +1643,7 @@ "id": "pr-mutation-status.inner-false-object-error:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "6d57d04d0b54"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1651,7 +1657,7 @@ "id": "pr-mutation-status.inner-false-object-error:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "6d57d04d0b54", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1673,11 +1679,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1702,12 +1708,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1725,7 +1731,7 @@ "id": "pr-mutation-status.outer-refused:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "2df3fd88ad3d"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1739,7 +1745,7 @@ "id": "pr-mutation-status.outer-refused:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "2df3fd88ad3d", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1761,11 +1767,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1790,12 +1796,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1813,7 +1819,7 @@ "id": "pr-mutation-status.outer-refused-no-message:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "34e590b23882"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1827,7 +1833,7 @@ "id": "pr-mutation-status.outer-refused-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "34e590b23882", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1849,11 +1855,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1878,12 +1884,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1901,7 +1907,7 @@ "id": "pr-mutation-status.method-not-found:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "c3018607a10c"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1915,7 +1921,7 @@ "id": "pr-mutation-status.method-not-found:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "c3018607a10c", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -1937,11 +1943,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -1966,12 +1972,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -1989,7 +1995,7 @@ "id": "pr-mutation-status.transport-rejection:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "053886423f9e"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -2003,7 +2009,7 @@ "id": "pr-mutation-status.transport-rejection:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "053886423f9e", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -2025,11 +2031,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2054,12 +2060,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", @@ -2077,7 +2083,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "3ea824916a31"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -2091,7 +2097,7 @@ "id": "pr-mutation-status.transport-rejection-no-message:request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "3ea824916a31", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -2113,11 +2119,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -2142,12 +2148,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", 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 0e8c7fb71e9..efbc0534666 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "507743a5925a37be32156b3d8df83ddb8e08c262d2c2f44bbd117dee4672bbc5", "platform": "darwin", @@ -352,6 +352,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "20afea7a7ded": { "assignable": { "ok": true, @@ -605,13 +610,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, - "3b464a1ac1ab": { + "384abd5851d2": { "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "41113a109089": { "repo-slug": { @@ -624,6 +626,11 @@ } }, "44136fa355b3": {}, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -730,6 +737,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "50f04028e403": { "check-details": { "ok": true, @@ -1662,10 +1674,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9174bc5ac409": { "name": "github.listAssignableUsers#1", "args": [ @@ -2124,9 +2132,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "c6892d4f1f95": { "assignable": { @@ -2359,10 +2368,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d89e7b8ce2a0": { "status": "fulfilled", "startedAt": 0, @@ -2407,14 +2412,6 @@ "result": [] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -2601,6 +2598,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -2670,6 +2672,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "fa93ca01f266": { "status": "fulfilled", "startedAt": 0, @@ -2839,7 +2846,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -2851,7 +2858,7 @@ "id": "pr-read-surface.prelude:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -2864,7 +2871,7 @@ "id": "pr-read-surface.prelude:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -2878,7 +2885,7 @@ "id": "pr-read-surface.prelude:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -2900,11 +2907,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -2929,12 +2936,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -2961,13 +2968,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -2995,13 +3002,13 @@ "f52f6130cb7f" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3029,13 +3036,13 @@ "203489cf0750" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3063,13 +3070,13 @@ "37ad7ac0a9f2" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3097,13 +3104,13 @@ "823aec8501e9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3131,13 +3138,13 @@ "5e1de4c14b9f" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3165,13 +3172,13 @@ "783f757d936a" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3199,13 +3206,13 @@ "0d72c677732e" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3233,13 +3240,13 @@ "9174bc5ac409" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3267,13 +3274,13 @@ "a591fd1d2c33" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3301,13 +3308,13 @@ "b68c4051a825" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 37cefd28f90..4f479638fed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "6efca320cf31a1de988110004a9fb7b67fdad279a789e046ad6b5141b66e5bf1", "platform": "darwin", @@ -420,6 +420,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "209b719bdddd": { "name": "github.prCheckDetails#1", "args": [ @@ -850,13 +855,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, - "3b464a1ac1ab": { + "384abd5851d2": { "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "41113a109089": { "repo-slug": { @@ -869,6 +871,11 @@ } }, "44136fa355b3": {}, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -1011,6 +1018,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "50f04028e403": { "check-details": { "ok": true, @@ -2008,10 +2020,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9353f049138c": { "name": "github.prCheckDetails#1", "args": [ @@ -2569,9 +2577,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "c59e9d791e7a": { "check-details": { @@ -3205,10 +3214,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d205bc3bdc6b": { "status": "fulfilled", "startedAt": 0, @@ -3253,14 +3258,6 @@ ] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -3447,6 +3444,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -3486,6 +3488,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "f789f601b893": { "name": "github.prCheckDetails#1", "args": [ @@ -3693,7 +3700,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -3705,7 +3712,7 @@ "id": "pr-read-surface.prelude:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -3718,7 +3725,7 @@ "id": "pr-read-surface.prelude:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -3732,7 +3739,7 @@ "id": "pr-read-surface.prelude:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -3754,11 +3761,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3783,12 +3790,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3815,13 +3822,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3848,12 +3855,12 @@ "7d43beaf1484" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3880,13 +3887,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3913,12 +3920,12 @@ "3515d63329fa" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3945,13 +3952,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -3978,12 +3985,12 @@ "f789f601b893" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4010,13 +4017,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4043,12 +4050,12 @@ "cbf576a28991" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4075,13 +4082,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4108,12 +4115,12 @@ "b863718e6335" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4140,13 +4147,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4173,12 +4180,12 @@ "cc3b225ddaeb" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4205,13 +4212,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4238,12 +4245,12 @@ "634eff89af61" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4270,13 +4277,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4303,12 +4310,12 @@ "209b719bdddd" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4335,13 +4342,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4368,12 +4375,12 @@ "4ad6060b1f4d" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4400,13 +4407,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4433,12 +4440,12 @@ "cb694ef59554" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4465,13 +4472,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 0d9698812e8..8e572261143 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "c77d7c7a05ecb9b27180ef28ca63a28e1c1ca42db2bb54a468699da77281ae35", "platform": "darwin", @@ -100,6 +100,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "2638b3063bb1": { "name": "github.repoSlug#1", "args": [ @@ -341,9 +346,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" + "384abd5851d2": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "39e94717a579": { "check-details": { @@ -513,10 +519,6 @@ } } }, - "3b464a1ac1ab": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" - }, "41113a109089": { "repo-slug": { "ok": true, @@ -528,6 +530,11 @@ } }, "44136fa355b3": {}, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -672,6 +679,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "50ea0b59affe": { "check-details": { "ok": true, @@ -2596,10 +2608,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9353f049138c": { "name": "github.prCheckDetails#1", "args": [ @@ -3308,9 +3316,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "bc3ddaf7ea3e": { "status": "fulfilled", @@ -3367,10 +3376,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d11aa8f6201d": { "name": "github.prChecks#1", "args": [ @@ -3484,10 +3489,6 @@ "result": [] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "e62b0342ca47": { "assignable": { "ok": true, @@ -3803,10 +3804,6 @@ } } }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -3993,6 +3990,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -4169,6 +4171,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "fa16dfe3f088": { "checks": { "error": "Unknown method", @@ -4647,7 +4654,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -4659,7 +4666,7 @@ "id": "pr-read-surface.prelude:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -4672,7 +4679,7 @@ "id": "pr-read-surface.prelude:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4686,7 +4693,7 @@ "id": "pr-read-surface.prelude:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4708,11 +4715,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4737,12 +4744,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4769,13 +4776,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4801,11 +4808,11 @@ "7b042e3c28e5" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4830,12 +4837,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4862,13 +4869,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4894,11 +4901,11 @@ "64d37118e661" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4923,12 +4930,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4955,13 +4962,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4987,11 +4994,11 @@ "fac2b8d11810" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5016,12 +5023,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5048,13 +5055,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5080,11 +5087,11 @@ "5193c05bf771" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5109,12 +5116,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5141,13 +5148,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5173,11 +5180,11 @@ "4a08381b3338" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5202,12 +5209,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5234,13 +5241,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5266,11 +5273,11 @@ "51ca635b531c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5295,12 +5302,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5327,13 +5334,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5359,11 +5366,11 @@ "d4345c3d588c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5388,12 +5395,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5420,13 +5427,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5452,11 +5459,11 @@ "34f51c480880" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5481,12 +5488,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5513,13 +5520,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5545,11 +5552,11 @@ "d11aa8f6201d" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5574,12 +5581,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5606,13 +5613,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5638,11 +5645,11 @@ "29764d5fe2f2" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5667,12 +5674,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5699,13 +5706,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 78ddd4c8d9b..75007945cf0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "3b3d3032b992fc7461b13de8a42512affa12fb018ad583898179a9934c13b414", "platform": "darwin", @@ -617,6 +617,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "252a325ae1c3": { "hosted-review": { "ok": true, @@ -1021,13 +1026,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, - "3b464a1ac1ab": { + "384abd5851d2": { "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "3dc632749aec": { "assignable": { @@ -1590,6 +1592,11 @@ } } }, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "49ca39e5dc72": { "hosted-review": { "ok": true, @@ -1799,6 +1806,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "4f845c8c65ed": { "checks": { "ok": true, @@ -3206,10 +3218,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9353f049138c": { "name": "github.prCheckDetails#1", "args": [ @@ -4415,9 +4423,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "bf11de4890db": { "check-details": { @@ -4881,10 +4890,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d19d1a3fedb6": { "hosted-review": { "ok": true, @@ -5065,10 +5070,6 @@ ] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "eb1f6ba35cc6": { "checks": { "ok": true, @@ -5189,10 +5190,6 @@ } } }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -5379,6 +5376,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -5540,6 +5542,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "f8bd41be9b26": { "checks": { "ok": true, @@ -5829,7 +5836,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -5841,7 +5848,7 @@ "id": "pr-read-surface.prelude:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -5854,7 +5861,7 @@ "id": "pr-read-surface.normal:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5868,7 +5875,7 @@ "id": "pr-read-surface.normal:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5890,11 +5897,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5919,12 +5926,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5951,13 +5958,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5976,7 +5983,7 @@ "id": "pr-read-surface.result-absent:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "76aa0eed84bc"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5990,7 +5997,7 @@ "id": "pr-read-surface.result-absent:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "76aa0eed84bc", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6012,11 +6019,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6041,12 +6048,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6073,13 +6080,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6098,7 +6105,7 @@ "id": "pr-read-surface.result-null:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "8c383b60c908"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6112,7 +6119,7 @@ "id": "pr-read-surface.result-null:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "8c383b60c908", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6134,11 +6141,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6163,12 +6170,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6195,13 +6202,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6220,7 +6227,7 @@ "id": "pr-read-surface.inner-ok-missing:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "b0790639cbb3"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6234,7 +6241,7 @@ "id": "pr-read-surface.inner-ok-missing:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "b0790639cbb3", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6256,11 +6263,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6285,12 +6292,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6317,13 +6324,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6342,7 +6349,7 @@ "id": "pr-read-surface.inner-false-string-error:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "7ca8c3d4fc5d"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6356,7 +6363,7 @@ "id": "pr-read-surface.inner-false-string-error:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "7ca8c3d4fc5d", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6378,11 +6385,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6407,12 +6414,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6439,13 +6446,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6464,7 +6471,7 @@ "id": "pr-read-surface.inner-false-object-error:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "400b6a3aab0e"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6478,7 +6485,7 @@ "id": "pr-read-surface.inner-false-object-error:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "400b6a3aab0e", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6500,11 +6507,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6529,12 +6536,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6561,13 +6568,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6586,7 +6593,7 @@ "id": "pr-read-surface.outer-refused:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "124feca7abeb"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6600,7 +6607,7 @@ "id": "pr-read-surface.outer-refused:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "124feca7abeb", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6622,11 +6629,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6651,12 +6658,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6683,13 +6690,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6708,7 +6715,7 @@ "id": "pr-read-surface.outer-refused-no-message:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "205ed83fc175"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6722,7 +6729,7 @@ "id": "pr-read-surface.outer-refused-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "205ed83fc175", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6744,11 +6751,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6773,12 +6780,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6805,13 +6812,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6830,7 +6837,7 @@ "id": "pr-read-surface.method-not-found:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "5f5638d448f4"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6844,7 +6851,7 @@ "id": "pr-read-surface.method-not-found:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "5f5638d448f4", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6866,11 +6873,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6895,12 +6902,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6927,13 +6934,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6952,7 +6959,7 @@ "id": "pr-read-surface.transport-rejection:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "695287c9c3b4"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6966,7 +6973,7 @@ "id": "pr-read-surface.transport-rejection:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "695287c9c3b4", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6988,11 +6995,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -7017,12 +7024,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -7049,13 +7056,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -7074,7 +7081,7 @@ "id": "pr-read-surface.transport-rejection-no-message:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "3e0035e84f2b"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -7088,7 +7095,7 @@ "id": "pr-read-surface.transport-rejection-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "3e0035e84f2b", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -7110,11 +7117,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -7139,12 +7146,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -7171,13 +7178,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 fbc33a37948..a6dea343bc8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4ebe865f874b0b4a813860ec7356b8dc214ea02f0a9036cb003efe863d89b83e", "platform": "darwin", @@ -879,6 +879,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "210e66bfd76b": { "name": "github.repoSlug#1", "args": [ @@ -1375,9 +1380,10 @@ "ok": false } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" + "384abd5851d2": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "391bd395f3ef": { "name": "github.repoSlug#1", @@ -1447,10 +1453,6 @@ "ok": false } }, - "3b464a1ac1ab": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" - }, "41113a109089": { "repo-slug": { "ok": true, @@ -1606,6 +1608,11 @@ "ok": false } }, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -1712,6 +1719,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "4e1ede59ab3e": { "repo-slug": { "error": "", @@ -2988,10 +3000,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "910ed730d559": { "assignable": { "ok": true, @@ -4798,9 +4806,10 @@ "ok": false } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "c0d9d94f8137": { "hosted-review": { @@ -4882,10 +4891,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d1a5c4c6c474": { "checks": { "ok": true, @@ -5202,10 +5207,6 @@ ] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "e58da1774b42": { "name": "github.repoSlug#1", "args": [ @@ -5422,10 +5423,6 @@ } } }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -5832,6 +5829,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -5871,6 +5873,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "fa93ca01f266": { "status": "fulfilled", "startedAt": 0, @@ -6227,7 +6234,7 @@ "id": "pr-read-surface.normal:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -6239,7 +6246,7 @@ "id": "pr-read-surface.normal:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -6252,7 +6259,7 @@ "id": "pr-read-surface.normal:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6266,7 +6273,7 @@ "id": "pr-read-surface.normal:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -6288,11 +6295,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6317,12 +6324,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6349,13 +6356,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6374,7 +6381,7 @@ "id": "pr-read-surface.result-absent:repo-slug", "observation": { "sender": ["13f68d23b241"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "8a5cb8b66303" }, @@ -6386,7 +6393,7 @@ "id": "pr-read-surface.result-absent:hosted-review", "observation": { "sender": ["13f68d23b241", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7" @@ -6399,7 +6406,7 @@ "id": "pr-read-surface.result-absent:pr-for-branch", "observation": { "sender": ["13f68d23b241", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6413,7 +6420,7 @@ "id": "pr-read-surface.result-absent:work-item", "observation": { "sender": ["13f68d23b241", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6435,11 +6442,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6464,12 +6471,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6496,13 +6503,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6521,7 +6528,7 @@ "id": "pr-read-surface.result-null:repo-slug", "observation": { "sender": ["a408ff99ead1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "8a5cb8b66303" }, @@ -6533,7 +6540,7 @@ "id": "pr-read-surface.result-null:hosted-review", "observation": { "sender": ["a408ff99ead1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7" @@ -6546,7 +6553,7 @@ "id": "pr-read-surface.result-null:pr-for-branch", "observation": { "sender": ["a408ff99ead1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6560,7 +6567,7 @@ "id": "pr-read-surface.result-null:work-item", "observation": { "sender": ["a408ff99ead1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6582,11 +6589,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6611,12 +6618,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6643,13 +6650,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6668,7 +6675,7 @@ "id": "pr-read-surface.inner-ok-missing:repo-slug", "observation": { "sender": ["28d99e994c42"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "8a5cb8b66303" }, @@ -6680,7 +6687,7 @@ "id": "pr-read-surface.inner-ok-missing:hosted-review", "observation": { "sender": ["28d99e994c42", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7" @@ -6693,7 +6700,7 @@ "id": "pr-read-surface.inner-ok-missing:pr-for-branch", "observation": { "sender": ["28d99e994c42", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6707,7 +6714,7 @@ "id": "pr-read-surface.inner-ok-missing:work-item", "observation": { "sender": ["28d99e994c42", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6729,11 +6736,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6758,12 +6765,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6790,13 +6797,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6815,7 +6822,7 @@ "id": "pr-read-surface.inner-false-string-error:repo-slug", "observation": { "sender": ["391bd395f3ef"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "8a5cb8b66303" }, @@ -6827,7 +6834,7 @@ "id": "pr-read-surface.inner-false-string-error:hosted-review", "observation": { "sender": ["391bd395f3ef", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7" @@ -6840,7 +6847,7 @@ "id": "pr-read-surface.inner-false-string-error:pr-for-branch", "observation": { "sender": ["391bd395f3ef", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6854,7 +6861,7 @@ "id": "pr-read-surface.inner-false-string-error:work-item", "observation": { "sender": ["391bd395f3ef", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -6876,11 +6883,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6905,12 +6912,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6937,13 +6944,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -6962,7 +6969,7 @@ "id": "pr-read-surface.inner-false-object-error:repo-slug", "observation": { "sender": ["e58da1774b42"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "8a5cb8b66303" }, @@ -6974,7 +6981,7 @@ "id": "pr-read-surface.inner-false-object-error:hosted-review", "observation": { "sender": ["e58da1774b42", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7" @@ -6987,7 +6994,7 @@ "id": "pr-read-surface.inner-false-object-error:pr-for-branch", "observation": { "sender": ["e58da1774b42", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -7001,7 +7008,7 @@ "id": "pr-read-surface.inner-false-object-error:work-item", "observation": { "sender": ["e58da1774b42", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "8a5cb8b66303", "hosted-review": "b0b5c628b5c7", @@ -7023,11 +7030,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -7052,12 +7059,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -7084,13 +7091,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "8a5cb8b66303", @@ -7109,7 +7116,7 @@ "id": "pr-read-surface.outer-refused:repo-slug", "observation": { "sender": ["441cde996084"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "1b2778bf67a2" }, @@ -7121,7 +7128,7 @@ "id": "pr-read-surface.outer-refused:hosted-review", "observation": { "sender": ["441cde996084", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "1b2778bf67a2", "hosted-review": "b0b5c628b5c7" @@ -7134,7 +7141,7 @@ "id": "pr-read-surface.outer-refused:pr-for-branch", "observation": { "sender": ["441cde996084", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "1b2778bf67a2", "hosted-review": "b0b5c628b5c7", @@ -7148,7 +7155,7 @@ "id": "pr-read-surface.outer-refused:work-item", "observation": { "sender": ["441cde996084", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "1b2778bf67a2", "hosted-review": "b0b5c628b5c7", @@ -7170,11 +7177,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "1b2778bf67a2", @@ -7199,12 +7206,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "1b2778bf67a2", @@ -7231,13 +7238,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "1b2778bf67a2", @@ -7256,7 +7263,7 @@ "id": "pr-read-surface.outer-refused-no-message:repo-slug", "observation": { "sender": ["210e66bfd76b"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "a17efc7718c7" }, @@ -7268,7 +7275,7 @@ "id": "pr-read-surface.outer-refused-no-message:hosted-review", "observation": { "sender": ["210e66bfd76b", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "a17efc7718c7", "hosted-review": "b0b5c628b5c7" @@ -7281,7 +7288,7 @@ "id": "pr-read-surface.outer-refused-no-message:pr-for-branch", "observation": { "sender": ["210e66bfd76b", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "a17efc7718c7", "hosted-review": "b0b5c628b5c7", @@ -7295,7 +7302,7 @@ "id": "pr-read-surface.outer-refused-no-message:work-item", "observation": { "sender": ["210e66bfd76b", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "a17efc7718c7", "hosted-review": "b0b5c628b5c7", @@ -7317,11 +7324,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "a17efc7718c7", @@ -7346,12 +7353,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "a17efc7718c7", @@ -7378,13 +7385,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "a17efc7718c7", @@ -7403,7 +7410,7 @@ "id": "pr-read-surface.method-not-found:repo-slug", "observation": { "sender": ["eaae31a0291c"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "fa93ca01f266" }, @@ -7415,7 +7422,7 @@ "id": "pr-read-surface.method-not-found:hosted-review", "observation": { "sender": ["eaae31a0291c", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "fa93ca01f266", "hosted-review": "b0b5c628b5c7" @@ -7428,7 +7435,7 @@ "id": "pr-read-surface.method-not-found:pr-for-branch", "observation": { "sender": ["eaae31a0291c", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "fa93ca01f266", "hosted-review": "b0b5c628b5c7", @@ -7442,7 +7449,7 @@ "id": "pr-read-surface.method-not-found:work-item", "observation": { "sender": ["eaae31a0291c", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "fa93ca01f266", "hosted-review": "b0b5c628b5c7", @@ -7464,11 +7471,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "fa93ca01f266", @@ -7493,12 +7500,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "fa93ca01f266", @@ -7525,13 +7532,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "fa93ca01f266", @@ -7550,7 +7557,7 @@ "id": "pr-read-surface.transport-rejection:repo-slug", "observation": { "sender": ["654cfe12e87a"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "a197c20578aa" }, @@ -7562,7 +7569,7 @@ "id": "pr-read-surface.transport-rejection:hosted-review", "observation": { "sender": ["654cfe12e87a", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "a197c20578aa", "hosted-review": "b0b5c628b5c7" @@ -7575,7 +7582,7 @@ "id": "pr-read-surface.transport-rejection:pr-for-branch", "observation": { "sender": ["654cfe12e87a", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "a197c20578aa", "hosted-review": "b0b5c628b5c7", @@ -7589,7 +7596,7 @@ "id": "pr-read-surface.transport-rejection:work-item", "observation": { "sender": ["654cfe12e87a", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "a197c20578aa", "hosted-review": "b0b5c628b5c7", @@ -7611,11 +7618,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "a197c20578aa", @@ -7640,12 +7647,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "a197c20578aa", @@ -7672,13 +7679,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "a197c20578aa", @@ -7697,7 +7704,7 @@ "id": "pr-read-surface.transport-rejection-no-message:repo-slug", "observation": { "sender": ["f013dd477eb0"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "fb4429083480" }, @@ -7709,7 +7716,7 @@ "id": "pr-read-surface.transport-rejection-no-message:hosted-review", "observation": { "sender": ["f013dd477eb0", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "fb4429083480", "hosted-review": "b0b5c628b5c7" @@ -7722,7 +7729,7 @@ "id": "pr-read-surface.transport-rejection-no-message:pr-for-branch", "observation": { "sender": ["f013dd477eb0", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "fb4429083480", "hosted-review": "b0b5c628b5c7", @@ -7736,7 +7743,7 @@ "id": "pr-read-surface.transport-rejection-no-message:work-item", "observation": { "sender": ["f013dd477eb0", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "fb4429083480", "hosted-review": "b0b5c628b5c7", @@ -7758,11 +7765,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "fb4429083480", @@ -7787,12 +7794,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "fb4429083480", @@ -7819,13 +7826,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "fb4429083480", 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 067874d1c4d..fd1da424274 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "bc3350efc030f824fc21046aea8c6dc9a46993b6c75613c66874fde59af9171a", "platform": "darwin", @@ -404,6 +404,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "2638b3063bb1": { "name": "github.repoSlug#1", "args": [ @@ -707,9 +712,10 @@ "ok": false } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" + "384abd5851d2": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "388e8cb0c898": { "name": "github.workItemDetails#1", @@ -868,10 +874,6 @@ "ok": false } }, - "3b464a1ac1ab": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" - }, "3dcf7169b95c": { "name": "github.workItemDetails#1", "args": [ @@ -919,6 +921,11 @@ } }, "44136fa355b3": {}, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -1025,6 +1032,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "4cb58b2b8a8a": { "assignable": { "ok": true, @@ -2144,10 +2156,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "8d7de2a48d1e": { "checks": { "ok": true, @@ -2989,9 +2997,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "bab6aa71f650": { "assignable": { @@ -3373,10 +3382,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d70ab03ef370": { "check-details": { "ok": true, @@ -3680,10 +3685,6 @@ ] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "e778ec0366f2": { "name": "github.workItemDetails#1", "args": [ @@ -3719,10 +3720,6 @@ } } }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -3985,6 +3982,11 @@ "ok": false } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -4152,6 +4154,11 @@ "ok": false } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "fa93ca01f266": { "status": "fulfilled", "startedAt": 0, @@ -4321,7 +4328,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -4333,7 +4340,7 @@ "id": "pr-read-surface.prelude:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -4346,7 +4353,7 @@ "id": "pr-read-surface.prelude:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4360,7 +4367,7 @@ "id": "pr-read-surface.normal:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4382,11 +4389,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4411,12 +4418,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4443,13 +4450,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4468,7 +4475,7 @@ "id": "pr-read-surface.result-absent:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "e0bbeb14dedf"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4490,11 +4497,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4519,12 +4526,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4551,13 +4558,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4576,7 +4583,7 @@ "id": "pr-read-surface.result-null:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "f288b5c31f15"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4598,11 +4605,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4627,12 +4634,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4659,13 +4666,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4684,7 +4691,7 @@ "id": "pr-read-surface.inner-ok-missing:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "e778ec0366f2"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4706,11 +4713,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4735,12 +4742,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4767,13 +4774,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4792,7 +4799,7 @@ "id": "pr-read-surface.inner-false-string-error:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "dc56fd50dbf7"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4814,11 +4821,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4843,12 +4850,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4875,13 +4882,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4900,7 +4907,7 @@ "id": "pr-read-surface.inner-false-object-error:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "acd4822cfd04"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -4922,11 +4929,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4951,12 +4958,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -4983,13 +4990,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5008,7 +5015,7 @@ "id": "pr-read-surface.outer-refused:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "b00ac850143f"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5030,11 +5037,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5059,12 +5066,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5091,13 +5098,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5116,7 +5123,7 @@ "id": "pr-read-surface.outer-refused-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "3dcf7169b95c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5138,11 +5145,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5167,12 +5174,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5199,13 +5206,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5224,7 +5231,7 @@ "id": "pr-read-surface.method-not-found:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "719b0e3a1714"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5246,11 +5253,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5275,12 +5282,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5307,13 +5314,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5332,7 +5339,7 @@ "id": "pr-read-surface.transport-rejection:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "388e8cb0c898"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5354,11 +5361,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5383,12 +5390,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5415,13 +5422,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5440,7 +5447,7 @@ "id": "pr-read-surface.transport-rejection-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "8c8754145522"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5462,11 +5469,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5491,12 +5498,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5523,13 +5530,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 de49e350e4f..ae94ce1cc4e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "9171e982babc4e56852fe35bafa7a9f3aeda2be5bd4648f29aaa04ca7119d5d2", "platform": "darwin", @@ -352,6 +352,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "2638b3063bb1": { "name": "github.repoSlug#1", "args": [ @@ -1010,9 +1015,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" + "384abd5851d2": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "38bed66e2126": { "checks": { @@ -1140,10 +1146,6 @@ } } }, - "3b464a1ac1ab": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" - }, "3fe0f4e7006a": { "hosted-review": { "error": "Unknown method", @@ -1602,6 +1604,11 @@ } } }, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -1708,6 +1715,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "4d88a9683e03": { "check-details": { "ok": true, @@ -2838,10 +2850,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9353f049138c": { "name": "github.prCheckDetails#1", "args": [ @@ -4097,9 +4105,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "bdc35d641ccd": { "status": "fulfilled", @@ -4296,10 +4305,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d16ab2cb0431": { "hosted-review": { "error": "Request failed: hostedReview.forBranch", @@ -4840,10 +4845,6 @@ } } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "e5af59988641": { "checks": { "ok": true, @@ -4970,10 +4971,6 @@ } } }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "ebff04a80f32": { "name": "hostedReview.forBranch#1", "args": [ @@ -5194,6 +5191,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -5266,6 +5268,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "f862dce4a761": { "hosted-review": { "error": "transport failure", @@ -5499,7 +5506,7 @@ "id": "pr-read-surface.prelude:repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -5511,7 +5518,7 @@ "id": "pr-read-surface.normal:hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -5524,7 +5531,7 @@ "id": "pr-read-surface.normal:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5538,7 +5545,7 @@ "id": "pr-read-surface.normal:work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -5560,11 +5567,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5589,12 +5596,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5621,13 +5628,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5646,7 +5653,7 @@ "id": "pr-read-surface.result-absent:hosted-review", "observation": { "sender": ["2638b3063bb1", "f501de1476e0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303" @@ -5659,7 +5666,7 @@ "id": "pr-read-surface.result-absent:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "f501de1476e0", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5673,7 +5680,7 @@ "id": "pr-read-surface.result-absent:work-item", "observation": { "sender": ["2638b3063bb1", "f501de1476e0", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5695,11 +5702,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5724,12 +5731,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5756,13 +5763,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5781,7 +5788,7 @@ "id": "pr-read-surface.result-null:hosted-review", "observation": { "sender": ["2638b3063bb1", "9c80d3e62aa8"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303" @@ -5794,7 +5801,7 @@ "id": "pr-read-surface.result-null:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "9c80d3e62aa8", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5808,7 +5815,7 @@ "id": "pr-read-surface.result-null:work-item", "observation": { "sender": ["2638b3063bb1", "9c80d3e62aa8", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5830,11 +5837,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5859,12 +5866,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5891,13 +5898,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5916,7 +5923,7 @@ "id": "pr-read-surface.inner-ok-missing:hosted-review", "observation": { "sender": ["2638b3063bb1", "6cdc3be86e30"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303" @@ -5929,7 +5936,7 @@ "id": "pr-read-surface.inner-ok-missing:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "6cdc3be86e30", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5943,7 +5950,7 @@ "id": "pr-read-surface.inner-ok-missing:work-item", "observation": { "sender": ["2638b3063bb1", "6cdc3be86e30", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -5965,11 +5972,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -5994,12 +6001,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6026,13 +6033,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6051,7 +6058,7 @@ "id": "pr-read-surface.inner-false-string-error:hosted-review", "observation": { "sender": ["2638b3063bb1", "334e4a86ed4b"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303" @@ -6064,7 +6071,7 @@ "id": "pr-read-surface.inner-false-string-error:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "334e4a86ed4b", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -6078,7 +6085,7 @@ "id": "pr-read-surface.inner-false-string-error:work-item", "observation": { "sender": ["2638b3063bb1", "334e4a86ed4b", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -6100,11 +6107,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6129,12 +6136,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6161,13 +6168,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6186,7 +6193,7 @@ "id": "pr-read-surface.inner-false-object-error:hosted-review", "observation": { "sender": ["2638b3063bb1", "9c3bbaec24c3"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303" @@ -6199,7 +6206,7 @@ "id": "pr-read-surface.inner-false-object-error:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "9c3bbaec24c3", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -6213,7 +6220,7 @@ "id": "pr-read-surface.inner-false-object-error:work-item", "observation": { "sender": ["2638b3063bb1", "9c3bbaec24c3", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "8a5cb8b66303", @@ -6235,11 +6242,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6264,12 +6271,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6296,13 +6303,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6321,7 +6328,7 @@ "id": "pr-read-surface.outer-refused:hosted-review", "observation": { "sender": ["2638b3063bb1", "1e45b439eee1"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "1b2778bf67a2" @@ -6334,7 +6341,7 @@ "id": "pr-read-surface.outer-refused:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1e45b439eee1", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "1b2778bf67a2", @@ -6348,7 +6355,7 @@ "id": "pr-read-surface.outer-refused:work-item", "observation": { "sender": ["2638b3063bb1", "1e45b439eee1", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "1b2778bf67a2", @@ -6370,11 +6377,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6399,12 +6406,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6431,13 +6438,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6456,7 +6463,7 @@ "id": "pr-read-surface.outer-refused-no-message:hosted-review", "observation": { "sender": ["2638b3063bb1", "5eb8e4e51555"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "bdc35d641ccd" @@ -6469,7 +6476,7 @@ "id": "pr-read-surface.outer-refused-no-message:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "5eb8e4e51555", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "bdc35d641ccd", @@ -6483,7 +6490,7 @@ "id": "pr-read-surface.outer-refused-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "5eb8e4e51555", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "bdc35d641ccd", @@ -6505,11 +6512,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6534,12 +6541,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6566,13 +6573,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6591,7 +6598,7 @@ "id": "pr-read-surface.method-not-found:hosted-review", "observation": { "sender": ["2638b3063bb1", "308c3697a3ad"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fa93ca01f266" @@ -6604,7 +6611,7 @@ "id": "pr-read-surface.method-not-found:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "308c3697a3ad", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fa93ca01f266", @@ -6618,7 +6625,7 @@ "id": "pr-read-surface.method-not-found:work-item", "observation": { "sender": ["2638b3063bb1", "308c3697a3ad", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fa93ca01f266", @@ -6640,11 +6647,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6669,12 +6676,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6701,13 +6708,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6726,7 +6733,7 @@ "id": "pr-read-surface.transport-rejection:hosted-review", "observation": { "sender": ["2638b3063bb1", "ebff04a80f32"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "a197c20578aa" @@ -6739,7 +6746,7 @@ "id": "pr-read-surface.transport-rejection:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "ebff04a80f32", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "a197c20578aa", @@ -6753,7 +6760,7 @@ "id": "pr-read-surface.transport-rejection:work-item", "observation": { "sender": ["2638b3063bb1", "ebff04a80f32", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "a197c20578aa", @@ -6775,11 +6782,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6804,12 +6811,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6836,13 +6843,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6861,7 +6868,7 @@ "id": "pr-read-surface.transport-rejection-no-message:hosted-review", "observation": { "sender": ["2638b3063bb1", "a06554ae2705"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fb4429083480" @@ -6874,7 +6881,7 @@ "id": "pr-read-surface.transport-rejection-no-message:pr-for-branch", "observation": { "sender": ["2638b3063bb1", "a06554ae2705", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fb4429083480", @@ -6888,7 +6895,7 @@ "id": "pr-read-surface.transport-rejection-no-message:work-item", "observation": { "sender": ["2638b3063bb1", "a06554ae2705", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "fb4429083480", @@ -6910,11 +6917,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6939,12 +6946,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -6971,13 +6978,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", 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 23c8d8953a2..b1412bcfec4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "fe91d5518501a078dff3010e74c4b9d70122f88a629e384336cd1b6a84de36a8", "platform": "darwin", @@ -102,10 +102,6 @@ } } }, - "2a122cfe29f9": { - "name": "github.updatePRTitle#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}" - }, "2d92f601524b": { "name": "github.updatePRTitle#1", "args": [ @@ -138,6 +134,11 @@ } } }, + "3235254d283e": { + "name": "github.updatePRTitle#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}", + "sent": 1 + }, "578bc8950993": { "title": { "ok": true @@ -496,7 +497,7 @@ "id": "pr-title-mutation.normal:title", "observation": { "sender": ["96fcd9b9c31e"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "fbc958e4d46e" }, @@ -508,7 +509,7 @@ "id": "pr-title-mutation.result-absent:title", "observation": { "sender": ["2d92f601524b"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "6e9fb05124f5" }, @@ -520,7 +521,7 @@ "id": "pr-title-mutation.result-null:title", "observation": { "sender": ["ec52831dce6f"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "6e9fb05124f5" }, @@ -532,7 +533,7 @@ "id": "pr-title-mutation.inner-ok-missing:title", "observation": { "sender": ["98cad060a5b3"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "6e9fb05124f5" }, @@ -544,7 +545,7 @@ "id": "pr-title-mutation.inner-false-string-error:title", "observation": { "sender": ["d8959e64c99e"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "6e9fb05124f5" }, @@ -556,7 +557,7 @@ "id": "pr-title-mutation.inner-false-object-error:title", "observation": { "sender": ["17e9a253f62d"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "6e9fb05124f5" }, @@ -568,7 +569,7 @@ "id": "pr-title-mutation.outer-refused:title", "observation": { "sender": ["63139c527e1e"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "1b2778bf67a2" }, @@ -580,7 +581,7 @@ "id": "pr-title-mutation.outer-refused-no-message:title", "observation": { "sender": ["ae3df1024ded"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "73a201bf0d92" }, @@ -592,7 +593,7 @@ "id": "pr-title-mutation.method-not-found:title", "observation": { "sender": ["273a783a3e6f"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "fa93ca01f266" }, @@ -604,7 +605,7 @@ "id": "pr-title-mutation.transport-rejection:title", "observation": { "sender": ["732177caffde"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "a197c20578aa" }, @@ -616,7 +617,7 @@ "id": "pr-title-mutation.transport-rejection-no-message:title", "observation": { "sender": ["e676985c7e4b"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "73a201bf0d92" }, 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 26d8215f56f..c3f9053f93e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c632fdbc4b730777ecb09f08bec14cca0586042b01ed99d40d0228806c7def4a", "scenarioSha256": "047e4c8fb2c4b374406658ec3954ac00fda96928bdd999a33ab9867284ffb4a4", "platform": "darwin", @@ -89,10 +89,6 @@ } } }, - "29e1daf37245": { - "name": "accounts.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}" - }, "42fe3b88d871": { "name": "accounts.list#1", "args": [ @@ -159,6 +155,11 @@ } } }, + "6432de87fc3e": { + "name": "accounts.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"accounts.list\"}", + "sent": 1 + }, "726e66b9a16f": { "name": "accounts.list#1", "args": [ @@ -535,7 +536,7 @@ "id": "home-host-accounts.prelude:accounts-pending", "observation": { "sender": ["d54161165272"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -547,7 +548,7 @@ "id": "home-host-accounts.normal:accounts-published", "observation": { "sender": ["ae89fde72803"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -559,7 +560,7 @@ "id": "home-host-accounts.result-absent:accounts-published", "observation": { "sender": ["cafd198863af"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -571,7 +572,7 @@ "id": "home-host-accounts.result-null:accounts-published", "observation": { "sender": ["726e66b9a16f"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -583,7 +584,7 @@ "id": "home-host-accounts.inner-ok-missing:accounts-published", "observation": { "sender": ["c1793b36a3f2"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -595,7 +596,7 @@ "id": "home-host-accounts.inner-false-string-error:accounts-published", "observation": { "sender": ["08db21b24271"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -607,7 +608,7 @@ "id": "home-host-accounts.inner-false-object-error:accounts-published", "observation": { "sender": ["746a5e6e181a"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -619,7 +620,7 @@ "id": "home-host-accounts.outer-refused:accounts-published", "observation": { "sender": ["a20e2f913e09"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -631,7 +632,7 @@ "id": "home-host-accounts.outer-refused-no-message:accounts-published", "observation": { "sender": ["91042e273e28"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -643,7 +644,7 @@ "id": "home-host-accounts.method-not-found:accounts-published", "observation": { "sender": ["5fd916142f9b"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -655,7 +656,7 @@ "id": "home-host-accounts.transport-rejection:accounts-published", "observation": { "sender": ["42fe3b88d871"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, @@ -667,7 +668,7 @@ "id": "home-host-accounts.transport-rejection-no-message:accounts-published", "observation": { "sender": ["e14a47430122"], - "payloads": ["29e1daf37245"], + "payloads": ["6432de87fc3e"], "settlements": { "load": "eb79a9b3682a" }, 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 a24c339c124..9e5534e1fa1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "5518e08c1b20f0ddd4cb6bc81ff9af032b1a38daf24f3d3497bac5df8b2d0ec5", "platform": "darwin", @@ -160,10 +160,6 @@ }, "sent": 1 }, - "7bf81b1e94c5": { - "name": "stats.summary#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}" - }, "9a84a7559023": { "host-1": { "activeWorktrees": 1, @@ -345,6 +341,11 @@ } } }, + "dcf607ac617e": { + "name": "stats.summary#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"stats.summary\"}", + "sent": 1 + }, "e05986a4b6e2": { "host-1": { "error": "inner refused", @@ -517,7 +518,7 @@ "id": "home-host-stats.prelude:stats-pending", "observation": { "sender": ["a392ac528c2b"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -529,7 +530,7 @@ "id": "home-host-stats.normal:settled", "observation": { "sender": ["0ebcc6f6a4cb"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -541,7 +542,7 @@ "id": "home-host-stats.result-absent:settled", "observation": { "sender": ["e180f1e7839f"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -553,7 +554,7 @@ "id": "home-host-stats.result-null:settled", "observation": { "sender": ["c3fad9087af1"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -565,7 +566,7 @@ "id": "home-host-stats.inner-ok-missing:settled", "observation": { "sender": ["2a8c0c9ced05"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -577,7 +578,7 @@ "id": "home-host-stats.inner-false-string-error:settled", "observation": { "sender": ["003f84d10dd0"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -589,7 +590,7 @@ "id": "home-host-stats.inner-false-object-error:settled", "observation": { "sender": ["fa16031454a3"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -601,7 +602,7 @@ "id": "home-host-stats.outer-refused:settled", "observation": { "sender": ["9e3e7d14abf9"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -613,7 +614,7 @@ "id": "home-host-stats.outer-refused-no-message:settled", "observation": { "sender": ["dc03021bee85"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -625,7 +626,7 @@ "id": "home-host-stats.method-not-found:settled", "observation": { "sender": ["f9b87a5a7a70"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -637,7 +638,7 @@ "id": "home-host-stats.transport-rejection:settled", "observation": { "sender": ["bf78e405c5d4"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, @@ -649,7 +650,7 @@ "id": "home-host-stats.transport-rejection-no-message:settled", "observation": { "sender": ["e20353973dc1"], - "payloads": ["7bf81b1e94c5"], + "payloads": ["dcf607ac617e"], "settlements": { "load": "eb79a9b3682a" }, 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 new file mode 100644 index 00000000000..3840c03a2bd --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1.json @@ -0,0 +1,1172 @@ +{ + "operation": "worktree.host-refresh", + "family": "host-worktree-refresh", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "0604294e541a4b2c73e0501cfc393c84384342ffcae286211a657ca5bc5892b7", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0bc2d39e90d7": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "1e5c2d0839f0": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": true + }, + "2d10343e07a1": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 2, + "running": true + }, + "32ad88ec13e3": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "force": true, + "queueIfInFlight": true + } + }, + "sent": 0 + }, + "519cd29a30fa": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "5f7bd3b1a756": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 0 + }, + "61f865a194bf": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "6d9fd24a7491": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 2, + "running": true + }, + "73ef93d781b5": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 2, + "running": false + }, + "8297145c6199": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 1, + "running": true + }, + "8f638d83589d": { + "name": "fetchWorktrees", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "91e9a84a208f": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": false + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "cfd2555aae81": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "e14cb0033202": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": false + }, + "e54e98a537b8": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "edb34b7fcc08": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": true + }, + "f2af146a9f12": { + "status": "fulfilled", + "startedAt": 3000, + "settledAt": 3000, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-1", + "checkpoints": [ + { + "id": "host-worktree-refresh-stream.prelude:started", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.normal:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.normal:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.normal:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "edb34b7fcc08", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "91e9a84a208f", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..1b59bc3bcc5 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2.json @@ -0,0 +1,1056 @@ +{ + "operation": "worktree.host-refresh", + "family": "host-worktree-refresh", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "6d03d17a5711db33473611858b225e2ac42fe33d2a982fbb0defdbd1dce037d6", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0bc2d39e90d7": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "1e5c2d0839f0": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": true + }, + "2d10343e07a1": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 2, + "running": true + }, + "32ad88ec13e3": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "force": true, + "queueIfInFlight": true + } + }, + "sent": 0 + }, + "5170d1b8463c": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 4, + "running": true + }, + "519cd29a30fa": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "5752a5d2a343": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 4, + "running": false + }, + "5f7bd3b1a756": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 0 + }, + "61f865a194bf": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "6d9fd24a7491": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 2, + "running": true + }, + "73ef93d781b5": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 2, + "running": false + }, + "8297145c6199": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 1, + "running": true + }, + "8f638d83589d": { + "name": "fetchWorktrees", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "91e9a84a208f": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": false + }, + "942472e310cd": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 3, + "running": true + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "cfd2555aae81": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "e54e98a537b8": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "edb34b7fcc08": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": true + }, + "f2af146a9f12": { + "status": "fulfilled", + "startedAt": 3000, + "settledAt": 3000, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-2", + "checkpoints": [ + { + "id": "host-worktree-refresh-stream.prelude:started", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.normal:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.normal:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "edb34b7fcc08", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "91e9a84a208f", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "5170d1b8463c", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "5752a5d2a343", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "5170d1b8463c", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "5752a5d2a343", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "5170d1b8463c", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "5752a5d2a343", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "5170d1b8463c", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "5752a5d2a343", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "942472e310cd", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "5170d1b8463c", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "5752a5d2a343", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "2d10343e07a1", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "73ef93d781b5", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d", "cfd2555aae81"] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..29715a89a6d --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3.json @@ -0,0 +1,901 @@ +{ + "operation": "worktree.host-refresh", + "family": "host-worktree-refresh", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "f36f11b3d69397bd98651fdad4614a4115098e23667e4dfc397c1d9ff2dc3186", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0bc2d39e90d7": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "1e5c2d0839f0": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": true + }, + "223025cafc76": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": false + }, + "32ad88ec13e3": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "force": true, + "queueIfInFlight": true + } + }, + "sent": 0 + }, + "519cd29a30fa": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "5f7bd3b1a756": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 0 + }, + "61f865a194bf": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "6d9fd24a7491": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 2, + "running": true + }, + "8297145c6199": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 1, + "running": true + }, + "8f638d83589d": { + "name": "fetchWorktrees", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "91e9a84a208f": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": false + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "cfd2555aae81": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "e14cb0033202": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": false + }, + "e54e98a537b8": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "edb34b7fcc08": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": true + }, + "f2af146a9f12": { + "status": "fulfilled", + "startedAt": 3000, + "settledAt": 3000, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-host-worktree-refresh-runtime.clientevents.subscribe-1-3", + "checkpoints": [ + { + "id": "host-worktree-refresh-stream.prelude:started", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "edb34b7fcc08", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "91e9a84a208f", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "223025cafc76", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "223025cafc76", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "0bc2d39e90d7"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "223025cafc76", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..ce32c9e01a0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1.json @@ -0,0 +1,607 @@ +{ + "operation": "worktree.host-refresh", + "family": "host-worktree-refresh", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "a70fa323de86b706f05818f321095349ed55b265804ec0ebb54419314a3ca612", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "1e5c2d0839f0": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": true + }, + "32ad88ec13e3": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "force": true, + "queueIfInFlight": true + } + }, + "sent": 0 + }, + "519cd29a30fa": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "5f7bd3b1a756": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 0 + }, + "61f865a194bf": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 0 + }, + "6d9fd24a7491": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 2, + "running": true + }, + "8297145c6199": { + "fetchRepoMetadata": 1, + "fetchWorktrees": 1, + "running": true + }, + "8f638d83589d": { + "name": "fetchWorktrees", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "91e9a84a208f": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": false + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "cfd2555aae81": { + "name": "fetchRepoMetadata", + "value": { + "options": { + "$rpc": "undefined" + } + }, + "sent": 0 + }, + "e14cb0033202": { + "fetchRepoMetadata": 3, + "fetchWorktrees": 4, + "running": false + }, + "e54e98a537b8": { + "fetchRepoMetadata": 2, + "fetchWorktrees": 3, + "running": true + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "edb34b7fcc08": { + "fetchRepoMetadata": 4, + "fetchWorktrees": 5, + "running": true + }, + "f2af146a9f12": { + "status": "fulfilled", + "startedAt": 3000, + "settledAt": 3000, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-host-worktree-refresh-runtime.clientevents.subscribe-2-1", + "checkpoints": [ + { + "id": "host-worktree-refresh-stream.prelude:started", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:ready", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "8297145c6199", + "effects": ["8f638d83589d", "32ad88ec13e3"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:worktrees-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "6d9fd24a7491", + "effects": ["8f638d83589d", "32ad88ec13e3", "8f638d83589d"] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:polled", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "e54e98a537b8", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81" + ] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:repos-changed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc"], + "settlements": { + "start": "eb79a9b3682a" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.prelude:re-subscribed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "edb34b7fcc08", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.normal:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756", "61f865a194bf"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "91e9a84a208f", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-absent:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.result-null:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-ok-missing:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-string-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.inner-false-object-error:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.outer-refused-no-message:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:replayed", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12" + }, + "state": "1e5c2d0839f0", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + }, + { + "id": "host-worktree-refresh-stream.method-not-found:stopped", + "observation": { + "sender": [], + "payloads": ["bdc95c0ab9bc", "519cd29a30fa", "5f7bd3b1a756"], + "settlements": { + "start": "eb79a9b3682a", + "cutover": "f2af146a9f12", + "stop": "f2af146a9f12" + }, + "state": "e14cb0033202", + "effects": [ + "8f638d83589d", + "32ad88ec13e3", + "8f638d83589d", + "8f638d83589d", + "cfd2555aae81", + "8f638d83589d", + "32ad88ec13e3" + ] + } + } + ] + } +} 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 7a0bb85cade..6363c2338f4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "a9a3191e2e8c36870ce2769a7bb972813f435267fdc6ed9e42632a57a227bbd6", "platform": "darwin", @@ -44,6 +44,11 @@ } } }, + "045d8ec6a888": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}", + "sent": 2 + }, "114056cffd39": { "name": "ui.get#1", "args": [ @@ -156,10 +161,6 @@ "value": "none", "sent": 1 }, - "292b632037a0": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}" - }, "3650379e5c37": { "name": "ui.get#1", "args": [ @@ -194,10 +195,6 @@ } } }, - "5907841fc56d": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "5fbdd64c75bc": { "name": "ui.get#1", "args": [ @@ -516,6 +513,11 @@ "sortMode": "recent", "statuses": [] }, + "c178812d69e7": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 1 + }, "d88f3b1774b1": { "name": "filters", "value": { @@ -547,7 +549,7 @@ "id": "host-view-settings-sync.prelude:ui-pending", "observation": { "sender": ["5fbdd64c75bc"], - "payloads": ["5907841fc56d"], + "payloads": ["c178812d69e7"], "settlements": { "mount": "eb79a9b3682a", "sync": "9270aeb7d9c6" @@ -560,7 +562,7 @@ "id": "host-view-settings-sync.normal:settled", "observation": { "sender": ["a424515cabc9", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -585,7 +587,7 @@ "id": "host-view-settings-sync.result-absent:settled", "observation": { "sender": ["61275c3082ca", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -605,7 +607,7 @@ "id": "host-view-settings-sync.result-null:settled", "observation": { "sender": ["993945d30ef2", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -625,7 +627,7 @@ "id": "host-view-settings-sync.inner-ok-missing:settled", "observation": { "sender": ["9a285e681215", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -645,7 +647,7 @@ "id": "host-view-settings-sync.inner-false-string-error:settled", "observation": { "sender": ["17aa61c35dcf", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -665,7 +667,7 @@ "id": "host-view-settings-sync.inner-false-object-error:settled", "observation": { "sender": ["8ab3467032ef", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -685,7 +687,7 @@ "id": "host-view-settings-sync.outer-refused:settled", "observation": { "sender": ["1308c5012cf9", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -705,7 +707,7 @@ "id": "host-view-settings-sync.outer-refused-no-message:settled", "observation": { "sender": ["3650379e5c37", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -725,7 +727,7 @@ "id": "host-view-settings-sync.method-not-found:settled", "observation": { "sender": ["114056cffd39", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -745,7 +747,7 @@ "id": "host-view-settings-sync.transport-rejection:settled", "observation": { "sender": ["757d36f7d7c1", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -765,7 +767,7 @@ "id": "host-view-settings-sync.transport-rejection-no-message:settled", "observation": { "sender": ["0039f2221403", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", 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 b545dbbae86..4557dd17f66 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a9e0780298a1443664e7ae02056168aa34d67556c9c056d51a82c7b4a73ad35b", "scenarioSha256": "30cbeff90a845ab5dd576e302156e859338357b608e87e9fadeddf18ae93d9ca", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "045d8ec6a888": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}", + "sent": 2 + }, "0658e20f47f5": { "name": "ui.set#1", "args": [ @@ -83,10 +88,6 @@ } } }, - "292b632037a0": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"sortBy\":\"name\"}}" - }, "344b9ddf6cfb": { "name": "ui.set#1", "args": [ @@ -186,10 +187,6 @@ } } }, - "5907841fc56d": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "5fbdd64c75bc": { "name": "ui.get#1", "args": [ @@ -386,6 +383,11 @@ "sortMode": "recent", "statuses": [] }, + "c178812d69e7": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 1 + }, "c6e108d0fcc5": { "name": "ui.set#1", "args": [ @@ -520,7 +522,7 @@ "id": "host-view-settings-sync.prelude:ui-pending", "observation": { "sender": ["5fbdd64c75bc"], - "payloads": ["5907841fc56d"], + "payloads": ["c178812d69e7"], "settlements": { "mount": "eb79a9b3682a", "sync": "9270aeb7d9c6" @@ -533,7 +535,7 @@ "id": "host-view-settings-sync.normal:settled", "observation": { "sender": ["a424515cabc9", "78f2fbcd0185"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -558,7 +560,7 @@ "id": "host-view-settings-sync.result-absent:settled", "observation": { "sender": ["a424515cabc9", "733b56879f90"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -583,7 +585,7 @@ "id": "host-view-settings-sync.result-null:settled", "observation": { "sender": ["a424515cabc9", "d991b0c4e961"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -608,7 +610,7 @@ "id": "host-view-settings-sync.inner-ok-missing:settled", "observation": { "sender": ["a424515cabc9", "a234a06a4465"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -633,7 +635,7 @@ "id": "host-view-settings-sync.inner-false-string-error:settled", "observation": { "sender": ["a424515cabc9", "344b9ddf6cfb"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -658,7 +660,7 @@ "id": "host-view-settings-sync.inner-false-object-error:settled", "observation": { "sender": ["a424515cabc9", "c6e108d0fcc5"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -683,7 +685,7 @@ "id": "host-view-settings-sync.outer-refused:settled", "observation": { "sender": ["a424515cabc9", "fa3d32a591e8"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -708,7 +710,7 @@ "id": "host-view-settings-sync.outer-refused-no-message:settled", "observation": { "sender": ["a424515cabc9", "0658e20f47f5"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -733,7 +735,7 @@ "id": "host-view-settings-sync.method-not-found:settled", "observation": { "sender": ["a424515cabc9", "53a6789707e6"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -758,7 +760,7 @@ "id": "host-view-settings-sync.transport-rejection:settled", "observation": { "sender": ["a424515cabc9", "44e91172f4a0"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", @@ -783,7 +785,7 @@ "id": "host-view-settings-sync.transport-rejection-no-message:settled", "observation": { "sender": ["a424515cabc9", "25d97d355299"], - "payloads": ["5907841fc56d", "292b632037a0"], + "payloads": ["c178812d69e7", "045d8ec6a888"], "settlements": { "mount": "eb79a9b3682a", "sync": "eb79a9b3682a", 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 606b4417302..ddf211503aa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "7e842584620018d5ec5560711d63a472302e8da80cfe65dfcd2952aebb509af2", "platform": "darwin", @@ -104,6 +104,11 @@ } } }, + "2c2ff4eed497": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}", + "sent": 1 + }, "2d7fff77e4e1": { "name": "worktree.activate#1", "args": [ @@ -264,9 +269,10 @@ } } }, - "4caf7515e224": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}" + "43444aeb669c": { + "name": "worktree.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}", + "sent": 2 }, "56b6d4fb8c56": { "name": "worktree.set#1", @@ -302,10 +308,6 @@ } } }, - "69d698d4f352": { - "name": "worktree.rm#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" - }, "6e959a9dd70e": { "confirmRemoveHost": false, "lastKnownWorktrees": [], @@ -410,6 +412,11 @@ "value": ["wt-1"], "sent": 0 }, + "ba712c70aeb2": { + "name": "worktree.rm#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}", + "sent": 3 + }, "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", "value": "|wt-1", @@ -477,10 +484,6 @@ "startedAt": 0 } }, - "c3eecb0c6e96": { - "name": "worktree.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}" - }, "d4d67a091d31": { "name": "worktree.activate#1", "args": [ @@ -666,7 +669,7 @@ "id": "host-worktree-actions-pin-open-delete.prelude:pin-optimistic", "observation": { "sender": ["bf2b36bda2d2"], - "payloads": ["4caf7515e224"], + "payloads": ["2c2ff4eed497"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a" @@ -679,7 +682,7 @@ "id": "host-worktree-actions-pin-open-delete.normal:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -701,7 +704,7 @@ "id": "host-worktree-actions-pin-open-delete.normal:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -723,7 +726,7 @@ "id": "host-worktree-actions-pin-open-delete.result-absent:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "2d8ad3ab13bb", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -745,7 +748,7 @@ "id": "host-worktree-actions-pin-open-delete.result-absent:settled", "observation": { "sender": ["56b6d4fb8c56", "2d8ad3ab13bb", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -767,7 +770,7 @@ "id": "host-worktree-actions-pin-open-delete.result-null:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "ef3b6a5ee1f2", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -789,7 +792,7 @@ "id": "host-worktree-actions-pin-open-delete.result-null:settled", "observation": { "sender": ["56b6d4fb8c56", "ef3b6a5ee1f2", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -811,7 +814,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-ok-missing:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "2eb4a9090f6f", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -833,7 +836,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-ok-missing:settled", "observation": { "sender": ["56b6d4fb8c56", "2eb4a9090f6f", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -855,7 +858,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-string-error:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "db04b3f07cf4", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -877,7 +880,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-string-error:settled", "observation": { "sender": ["56b6d4fb8c56", "db04b3f07cf4", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -899,7 +902,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-object-error:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "403256b7ebef", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -921,7 +924,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-object-error:settled", "observation": { "sender": ["56b6d4fb8c56", "403256b7ebef", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -943,7 +946,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "d4d67a091d31", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -965,7 +968,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused:settled", "observation": { "sender": ["56b6d4fb8c56", "d4d67a091d31", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -987,7 +990,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused-no-message:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "bea1b89d2581", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1009,7 +1012,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused-no-message:settled", "observation": { "sender": ["56b6d4fb8c56", "bea1b89d2581", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1031,7 +1034,7 @@ "id": "host-worktree-actions-pin-open-delete.method-not-found:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "f7f6b21128d9", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1053,7 +1056,7 @@ "id": "host-worktree-actions-pin-open-delete.method-not-found:settled", "observation": { "sender": ["56b6d4fb8c56", "f7f6b21128d9", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1075,7 +1078,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "2d7fff77e4e1", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1097,7 +1100,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection:settled", "observation": { "sender": ["56b6d4fb8c56", "2d7fff77e4e1", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1119,7 +1122,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection-no-message:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "a0393e57105c", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1141,7 +1144,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection-no-message:settled", "observation": { "sender": ["56b6d4fb8c56", "a0393e57105c", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", 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 9a97e755c2a..aadf359b355 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "c47656a4ca21762e4b5a247ddf9a96efb746bec81e942ffa308a774bab1449e2", "platform": "darwin", @@ -218,6 +218,11 @@ } } }, + "2c2ff4eed497": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}", + "sent": 1 + }, "3e27f9568029": { "name": "lastKnownWorktrees", "value": [ @@ -240,9 +245,10 @@ ], "sent": 0 }, - "4caf7515e224": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}" + "43444aeb669c": { + "name": "worktree.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}", + "sent": 2 }, "4f1b109adcc0": { "name": "worktree.rm#1", @@ -345,10 +351,6 @@ } } }, - "69d698d4f352": { - "name": "worktree.rm#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" - }, "6e959a9dd70e": { "confirmRemoveHost": false, "lastKnownWorktrees": [], @@ -599,6 +601,11 @@ ], "sent": 3 }, + "ba712c70aeb2": { + "name": "worktree.rm#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}", + "sent": 3 + }, "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", "value": "|wt-1", @@ -630,10 +637,6 @@ "startedAt": 0 } }, - "c3eecb0c6e96": { - "name": "worktree.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}" - }, "ce97d2eedacb": { "name": "worktree.rm#1", "args": [ @@ -774,7 +777,7 @@ "id": "host-worktree-actions-pin-open-delete.prelude:pin-optimistic", "observation": { "sender": ["bf2b36bda2d2"], - "payloads": ["4caf7515e224"], + "payloads": ["2c2ff4eed497"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a" @@ -787,7 +790,7 @@ "id": "host-worktree-actions-pin-open-delete.prelude:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -809,7 +812,7 @@ "id": "host-worktree-actions-pin-open-delete.prelude:cleanup", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "60cb8c68db7d"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -833,7 +836,7 @@ "id": "host-worktree-actions-pin-open-delete.normal:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -855,7 +858,7 @@ "id": "host-worktree-actions-pin-open-delete.result-absent:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "972099c06c75"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -877,7 +880,7 @@ "id": "host-worktree-actions-pin-open-delete.result-null:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "909c8bc23636"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -899,7 +902,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-ok-missing:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "ff4c661d50a3"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -921,7 +924,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-string-error:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "4f1b109adcc0"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -943,7 +946,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-object-error:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "11e971c034ae"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -965,7 +968,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "7ce7ff16ad9e"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -989,7 +992,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused-no-message:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "2c0740d2cefb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1013,7 +1016,7 @@ "id": "host-worktree-actions-pin-open-delete.method-not-found:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "86754b292acd"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1037,7 +1040,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "ce97d2eedacb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1061,7 +1064,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection-no-message:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "cf69e8a7e125"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", 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 1e71acad447..c6aaa82cf5a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "92c29bd78ca0c0d5917e9386fc447bb9a1698b1d1ffaba0db7546eaac60da639", "scenarioSha256": "054f1b1380fc6cfd4b0f4a85d6f143822a12a0a732d550dd85eef64a6556b3ba", "platform": "darwin", @@ -170,6 +170,11 @@ } } }, + "2c2ff4eed497": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}", + "sent": 1 + }, "3e27f9568029": { "name": "lastKnownWorktrees", "value": [ @@ -192,6 +197,11 @@ ], "sent": 0 }, + "43444aeb669c": { + "name": "worktree.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}", + "sent": 2 + }, "44ff929f3c43": { "name": "worktree.set#1", "args": [ @@ -227,10 +237,6 @@ } } }, - "4caf7515e224": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:wt-1\",\"isPinned\":true}}" - }, "55d53d27027d": { "name": "worktree.set#1", "args": [ @@ -406,10 +412,6 @@ } } }, - "69d698d4f352": { - "name": "worktree.rm#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}" - }, "6b3c3497e633": { "name": "worktree.set#1", "args": [ @@ -547,6 +549,11 @@ } } }, + "ba712c70aeb2": { + "name": "worktree.rm#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.rm\",\"params\":{\"worktree\":\"id:wt-1\",\"force\":true}}", + "sent": 3 + }, "bb44ad78848e": { "name": "optimisticActiveWorktreeIdentity", "value": "|wt-1", @@ -578,10 +585,6 @@ "startedAt": 0 } }, - "c3eecb0c6e96": { - "name": "worktree.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.activate\",\"params\":{\"worktree\":\"id:wt-1\",\"notifyClients\":false,\"navigation\":\"caller\"}}" - }, "e3e3c397a66a": { "name": "worktree.rm#1", "args": [ @@ -656,7 +659,7 @@ "id": "host-worktree-actions-pin-open-delete.prelude:pin-optimistic", "observation": { "sender": ["bf2b36bda2d2"], - "payloads": ["4caf7515e224"], + "payloads": ["2c2ff4eed497"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a" @@ -669,7 +672,7 @@ "id": "host-worktree-actions-pin-open-delete.normal:delete-optimistic", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -691,7 +694,7 @@ "id": "host-worktree-actions-pin-open-delete.normal:settled", "observation": { "sender": ["56b6d4fb8c56", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -713,7 +716,7 @@ "id": "host-worktree-actions-pin-open-delete.result-absent:delete-optimistic", "observation": { "sender": ["6b3c3497e633", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -735,7 +738,7 @@ "id": "host-worktree-actions-pin-open-delete.result-absent:settled", "observation": { "sender": ["6b3c3497e633", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -757,7 +760,7 @@ "id": "host-worktree-actions-pin-open-delete.result-null:delete-optimistic", "observation": { "sender": ["66469585a5b3", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -779,7 +782,7 @@ "id": "host-worktree-actions-pin-open-delete.result-null:settled", "observation": { "sender": ["66469585a5b3", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -801,7 +804,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-ok-missing:delete-optimistic", "observation": { "sender": ["275536711343", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -823,7 +826,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-ok-missing:settled", "observation": { "sender": ["275536711343", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -845,7 +848,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-string-error:delete-optimistic", "observation": { "sender": ["651653c526f2", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -867,7 +870,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-string-error:settled", "observation": { "sender": ["651653c526f2", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -889,7 +892,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-object-error:delete-optimistic", "observation": { "sender": ["55d53d27027d", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -911,7 +914,7 @@ "id": "host-worktree-actions-pin-open-delete.inner-false-object-error:settled", "observation": { "sender": ["55d53d27027d", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -933,7 +936,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused:delete-optimistic", "observation": { "sender": ["44ff929f3c43", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -955,7 +958,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused:settled", "observation": { "sender": ["44ff929f3c43", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -977,7 +980,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused-no-message:delete-optimistic", "observation": { "sender": ["6307d17334bd", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -999,7 +1002,7 @@ "id": "host-worktree-actions-pin-open-delete.outer-refused-no-message:settled", "observation": { "sender": ["6307d17334bd", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1021,7 +1024,7 @@ "id": "host-worktree-actions-pin-open-delete.method-not-found:delete-optimistic", "observation": { "sender": ["ba44a37bda16", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1043,7 +1046,7 @@ "id": "host-worktree-actions-pin-open-delete.method-not-found:settled", "observation": { "sender": ["ba44a37bda16", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1065,7 +1068,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection:delete-optimistic", "observation": { "sender": ["1266cec86f6a", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1087,7 +1090,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection:settled", "observation": { "sender": ["1266cec86f6a", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1109,7 +1112,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection-no-message:delete-optimistic", "observation": { "sender": ["f1b199e21211", "04938673cbf5", "e3e3c397a66a"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", @@ -1131,7 +1134,7 @@ "id": "host-worktree-actions-pin-open-delete.transport-rejection-no-message:settled", "observation": { "sender": ["f1b199e21211", "04938673cbf5", "2b635c2a4fbb"], - "payloads": ["4caf7515e224", "c3eecb0c6e96", "69d698d4f352"], + "payloads": ["2c2ff4eed497", "43444aeb669c", "ba712c70aeb2"], "settlements": { "mount": "eb79a9b3682a", "toggle-pin": "eb79a9b3682a", 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 236e2b7ea74..d00d84bed21 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "fcf5cdc7388457156dd81fe28a470f42fbabac7435ec5572cb19e209f410ca84", "platform": "darwin", @@ -13,14 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "06a94a810e5f": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, - "06e930bb7dd8": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, "0e00dbc486b4": { "name": "git.push#1", "args": [ @@ -159,6 +151,11 @@ } } }, + "6108ce22d0dc": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 2 + }, "6c0349218dd0": { "name": "git.push#1", "args": [ @@ -304,9 +301,10 @@ "status": "pending", "startedAt": 0 }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "9fca4a23f963": { "outcome": { @@ -479,6 +477,11 @@ "startedAt": 0 } }, + "d0ffc98cfa0e": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 3 + }, "d493a7059b00": { "name": "git.push#1", "args": [ @@ -596,7 +599,7 @@ "id": "sc-create-pushes-then-creates.prelude:push-pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "9270aeb7d9c6" }, @@ -608,7 +611,7 @@ "id": "sc-create-pushes-then-creates.normal:create-pending", "observation": { "sender": ["f9869252c305", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -620,7 +623,7 @@ "id": "sc-create-pushes-then-creates.normal:link-pending", "observation": { "sender": ["f9869252c305", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -632,7 +635,7 @@ "id": "sc-create-pushes-then-creates.normal:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -644,7 +647,7 @@ "id": "sc-create-pushes-then-creates.result-absent:create-pending", "observation": { "sender": ["7b027798abe5", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -656,7 +659,7 @@ "id": "sc-create-pushes-then-creates.result-absent:link-pending", "observation": { "sender": ["7b027798abe5", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -668,7 +671,7 @@ "id": "sc-create-pushes-then-creates.result-absent:settled", "observation": { "sender": ["7b027798abe5", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -680,7 +683,7 @@ "id": "sc-create-pushes-then-creates.result-null:create-pending", "observation": { "sender": ["e58ae363032b", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -692,7 +695,7 @@ "id": "sc-create-pushes-then-creates.result-null:link-pending", "observation": { "sender": ["e58ae363032b", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -704,7 +707,7 @@ "id": "sc-create-pushes-then-creates.result-null:settled", "observation": { "sender": ["e58ae363032b", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -716,7 +719,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:create-pending", "observation": { "sender": ["0e00dbc486b4", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -728,7 +731,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:link-pending", "observation": { "sender": ["0e00dbc486b4", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -740,7 +743,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:settled", "observation": { "sender": ["0e00dbc486b4", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -752,7 +755,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:create-pending", "observation": { "sender": ["3718951f62b7", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -764,7 +767,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:link-pending", "observation": { "sender": ["3718951f62b7", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -776,7 +779,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:settled", "observation": { "sender": ["3718951f62b7", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -788,7 +791,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:create-pending", "observation": { "sender": ["a28defbf7f69", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -800,7 +803,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:link-pending", "observation": { "sender": ["a28defbf7f69", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -812,7 +815,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:settled", "observation": { "sender": ["a28defbf7f69", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -824,7 +827,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:create-pending", "observation": { "sender": ["d493a7059b00"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -836,7 +839,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:link-pending", "observation": { "sender": ["d493a7059b00"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -848,7 +851,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:settled", "observation": { "sender": ["d493a7059b00"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -860,7 +863,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:create-pending", "observation": { "sender": ["6c0349218dd0"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -872,7 +875,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:link-pending", "observation": { "sender": ["6c0349218dd0"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -884,7 +887,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:settled", "observation": { "sender": ["6c0349218dd0"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -896,7 +899,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:create-pending", "observation": { "sender": ["ae61c1e930df"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -908,7 +911,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:link-pending", "observation": { "sender": ["ae61c1e930df"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -920,7 +923,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:settled", "observation": { "sender": ["ae61c1e930df"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -932,7 +935,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:create-pending", "observation": { "sender": ["33b2843692a3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -944,7 +947,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:link-pending", "observation": { "sender": ["33b2843692a3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -956,7 +959,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:settled", "observation": { "sender": ["33b2843692a3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -968,7 +971,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:create-pending", "observation": { "sender": ["403ae2f01ce3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -980,7 +983,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:link-pending", "observation": { "sender": ["403ae2f01ce3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, @@ -992,7 +995,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:settled", "observation": { "sender": ["403ae2f01ce3"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "d9fba50c2d0c" }, 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 bc8d08acc61..052949d8947 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "26e666a57805f354602a5b3906a691b10c8d6db66c77acc96c67153279c515a7", "platform": "darwin", @@ -13,14 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "06a94a810e5f": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, - "06e930bb7dd8": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, "1259beb067fd": { "name": "hostedReview.create#1", "args": [ @@ -263,6 +255,11 @@ } } }, + "6108ce22d0dc": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 2 + }, "6b5107782544": { "name": "hostedReview.create#1", "args": [ @@ -490,9 +487,10 @@ "status": "pending", "startedAt": 0 }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "9fca4a23f963": { "outcome": { @@ -651,6 +649,11 @@ } } }, + "d0ffc98cfa0e": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 3 + }, "d14a0dd639ad": { "outcome": { "error": "Failed to create pull request", @@ -801,7 +804,7 @@ "id": "sc-create-pushes-then-creates.prelude:push-pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "9270aeb7d9c6" }, @@ -813,7 +816,7 @@ "id": "sc-create-pushes-then-creates.prelude:create-pending", "observation": { "sender": ["f9869252c305", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -825,7 +828,7 @@ "id": "sc-create-pushes-then-creates.normal:link-pending", "observation": { "sender": ["f9869252c305", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -837,7 +840,7 @@ "id": "sc-create-pushes-then-creates.normal:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -849,7 +852,7 @@ "id": "sc-create-pushes-then-creates.result-absent:link-pending", "observation": { "sender": ["f9869252c305", "1259beb067fd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "de2020b72add" }, @@ -861,7 +864,7 @@ "id": "sc-create-pushes-then-creates.result-absent:settled", "observation": { "sender": ["f9869252c305", "1259beb067fd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "de2020b72add" }, @@ -873,7 +876,7 @@ "id": "sc-create-pushes-then-creates.result-null:link-pending", "observation": { "sender": ["f9869252c305", "23b9cc94ff6c"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "da16a2c8f57e" }, @@ -885,7 +888,7 @@ "id": "sc-create-pushes-then-creates.result-null:settled", "observation": { "sender": ["f9869252c305", "23b9cc94ff6c"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "da16a2c8f57e" }, @@ -897,7 +900,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:link-pending", "observation": { "sender": ["f9869252c305", "f2a1b4ba33a3"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "8a78c581fc05" }, @@ -909,7 +912,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:settled", "observation": { "sender": ["f9869252c305", "f2a1b4ba33a3"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "8a78c581fc05" }, @@ -921,7 +924,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:link-pending", "observation": { "sender": ["f9869252c305", "7e6f30eeafc3"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "6d3c8e6e0154" }, @@ -933,7 +936,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:settled", "observation": { "sender": ["f9869252c305", "7e6f30eeafc3"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "6d3c8e6e0154" }, @@ -945,7 +948,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:link-pending", "observation": { "sender": ["f9869252c305", "859f9a1daf06"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "3d869a96636a" }, @@ -957,7 +960,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:settled", "observation": { "sender": ["f9869252c305", "859f9a1daf06"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "3d869a96636a" }, @@ -969,7 +972,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:link-pending", "observation": { "sender": ["f9869252c305", "c9719bcd483a"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "1b2778bf67a2" }, @@ -981,7 +984,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:settled", "observation": { "sender": ["f9869252c305", "c9719bcd483a"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "1b2778bf67a2" }, @@ -993,7 +996,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:link-pending", "observation": { "sender": ["f9869252c305", "2f9159f7046c"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "e12183bfd2c3" }, @@ -1005,7 +1008,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:settled", "observation": { "sender": ["f9869252c305", "2f9159f7046c"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "e12183bfd2c3" }, @@ -1017,7 +1020,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:link-pending", "observation": { "sender": ["f9869252c305", "5d2f139da2de"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "fa93ca01f266" }, @@ -1029,7 +1032,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:settled", "observation": { "sender": ["f9869252c305", "5d2f139da2de"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "fa93ca01f266" }, @@ -1041,7 +1044,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:link-pending", "observation": { "sender": ["f9869252c305", "6b5107782544"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "a197c20578aa" }, @@ -1053,7 +1056,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:settled", "observation": { "sender": ["f9869252c305", "6b5107782544"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "a197c20578aa" }, @@ -1065,7 +1068,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:link-pending", "observation": { "sender": ["f9869252c305", "401c5b683797"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "fb4429083480" }, @@ -1077,7 +1080,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:settled", "observation": { "sender": ["f9869252c305", "401c5b683797"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "fb4429083480" }, 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 84448464c9d..664c7ea0121 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "08c25b6cb5bc12a7f67e858f229d15cf66b98b2ad4601b11f18c4c03f4a59669", "platform": "darwin", @@ -49,14 +49,6 @@ } } }, - "06a94a810e5f": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, - "06e930bb7dd8": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, "1f4d49e300b6": { "status": "fulfilled", "startedAt": 0, @@ -240,6 +232,11 @@ } } }, + "6108ce22d0dc": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 2 + }, "7037e9e29078": { "name": "hostedReview.create#1", "args": [ @@ -406,9 +403,10 @@ } } }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "9fca4a23f963": { "outcome": { @@ -560,6 +558,11 @@ "url": "https://review.test/5" } }, + "d0ffc98cfa0e": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 3 + }, "d298ce165342": { "outcome": { "linkError": "outer refused", @@ -696,7 +699,7 @@ "id": "sc-create-pushes-then-creates.prelude:push-pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "9270aeb7d9c6" }, @@ -708,7 +711,7 @@ "id": "sc-create-pushes-then-creates.prelude:create-pending", "observation": { "sender": ["f9869252c305", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -720,7 +723,7 @@ "id": "sc-create-pushes-then-creates.prelude:link-pending", "observation": { "sender": ["f9869252c305", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -732,7 +735,7 @@ "id": "sc-create-pushes-then-creates.normal:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -744,7 +747,7 @@ "id": "sc-create-pushes-then-creates.result-absent:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "59bc10a51ac0"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -756,7 +759,7 @@ "id": "sc-create-pushes-then-creates.result-null:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "41e416df769f"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -768,7 +771,7 @@ "id": "sc-create-pushes-then-creates.inner-ok-missing:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "e107a27fa4c8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -780,7 +783,7 @@ "id": "sc-create-pushes-then-creates.inner-false-string-error:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "94c5e366b94b"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -792,7 +795,7 @@ "id": "sc-create-pushes-then-creates.inner-false-object-error:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "8b3187a47892"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, @@ -804,7 +807,7 @@ "id": "sc-create-pushes-then-creates.outer-refused:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "574b5d61268a"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "4476976cf9df" }, @@ -816,7 +819,7 @@ "id": "sc-create-pushes-then-creates.outer-refused-no-message:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "03696d515352"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "3ff86ed23cf9" }, @@ -828,7 +831,7 @@ "id": "sc-create-pushes-then-creates.method-not-found:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "302435bf7648"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "1f4d49e300b6" }, @@ -840,7 +843,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "e6692ac4c9c1"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "84157fb6091a" }, @@ -852,7 +855,7 @@ "id": "sc-create-pushes-then-creates.transport-rejection-no-message:settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "b6f80e2d9da3"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "e9febbcef43b" }, 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 e026016e2f7..2c64b2fa368 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ff9d1bfd6337607f3d3e8162692b589ecea4a32ae01b5ebb3c602f8f0a55642c", "platform": "darwin", @@ -138,10 +138,6 @@ "ok": false } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -177,9 +173,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "1b2778bf67a2": { "status": "fulfilled", @@ -256,10 +258,6 @@ "ok": false } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -421,10 +419,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -480,6 +474,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -520,6 +519,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -552,14 +556,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "614d26fc14b1": { "name": "git.bulkStage#1", "args": [ @@ -659,6 +655,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -701,10 +702,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -738,9 +735,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8b784bb9dff5": { "status": "fulfilled", @@ -888,6 +886,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1110,18 +1118,20 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1188,9 +1198,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", @@ -1238,10 +1254,6 @@ "ok": false } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "eb4f060af2b9": { "name": "git.bulkStage#1", "args": [ @@ -1311,7 +1323,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1323,7 +1335,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1335,7 +1347,7 @@ "id": "sc-create-intent-stage-commit-push-create.normal:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1354,11 +1366,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1380,13 +1392,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1409,14 +1421,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1442,17 +1454,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1485,18 +1497,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1515,7 +1527,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:generate-message-pending", "observation": { "sender": ["302b94359544", "c7abd39252d2", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1534,11 +1546,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1560,13 +1572,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1589,14 +1601,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1622,17 +1634,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1665,18 +1677,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1695,7 +1707,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:generate-message-pending", "observation": { "sender": ["302b94359544", "02652fe244f8", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1714,11 +1726,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1740,13 +1752,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1769,14 +1781,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1802,17 +1814,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1845,18 +1857,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1875,7 +1887,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:generate-message-pending", "observation": { "sender": ["302b94359544", "8c497b3b4121", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1894,11 +1906,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1920,13 +1932,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1949,14 +1961,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1982,17 +1994,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2025,18 +2037,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2055,7 +2067,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:generate-message-pending", "observation": { "sender": ["302b94359544", "2ebbc5c27f40", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2074,11 +2086,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -2100,13 +2112,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2129,14 +2141,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -2162,17 +2174,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2205,18 +2217,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2235,7 +2247,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:generate-message-pending", "observation": { "sender": ["302b94359544", "eb4f060af2b9", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2254,11 +2266,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -2280,13 +2292,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2309,14 +2321,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -2342,17 +2354,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2385,18 +2397,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2415,7 +2427,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:generate-message-pending", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2427,7 +2439,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:commit-pending", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2439,7 +2451,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:prefill-pending", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2451,7 +2463,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:push-pending", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2463,7 +2475,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:create-pending", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2475,7 +2487,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:settled", "observation": { "sender": ["302b94359544", "2ca613cdd085"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "1b2778bf67a2" }, @@ -2487,7 +2499,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:generate-message-pending", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2499,7 +2511,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:commit-pending", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2511,7 +2523,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2523,7 +2535,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:push-pending", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2535,7 +2547,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:create-pending", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2547,7 +2559,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:settled", "observation": { "sender": ["302b94359544", "906b5573d5d5"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "0a06528c313d" }, @@ -2559,7 +2571,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:generate-message-pending", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2571,7 +2583,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:commit-pending", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2583,7 +2595,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:prefill-pending", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2595,7 +2607,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:push-pending", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2607,7 +2619,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:create-pending", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2619,7 +2631,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:settled", "observation": { "sender": ["302b94359544", "68f9e0c8d8d4"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fa93ca01f266" }, @@ -2631,7 +2643,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:generate-message-pending", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2643,7 +2655,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:commit-pending", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2655,7 +2667,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:prefill-pending", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2667,7 +2679,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:push-pending", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2679,7 +2691,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:create-pending", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2691,7 +2703,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:settled", "observation": { "sender": ["302b94359544", "614d26fc14b1"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "a197c20578aa" }, @@ -2703,7 +2715,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:generate-message-pending", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, @@ -2715,7 +2727,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:commit-pending", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, @@ -2727,7 +2739,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, @@ -2739,7 +2751,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:push-pending", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, @@ -2751,7 +2763,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:create-pending", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, @@ -2763,7 +2775,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:settled", "observation": { "sender": ["302b94359544", "6a093ad5f233"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "fb4429083480" }, 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 8d799aedbd1..66420cc8988 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "efeb9b248aeb98fac71c043d50afe0036cf804d3c11edfccd4e050fe8f3d8f9b", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -168,9 +164,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "1d83527e29e1": { "status": "fulfilled", @@ -342,10 +344,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -544,10 +542,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -632,6 +626,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -704,6 +703,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -736,14 +740,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6769762c413a": { "name": "git.commit#1", "args": [ @@ -866,6 +862,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -1067,10 +1068,6 @@ } } }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -1159,9 +1156,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "83cdbcf01e38": { "outcome": { @@ -1378,6 +1376,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1674,10 +1682,6 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "ba731ea609ad": { "name": "git.commit#1", "args": [ @@ -1710,14 +1714,20 @@ } } }, + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 + }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1753,10 +1763,6 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "d49f246ff85c": { "status": "fulfilled", "startedAt": 0, @@ -1812,6 +1818,16 @@ } } }, + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1921,10 +1937,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "f16335c11521": { "outcome": { "commitMessage": "feat: recorded", @@ -1985,7 +1997,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1997,7 +2009,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2009,7 +2021,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2028,11 +2040,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -2054,13 +2066,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2083,14 +2095,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -2116,17 +2128,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2159,18 +2171,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2196,11 +2208,11 @@ "8db8d9c4f48b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2220,11 +2232,11 @@ "8db8d9c4f48b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2244,11 +2256,11 @@ "8db8d9c4f48b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2268,11 +2280,11 @@ "8db8d9c4f48b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2292,11 +2304,11 @@ "0e4e820a7323" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2316,11 +2328,11 @@ "0e4e820a7323" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2340,11 +2352,11 @@ "0e4e820a7323" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2364,11 +2376,11 @@ "0e4e820a7323" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2388,11 +2400,11 @@ "e3b66d749186" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "85064683fc9c" @@ -2412,11 +2424,11 @@ "e3b66d749186" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "85064683fc9c" @@ -2436,11 +2448,11 @@ "e3b66d749186" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "85064683fc9c" @@ -2460,11 +2472,11 @@ "e3b66d749186" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "85064683fc9c" @@ -2484,11 +2496,11 @@ "6769762c413a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "d49f246ff85c" @@ -2508,11 +2520,11 @@ "6769762c413a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "d49f246ff85c" @@ -2532,11 +2544,11 @@ "6769762c413a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "d49f246ff85c" @@ -2556,11 +2568,11 @@ "6769762c413a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "d49f246ff85c" @@ -2580,11 +2592,11 @@ "ab18fd2d5419" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2604,11 +2616,11 @@ "ab18fd2d5419" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2628,11 +2640,11 @@ "ab18fd2d5419" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2652,11 +2664,11 @@ "ab18fd2d5419" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2676,11 +2688,11 @@ "43c38f02e8d3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "7c91e223d962" @@ -2700,11 +2712,11 @@ "43c38f02e8d3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "7c91e223d962" @@ -2724,11 +2736,11 @@ "43c38f02e8d3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "7c91e223d962" @@ -2748,11 +2760,11 @@ "43c38f02e8d3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "7c91e223d962" @@ -2772,11 +2784,11 @@ "e5c0887630e6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2796,11 +2808,11 @@ "e5c0887630e6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2820,11 +2832,11 @@ "e5c0887630e6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2844,11 +2856,11 @@ "e5c0887630e6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "2e35579e2fc7" @@ -2868,11 +2880,11 @@ "6c7a8beeb4c2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1dcf573f4df7" @@ -2892,11 +2904,11 @@ "6c7a8beeb4c2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1dcf573f4df7" @@ -2916,11 +2928,11 @@ "6c7a8beeb4c2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1dcf573f4df7" @@ -2940,11 +2952,11 @@ "6c7a8beeb4c2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1dcf573f4df7" @@ -2964,11 +2976,11 @@ "4edcda8d7196" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "71d1010eb04f" @@ -2988,11 +3000,11 @@ "4edcda8d7196" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "71d1010eb04f" @@ -3012,11 +3024,11 @@ "4edcda8d7196" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "71d1010eb04f" @@ -3036,11 +3048,11 @@ "4edcda8d7196" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "71d1010eb04f" @@ -3060,11 +3072,11 @@ "ba731ea609ad" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1d83527e29e1" @@ -3084,11 +3096,11 @@ "ba731ea609ad" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1d83527e29e1" @@ -3108,11 +3120,11 @@ "ba731ea609ad" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1d83527e29e1" @@ -3132,11 +3144,11 @@ "ba731ea609ad" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "1d83527e29e1" 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 2fe77a86b2c..ec6a194e7de 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7b0d9ddcb8df83fc4e465aa6b0dcf05aa0d8f266cd4bb8651969cb8321bcf549", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -134,9 +130,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -249,10 +251,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -375,10 +373,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3213e432016c": { "name": "git.generateCommitMessage#1", "args": [ @@ -492,6 +486,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -566,6 +565,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -598,13 +602,10 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", @@ -648,10 +649,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -685,9 +682,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "83565082fc86": { "name": "git.generateCommitMessage#1", @@ -833,6 +831,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1104,9 +1112,10 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", @@ -1147,6 +1156,11 @@ } } }, + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 + }, "c39c20fa07f2": { "name": "git.generateCommitMessage#1", "args": [ @@ -1178,10 +1192,6 @@ } } }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "c51356d4650a": { "name": "git.bulkStage#1", "args": [ @@ -1262,9 +1272,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", @@ -1306,10 +1322,6 @@ "startedAt": 0 } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "fcf8c7168aa5": { "name": "git.generateCommitMessage#1", "args": [ @@ -1351,7 +1363,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1363,7 +1375,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1375,7 +1387,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1394,11 +1406,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1420,13 +1432,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1449,14 +1461,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1482,17 +1494,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1525,18 +1537,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1555,7 +1567,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3c03a92720a9"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1567,7 +1579,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3c03a92720a9"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1579,7 +1591,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3c03a92720a9"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1591,7 +1603,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3c03a92720a9"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1603,7 +1615,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3c03a92720a9"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1615,7 +1627,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "fcf8c7168aa5"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1627,7 +1639,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "fcf8c7168aa5"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1639,7 +1651,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "fcf8c7168aa5"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1651,7 +1663,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "fcf8c7168aa5"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1663,7 +1675,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "fcf8c7168aa5"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1675,7 +1687,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "8704e71c3b98"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1687,7 +1699,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "8704e71c3b98"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1699,7 +1711,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "8704e71c3b98"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1711,7 +1723,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "8704e71c3b98"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1723,7 +1735,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "8704e71c3b98"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1735,7 +1747,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "83565082fc86"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1747,7 +1759,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "83565082fc86"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1759,7 +1771,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "83565082fc86"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1771,7 +1783,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "83565082fc86"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1783,7 +1795,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "83565082fc86"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1795,7 +1807,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c948c78b7129"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1807,7 +1819,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c948c78b7129"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1819,7 +1831,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c948c78b7129"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1831,7 +1843,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c948c78b7129"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1843,7 +1855,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c948c78b7129"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1855,7 +1867,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "be35b33cb39b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1867,7 +1879,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "be35b33cb39b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1879,7 +1891,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "be35b33cb39b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1891,7 +1903,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "be35b33cb39b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1903,7 +1915,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "be35b33cb39b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1915,7 +1927,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "51a0329cc41b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1927,7 +1939,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "51a0329cc41b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1939,7 +1951,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "51a0329cc41b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1951,7 +1963,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "51a0329cc41b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1963,7 +1975,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "51a0329cc41b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1975,7 +1987,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3213e432016c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1987,7 +1999,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3213e432016c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -1999,7 +2011,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3213e432016c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -2011,7 +2023,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3213e432016c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -2023,7 +2035,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "3213e432016c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a93f3dc8c4a1" }, @@ -2035,7 +2047,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "31141af16c2d"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a947768bc0ed" }, @@ -2047,7 +2059,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "31141af16c2d"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a947768bc0ed" }, @@ -2059,7 +2071,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "31141af16c2d"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a947768bc0ed" }, @@ -2071,7 +2083,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "31141af16c2d"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a947768bc0ed" }, @@ -2083,7 +2095,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "31141af16c2d"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "a947768bc0ed" }, @@ -2095,7 +2107,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c39c20fa07f2"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "c7584e82c72f" }, @@ -2107,7 +2119,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c39c20fa07f2"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "c7584e82c72f" }, @@ -2119,7 +2131,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c39c20fa07f2"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "c7584e82c72f" }, @@ -2131,7 +2143,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c39c20fa07f2"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "c7584e82c72f" }, @@ -2143,7 +2155,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "c39c20fa07f2"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "c7584e82c72f" }, 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 c5581d816e9..0214089c08c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "72c1f08739db1c0dfcd48adffaca582a3596116c1c377f95f7dab8b08b7e6cdc", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -164,9 +160,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -255,10 +257,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -380,10 +378,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "33b2843692a3": { "name": "git.push#1", "args": [ @@ -555,6 +549,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -595,6 +594,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -627,14 +631,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6bcd8388e50a": { "name": "git.push#1", "args": [ @@ -695,6 +691,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -764,10 +765,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -858,9 +855,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "847bd42a1815": { "name": "git.push#1", @@ -1003,6 +1001,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1274,18 +1282,20 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1357,9 +1367,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "de35bdb3d3ce": { "name": "git.push#1", @@ -1469,10 +1485,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "ebe3b70aca42": { "status": "fulfilled", "startedAt": 0, @@ -1511,7 +1523,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1523,7 +1535,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1535,7 +1547,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1554,11 +1566,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1580,13 +1592,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1609,14 +1621,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1642,17 +1654,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1685,18 +1697,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1728,17 +1740,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1771,18 +1783,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1814,17 +1826,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1857,18 +1869,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1900,17 +1912,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1943,18 +1955,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1986,17 +1998,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2029,18 +2041,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2072,17 +2084,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2115,18 +2127,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2155,14 +2167,14 @@ "de35bdb3d3ce" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "ebe3b70aca42" @@ -2185,14 +2197,14 @@ "de35bdb3d3ce" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "ebe3b70aca42" @@ -2215,14 +2227,14 @@ "e23100c7317f" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "7b7ef5bfe32e" @@ -2245,14 +2257,14 @@ "e23100c7317f" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "7b7ef5bfe32e" @@ -2275,14 +2287,14 @@ "847bd42a1815" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "b74fa1c5741d" @@ -2305,14 +2317,14 @@ "847bd42a1815" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "b74fa1c5741d" @@ -2335,14 +2347,14 @@ "33b2843692a3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "89b0fc55092d" @@ -2365,14 +2377,14 @@ "33b2843692a3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "89b0fc55092d" @@ -2395,14 +2407,14 @@ "403ae2f01ce3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "314223d33794" @@ -2425,14 +2437,14 @@ "403ae2f01ce3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "314223d33794" 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 905a09196d6..90d2b757f65 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "1f002f900c1a3c92e8f7c72261579ee5015ec1529c003a1b32bcf3eaf98b672d", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0179846b4707": { - "name": "git.status#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "0278e0f0d6cf": { "name": "git.status#1", "args": [ @@ -99,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -203,10 +195,6 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "18d8663eabd9": { "name": "git.status#1", "args": [ @@ -241,6 +229,16 @@ } } }, + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 + }, "1b8ac3cc961b": { "status": "fulfilled", "startedAt": 0, @@ -343,10 +341,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -438,14 +432,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, - "333050fbf89e": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -563,6 +549,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -608,6 +599,11 @@ "value": "committing", "sent": 2 }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -640,13 +636,10 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", @@ -690,10 +683,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -727,13 +716,10 @@ } } }, - "803cca0ce2b1": { + "81ecfaf1aaed": { "name": "git.commit#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "85dbdff1cd63": { "name": "git.status#1", @@ -845,6 +831,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1062,18 +1058,25 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 + }, + "c3f7dfc9b02f": { + "name": "git.status#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1119,9 +1122,10 @@ "isRpcDeliveryUnknown": true } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 }, "d8004526bf7c": { "name": "git.generateCommitMessage#1", @@ -1157,6 +1161,11 @@ } } }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "dd13d6753285": { "name": "git.status#1", "args": [ @@ -1300,6 +1309,11 @@ } } }, + "df8b68834305": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 3 + }, "e10b4a9e84d2": { "name": "git.status#1", "args": [ @@ -1370,9 +1384,10 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "ea67d2fd5ee3": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 } }, "recording": { @@ -1382,7 +1397,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1394,7 +1409,7 @@ "id": "sc-create-intent-stage-commit-push-create.normal:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1406,7 +1421,7 @@ "id": "sc-create-intent-stage-commit-push-create.normal:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1425,11 +1440,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1451,13 +1466,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1480,14 +1495,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1513,17 +1528,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1556,18 +1571,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1586,7 +1601,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:stage-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1598,7 +1613,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:generate-message-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1610,7 +1625,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:commit-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1622,7 +1637,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:prefill-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1634,7 +1649,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:push-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1646,7 +1661,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:create-pending", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1658,7 +1673,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:settled", "observation": { "sender": ["ded34c45400d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1670,7 +1685,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:stage-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1682,7 +1697,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:generate-message-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1694,7 +1709,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:commit-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1706,7 +1721,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:prefill-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1718,7 +1733,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:push-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1730,7 +1745,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:create-pending", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1742,7 +1757,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:settled", "observation": { "sender": ["de6ba431eb6a"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1754,7 +1769,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:stage-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1766,7 +1781,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:generate-message-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1778,7 +1793,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:commit-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1790,7 +1805,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:prefill-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1802,7 +1817,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:push-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1814,7 +1829,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:create-pending", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1826,7 +1841,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:settled", "observation": { "sender": ["85dbdff1cd63"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1838,7 +1853,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:stage-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1850,7 +1865,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:generate-message-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1862,7 +1877,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:commit-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1874,7 +1889,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:prefill-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1886,7 +1901,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:push-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1898,7 +1913,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:create-pending", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1910,7 +1925,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:settled", "observation": { "sender": ["14d2bbeaba4d"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1922,7 +1937,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:stage-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1934,7 +1949,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:generate-message-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1946,7 +1961,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:commit-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1958,7 +1973,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:prefill-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1970,7 +1985,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:push-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1982,7 +1997,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:create-pending", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -1994,7 +2009,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:settled", "observation": { "sender": ["e10b4a9e84d2"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "1b8ac3cc961b" }, @@ -2006,7 +2021,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:stage-pending", "observation": { "sender": ["18d8663eabd9", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2018,7 +2033,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:generate-message-pending", "observation": { "sender": ["18d8663eabd9", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2030,7 +2045,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:commit-pending", "observation": { "sender": ["18d8663eabd9", "d8004526bf7c", "8ca8f03c0069"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2042,7 +2057,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:prefill-pending", "observation": { "sender": ["18d8663eabd9", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2054,7 +2069,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:push-pending", "observation": { "sender": ["18d8663eabd9", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2066,7 +2081,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:create-pending", "observation": { "sender": ["18d8663eabd9", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2078,7 +2093,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:settled", "observation": { "sender": ["18d8663eabd9", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2090,7 +2105,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:stage-pending", "observation": { "sender": ["41689f68ece0", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2102,7 +2117,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:generate-message-pending", "observation": { "sender": ["41689f68ece0", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2114,7 +2129,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:commit-pending", "observation": { "sender": ["41689f68ece0", "d8004526bf7c", "8ca8f03c0069"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2126,7 +2141,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:prefill-pending", "observation": { "sender": ["41689f68ece0", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2138,7 +2153,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:push-pending", "observation": { "sender": ["41689f68ece0", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2150,7 +2165,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:create-pending", "observation": { "sender": ["41689f68ece0", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2162,7 +2177,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:settled", "observation": { "sender": ["41689f68ece0", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2174,7 +2189,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:stage-pending", "observation": { "sender": ["483a7fd348d4", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2186,7 +2201,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:generate-message-pending", "observation": { "sender": ["483a7fd348d4", "125fbea5f50a"], - "payloads": ["5e330d49c396", "333050fbf89e"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2198,7 +2213,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:commit-pending", "observation": { "sender": ["483a7fd348d4", "d8004526bf7c", "8ca8f03c0069"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2210,7 +2225,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:prefill-pending", "observation": { "sender": ["483a7fd348d4", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2222,7 +2237,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:push-pending", "observation": { "sender": ["483a7fd348d4", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2234,7 +2249,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:create-pending", "observation": { "sender": ["483a7fd348d4", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2246,7 +2261,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:settled", "observation": { "sender": ["483a7fd348d4", "d8004526bf7c", "e133a9bbad2b", "2055f5236a47"], - "payloads": ["5e330d49c396", "333050fbf89e", "803cca0ce2b1", "0179846b4707"], + "payloads": ["96e616bda11d", "ea67d2fd5ee3", "df8b68834305", "c3f7dfc9b02f"], "settlements": { "run": "9270aeb7d9c6" }, @@ -2258,7 +2273,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:stage-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2270,7 +2285,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:generate-message-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2282,7 +2297,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:commit-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2294,7 +2309,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:prefill-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2306,7 +2321,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:push-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2318,7 +2333,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:create-pending", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2330,7 +2345,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:settled", "observation": { "sender": ["0bd335404e92"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "a947768bc0ed" }, @@ -2342,7 +2357,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:stage-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2354,7 +2369,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:generate-message-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2366,7 +2381,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:commit-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2378,7 +2393,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:prefill-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2390,7 +2405,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:push-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2402,7 +2417,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:create-pending", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, @@ -2414,7 +2429,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:settled", "observation": { "sender": ["dd13d6753285"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "c7584e82c72f" }, 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 88c04ca5c4e..0bab2c91a6b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "3a6487a07457e0e5aa6fc3fccfa43687acfb06d94334e621081728de937e4e8d", "platform": "darwin", @@ -200,10 +200,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -270,9 +266,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "1f58e79984d0": { "name": "git.status#2", @@ -556,10 +558,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -651,10 +649,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -704,6 +698,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -744,6 +743,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -776,14 +780,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6491de11ec00": { "status": "fulfilled", "startedAt": 0, @@ -797,6 +793,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -947,10 +948,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "76aa14fccf64": { "name": "git.status#2", "args": [ @@ -1020,9 +1017,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8b784bb9dff5": { "status": "fulfilled", @@ -1135,6 +1133,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1459,9 +1467,10 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", @@ -1511,9 +1520,10 @@ } } }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c459dd805bb5": { "outcome": { @@ -1666,9 +1676,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", @@ -1709,10 +1725,6 @@ "status": "pending", "startedAt": 0 } - }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" } }, "recording": { @@ -1722,7 +1734,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1734,7 +1746,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1746,7 +1758,7 @@ "id": "sc-create-intent-stage-commit-push-create.normal:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1765,11 +1777,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1791,13 +1803,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1820,14 +1832,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1853,17 +1865,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1896,18 +1908,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1926,7 +1938,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1938,7 +1950,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1950,7 +1962,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1962,7 +1974,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1974,7 +1986,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1986,7 +1998,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-absent:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "b57c26002c53"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -1998,7 +2010,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2010,7 +2022,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2022,7 +2034,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2034,7 +2046,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2046,7 +2058,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2058,7 +2070,7 @@ "id": "sc-create-intent-stage-commit-push-create.result-null:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "c16d10b6185c"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2070,7 +2082,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2082,7 +2094,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2094,7 +2106,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2106,7 +2118,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2118,7 +2130,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2130,7 +2142,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-ok-missing:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "c8542dd26dfe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2142,7 +2154,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2154,7 +2166,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2166,7 +2178,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2178,7 +2190,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2190,7 +2202,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2202,7 +2214,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-string-error:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "6ed121059b8b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2214,7 +2226,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2226,7 +2238,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2238,7 +2250,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2250,7 +2262,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2262,7 +2274,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2274,7 +2286,7 @@ "id": "sc-create-intent-stage-commit-push-create.inner-false-object-error:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "76aa14fccf64"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "6491de11ec00" }, @@ -2286,7 +2298,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2298,7 +2310,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2310,7 +2322,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2322,7 +2334,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2334,7 +2346,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2346,7 +2358,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "21d39cc79aae"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "26d585682271" }, @@ -2358,7 +2370,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2370,7 +2382,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2382,7 +2394,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2394,7 +2406,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2406,7 +2418,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2418,7 +2430,7 @@ "id": "sc-create-intent-stage-commit-push-create.outer-refused-no-message:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "8f82108df54b"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "267a30accd66" }, @@ -2430,7 +2442,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2442,7 +2454,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2454,7 +2466,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2466,7 +2478,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2478,7 +2490,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2490,7 +2502,7 @@ "id": "sc-create-intent-stage-commit-push-create.method-not-found:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "1f58e79984d0"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "b61524b47452" }, @@ -2502,7 +2514,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2514,7 +2526,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2526,7 +2538,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2538,7 +2550,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2550,7 +2562,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2562,7 +2574,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "006d7b20ed48"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "a947768bc0ed" }, @@ -2574,7 +2586,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, @@ -2586,7 +2598,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:commit-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, @@ -2598,7 +2610,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:prefill-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, @@ -2610,7 +2622,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:push-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, @@ -2622,7 +2634,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:create-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, @@ -2634,7 +2646,7 @@ "id": "sc-create-intent-stage-commit-push-create.transport-rejection-no-message:settled", "observation": { "sender": ["302b94359544", "c51356d4650a", "0ef828d1fdbe"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5"], "settlements": { "run": "c7584e82c72f" }, 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 cb8b8026191..99783ab96e3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7355c45a707fa8a31f0999c4805a5b1dace4c65b727e711231f784b2f92c05ff", "platform": "darwin", @@ -105,10 +105,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -198,9 +194,15 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -262,10 +264,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -390,10 +388,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -531,6 +525,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -658,6 +657,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -690,13 +694,10 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 }, "6cd42601ee16": { "name": "git.status#3", @@ -771,10 +772,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -808,9 +805,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "898de61efa3c": { "status": "fulfilled", @@ -986,6 +984,16 @@ } } }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1359,18 +1367,20 @@ } } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1416,10 +1426,6 @@ "isRpcDeliveryUnknown": true } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "cdd9bcd571e1": { "name": "git.status#3", "args": [ @@ -1451,6 +1457,16 @@ } } }, + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1491,10 +1507,6 @@ "startedAt": 0 } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "f4cca647443e": { "outcome": { "committed": true, @@ -1584,7 +1596,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1596,7 +1608,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1608,7 +1620,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1627,11 +1639,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1653,13 +1665,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1682,14 +1694,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1715,17 +1727,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1758,18 +1770,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1796,12 +1808,12 @@ "f5ed21ae1fc6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1822,12 +1834,12 @@ "f5ed21ae1fc6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1848,12 +1860,12 @@ "f5ed21ae1fc6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1874,12 +1886,12 @@ "f5ed21ae1fc6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1900,12 +1912,12 @@ "2fe96a8d0b5a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1926,12 +1938,12 @@ "2fe96a8d0b5a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1952,12 +1964,12 @@ "2fe96a8d0b5a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -1978,12 +1990,12 @@ "2fe96a8d0b5a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2004,12 +2016,12 @@ "8e83fe9850ba" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2030,12 +2042,12 @@ "8e83fe9850ba" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2056,12 +2068,12 @@ "8e83fe9850ba" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2082,12 +2094,12 @@ "8e83fe9850ba" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2108,12 +2120,12 @@ "b7febe684fb8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2134,12 +2146,12 @@ "b7febe684fb8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2160,12 +2172,12 @@ "b7febe684fb8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2186,12 +2198,12 @@ "b7febe684fb8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2212,12 +2224,12 @@ "4e53953c9733" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2238,12 +2250,12 @@ "4e53953c9733" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2264,12 +2276,12 @@ "4e53953c9733" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2290,12 +2302,12 @@ "4e53953c9733" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "898de61efa3c" @@ -2316,12 +2328,12 @@ "9ca63099691d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "1325f8e894d3" @@ -2342,12 +2354,12 @@ "9ca63099691d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "1325f8e894d3" @@ -2368,12 +2380,12 @@ "9ca63099691d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "1325f8e894d3" @@ -2394,12 +2406,12 @@ "9ca63099691d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "1325f8e894d3" @@ -2420,12 +2432,12 @@ "410fa853262b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "afd6b6f3573f" @@ -2446,12 +2458,12 @@ "410fa853262b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "afd6b6f3573f" @@ -2472,12 +2484,12 @@ "410fa853262b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "afd6b6f3573f" @@ -2498,12 +2510,12 @@ "410fa853262b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "afd6b6f3573f" @@ -2524,12 +2536,12 @@ "a394e9fcd326" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "45e49471a27c" @@ -2550,12 +2562,12 @@ "a394e9fcd326" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "45e49471a27c" @@ -2576,12 +2588,12 @@ "a394e9fcd326" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "45e49471a27c" @@ -2602,12 +2614,12 @@ "a394e9fcd326" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "45e49471a27c" @@ -2628,12 +2640,12 @@ "6cd42601ee16" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "a947768bc0ed" @@ -2654,12 +2666,12 @@ "6cd42601ee16" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "a947768bc0ed" @@ -2680,12 +2692,12 @@ "6cd42601ee16" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "a947768bc0ed" @@ -2706,12 +2718,12 @@ "6cd42601ee16" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "a947768bc0ed" @@ -2732,12 +2744,12 @@ "cdd9bcd571e1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "c7584e82c72f" @@ -2758,12 +2770,12 @@ "cdd9bcd571e1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "c7584e82c72f" @@ -2784,12 +2796,12 @@ "cdd9bcd571e1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "c7584e82c72f" @@ -2810,12 +2822,12 @@ "cdd9bcd571e1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a" ], "settlements": { "run": "c7584e82c72f" 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 e5a6909b521..ea9adec43ac 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "45cda6757b76399d282d4b07992dab21bbb8236faadedba5e92eab8818e886bf", "platform": "darwin", @@ -105,10 +105,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -174,9 +170,15 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -265,10 +267,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -394,10 +392,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "34c71c2720e7": { "name": "git.status#4", "args": [ @@ -478,6 +472,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -518,6 +517,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -550,14 +554,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "5f116bb49da3": { "name": "git.status#4", "args": [ @@ -650,6 +646,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -722,10 +723,6 @@ } } }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -792,9 +789,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "898de61efa3c": { "status": "fulfilled", @@ -886,6 +884,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1169,18 +1177,20 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1226,10 +1236,6 @@ "isRpcDeliveryUnknown": true } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "cdf1fca5783b": { "outcome": { "committed": true, @@ -1257,6 +1263,11 @@ } } }, + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, "daf170162bd9": { "name": "git.status#4", "args": [ @@ -1324,6 +1335,11 @@ } } }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1398,10 +1414,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "ebe3b70aca42": { "status": "fulfilled", "startedAt": 0, @@ -1440,7 +1452,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1452,7 +1464,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1464,7 +1476,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1483,11 +1495,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1509,13 +1521,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1538,14 +1550,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1571,17 +1583,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1614,18 +1626,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1655,15 +1667,15 @@ "15e52cb9d2d9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1687,15 +1699,15 @@ "15e52cb9d2d9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1719,15 +1731,15 @@ "daf170162bd9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1751,15 +1763,15 @@ "daf170162bd9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1783,15 +1795,15 @@ "801aa87beaf2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1815,15 +1827,15 @@ "801aa87beaf2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1847,15 +1859,15 @@ "db1d3db375bc" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1879,15 +1891,15 @@ "db1d3db375bc" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1911,15 +1923,15 @@ "a47203a0c57a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1943,15 +1955,15 @@ "a47203a0c57a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "898de61efa3c" @@ -1975,15 +1987,15 @@ "5f116bb49da3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "ebe3b70aca42" @@ -2007,15 +2019,15 @@ "5f116bb49da3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "ebe3b70aca42" @@ -2039,15 +2051,15 @@ "e914f3a40828" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "73bcd662ebbc" @@ -2071,15 +2083,15 @@ "e914f3a40828" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "73bcd662ebbc" @@ -2103,15 +2115,15 @@ "2cb0b04627aa" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "b74fa1c5741d" @@ -2135,15 +2147,15 @@ "2cb0b04627aa" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "b74fa1c5741d" @@ -2167,15 +2179,15 @@ "34c71c2720e7" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "a947768bc0ed" @@ -2199,15 +2211,15 @@ "34c71c2720e7" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "a947768bc0ed" @@ -2231,15 +2243,15 @@ "62dc892f13c5" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "c7584e82c72f" @@ -2263,15 +2275,15 @@ "62dc892f13c5" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af" ], "settlements": { "run": "c7584e82c72f" 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 ff6d2dceb5f..b05fb442173 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "0ca08d5e70e1780a6ee5c919491dcddb062a22623f803e9960a329825f274cbe", "platform": "darwin", @@ -149,10 +149,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -228,10 +224,6 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "183dab44d2de": { "outcome": { "committed": true, @@ -259,6 +251,16 @@ } } }, + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 + }, "21c1956cb4f7": { "name": "git.bulkStage#1", "args": [ @@ -319,10 +321,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -414,10 +412,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "335c63cb1957": { "name": "hostedReview.create#1", "args": [ @@ -504,6 +498,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4a4639fa3798": { "status": "fulfilled", "startedAt": 0, @@ -617,6 +616,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -649,14 +653,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "658bb4ca2398": { "status": "fulfilled", "startedAt": 0, @@ -728,6 +724,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6d9570b41a8b": { "outcome": { "committed": true, @@ -824,10 +825,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -899,9 +896,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8ab675a90044": { "name": "hostedReview.create#1", @@ -1091,6 +1089,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1426,9 +1434,10 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", @@ -1465,9 +1474,10 @@ } } }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1562,10 +1572,6 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "d59e8c9e4a5b": { "name": "hostedReview.create#1", "args": [ @@ -1609,6 +1615,11 @@ } } }, + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, "d6eed3ce26c0": { "outcome": { "committed": true, @@ -1636,6 +1647,11 @@ } } }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "dccb31fddadc": { "status": "fulfilled", "startedAt": 0, @@ -1798,10 +1814,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "f2d31538d6f8": { "status": "fulfilled", "startedAt": 0, @@ -1870,7 +1882,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1882,7 +1894,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1894,7 +1906,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1913,11 +1925,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1939,13 +1951,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1968,14 +1980,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -2001,17 +2013,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -2044,18 +2056,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -2087,17 +2099,17 @@ "335c63cb1957" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "f2d31538d6f8" @@ -2129,17 +2141,17 @@ "8cf9a0df089e" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "f7a1885f58b2" @@ -2171,17 +2183,17 @@ "155c16551bc0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "b2814f99b696" @@ -2213,17 +2225,17 @@ "a794f08fc368" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "c8ac63638dd4" @@ -2255,17 +2267,17 @@ "d59e8c9e4a5b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "4a4639fa3798" @@ -2297,17 +2309,17 @@ "6c46647d78ab" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "658bb4ca2398" @@ -2339,17 +2351,17 @@ "8ab675a90044" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "dccb31fddadc" @@ -2381,17 +2393,17 @@ "4b12390e509a" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "a9be442451de" @@ -2423,17 +2435,17 @@ "79e3e96a32ee" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "91302c0f318e" @@ -2465,17 +2477,17 @@ "dd1b91af7945" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "c2d62db0725f" 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 11c301a7eaa..b751e0c144d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "658eb7bbf63b3a4b38eca0b1733e523962b6b6943644d65aab6f5c7e62534d6a", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -183,9 +179,15 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "1bfbb544c337": { "outcome": { @@ -323,10 +325,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -418,10 +416,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -471,6 +465,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -560,6 +559,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -592,14 +596,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "5ea657a21118": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -740,6 +736,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -782,10 +783,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -819,9 +816,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "83e80c98d259": { "status": "fulfilled", @@ -978,6 +976,16 @@ } } }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1185,18 +1193,20 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1281,9 +1291,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "dd5d9b4070b7": { "outcome": { @@ -1382,10 +1398,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "fe917cde11e2": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1490,7 +1502,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1502,7 +1514,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1514,7 +1526,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1533,11 +1545,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1559,13 +1571,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1588,14 +1600,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1621,17 +1633,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1664,18 +1676,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1703,13 +1715,13 @@ "fe917cde11e2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1731,13 +1743,13 @@ "fe917cde11e2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1759,13 +1771,13 @@ "fe917cde11e2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1787,13 +1799,13 @@ "6538ade0d25d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1815,13 +1827,13 @@ "6538ade0d25d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1843,13 +1855,13 @@ "6538ade0d25d" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -1871,13 +1883,13 @@ "946a415dfd1b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -1899,13 +1911,13 @@ "946a415dfd1b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -1927,13 +1939,13 @@ "946a415dfd1b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -1955,13 +1967,13 @@ "c52104f2b422" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -1983,13 +1995,13 @@ "c52104f2b422" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -2011,13 +2023,13 @@ "c52104f2b422" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -2039,13 +2051,13 @@ "ff1b42f4ed7c" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -2067,13 +2079,13 @@ "ff1b42f4ed7c" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -2095,13 +2107,13 @@ "ff1b42f4ed7c" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "83e80c98d259" @@ -2123,13 +2135,13 @@ "510a18903eb7" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2151,13 +2163,13 @@ "510a18903eb7" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2179,13 +2191,13 @@ "510a18903eb7" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2207,13 +2219,13 @@ "27e776272038" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2235,13 +2247,13 @@ "27e776272038" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2263,13 +2275,13 @@ "27e776272038" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2291,13 +2303,13 @@ "16efc4c3e134" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2319,13 +2331,13 @@ "16efc4c3e134" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2347,13 +2359,13 @@ "16efc4c3e134" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2375,13 +2387,13 @@ "6a504df2edc9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2403,13 +2415,13 @@ "6a504df2edc9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2431,13 +2443,13 @@ "6a504df2edc9" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2459,13 +2471,13 @@ "5ea657a21118" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2487,13 +2499,13 @@ "5ea657a21118" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" @@ -2515,13 +2527,13 @@ "5ea657a21118" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "e6f94c399ee4" 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 ca1f9dd78fd..3bbb4176c79 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "75ba135731290bf734a5eef0b65f9ad8b7cac453c4e2006faac88a5da9dbe3a3", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -228,9 +224,15 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "1ce01a83322f": { "name": "hostedReview.getCreationEligibility#2", @@ -390,10 +392,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -485,10 +483,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -617,6 +611,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -684,6 +683,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -716,14 +720,6 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6bdfb4167cc6": { "outcome": { "committed": true, @@ -751,6 +747,11 @@ } } }, + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 + }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", "args": [ @@ -890,10 +891,6 @@ } } }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -927,9 +924,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8b784bb9dff5": { "status": "fulfilled", @@ -1008,6 +1006,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1215,9 +1223,10 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", @@ -1254,9 +1263,10 @@ } } }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1292,10 +1302,6 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "d0dab08215c6": { "name": "hostedReview.getCreationEligibility#2", "args": [ @@ -1344,6 +1350,11 @@ } } }, + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, "da6ca0b0c7f1": { "name": "hostedReview.getCreationEligibility#2", "args": [ @@ -1393,6 +1404,11 @@ } } }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1433,10 +1449,6 @@ "startedAt": 0 } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "ede606fdecdb": { "name": "hostedReview.getCreationEligibility#2", "args": [ @@ -1490,7 +1502,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1502,7 +1514,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1514,7 +1526,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1533,11 +1545,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1559,13 +1571,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1588,14 +1600,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1621,17 +1633,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1664,18 +1676,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1706,16 +1718,16 @@ "ede606fdecdb" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -1740,16 +1752,16 @@ "ede606fdecdb" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -1774,16 +1786,16 @@ "0ea11c3b0bda" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -1808,16 +1820,16 @@ "0ea11c3b0bda" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -1842,16 +1854,16 @@ "d0dab08215c6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -1876,16 +1888,16 @@ "d0dab08215c6" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -1910,16 +1922,16 @@ "44dd632a8def" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -1944,16 +1956,16 @@ "44dd632a8def" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -1978,16 +1990,16 @@ "6f10a6bfd795" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -2012,16 +2024,16 @@ "6f10a6bfd795" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "bf0e050653a2" @@ -2046,16 +2058,16 @@ "2342c6f737d2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2080,16 +2092,16 @@ "2342c6f737d2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2114,16 +2126,16 @@ "1ce01a83322f" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2148,16 +2160,16 @@ "1ce01a83322f" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2182,16 +2194,16 @@ "da6ca0b0c7f1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2216,16 +2228,16 @@ "da6ca0b0c7f1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2250,16 +2262,16 @@ "73e6cf23f0b3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2284,16 +2296,16 @@ "73e6cf23f0b3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2318,16 +2330,16 @@ "1402e70471f8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" @@ -2352,16 +2364,16 @@ "1402e70471f8" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6" ], "settlements": { "run": "3baf33626add" 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 bf682906746..ed0436d69b3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "beb1161b98ffde8c5f1128e843766a1da3182d195f1f0a9012e12e5318ae01bc", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -241,9 +237,15 @@ } } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -305,10 +307,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2b5e4002eb52": { "name": "worktree.set#1", "args": [ @@ -480,10 +478,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -533,6 +527,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -573,6 +572,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -605,13 +609,10 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", @@ -655,10 +656,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -692,9 +689,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8b784bb9dff5": { "status": "fulfilled", @@ -773,6 +771,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -1094,9 +1102,10 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", @@ -1135,9 +1144,10 @@ } } }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -1173,9 +1183,10 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 }, "d99d42852fd2": { "name": "worktree.set#1", @@ -1213,6 +1224,11 @@ } } }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 + }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -1286,10 +1302,6 @@ } } }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "f81c9538ae46": { "name": "worktree.set#1", "args": [ @@ -1333,7 +1345,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1345,7 +1357,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1357,7 +1369,7 @@ "id": "sc-create-intent-stage-commit-push-create.prelude:generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -1376,11 +1388,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -1402,13 +1414,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1431,14 +1443,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1464,17 +1476,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1507,18 +1519,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1551,18 +1563,18 @@ "bfe1edd2ca60" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1595,18 +1607,18 @@ "f81c9538ae46" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1639,18 +1651,18 @@ "13e54f79599b" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1683,18 +1695,18 @@ "15281746d27f" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1727,18 +1739,18 @@ "2b5e4002eb52" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" @@ -1771,18 +1783,18 @@ "d99d42852fd2" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "b661d30b2d73" @@ -1815,18 +1827,18 @@ "ab6081caf799" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "b661d30b2d73" @@ -1859,18 +1871,18 @@ "0fe249ca3852" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "b661d30b2d73" @@ -1903,18 +1915,18 @@ "e6692ac4c9c1" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "b661d30b2d73" @@ -1947,18 +1959,18 @@ "b6f80e2d9da3" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" 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 0f6521987e7..7de59a77ecc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "6c4de90e2617d204e82ca5e65eb17fc397acbcbb9dc0ec18594d2a7739e3528b", "platform": "darwin", @@ -232,6 +232,11 @@ "error": "refused" } }, + "349d5045a996": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 1 + }, "485a0942bda3": { "eligibility": "unfetched", "prefill": "unresolved" @@ -587,10 +592,6 @@ "isRpcDeliveryUnknown": true } }, - "cc09b6142ccb": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "e41e491351c2": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -698,7 +699,7 @@ "id": "sc-eligibility-fetched.prelude:pending", "observation": { "sender": ["e41e491351c2"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "9270aeb7d9c6" }, @@ -710,7 +711,7 @@ "id": "sc-eligibility-fetched.normal:settled", "observation": { "sender": ["899a024357b9"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "24bd84c9fb40" }, @@ -722,7 +723,7 @@ "id": "sc-eligibility-fetched.result-absent:settled", "observation": { "sender": ["099a55e691ed"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "eb79a9b3682a" }, @@ -734,7 +735,7 @@ "id": "sc-eligibility-fetched.result-null:settled", "observation": { "sender": ["1c4e890f9aaf"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "ee20a1dc39e7" }, @@ -746,7 +747,7 @@ "id": "sc-eligibility-fetched.inner-ok-missing:settled", "observation": { "sender": ["8cef4aaa067c"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "301151228fa3" }, @@ -758,7 +759,7 @@ "id": "sc-eligibility-fetched.inner-false-string-error:settled", "observation": { "sender": ["6c52d90237b7"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "9f00dd54ba64" }, @@ -770,7 +771,7 @@ "id": "sc-eligibility-fetched.inner-false-object-error:settled", "observation": { "sender": ["fed21873c57f"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "ad8a954e879d" }, @@ -782,7 +783,7 @@ "id": "sc-eligibility-fetched.outer-refused:settled", "observation": { "sender": ["6506a6ec7ac3"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "ee20a1dc39e7" }, @@ -794,7 +795,7 @@ "id": "sc-eligibility-fetched.outer-refused-no-message:settled", "observation": { "sender": ["291496f6f93a"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "ee20a1dc39e7" }, @@ -806,7 +807,7 @@ "id": "sc-eligibility-fetched.method-not-found:settled", "observation": { "sender": ["198e064322d5"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "ee20a1dc39e7" }, @@ -818,7 +819,7 @@ "id": "sc-eligibility-fetched.transport-rejection:settled", "observation": { "sender": ["7fb1231fd64d"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "a947768bc0ed" }, @@ -830,7 +831,7 @@ "id": "sc-eligibility-fetched.transport-rejection-no-message:settled", "observation": { "sender": ["79c3a2ea5c23"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "c7584e82c72f" }, 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 349148ce2ac..8d156c22b6a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "4f6472fb7add960be9bcc8596a748264d7cb0755a782ebe9e85753ab1d1d5710", "platform": "darwin", @@ -109,10 +109,6 @@ } } }, - "126c76eb14a1": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" - }, "1ba589a74085": { "name": "files.searchPaths#2", "args": [ @@ -220,9 +216,10 @@ } } }, - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "387248eb3124": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 3 }, "3b6419fbab75": { "status": "fulfilled", @@ -232,9 +229,10 @@ "$rpc": "undefined" } }, - "4c6301522bc0": { - "name": "files.list#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "58b50d420f72": { + "name": "files.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 3 }, "602e35a92eec": { "files": [] @@ -276,9 +274,10 @@ } } }, - "6fcbcfd641a6": { + "6c8f1f74dced": { "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 2 }, "869abd7d4761": { "name": "files.searchPaths#1", @@ -388,13 +387,14 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "a129552fdc6e": { "files": ["third.ts"] }, + "a4643cbb0362": { + "name": "files.list#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 4 + }, "b2434f1de9f6": { "name": "files.list#1", "args": [ @@ -420,6 +420,11 @@ "startedAt": 120 } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -552,6 +557,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -678,10 +688,6 @@ "value": { "$rpc": "undefined" } - }, - "f2e78a366d8a": { - "name": "files.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" } }, "recording": { @@ -691,7 +697,7 @@ "id": "b1.normal:old-pending", "observation": { "sender": ["9a2d5b890cfa"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -704,7 +710,7 @@ "id": "b1.normal:stale-arrived-fresh-pending", "observation": { "sender": ["9a2d5b890cfa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -720,7 +726,7 @@ "id": "b1.normal:third-query", "observation": { "sender": ["9a2d5b890cfa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -737,7 +743,7 @@ "id": "b1.normal:fresh-arrived", "observation": { "sender": ["9a2d5b890cfa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -754,7 +760,7 @@ "id": "b1.result-absent:old-pending", "observation": { "sender": ["0c8457700f43"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -767,7 +773,7 @@ "id": "b1.result-absent:stale-arrived-fresh-pending", "observation": { "sender": ["0c8457700f43", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -783,7 +789,7 @@ "id": "b1.result-absent:third-query", "observation": { "sender": ["0c8457700f43", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -800,7 +806,7 @@ "id": "b1.result-absent:fresh-arrived", "observation": { "sender": ["0c8457700f43", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -817,7 +823,7 @@ "id": "b1.result-null:old-pending", "observation": { "sender": ["26cf7e0b111e"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -830,7 +836,7 @@ "id": "b1.result-null:stale-arrived-fresh-pending", "observation": { "sender": ["26cf7e0b111e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -846,7 +852,7 @@ "id": "b1.result-null:third-query", "observation": { "sender": ["26cf7e0b111e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -863,7 +869,7 @@ "id": "b1.result-null:fresh-arrived", "observation": { "sender": ["26cf7e0b111e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -880,7 +886,7 @@ "id": "b1.inner-ok-missing:old-pending", "observation": { "sender": ["df7fd0ad658c"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -893,7 +899,7 @@ "id": "b1.inner-ok-missing:stale-arrived-fresh-pending", "observation": { "sender": ["df7fd0ad658c", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -909,7 +915,7 @@ "id": "b1.inner-ok-missing:third-query", "observation": { "sender": ["df7fd0ad658c", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -926,7 +932,7 @@ "id": "b1.inner-ok-missing:fresh-arrived", "observation": { "sender": ["df7fd0ad658c", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -943,7 +949,7 @@ "id": "b1.inner-false-string-error:old-pending", "observation": { "sender": ["99f776858ea4"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -956,7 +962,7 @@ "id": "b1.inner-false-string-error:stale-arrived-fresh-pending", "observation": { "sender": ["99f776858ea4", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -972,7 +978,7 @@ "id": "b1.inner-false-string-error:third-query", "observation": { "sender": ["99f776858ea4", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -989,7 +995,7 @@ "id": "b1.inner-false-string-error:fresh-arrived", "observation": { "sender": ["99f776858ea4", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1006,7 +1012,7 @@ "id": "b1.inner-false-object-error:old-pending", "observation": { "sender": ["c0b2a9f3a528"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1019,7 +1025,7 @@ "id": "b1.inner-false-object-error:stale-arrived-fresh-pending", "observation": { "sender": ["c0b2a9f3a528", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1035,7 +1041,7 @@ "id": "b1.inner-false-object-error:third-query", "observation": { "sender": ["c0b2a9f3a528", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1052,7 +1058,7 @@ "id": "b1.inner-false-object-error:fresh-arrived", "observation": { "sender": ["c0b2a9f3a528", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1069,7 +1075,7 @@ "id": "b1.outer-refused:old-pending", "observation": { "sender": ["11a8a2850aa6"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1082,7 +1088,7 @@ "id": "b1.outer-refused:stale-arrived-fresh-pending", "observation": { "sender": ["11a8a2850aa6", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1098,7 +1104,7 @@ "id": "b1.outer-refused:third-query", "observation": { "sender": ["11a8a2850aa6", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1115,7 +1121,7 @@ "id": "b1.outer-refused:fresh-arrived", "observation": { "sender": ["11a8a2850aa6", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1132,7 +1138,7 @@ "id": "b1.outer-refused-no-message:old-pending", "observation": { "sender": ["d93bbb95c81e"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1145,7 +1151,7 @@ "id": "b1.outer-refused-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["d93bbb95c81e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1161,7 +1167,7 @@ "id": "b1.outer-refused-no-message:third-query", "observation": { "sender": ["d93bbb95c81e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1178,7 +1184,7 @@ "id": "b1.outer-refused-no-message:fresh-arrived", "observation": { "sender": ["d93bbb95c81e", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1195,7 +1201,7 @@ "id": "b1.method-not-found:old-pending", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1208,7 +1214,7 @@ "id": "b1.method-not-found:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1224,7 +1230,7 @@ "id": "b1.method-not-found:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1241,7 +1247,7 @@ "id": "b1.method-not-found:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1258,7 +1264,7 @@ "id": "b1.transport-rejection:old-pending", "observation": { "sender": ["869abd7d4761"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1271,7 +1277,7 @@ "id": "b1.transport-rejection:stale-arrived-fresh-pending", "observation": { "sender": ["869abd7d4761", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1287,7 +1293,7 @@ "id": "b1.transport-rejection:third-query", "observation": { "sender": ["869abd7d4761", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1304,7 +1310,7 @@ "id": "b1.transport-rejection:fresh-arrived", "observation": { "sender": ["869abd7d4761", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1321,7 +1327,7 @@ "id": "b1.transport-rejection-no-message:old-pending", "observation": { "sender": ["c64a37571efa"], - "payloads": ["9dea95bddfe5"], + "payloads": ["cd59dd2431e0"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -1334,7 +1340,7 @@ "id": "b1.transport-rejection-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["c64a37571efa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1350,7 +1356,7 @@ "id": "b1.transport-rejection-no-message:third-query", "observation": { "sender": ["c64a37571efa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1367,7 +1373,7 @@ "id": "b1.transport-rejection-no-message:fresh-arrived", "observation": { "sender": ["c64a37571efa", "22aae8ed95e4", "c3632dc7f843"], - "payloads": ["9dea95bddfe5", "126c76eb14a1", "f2e78a366d8a"], + "payloads": ["cd59dd2431e0", "6c8f1f74dced", "58b50d420f72"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 94e2de3c672..4c83a60da43 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "048c3ec55ec67d09d9b02e17822f1154adca577e57ffe6d3059102d552d2f759", "platform": "darwin", @@ -347,13 +347,14 @@ } } }, - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "3642acfe438f": { "files": ["beta.ts"] }, + "387248eb3124": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 3 + }, "3b6419fbab75": { "status": "fulfilled", "startedAt": 240, @@ -362,13 +363,10 @@ "$rpc": "undefined" } }, - "43f19e2e0c70": { + "5846735d7ce5": { "name": "files.searchPaths#3", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"third\",\"limit\":16}}" - }, - "4c6301522bc0": { - "name": "files.list#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"third\",\"limit\":16}}", + "sent": 4 }, "602e35a92eec": { "files": [] @@ -410,10 +408,6 @@ } } }, - "6fcbcfd641a6": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" - }, "825b5246a9b0": { "name": "files.searchPaths#2", "args": [ @@ -452,13 +446,14 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "a129552fdc6e": { "files": ["third.ts"] }, + "a4643cbb0362": { + "name": "files.list#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 4 + }, "a4b06271def1": { "name": "files.searchPaths#2", "args": [ @@ -520,6 +515,11 @@ "startedAt": 120 } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -556,6 +556,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -653,7 +658,7 @@ "id": "b1.prelude:old-pending", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -666,7 +671,7 @@ "id": "b1.normal:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "15b2254fad4b"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -682,7 +687,7 @@ "id": "b1.normal:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "15b2254fad4b", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -699,7 +704,7 @@ "id": "b1.normal:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "15b2254fad4b", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -716,7 +721,7 @@ "id": "b1.result-absent:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1567fc34445b"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -732,7 +737,7 @@ "id": "b1.result-absent:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1567fc34445b", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -749,7 +754,7 @@ "id": "b1.result-absent:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1567fc34445b", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -766,7 +771,7 @@ "id": "b1.result-null:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "0959d2b897c9"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -782,7 +787,7 @@ "id": "b1.result-null:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "0959d2b897c9", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -799,7 +804,7 @@ "id": "b1.result-null:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "0959d2b897c9", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -816,7 +821,7 @@ "id": "b1.inner-ok-missing:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ea7547b81a5"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -832,7 +837,7 @@ "id": "b1.inner-ok-missing:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ea7547b81a5", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -849,7 +854,7 @@ "id": "b1.inner-ok-missing:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ea7547b81a5", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -866,7 +871,7 @@ "id": "b1.inner-false-string-error:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1f232e1642a7"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -882,7 +887,7 @@ "id": "b1.inner-false-string-error:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1f232e1642a7", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -899,7 +904,7 @@ "id": "b1.inner-false-string-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1f232e1642a7", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -916,7 +921,7 @@ "id": "b1.inner-false-object-error:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "825b5246a9b0"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -932,7 +937,7 @@ "id": "b1.inner-false-object-error:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "825b5246a9b0", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -949,7 +954,7 @@ "id": "b1.inner-false-object-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "825b5246a9b0", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -966,7 +971,7 @@ "id": "b1.outer-refused:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "a4b06271def1"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -982,7 +987,7 @@ "id": "b1.outer-refused:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "a4b06271def1", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -999,7 +1004,7 @@ "id": "b1.outer-refused:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "a4b06271def1", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1016,7 +1021,7 @@ "id": "b1.outer-refused-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "02a03f44e95f"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1032,7 +1037,7 @@ "id": "b1.outer-refused-no-message:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "02a03f44e95f", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1049,7 +1054,7 @@ "id": "b1.outer-refused-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "02a03f44e95f", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1066,7 +1071,7 @@ "id": "b1.method-not-found:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1082,7 +1087,7 @@ "id": "b1.method-not-found:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1099,7 +1104,7 @@ "id": "b1.method-not-found:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1116,7 +1121,7 @@ "id": "b1.transport-rejection:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "e0c06b676602"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1132,7 +1137,7 @@ "id": "b1.transport-rejection:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "e0c06b676602", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1149,7 +1154,7 @@ "id": "b1.transport-rejection:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "e0c06b676602", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1166,7 +1171,7 @@ "id": "b1.transport-rejection-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "039d4c02da97"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1182,7 +1187,7 @@ "id": "b1.transport-rejection-no-message:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "039d4c02da97", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1199,7 +1204,7 @@ "id": "b1.transport-rejection-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "039d4c02da97", "11617076ef90"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "43f19e2e0c70"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "5846735d7ce5"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 a486d62a395..89d5369a0f3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "ad458a3407e3f1303343b46a1308b43535abef2c9ed2f68db59157db5b91daa1", "platform": "darwin", @@ -74,9 +74,10 @@ } } }, - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "387248eb3124": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 3 }, "3b6419fbab75": { "status": "fulfilled", @@ -86,10 +87,6 @@ "$rpc": "undefined" } }, - "4c6301522bc0": { - "name": "files.list#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "519f35cc355f": { "name": "files.list#2", "args": [ @@ -193,10 +190,6 @@ } } }, - "6fcbcfd641a6": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" - }, "7dd55e908e3e": { "name": "files.list#2", "args": [ @@ -295,13 +288,14 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "a129552fdc6e": { "files": ["third.ts"] }, + "a4643cbb0362": { + "name": "files.list#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 4 + }, "a697ecf6864e": { "name": "files.list#2", "args": [ @@ -394,6 +388,11 @@ } } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -430,6 +429,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -596,7 +600,7 @@ "id": "b1.prelude:old-pending", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -609,7 +613,7 @@ "id": "b1.prelude:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -625,7 +629,7 @@ "id": "b1.prelude:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -642,7 +646,7 @@ "id": "b1.normal:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -659,7 +663,7 @@ "id": "b1.result-absent:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "519f35cc355f"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -676,7 +680,7 @@ "id": "b1.result-null:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "5d5510c9fa8e"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -693,7 +697,7 @@ "id": "b1.inner-ok-missing:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "b97155d69b76"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -710,7 +714,7 @@ "id": "b1.inner-false-string-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "ed722785cd67"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -727,7 +731,7 @@ "id": "b1.inner-false-object-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "94e75c7ab64a"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -744,7 +748,7 @@ "id": "b1.outer-refused:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "f427ba18f654"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -761,7 +765,7 @@ "id": "b1.outer-refused-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "a697ecf6864e"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -778,7 +782,7 @@ "id": "b1.method-not-found:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "d704d5a97c9c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -795,7 +799,7 @@ "id": "b1.transport-rejection:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "83cec65a43c1"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -812,7 +816,7 @@ "id": "b1.transport-rejection-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "7dd55e908e3e"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 ba37f3322b8..f756c9566b4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "52742d894d0ea53db89729101664a393b10794d9c2d2fe7b40b020643a13af81", "platform": "darwin", @@ -110,9 +110,10 @@ } } }, - "2837f481a843": { - "name": "files.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" + "387248eb3124": { + "name": "files.searchPaths#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}", + "sent": 3 }, "3b6419fbab75": { "status": "fulfilled", @@ -156,10 +157,6 @@ } } }, - "4c6301522bc0": { - "name": "files.list#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}" - }, "4cc10442b987": { "name": "files.list#1", "args": [ @@ -329,10 +326,6 @@ } } }, - "6fcbcfd641a6": { - "name": "files.searchPaths#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"fresh\",\"limit\":16}}" - }, "9882a4a07c3d": { "name": "files.list#1", "args": [ @@ -367,13 +360,14 @@ } } }, - "9dea95bddfe5": { - "name": "files.searchPaths#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}" - }, "a129552fdc6e": { "files": ["third.ts"] }, + "a4643cbb0362": { + "name": "files.list#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 4 + }, "ae9e53776360": { "name": "files.list#1", "args": [ @@ -462,6 +456,11 @@ } } }, + "bb65fa195d1c": { + "name": "files.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.list\",\"params\":{\"worktree\":\"id:A\"}}", + "sent": 2 + }, "c0821dc354d7": { "name": "files.searchPaths#1", "args": [ @@ -498,6 +497,11 @@ } } }, + "cd59dd2431e0": { + "name": "files.searchPaths#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.searchPaths\",\"params\":{\"worktree\":\"id:A\",\"query\":\"old\",\"limit\":16}}", + "sent": 1 + }, "d2ad71e601c4": { "status": "fulfilled", "startedAt": 120, @@ -596,7 +600,7 @@ "id": "b1.prelude:old-pending", "observation": { "sender": ["c0821dc354d7", "b2434f1de9f6"], - "payloads": ["9dea95bddfe5", "2837f481a843"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a" @@ -609,7 +613,7 @@ "id": "b1.normal:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -625,7 +629,7 @@ "id": "b1.normal:third-query", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -642,7 +646,7 @@ "id": "b1.normal:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "603254c040fc", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -659,7 +663,7 @@ "id": "b1.result-absent:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "ae9e53776360", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -675,7 +679,7 @@ "id": "b1.result-absent:third-query", "observation": { "sender": ["c0821dc354d7", "ae9e53776360", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -692,7 +696,7 @@ "id": "b1.result-absent:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "ae9e53776360", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -709,7 +713,7 @@ "id": "b1.result-null:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "b70578465e9a", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -725,7 +729,7 @@ "id": "b1.result-null:third-query", "observation": { "sender": ["c0821dc354d7", "b70578465e9a", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -742,7 +746,7 @@ "id": "b1.result-null:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "b70578465e9a", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -759,7 +763,7 @@ "id": "b1.inner-ok-missing:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "54dffc286e10", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -775,7 +779,7 @@ "id": "b1.inner-ok-missing:third-query", "observation": { "sender": ["c0821dc354d7", "54dffc286e10", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -792,7 +796,7 @@ "id": "b1.inner-ok-missing:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "54dffc286e10", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -809,7 +813,7 @@ "id": "b1.inner-false-string-error:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "45b173ed5496", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -825,7 +829,7 @@ "id": "b1.inner-false-string-error:third-query", "observation": { "sender": ["c0821dc354d7", "45b173ed5496", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -842,7 +846,7 @@ "id": "b1.inner-false-string-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "45b173ed5496", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -859,7 +863,7 @@ "id": "b1.inner-false-object-error:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "0ed49b021fe0", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -875,7 +879,7 @@ "id": "b1.inner-false-object-error:third-query", "observation": { "sender": ["c0821dc354d7", "0ed49b021fe0", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -892,7 +896,7 @@ "id": "b1.inner-false-object-error:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "0ed49b021fe0", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -909,7 +913,7 @@ "id": "b1.outer-refused:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "4ee58046e400", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -925,7 +929,7 @@ "id": "b1.outer-refused:third-query", "observation": { "sender": ["c0821dc354d7", "4ee58046e400", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -942,7 +946,7 @@ "id": "b1.outer-refused:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "4ee58046e400", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -959,7 +963,7 @@ "id": "b1.outer-refused-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "d9aea3f5d7a5", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -975,7 +979,7 @@ "id": "b1.outer-refused-no-message:third-query", "observation": { "sender": ["c0821dc354d7", "d9aea3f5d7a5", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -992,7 +996,7 @@ "id": "b1.outer-refused-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "d9aea3f5d7a5", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1009,7 +1013,7 @@ "id": "b1.method-not-found:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "9882a4a07c3d", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1025,7 +1029,7 @@ "id": "b1.method-not-found:third-query", "observation": { "sender": ["c0821dc354d7", "9882a4a07c3d", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1042,7 +1046,7 @@ "id": "b1.method-not-found:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "9882a4a07c3d", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1059,7 +1063,7 @@ "id": "b1.transport-rejection:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "4cc10442b987", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1075,7 +1079,7 @@ "id": "b1.transport-rejection:third-query", "observation": { "sender": ["c0821dc354d7", "4cc10442b987", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1092,7 +1096,7 @@ "id": "b1.transport-rejection:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "4cc10442b987", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1109,7 +1113,7 @@ "id": "b1.transport-rejection-no-message:stale-arrived-fresh-pending", "observation": { "sender": ["c0821dc354d7", "592d6f61414a", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1125,7 +1129,7 @@ "id": "b1.transport-rejection-no-message:third-query", "observation": { "sender": ["c0821dc354d7", "592d6f61414a", "1ba589a74085", "0d903486cbe8"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", @@ -1142,7 +1146,7 @@ "id": "b1.transport-rejection-no-message:fresh-arrived", "observation": { "sender": ["c0821dc354d7", "592d6f61414a", "1ba589a74085", "daf226a0261c"], - "payloads": ["9dea95bddfe5", "2837f481a843", "6fcbcfd641a6", "4c6301522bc0"], + "payloads": ["cd59dd2431e0", "bb65fa195d1c", "387248eb3124", "a4643cbb0362"], "settlements": { "mount": "eb79a9b3682a", "old": "eb79a9b3682a", 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 0887f154132..37d08acff60 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "8e00afc85e5b82d75bedecea0c748a3c8658cfc8545650e755c03f51fdc932d6", "platform": "darwin", @@ -98,6 +98,11 @@ "$rpc": "null" } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4a3ebfb61f95": { "name": "detailError", "value": "transport failure", @@ -147,6 +152,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "5ce7f3fa558f": { "name": "linear.getIssue#1", "args": [ @@ -407,10 +417,6 @@ } } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "bc9642565680": { "name": "linear.getIssue#1", "args": [ @@ -477,10 +483,6 @@ } } }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -563,7 +565,7 @@ "id": "b3.prelude:pending", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -575,7 +577,7 @@ "id": "b3.normal:issue-refused-comments-pending", "observation": { "sender": ["a91a12c2af5d", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -587,7 +589,7 @@ "id": "b3.normal:settled", "observation": { "sender": ["a91a12c2af5d", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -605,7 +607,7 @@ "id": "b3.result-absent:issue-refused-comments-pending", "observation": { "sender": ["77d756736896", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -617,7 +619,7 @@ "id": "b3.result-absent:settled", "observation": { "sender": ["77d756736896", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -635,7 +637,7 @@ "id": "b3.result-null:issue-refused-comments-pending", "observation": { "sender": ["68f4ab6eb5df", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -647,7 +649,7 @@ "id": "b3.result-null:settled", "observation": { "sender": ["68f4ab6eb5df", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -665,7 +667,7 @@ "id": "b3.inner-ok-missing:issue-refused-comments-pending", "observation": { "sender": ["d5a45b61726a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -677,7 +679,7 @@ "id": "b3.inner-ok-missing:settled", "observation": { "sender": ["d5a45b61726a", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -695,7 +697,7 @@ "id": "b3.inner-false-string-error:issue-refused-comments-pending", "observation": { "sender": ["a1504f9a0912", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -707,7 +709,7 @@ "id": "b3.inner-false-string-error:settled", "observation": { "sender": ["a1504f9a0912", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -725,7 +727,7 @@ "id": "b3.inner-false-object-error:issue-refused-comments-pending", "observation": { "sender": ["5ce7f3fa558f", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -737,7 +739,7 @@ "id": "b3.inner-false-object-error:settled", "observation": { "sender": ["5ce7f3fa558f", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -755,7 +757,7 @@ "id": "b3.outer-refused:issue-refused-comments-pending", "observation": { "sender": ["ff164d27a928", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -767,7 +769,7 @@ "id": "b3.outer-refused:settled", "observation": { "sender": ["ff164d27a928", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -785,7 +787,7 @@ "id": "b3.outer-refused-no-message:issue-refused-comments-pending", "observation": { "sender": ["1736ff39135a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -797,7 +799,7 @@ "id": "b3.outer-refused-no-message:settled", "observation": { "sender": ["1736ff39135a", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -815,7 +817,7 @@ "id": "b3.method-not-found:issue-refused-comments-pending", "observation": { "sender": ["8ec7d930f214", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -827,7 +829,7 @@ "id": "b3.method-not-found:settled", "observation": { "sender": ["8ec7d930f214", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -845,7 +847,7 @@ "id": "b3.transport-rejection:issue-refused-comments-pending", "observation": { "sender": ["bc9642565680", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -863,7 +865,7 @@ "id": "b3.transport-rejection:settled", "observation": { "sender": ["bc9642565680", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -881,7 +883,7 @@ "id": "b3.transport-rejection-no-message:issue-refused-comments-pending", "observation": { "sender": ["b15e02226c97", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -899,7 +901,7 @@ "id": "b3.transport-rejection-no-message:settled", "observation": { "sender": ["b15e02226c97", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, 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 1862a64ff15..3873bd33021 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "40289acce4a3542773f74681d255d67cfddadf6c42317928d6728f26a76f6cfb", "platform": "darwin", @@ -221,6 +221,11 @@ "$rpc": "null" } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4a3ebfb61f95": { "name": "detailError", "value": "transport failure", @@ -238,6 +243,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "77515f910d51": { "name": "detailError", "value": "issue refused", @@ -366,10 +376,6 @@ } } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "c360db88accd": { "name": "linear.issueComments#1", "args": [ @@ -446,10 +452,6 @@ "$rpc": "null" } }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -563,7 +565,7 @@ "id": "b3.prelude:pending", "observation": { "sender": ["fc4ce176400a", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -575,7 +577,7 @@ "id": "b3.prelude:issue-refused-comments-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -587,7 +589,7 @@ "id": "b3.normal:settled", "observation": { "sender": ["034a83431f03", "a4b8ea721dcf"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -605,7 +607,7 @@ "id": "b3.result-absent:settled", "observation": { "sender": ["034a83431f03", "16e0cc3237e8"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -623,7 +625,7 @@ "id": "b3.result-null:settled", "observation": { "sender": ["034a83431f03", "f60c595d990e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -641,7 +643,7 @@ "id": "b3.inner-ok-missing:settled", "observation": { "sender": ["034a83431f03", "c360db88accd"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -659,7 +661,7 @@ "id": "b3.inner-false-string-error:settled", "observation": { "sender": ["034a83431f03", "c92234b1167b"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -677,7 +679,7 @@ "id": "b3.inner-false-object-error:settled", "observation": { "sender": ["034a83431f03", "3276e1a41446"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -695,7 +697,7 @@ "id": "b3.outer-refused:settled", "observation": { "sender": ["034a83431f03", "a2450a300ddf"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -713,7 +715,7 @@ "id": "b3.outer-refused-no-message:settled", "observation": { "sender": ["034a83431f03", "9f8c9f7294a0"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -731,7 +733,7 @@ "id": "b3.method-not-found:settled", "observation": { "sender": ["034a83431f03", "3bb04fc55c1a"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -749,7 +751,7 @@ "id": "b3.transport-rejection:settled", "observation": { "sender": ["034a83431f03", "ecb0f6b35964"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -767,7 +769,7 @@ "id": "b3.transport-rejection-no-message:settled", "observation": { "sender": ["034a83431f03", "3df3437aa9b4"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, 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 fee0966f2e2..a8848410173 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b65996c152b632d553a31e07e31ea5c76f998eada42cf0966923d730da21908f", "scenarioSha256": "c7de1f6fc0895d4ddf1b87a83859da46c583f098e058f14c8f85d48120c80c40", "platform": "darwin", @@ -285,10 +285,6 @@ } } }, - "99a34c4ee1d1": { - "name": "linear.selectWorkspace#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}" - }, "9fd9d48475fb": { "name": "linear.selectWorkspace#1", "args": [ @@ -430,6 +426,11 @@ } } }, + "ea687d1f2a99": { + "name": "linear.selectWorkspace#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.selectWorkspace\",\"params\":{\"workspaceId\":\"workspace-b\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -446,7 +447,7 @@ "id": "linear-select-workspace.prelude:selected", "observation": { "sender": ["4a23506ae3dc"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -458,7 +459,7 @@ "id": "linear-select-workspace.normal:switched", "observation": { "sender": ["06776b3d9986"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -470,7 +471,7 @@ "id": "linear-select-workspace.result-absent:switched", "observation": { "sender": ["b3bc3d5e8602"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -482,7 +483,7 @@ "id": "linear-select-workspace.result-null:switched", "observation": { "sender": ["9fd9d48475fb"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -494,7 +495,7 @@ "id": "linear-select-workspace.inner-ok-missing:switched", "observation": { "sender": ["8b0126beaa0f"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -506,7 +507,7 @@ "id": "linear-select-workspace.inner-false-string-error:switched", "observation": { "sender": ["8c94ac859e25"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -518,7 +519,7 @@ "id": "linear-select-workspace.inner-false-object-error:switched", "observation": { "sender": ["1a260f9b2146"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -530,7 +531,7 @@ "id": "linear-select-workspace.outer-refused:switched", "observation": { "sender": ["34abdc8d41b6"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -542,7 +543,7 @@ "id": "linear-select-workspace.outer-refused-no-message:switched", "observation": { "sender": ["55f248ebab5b"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -554,7 +555,7 @@ "id": "linear-select-workspace.method-not-found:switched", "observation": { "sender": ["d85b70dd191e"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -566,7 +567,7 @@ "id": "linear-select-workspace.transport-rejection:switched", "observation": { "sender": ["cc85f4131ab5"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, @@ -578,7 +579,7 @@ "id": "linear-select-workspace.transport-rejection-no-message:switched", "observation": { "sender": ["87ae939e1ef2"], - "payloads": ["99a34c4ee1d1"], + "payloads": ["ea687d1f2a99"], "settlements": { "select-b": "eb79a9b3682a" }, 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 new file mode 100644 index 00000000000..12758a3a4fc --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-1.json @@ -0,0 +1,988 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "f3fa2738875e15b640f21e56d3a0628333cd5b271242314b9c328822eec01d34", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "127e975be6a2": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 2 + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "8e74e080aa1b": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 1 + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d08b4a2fca43": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 1 + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-runtime.clientevents.subscribe-1-1", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "127e975be6a2" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "127e975be6a2" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "127e975be6a2" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "127e975be6a2" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e", "56c66d671d13"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "127e975be6a2" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..4354dac9e19 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-1-2.json @@ -0,0 +1,866 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "24b9ef7c06386b8af8303cfb196d2f652e46759b40aadb7b6af5144c964ea179", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "4fd3501bc642": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 2 + }, + "5113bc69f4fe": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "53b294ab06f1": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 1 + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "8e74e080aa1b": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 1 + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d08b4a2fca43": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 1 + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "dda111cbb292": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-runtime.clientevents.subscribe-1-2", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "53b294ab06f1"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe", + "4fd3501bc642" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "53b294ab06f1"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe", + "4fd3501bc642" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "53b294ab06f1"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe", + "4fd3501bc642" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "53b294ab06f1"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe", + "4fd3501bc642" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "53b294ab06f1"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dda111cbb292"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "8e74e080aa1b", + "53b294ab06f1", + "5113bc69f4fe", + "4fd3501bc642" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:refreshed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:re-subscribed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "8e74e080aa1b", "d08b4a2fca43"], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..6c39d463582 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-runtime.clientevents.subscribe-2-1.json @@ -0,0 +1,647 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "e13633e6b76dce4aec343c391359adfd39430e91af1b183140fe4423316c81e1", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-runtime.clientevents.subscribe-2-1", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..8b8f09030cf --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-1.json @@ -0,0 +1,1522 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "0bbbff1a914ba146777515d6d971144cc62f29f2d484a264513a1ce0f48be96a", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "411e3f5a8e43": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-2", + "ok": false + } + } + }, + "4bd0523117c2": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "5b2c42a1ab1a": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "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 + } + } + }, + "63725fcc7deb": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "6c722b0f0a28": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "bec7f0d9b108": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "bf5cadcfd85d": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "present" + }, + "c2d61905c43b": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-2", + "ok": false + } + } + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "d2ff213020b9": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "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 + } + } + } + }, + "d579b9b92a39": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true + } + } + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "f94e130f989b": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-worktree.show-1", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:named", + "observation": { + "sender": ["d579b9b92a39"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "bf5cadcfd85d", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:refreshed", + "observation": { + "sender": ["d579b9b92a39", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:re-subscribed", + "observation": { + "sender": ["d579b9b92a39", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["d579b9b92a39", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["d579b9b92a39", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:named", + "observation": { + "sender": ["63725fcc7deb"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "bf5cadcfd85d", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:refreshed", + "observation": { + "sender": ["63725fcc7deb", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:re-subscribed", + "observation": { + "sender": ["63725fcc7deb", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["63725fcc7deb", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["63725fcc7deb", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:named", + "observation": { + "sender": ["4bd0523117c2"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "bf5cadcfd85d", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:refreshed", + "observation": { + "sender": ["4bd0523117c2", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": ["4bd0523117c2", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["4bd0523117c2", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["4bd0523117c2", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:named", + "observation": { + "sender": ["f94e130f989b"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "bf5cadcfd85d", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:refreshed", + "observation": { + "sender": ["f94e130f989b", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": ["f94e130f989b", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["f94e130f989b", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["f94e130f989b", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:named", + "observation": { + "sender": ["d2ff213020b9"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "bf5cadcfd85d", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:refreshed", + "observation": { + "sender": ["d2ff213020b9", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": ["d2ff213020b9", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["d2ff213020b9", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["d2ff213020b9", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:named", + "observation": { + "sender": ["411e3f5a8e43"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:refreshed", + "observation": { + "sender": ["411e3f5a8e43", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:re-subscribed", + "observation": { + "sender": ["411e3f5a8e43", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["411e3f5a8e43", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["411e3f5a8e43", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:named", + "observation": { + "sender": ["c2d61905c43b"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:refreshed", + "observation": { + "sender": ["c2d61905c43b", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": ["c2d61905c43b", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["c2d61905c43b", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["c2d61905c43b", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:named", + "observation": { + "sender": ["5b2c42a1ab1a"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:refreshed", + "observation": { + "sender": ["5b2c42a1ab1a", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:re-subscribed", + "observation": { + "sender": ["5b2c42a1ab1a", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["5b2c42a1ab1a", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["5b2c42a1ab1a", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:named", + "observation": { + "sender": ["6c722b0f0a28"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:refreshed", + "observation": { + "sender": ["6c722b0f0a28", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:re-subscribed", + "observation": { + "sender": ["6c722b0f0a28", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:replayed", + "observation": { + "sender": ["6c722b0f0a28", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:unmounted", + "observation": { + "sender": ["6c722b0f0a28", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:named", + "observation": { + "sender": ["bec7f0d9b108"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:refreshed", + "observation": { + "sender": ["bec7f0d9b108", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:re-subscribed", + "observation": { + "sender": ["bec7f0d9b108", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:replayed", + "observation": { + "sender": ["bec7f0d9b108", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:unmounted", + "observation": { + "sender": ["bec7f0d9b108", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..b137e72d4b0 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-2.json @@ -0,0 +1,1402 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "2ed321bfdc419635734c37b0a1cc4f85d6d92766846e25a37bd547dfa3af8f72", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "12a9a77d5b26": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "1568463bc988": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "3decaad7b693": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "55610533a324": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "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 + } + } + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "5e85c8a608a6": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "unknown" + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b347e30a21be": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-3", + "ok": false + } + } + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bb39fdd04acc": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-3", + "ok": false + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "be22a6071e46": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "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 + } + } + } + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "da58b4244960": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true + } + } + }, + "dc044be247dd": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ec36601ce95a": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-worktree.show-2", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:refreshed", + "observation": { + "sender": ["94437e18f7e8", "da58b4244960"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "da58b4244960"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["94437e18f7e8", "da58b4244960", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["94437e18f7e8", "da58b4244960", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:refreshed", + "observation": { + "sender": ["94437e18f7e8", "12a9a77d5b26"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "12a9a77d5b26"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["94437e18f7e8", "12a9a77d5b26", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["94437e18f7e8", "12a9a77d5b26", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:refreshed", + "observation": { + "sender": ["94437e18f7e8", "1568463bc988"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "1568463bc988"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["94437e18f7e8", "1568463bc988", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["94437e18f7e8", "1568463bc988", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:refreshed", + "observation": { + "sender": ["94437e18f7e8", "ec36601ce95a"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "ec36601ce95a"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "ec36601ce95a", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "ec36601ce95a", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:refreshed", + "observation": { + "sender": ["94437e18f7e8", "be22a6071e46"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "be22a6071e46"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "be22a6071e46", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "be22a6071e46", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:refreshed", + "observation": { + "sender": ["94437e18f7e8", "b347e30a21be"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "b347e30a21be"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["94437e18f7e8", "b347e30a21be", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["94437e18f7e8", "b347e30a21be", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:refreshed", + "observation": { + "sender": ["94437e18f7e8", "bb39fdd04acc"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "bb39fdd04acc"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8", "bb39fdd04acc", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8", "bb39fdd04acc", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:refreshed", + "observation": { + "sender": ["94437e18f7e8", "55610533a324"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "55610533a324"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "5e85c8a608a6", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["94437e18f7e8", "55610533a324", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["94437e18f7e8", "55610533a324", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:refreshed", + "observation": { + "sender": ["94437e18f7e8", "3decaad7b693"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "3decaad7b693"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:replayed", + "observation": { + "sender": ["94437e18f7e8", "3decaad7b693", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:unmounted", + "observation": { + "sender": ["94437e18f7e8", "3decaad7b693", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:refreshed", + "observation": { + "sender": ["94437e18f7e8", "dc044be247dd"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "dc044be247dd"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8", "dc044be247dd", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8", "dc044be247dd", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + } + ] + } +} 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 new file mode 100644 index 00000000000..23a925bcab9 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-live-worktree-name-worktree.show-3.json @@ -0,0 +1,1092 @@ +{ + "operation": "session.live-worktree-name", + "family": "live-worktree-name", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "e7206f62a827f4fe0a2badf3eecd2167b8ac4285", + "lockfileSha256": "788c1234b38a61fc882fca292341fce6690deee9cc6695673b0575cf2c4cf571", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", + "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", + "scenarioSha256": "ab7efe1dc6ef2ddfffa69c88bcc936f43393968a2281bc0ebfc864be650e7af1", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "0861c192faf1": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 1 + }, + "0dcafb9453a6": { + "name": "runtime.clientEvents.unsubscribe#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-2\"}}", + "sent": 3 + }, + "1e4d934273b4": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "outer refused" + }, + "id": "frame-6", + "ok": false + } + } + }, + "24e54ca7ee2e": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "2aba0c9abcb7": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "5275daa092e8": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "5349b43d9f6a": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "56c66d671d13": { + "name": "runtime.clientEvents.subscribe#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 2 + }, + "592ccd522724": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "present" + }, + "61367c8d7fca": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Renamed", + "resolution": "unknown" + }, + "71e0e7404275": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-6", + "ok": false + } + } + }, + "767a3f460b84": { + "name": "worktree.show#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 3 + }, + "7926694cda85": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work", + "resolution": "present" + }, + "89ff819afc4f": { + "crash": { + "$rpc": "null" + }, + "name": "Feature Work Replayed", + "resolution": "present" + }, + "94437e18f7e8": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "977eb5ae1513": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true + } + } + }, + "a6dad5b3250f": { + "name": "worktree.show#2", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Renamed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "b17f8702145e": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-1::/work/feature\"}}", + "sent": 2 + }, + "b3c977d010c6": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "worktree": { + "displayName": "Feature Work Replayed", + "worktreeId": "repo-1::/work/feature" + } + } + } + } + }, + "bbdf51d110d4": { + "name": "runtime.clientEvents.unsubscribe#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.unsubscribe\",\"params\":{\"subscriptionId\":\"sub-1\"}}", + "sent": 2 + }, + "bdc95c0ab9bc": { + "name": "runtime.clientEvents.subscribe#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"runtime.clientEvents.subscribe\",\"params\":null}", + "sent": 0 + }, + "c7ea51c18a03": { + "name": "worktree.show#1", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "c83d4825afe7": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "dcfa9a8e959c": { + "crash": { + "$rpc": "null" + }, + "name": "feature", + "resolution": "unknown" + }, + "eb79a9b3682a": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "$rpc": "undefined" + } + }, + "ed23a553453d": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-6", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "f15adc8a2158": { + "name": "worktree.show#3", + "args": [ + { + "name": "method", + "value": "worktree.show" + }, + { + "name": "params", + "value": { + "worktree": "id:repo-1::/work/feature" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-6", + "ok": false + } + } + } + }, + "recording": { + "scenario": "matrix-live-worktree-name-worktree.show-3", + "checkpoints": [ + { + "id": "live-worktree-name-stream.prelude:subscribed", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:ready", + "observation": { + "sender": ["c7ea51c18a03"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "dcfa9a8e959c", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:named", + "observation": { + "sender": ["94437e18f7e8"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "7926694cda85", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:refreshed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": ["bdc95c0ab9bc", "0861c192faf1", "b17f8702145e"], + "settlements": { + "mount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.prelude:re-subscribed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.normal:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "b3c977d010c6"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "89ff819afc4f", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "977eb5ae1513"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-absent:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "977eb5ae1513"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "ed23a553453d"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.result-null:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "ed23a553453d"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "2aba0c9abcb7"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-ok-missing:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "2aba0c9abcb7"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "5349b43d9f6a"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-string-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "5349b43d9f6a"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "5275daa092e8"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.inner-false-object-error:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "5275daa092e8"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "1e4d934273b4"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "1e4d934273b4"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "f15adc8a2158"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.outer-refused-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "f15adc8a2158"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "71e0e7404275"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.method-not-found:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "71e0e7404275"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "61367c8d7fca", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "24e54ca7ee2e"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "24e54ca7ee2e"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:replayed", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "c83d4825afe7"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + }, + { + "id": "live-worktree-name-stream.transport-rejection-no-message:unmounted", + "observation": { + "sender": ["94437e18f7e8", "a6dad5b3250f", "c83d4825afe7"], + "payloads": [ + "bdc95c0ab9bc", + "0861c192faf1", + "b17f8702145e", + "56c66d671d13", + "bbdf51d110d4", + "767a3f460b84", + "0dcafb9453a6" + ], + "settlements": { + "mount": "eb79a9b3682a", + "cutover": "eb79a9b3682a", + "unmount": "eb79a9b3682a" + }, + "state": "592ccd522724", + "effects": [] + } + } + ] + } +} 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 7ffa2203aae..d404b5a4bca 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "88da63e9f56e02dbe8404471e23251f9b13fd00b1ab10c19aa15b3a73128a53e", "platform": "darwin", @@ -50,9 +50,10 @@ } } }, - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "213d2dbb9be4": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 }, "37db94f2b504": { "name": "terminal.send#1", @@ -252,10 +253,6 @@ "isRpcDeliveryUnknown": true } }, - "b83e56a4ec7e": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "bb0a3578940a": { "name": "terminal.send#1", "args": [ @@ -390,6 +387,11 @@ } } }, + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "e23dda10e475": { "name": "terminal.send#1", "args": [ @@ -565,7 +567,7 @@ "id": "native-chat-image-paste-single.normal:pasted", "observation": { "sender": ["52ae659a3d36", "518651fd2840"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "84e5ca07cb7a" }, @@ -577,7 +579,7 @@ "id": "native-chat-image-paste-single.result-absent:pasted", "observation": { "sender": ["0c34ad3edfd4"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -589,7 +591,7 @@ "id": "native-chat-image-paste-single.result-null:pasted", "observation": { "sender": ["ca4bb356176b"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -601,7 +603,7 @@ "id": "native-chat-image-paste-single.inner-ok-missing:pasted", "observation": { "sender": ["bb0a3578940a"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -613,7 +615,7 @@ "id": "native-chat-image-paste-single.inner-false-string-error:pasted", "observation": { "sender": ["eee5069757c1"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -625,7 +627,7 @@ "id": "native-chat-image-paste-single.inner-false-object-error:pasted", "observation": { "sender": ["efe52c3cedea"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -637,7 +639,7 @@ "id": "native-chat-image-paste-single.outer-refused:pasted", "observation": { "sender": ["604f82044ca0"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -649,7 +651,7 @@ "id": "native-chat-image-paste-single.outer-refused-no-message:pasted", "observation": { "sender": ["37db94f2b504"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -661,7 +663,7 @@ "id": "native-chat-image-paste-single.method-not-found:pasted", "observation": { "sender": ["e23dda10e475"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "7ed3d39f0607" }, @@ -673,7 +675,7 @@ "id": "native-chat-image-paste-single.transport-rejection:pasted", "observation": { "sender": ["f0668186d466"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "a947768bc0ed" }, @@ -685,7 +687,7 @@ "id": "native-chat-image-paste-single.transport-rejection-no-message:pasted", "observation": { "sender": ["d4132868cdd1"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "one": "c7584e82c72f" }, 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 80de28b0d1d..008663cd1dd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "89023bb3ad07d59dba75f227addac9d6a138e52b11e8ed6a64515f2bb1989367", "platform": "darwin", @@ -51,9 +51,10 @@ } } }, - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "213d2dbb9be4": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 }, "33dc42a773cf": { "name": "terminal.send#2", @@ -533,10 +534,6 @@ "isRpcDeliveryUnknown": true } }, - "b83e56a4ec7e": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "c299c7a89e41": { "failure": { "$rpc": "null" @@ -553,6 +550,11 @@ "isRpcDeliveryUnknown": true } }, + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "e74d7d62aa22": { "failure": "transport failure", "pasted": "unpasted" @@ -565,7 +567,7 @@ "id": "native-chat-image-paste-single.normal:pasted", "observation": { "sender": ["52ae659a3d36", "518651fd2840"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "84e5ca07cb7a" }, @@ -577,7 +579,7 @@ "id": "native-chat-image-paste-single.result-absent:pasted", "observation": { "sender": ["52ae659a3d36", "3e9f7d21cc21"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -589,7 +591,7 @@ "id": "native-chat-image-paste-single.result-null:pasted", "observation": { "sender": ["52ae659a3d36", "a73b2d8ca709"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -601,7 +603,7 @@ "id": "native-chat-image-paste-single.inner-ok-missing:pasted", "observation": { "sender": ["52ae659a3d36", "8d344f82224c"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -613,7 +615,7 @@ "id": "native-chat-image-paste-single.inner-false-string-error:pasted", "observation": { "sender": ["52ae659a3d36", "6e8c79b0fe06"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -625,7 +627,7 @@ "id": "native-chat-image-paste-single.inner-false-object-error:pasted", "observation": { "sender": ["52ae659a3d36", "5c8b9cec7cee"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -637,7 +639,7 @@ "id": "native-chat-image-paste-single.outer-refused:pasted", "observation": { "sender": ["52ae659a3d36", "6c5110b83c72"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -649,7 +651,7 @@ "id": "native-chat-image-paste-single.outer-refused-no-message:pasted", "observation": { "sender": ["52ae659a3d36", "65ccd8e86b19"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -661,7 +663,7 @@ "id": "native-chat-image-paste-single.method-not-found:pasted", "observation": { "sender": ["52ae659a3d36", "43c685a0f4cb"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "7ed3d39f0607" }, @@ -673,7 +675,7 @@ "id": "native-chat-image-paste-single.transport-rejection:pasted", "observation": { "sender": ["52ae659a3d36", "33dc42a773cf"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "a947768bc0ed" }, @@ -685,7 +687,7 @@ "id": "native-chat-image-paste-single.transport-rejection-no-message:pasted", "observation": { "sender": ["52ae659a3d36", "0e1de3f0fafc"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "c7584e82c72f" }, 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 b23c5c3833b..1bede4a3a26 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "0478b692709ef0fe3cd75bf0d47fc27fcbb50ebc779e231537ba36638a0125f8", "platform": "darwin", @@ -116,10 +116,6 @@ "isRpcDeliveryUnknown": false } }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5884da2bfdb4": { "name": "clipboard.startImageUpload#1", "args": [ @@ -268,9 +264,10 @@ } } }, - "7a67576b4db6": { - "name": "clipboard.saveImageAsTempFile#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}" + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 }, "7d50e9097d4b": { "name": "clipboard.saveImageAsTempFile#1", @@ -332,10 +329,6 @@ } } }, - "8504c3b81dd7": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "873e759fa035": { "name": "clipboard.startImageUpload#1", "args": [ @@ -367,6 +360,11 @@ } } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -416,6 +414,11 @@ }, "uploaded": "unuploaded" }, + "a8cff4297929": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -430,10 +433,6 @@ "failure": "", "uploaded": "unuploaded" }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "b782aed57bef": { "name": "clipboard.startImageUpload#1", "args": [ @@ -503,6 +502,11 @@ "startedAt": 0 } }, + "d6a7fe2e0164": { + "name": "clipboard.saveImageAsTempFile#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.saveImageAsTempFile\",\"params\":{\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\",\"connectionId\":\"connection-1\"}}", + "sent": 2 + }, "d8eb6923f5c3": { "name": "clipboard.startImageUpload#1", "args": [ @@ -588,7 +592,7 @@ "id": "native-chat-image-upload-start-refused.normal:refused", "observation": { "sender": ["7e48c58139e5", "d3e85c1d5bb4"], - "payloads": ["520b3fe0fb07", "b69a955ea891"], + "payloads": ["8dfd1f053efc", "72c805fadcfb"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -600,7 +604,7 @@ "id": "native-chat-image-upload-start-refused.result-absent:refused", "observation": { "sender": ["873e759fa035"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "443dd7aae7aa" }, @@ -612,7 +616,7 @@ "id": "native-chat-image-upload-start-refused.result-null:refused", "observation": { "sender": ["10eb844da0d9"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "2360f0a18466" }, @@ -624,7 +628,7 @@ "id": "native-chat-image-upload-start-refused.inner-ok-missing:refused", "observation": { "sender": ["d8eb6923f5c3", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -636,7 +640,7 @@ "id": "native-chat-image-upload-start-refused.inner-false-string-error:refused", "observation": { "sender": ["9dea35e9f187", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -648,7 +652,7 @@ "id": "native-chat-image-upload-start-refused.inner-false-object-error:refused", "observation": { "sender": ["64cf59fb95a9", "f61098e90dc1"], - "payloads": ["520b3fe0fb07", "8504c3b81dd7"], + "payloads": ["8dfd1f053efc", "a8cff4297929"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -660,7 +664,7 @@ "id": "native-chat-image-upload-start-refused.outer-refused:refused", "observation": { "sender": ["71c09680e90b"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "32a7c0ae7918" }, @@ -672,7 +676,7 @@ "id": "native-chat-image-upload-start-refused.outer-refused-no-message:refused", "observation": { "sender": ["6f4464fb363d"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "f3b516f62081" }, @@ -684,7 +688,7 @@ "id": "native-chat-image-upload-start-refused.method-not-found:refused", "observation": { "sender": ["12f2bb1c7b16", "7d50e9097d4b"], - "payloads": ["520b3fe0fb07", "7a67576b4db6"], + "payloads": ["8dfd1f053efc", "d6a7fe2e0164"], "settlements": { "normal": "9270aeb7d9c6" }, @@ -696,7 +700,7 @@ "id": "native-chat-image-upload-start-refused.transport-rejection:refused", "observation": { "sender": ["5884da2bfdb4"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "a947768bc0ed" }, @@ -708,7 +712,7 @@ "id": "native-chat-image-upload-start-refused.transport-rejection-no-message:refused", "observation": { "sender": ["b782aed57bef"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "c7584e82c72f" }, 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 57ce984b14b..73ee6ed5d58 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "1305f50c6e838d89d0a9e65d9011d2a532a2f75f7b3aea73f9e33330214f5724", "platform": "darwin", @@ -264,6 +264,11 @@ } } }, + "71ba996139a2": { + "name": "settings.mutateNativeChatSessionOptions#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}", + "sent": 1 + }, "738c95d85c66": { "name": "settings.mutateNativeChatSessionOptions#1", "args": [ @@ -390,10 +395,6 @@ } } }, - "9c0980cfe789": { - "name": "settings.mutateNativeChatSessionOptions#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" - }, "a2a1cfb0ec3f": { "name": "settings.mutateNativeChatSessionOptions#1", "args": [ @@ -487,7 +488,7 @@ "id": "native-chat-session-option-pick-written.normal:written", "observation": { "sender": ["738c95d85c66"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -499,7 +500,7 @@ "id": "native-chat-session-option-pick-written.result-absent:written", "observation": { "sender": ["a2a1cfb0ec3f"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -511,7 +512,7 @@ "id": "native-chat-session-option-pick-written.result-null:written", "observation": { "sender": ["8c7187df17ee"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -523,7 +524,7 @@ "id": "native-chat-session-option-pick-written.inner-ok-missing:written", "observation": { "sender": ["6b6f06b19722"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -535,7 +536,7 @@ "id": "native-chat-session-option-pick-written.inner-false-string-error:written", "observation": { "sender": ["53eb0204a2b0"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -547,7 +548,7 @@ "id": "native-chat-session-option-pick-written.inner-false-object-error:written", "observation": { "sender": ["7944fdd65c78"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -559,7 +560,7 @@ "id": "native-chat-session-option-pick-written.outer-refused:written", "observation": { "sender": ["6b4c03125e83"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -571,7 +572,7 @@ "id": "native-chat-session-option-pick-written.outer-refused-no-message:written", "observation": { "sender": ["1963baf2c0ff"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -583,7 +584,7 @@ "id": "native-chat-session-option-pick-written.method-not-found:written", "observation": { "sender": ["087f0393107f"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -595,7 +596,7 @@ "id": "native-chat-session-option-pick-written.transport-rejection:written", "observation": { "sender": ["13047e7a65a3"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, @@ -607,7 +608,7 @@ "id": "native-chat-session-option-pick-written.transport-rejection-no-message:written", "observation": { "sender": ["c7e368586865"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, 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 cf78b21f110..6c11e6ed4b0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "860d3a80815ec68dc3fe2891a69888b80ec60fa205940e31f14643fb1097ead5", "platform": "darwin", @@ -46,10 +46,6 @@ } } }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "34a453846d11": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -159,10 +155,6 @@ } } }, - "6bb5bb25e4d4": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "7291a73df186": { "status": "fulfilled", "startedAt": 0, @@ -276,6 +268,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "bca437e23d8a": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -456,6 +453,11 @@ "ok": false } } + }, + "f61b028e9602": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -465,7 +467,7 @@ "id": "native-chat-write-accepted.normal:accepted", "observation": { "sender": ["c7c300e28254", "960f67ee14e2"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -477,7 +479,7 @@ "id": "native-chat-write-accepted.result-absent:accepted", "observation": { "sender": ["c7c300e28254", "bca437e23d8a"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -489,7 +491,7 @@ "id": "native-chat-write-accepted.result-null:accepted", "observation": { "sender": ["c7c300e28254", "d642e739823d"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -501,7 +503,7 @@ "id": "native-chat-write-accepted.inner-ok-missing:accepted", "observation": { "sender": ["c7c300e28254", "6aad8cc2e655"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -513,7 +515,7 @@ "id": "native-chat-write-accepted.inner-false-string-error:accepted", "observation": { "sender": ["c7c300e28254", "cb9a9683ab1e"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -525,7 +527,7 @@ "id": "native-chat-write-accepted.inner-false-object-error:accepted", "observation": { "sender": ["c7c300e28254", "34a453846d11"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -537,7 +539,7 @@ "id": "native-chat-write-accepted.outer-refused:accepted", "observation": { "sender": ["c7c300e28254", "84777d7d765a"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -549,7 +551,7 @@ "id": "native-chat-write-accepted.outer-refused-no-message:accepted", "observation": { "sender": ["c7c300e28254", "dc19ad107e96"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -561,7 +563,7 @@ "id": "native-chat-write-accepted.method-not-found:accepted", "observation": { "sender": ["c7c300e28254", "ad01b4d8b4de"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -573,7 +575,7 @@ "id": "native-chat-write-accepted.transport-rejection:accepted", "observation": { "sender": ["c7c300e28254", "0203262b5432"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -585,7 +587,7 @@ "id": "native-chat-write-accepted.transport-rejection-no-message:accepted", "observation": { "sender": ["c7c300e28254", "4f58026b7877"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, 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 93d41d19165..bd140db83b0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "c4193d972250dbe72907dcd32b8300b22986edfa5eeb651268c3838835177c64", "platform": "darwin", @@ -54,10 +54,6 @@ } } }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "19f53fb21e4e": { "body": "rejected" }, @@ -223,10 +219,6 @@ } } }, - "6bb5bb25e4d4": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "6decb41791d9": { "name": "terminal.send#1", "args": [ @@ -393,6 +385,11 @@ "settledAt": 0, "value": "rejected" }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "b7728627ecad": { "name": "terminal.send#1", "args": [ @@ -524,6 +521,11 @@ "startedAt": 0, "settledAt": 0, "value": "unknown" + }, + "f61b028e9602": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -533,7 +535,7 @@ "id": "native-chat-write-accepted.normal:accepted", "observation": { "sender": ["c7c300e28254", "960f67ee14e2"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, @@ -545,7 +547,7 @@ "id": "native-chat-write-accepted.result-absent:accepted", "observation": { "sender": ["5506ce9fc47a"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -557,7 +559,7 @@ "id": "native-chat-write-accepted.result-null:accepted", "observation": { "sender": ["66db9c7b8675"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -569,7 +571,7 @@ "id": "native-chat-write-accepted.inner-ok-missing:accepted", "observation": { "sender": ["6decb41791d9"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -581,7 +583,7 @@ "id": "native-chat-write-accepted.inner-false-string-error:accepted", "observation": { "sender": ["14a6ba9e9dc8"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -593,7 +595,7 @@ "id": "native-chat-write-accepted.inner-false-object-error:accepted", "observation": { "sender": ["b95efad2c5d7"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -605,7 +607,7 @@ "id": "native-chat-write-accepted.outer-refused:accepted", "observation": { "sender": ["b7728627ecad"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -617,7 +619,7 @@ "id": "native-chat-write-accepted.outer-refused-no-message:accepted", "observation": { "sender": ["4b95872cc64f"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -629,7 +631,7 @@ "id": "native-chat-write-accepted.method-not-found:accepted", "observation": { "sender": ["9117084b9a95"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, @@ -641,7 +643,7 @@ "id": "native-chat-write-accepted.transport-rejection:accepted", "observation": { "sender": ["905b5deb0588"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "ed1d171deda5" }, @@ -653,7 +655,7 @@ "id": "native-chat-write-accepted.transport-rejection-no-message:accepted", "observation": { "sender": ["4c1c30022324"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "ed1d171deda5" }, 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 ccabbb57f99..dd616b38eac 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9", "scenarioSha256": "b7a862c0de7dd4efcdf3f4db7c5aeda6b765ab58498f40f3b21232264758b16f", "platform": "darwin", @@ -418,10 +418,6 @@ } } }, - "adcb4be58b77": { - "name": "notifications.testPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}" - }, "b7f125cb7db0": { "crash": { "$rpc": "null" @@ -555,6 +551,11 @@ "Troubleshooting", "Could not send through Orca’s push service. Try again." ] + }, + "f9579518a4a0": { + "name": "notifications.testPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}", + "sent": 1 } }, "recording": { @@ -576,7 +577,7 @@ "id": "notifications-display-test-accepted.prelude:sending", "observation": { "sender": ["9d82b982e2bd"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -589,7 +590,7 @@ "id": "notifications-display-test-accepted.normal:accepted", "observation": { "sender": ["519501f39af2"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -602,7 +603,7 @@ "id": "notifications-display-test-accepted.result-absent:accepted", "observation": { "sender": ["4e433b95285b"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -615,7 +616,7 @@ "id": "notifications-display-test-accepted.result-null:accepted", "observation": { "sender": ["3102dea8de47"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -628,7 +629,7 @@ "id": "notifications-display-test-accepted.inner-ok-missing:accepted", "observation": { "sender": ["35ad92adc9dd"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -641,7 +642,7 @@ "id": "notifications-display-test-accepted.inner-false-string-error:accepted", "observation": { "sender": ["e280f318d7c6"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -654,7 +655,7 @@ "id": "notifications-display-test-accepted.inner-false-object-error:accepted", "observation": { "sender": ["a19d4669147d"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -667,7 +668,7 @@ "id": "notifications-display-test-accepted.outer-refused:accepted", "observation": { "sender": ["bfc9b1f5d3b6"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -680,7 +681,7 @@ "id": "notifications-display-test-accepted.outer-refused-no-message:accepted", "observation": { "sender": ["208105435ce5"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -693,7 +694,7 @@ "id": "notifications-display-test-accepted.method-not-found:accepted", "observation": { "sender": ["a31521995940"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -706,7 +707,7 @@ "id": "notifications-display-test-accepted.transport-rejection:accepted", "observation": { "sender": ["489ba4bd43da"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -719,7 +720,7 @@ "id": "notifications-display-test-accepted.transport-rejection-no-message:accepted", "observation": { "sender": ["423fdf156b67"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" 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 947f4335145..7df983f7f2f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524", "scenarioSha256": "9ab21cda2ac956c70ddd23fe589778bbb46333314508cf92770d668ba59d5a90", "platform": "darwin", @@ -256,6 +256,11 @@ } } }, + "8bc1cd9d9993": { + "name": "notifications.getMissedSince#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -389,10 +394,6 @@ } } }, - "afd5e55d2004": { - "name": "notifications.getMissedSince#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}" - }, "b45fce07f72d": { "name": "notifications.getMissedSince#1", "args": [ @@ -553,7 +554,7 @@ "id": "push-dismissal-tray-reconciled.prelude:requested", "observation": { "sender": ["9aba86eb07e4"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "9270aeb7d9c6" }, @@ -565,7 +566,7 @@ "id": "push-dismissal-tray-reconciled.normal:reconciled", "observation": { "sender": ["ac56c3fc846f"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -577,7 +578,7 @@ "id": "push-dismissal-tray-reconciled.result-absent:reconciled", "observation": { "sender": ["538677482207"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -589,7 +590,7 @@ "id": "push-dismissal-tray-reconciled.result-null:reconciled", "observation": { "sender": ["b45fce07f72d"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -601,7 +602,7 @@ "id": "push-dismissal-tray-reconciled.inner-ok-missing:reconciled", "observation": { "sender": ["35a8f1665a60"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -613,7 +614,7 @@ "id": "push-dismissal-tray-reconciled.inner-false-string-error:reconciled", "observation": { "sender": ["9658e14eeea9"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -625,7 +626,7 @@ "id": "push-dismissal-tray-reconciled.inner-false-object-error:reconciled", "observation": { "sender": ["0375564c20d2"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -637,7 +638,7 @@ "id": "push-dismissal-tray-reconciled.outer-refused:reconciled", "observation": { "sender": ["12a51134490b"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -649,7 +650,7 @@ "id": "push-dismissal-tray-reconciled.outer-refused-no-message:reconciled", "observation": { "sender": ["3edd0c4f94c5"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -661,7 +662,7 @@ "id": "push-dismissal-tray-reconciled.method-not-found:reconciled", "observation": { "sender": ["6769d136aaaa"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, @@ -673,7 +674,7 @@ "id": "push-dismissal-tray-reconciled.transport-rejection:reconciled", "observation": { "sender": ["ec2490deff5d"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "a947768bc0ed" }, @@ -685,7 +686,7 @@ "id": "push-dismissal-tray-reconciled.transport-rejection-no-message:reconciled", "observation": { "sender": ["d40294206150"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "c7584e82c72f" }, 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 792c8a66e02..31fa2a695f4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "c77a518d35203370669fea20f7669d7695a2ec851f22b220a8be417c546efeab", "platform": "darwin", @@ -220,10 +220,6 @@ "settledAt": 0, "value": true }, - "95f8386a206f": { - "name": "notifications.registerPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}" - }, "9efcd0543760": { "name": "notifications.registerPush#1", "args": [ @@ -299,9 +295,10 @@ } } }, - "acb7d3830175": { + "aff6f3c3c1c1": { "name": "notifications.unregisterPush#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}", + "sent": 2 }, "b3199f217b27": { "name": "notifications.registerPush#1", @@ -501,6 +498,11 @@ } } }, + "e45f138ab181": { + "name": "notifications.registerPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}", + "sent": 1 + }, "e60c81d67095": { "register": false, "unregister": true @@ -513,7 +515,7 @@ "id": "notifications-push-registered.normal:settled", "observation": { "sender": ["d30fd4b61f0c", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -526,7 +528,7 @@ "id": "notifications-push-registered.result-absent:settled", "observation": { "sender": ["9efcd0543760", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -539,7 +541,7 @@ "id": "notifications-push-registered.result-null:settled", "observation": { "sender": ["0bbe8daa9ab4", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -552,7 +554,7 @@ "id": "notifications-push-registered.inner-ok-missing:settled", "observation": { "sender": ["a60f8fdb595d", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -565,7 +567,7 @@ "id": "notifications-push-registered.inner-false-string-error:settled", "observation": { "sender": ["e13a6969f606", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -578,7 +580,7 @@ "id": "notifications-push-registered.inner-false-object-error:settled", "observation": { "sender": ["19d1a2755f20", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -591,7 +593,7 @@ "id": "notifications-push-registered.outer-refused:settled", "observation": { "sender": ["1572598fbe7d", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -604,7 +606,7 @@ "id": "notifications-push-registered.outer-refused-no-message:settled", "observation": { "sender": ["b3199f217b27", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -617,7 +619,7 @@ "id": "notifications-push-registered.method-not-found:settled", "observation": { "sender": ["bf47435ebba0", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -630,7 +632,7 @@ "id": "notifications-push-registered.transport-rejection:settled", "observation": { "sender": ["456f2c64521a", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" @@ -643,7 +645,7 @@ "id": "notifications-push-registered.transport-rejection-no-message:settled", "observation": { "sender": ["69f036fbc850", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "7ed3d39f0607", "unregister": "84e5ca07cb7a" 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 f818ca23ce4..2ed071690c5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "bb772b4b000644f18b48dcf78b05863b30906bcf588824d94eff086014fa69e8", "platform": "darwin", @@ -195,10 +195,6 @@ } } }, - "95f8386a206f": { - "name": "notifications.registerPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}" - }, "a2a7434b9852": { "name": "notifications.unregisterPush#1", "args": [ @@ -236,9 +232,10 @@ } } }, - "acb7d3830175": { + "aff6f3c3c1c1": { "name": "notifications.unregisterPush#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}", + "sent": 2 }, "b39a27f847f4": { "name": "notifications.unregisterPush#1", @@ -416,6 +413,11 @@ "register": true, "unregister": true }, + "e45f138ab181": { + "name": "notifications.registerPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}", + "sent": 1 + }, "f15abe409747": { "register": true, "unregister": false @@ -463,7 +465,7 @@ "id": "notifications-push-registered.normal:settled", "observation": { "sender": ["d30fd4b61f0c", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -476,7 +478,7 @@ "id": "notifications-push-registered.result-absent:settled", "observation": { "sender": ["d30fd4b61f0c", "d406965b8037"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -489,7 +491,7 @@ "id": "notifications-push-registered.result-null:settled", "observation": { "sender": ["d30fd4b61f0c", "22ed5c2ac2b7"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -502,7 +504,7 @@ "id": "notifications-push-registered.inner-ok-missing:settled", "observation": { "sender": ["d30fd4b61f0c", "28f4a635b976"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -515,7 +517,7 @@ "id": "notifications-push-registered.inner-false-string-error:settled", "observation": { "sender": ["d30fd4b61f0c", "9234bb49a69c"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -528,7 +530,7 @@ "id": "notifications-push-registered.inner-false-object-error:settled", "observation": { "sender": ["d30fd4b61f0c", "a2a7434b9852"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" @@ -541,7 +543,7 @@ "id": "notifications-push-registered.outer-refused:settled", "observation": { "sender": ["d30fd4b61f0c", "48bb9fd519d2"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "7ed3d39f0607" @@ -554,7 +556,7 @@ "id": "notifications-push-registered.outer-refused-no-message:settled", "observation": { "sender": ["d30fd4b61f0c", "fc898c7ec9a2"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "7ed3d39f0607" @@ -567,7 +569,7 @@ "id": "notifications-push-registered.method-not-found:settled", "observation": { "sender": ["d30fd4b61f0c", "cf57ad4ffc6f"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "7ed3d39f0607" @@ -580,7 +582,7 @@ "id": "notifications-push-registered.transport-rejection:settled", "observation": { "sender": ["d30fd4b61f0c", "d07a57ce1015"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "7ed3d39f0607" @@ -593,7 +595,7 @@ "id": "notifications-push-registered.transport-rejection-no-message:settled", "observation": { "sender": ["d30fd4b61f0c", "11a192e519cb"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "7ed3d39f0607" 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 b5e43dfcdc4..ce27dca9705 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "a28912c9abb97a227904723ff0de8162de31fce66c056da1813e0c18f6e01ccf", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", @@ -57,14 +62,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "1f4d3b93dbcb": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -167,6 +164,11 @@ } } }, + "402b39e9424c": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}", + "sent": 4 + }, "40741be1b91f": { "outcome": "failed: relay credential install result does not match pairing journal", "savedHost": { @@ -217,10 +219,6 @@ "value": "pair-fixture-1", "sent": 4 }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -274,6 +272,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "6b9f1bf73e55": { "name": "bundle-written", "value": { @@ -501,15 +504,16 @@ "value": "direct", "sent": 2 }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "c71b2f8a6993": { "name": "status.get#1", "args": [ @@ -601,7 +605,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.normal:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -622,7 +626,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-absent:paired-over-direct", "observation": { "sender": ["7d3dd7f9381b", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -643,7 +647,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-null:paired-over-direct", "observation": { "sender": ["88200d49083c", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -664,7 +668,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-ok-missing:paired-over-direct", "observation": { "sender": ["4451bb95a76e", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -685,7 +689,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-string-error:paired-over-direct", "observation": { "sender": ["944bf432f199", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -706,7 +710,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-object-error:paired-over-direct", "observation": { "sender": ["89236e432861", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -727,7 +731,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused:paired-over-direct", "observation": { "sender": ["16cd464bf664", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "7479478e7dbb" }, @@ -745,7 +749,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused-no-message:paired-over-direct", "observation": { "sender": ["9cdf3c107e7b", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "7479478e7dbb" }, @@ -763,7 +767,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.method-not-found:paired-over-direct", "observation": { "sender": ["c71b2f8a6993", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "7479478e7dbb" }, @@ -781,7 +785,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection:paired-over-direct", "observation": { "sender": ["de87f6266897", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "7479478e7dbb" }, @@ -799,7 +803,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection-no-message:paired-over-direct", "observation": { "sender": ["2698c9770ad3", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "7479478e7dbb" }, 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 a20dffd1e06..41e3e9500eb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "ccd2ef7c617d13bdf5987f5f89fed6917206205268633b9ef061b92c3580d672", "platform": "darwin", @@ -23,6 +23,11 @@ "isRpcDeliveryUnknown": false } }, + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", @@ -33,14 +38,6 @@ "value": "relay-host-0001x", "sent": 4 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "1f4d3b93dbcb": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}" - }, "1f5e864a522b": { "name": "pairing.getEndpoints#1", "args": [ @@ -209,6 +206,11 @@ } } }, + "402b39e9424c": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}", + "sent": 4 + }, "477b001b0374": { "name": "candidate-closed", "value": "direct", @@ -236,10 +238,6 @@ }, "timedOut": false }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -293,6 +291,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "6b9f1bf73e55": { "name": "bundle-written", "value": { @@ -612,15 +615,16 @@ } } }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "c3972c583458": { "outcome": "failed: method_not_found: Unknown method", "savedHost": { @@ -732,7 +736,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.normal:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -753,7 +757,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-absent:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "70f05a6ea245"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "8cfbee11e6cb" }, @@ -771,7 +775,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-null:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "289142b34109"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "06dee54a3689" }, @@ -789,7 +793,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-ok-missing:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "3831443fbd6a"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "f4f341e9c757" }, @@ -807,7 +811,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-string-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "9c12a8b6e493"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d6e7487f3275" }, @@ -825,7 +829,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-object-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "afd530d7725d"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d6e7487f3275" }, @@ -843,7 +847,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "a87762c5c803"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "4e3b57d795cb" }, @@ -861,7 +865,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "a4a0ea018b22"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d56bfdbce702" }, @@ -879,7 +883,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.method-not-found:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "711f43497438"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "f624ac81d963" }, @@ -897,7 +901,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "7ecd29c16927"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "a947768bc0ed" }, @@ -915,7 +919,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "1f5e864a522b"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "c7584e82c72f" }, 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 6b3286f7db2..3b9ff6bfcd1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "399fa8b85d9c2fc341ea2284a54aed278fd1a5b19a84cc9284c29d5a583bc519", "platform": "darwin", @@ -55,6 +55,11 @@ "isRpcDeliveryUnknown": false } }, + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", @@ -102,14 +107,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "1f4d3b93dbcb": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -181,6 +178,11 @@ } } }, + "402b39e9424c": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}", + "sent": 4 + }, "44341dbd8021": { "name": "pairing.provisionRelay#1", "args": [ @@ -267,10 +269,6 @@ "isRpcDeliveryUnknown": false } }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -324,6 +322,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "6b9f1bf73e55": { "name": "bundle-written", "value": { @@ -568,15 +571,16 @@ } } }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "c3bd958eef0c": { "name": "pairing.provisionRelay#1", "args": [ @@ -750,7 +754,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.normal:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -771,7 +775,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-absent:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "818e73b19334"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "8cfbee11e6cb" }, @@ -789,7 +793,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-null:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "7b9574d1b723"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "06dee54a3689" }, @@ -807,7 +811,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-ok-missing:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "44341dbd8021"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "f19ff6c94d68" }, @@ -825,7 +829,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-string-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "765407131fe4"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "5099f8914209" }, @@ -843,7 +847,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-object-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "139fb7a92eac"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "5099f8914209" }, @@ -861,7 +865,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "c3bd958eef0c"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "4e3b57d795cb" }, @@ -879,7 +883,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "f4797c8e8b5e"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "d56bfdbce702" }, @@ -897,7 +901,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.method-not-found:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "afe249bdfa5f"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -917,7 +921,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "77d3c0d012b7"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "a947768bc0ed" }, @@ -935,7 +939,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "0539a34c02a8"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "c7584e82c72f" }, 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 45287db5678..f8b13cef0c8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "14931cc23cd0e6d850f596c880014c606834898acbeee4abff3dc83a94b0c6c0", "platform": "darwin", @@ -44,6 +44,11 @@ } } }, + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", @@ -87,14 +92,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "1f4d3b93dbcb": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -199,6 +196,11 @@ } } }, + "402b39e9424c": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}", + "sent": 4 + }, "477b001b0374": { "name": "candidate-closed", "value": "direct", @@ -209,10 +211,6 @@ "value": "pair-fixture-1", "sent": 4 }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -300,6 +298,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "64f57e43ef2a": { "name": "status.get#2", "args": [ @@ -513,15 +516,16 @@ } } }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ca7cb1785a59": { "name": "candidate-closed", "value": "relay", @@ -579,7 +583,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.normal:paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -600,7 +604,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-absent:paired-over-direct", "observation": { "sender": ["26f802fad080", "72578f116416", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -621,7 +625,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.result-null:paired-over-direct", "observation": { "sender": ["26f802fad080", "18654b1dc666", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -642,7 +646,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-ok-missing:paired-over-direct", "observation": { "sender": ["26f802fad080", "3d89f7592b95", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -663,7 +667,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-string-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "64f57e43ef2a", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -684,7 +688,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.inner-false-object-error:paired-over-direct", "observation": { "sender": ["26f802fad080", "6a19478ef955", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -705,7 +709,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused:paired-over-direct", "observation": { "sender": ["26f802fad080", "a920731a050a", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -726,7 +730,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.outer-refused-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "624a629f1833", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -747,7 +751,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.method-not-found:paired-over-direct", "observation": { "sender": ["26f802fad080", "a7eb3507d2eb", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -768,7 +772,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection:paired-over-direct", "observation": { "sender": ["26f802fad080", "088babc6e1f7", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, @@ -789,7 +793,7 @@ "id": "pairing-pre-profile-direct-wins-and-provisions.transport-rejection-no-message:paired-over-direct", "observation": { "sender": ["26f802fad080", "cf2b86e124ae", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, 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 3ccaacc82e5..f09568f7314 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "926f0d8c37a33d465bf3a04f056600cfc9f1669b1eca7e968aa1a1f797a74c61", "platform": "darwin", @@ -158,6 +158,11 @@ "itemType": "ISSUE" } }, + "219dced97206": { + "name": "github.project.updateIssueBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}", + "sent": 1 + }, "22021a77bba3": { "error": "Unknown method", "mutating": false, @@ -275,10 +280,6 @@ "value": "Connection closed", "sent": 1 }, - "52a7a7239fbb": { - "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"addLabels\":[\"recorded\"]}}}" - }, "538107aee28b": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -783,7 +784,7 @@ "id": "b2.prelude:pending", "observation": { "sender": ["e5673036d45e"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -796,7 +797,7 @@ "id": "b2.prelude:cleanup", "observation": { "sender": ["c1213bb55edc"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -809,7 +810,7 @@ "id": "b2.normal:settled", "observation": { "sender": ["f6a325457a33"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -828,7 +829,7 @@ "id": "b2.result-absent:settled", "observation": { "sender": ["1ddee45b4bc3"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -841,7 +842,7 @@ "id": "b2.result-null:settled", "observation": { "sender": ["6f0142de3930"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -854,7 +855,7 @@ "id": "b2.inner-ok-missing:settled", "observation": { "sender": ["7a55b2ec205b"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -873,7 +874,7 @@ "id": "b2.inner-false-string-error:settled", "observation": { "sender": ["90cf28d0b84a"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -886,7 +887,7 @@ "id": "b2.inner-false-object-error:settled", "observation": { "sender": ["6b5f90ac558c"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -899,7 +900,7 @@ "id": "b2.outer-refused:settled", "observation": { "sender": ["f12e58847110"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -912,7 +913,7 @@ "id": "b2.outer-refused-no-message:settled", "observation": { "sender": ["5f998cf9a955"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -925,7 +926,7 @@ "id": "b2.method-not-found:settled", "observation": { "sender": ["064bc8399cbc"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -938,7 +939,7 @@ "id": "b2.transport-rejection:settled", "observation": { "sender": ["538107aee28b"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -951,7 +952,7 @@ "id": "b2.transport-rejection-no-message:settled", "observation": { "sender": ["37124163eb76"], - "payloads": ["52a7a7239fbb"], + "payloads": ["219dced97206"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 c3583d4e26d..40c982ecb95 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "042d0f9ef57e2a18bf661b79f2f8f92a12125dbc0fc65dd8605f8cd6f7059d10", "platform": "darwin", @@ -23,10 +23,6 @@ "isRpcDeliveryUnknown": false } }, - "0acd5ee5dc7c": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "0f448fcd9d34": { "name": "pairing.getEndpoints#2", "args": [ @@ -197,10 +193,6 @@ "pending": true, "version": 3 }, - "4877d080e309": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -211,10 +203,6 @@ "isRpcDeliveryUnknown": false } }, - "675a60981a5e": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}" - }, "6cfdd8ca783a": { "outcome": "failed: method_not_found: Unknown method", "pending": true, @@ -357,6 +345,11 @@ "isRpcDeliveryUnknown": false } }, + "923a7c4f532d": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}", + "sent": 2 + }, "9ade8126917f": { "name": "pairing.provisionRelay#1", "args": [ @@ -406,6 +399,11 @@ "pending": true, "version": 3 }, + "a69b88101d55": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 1 + }, "a70a2b66080c": { "outcome": "failed: refused: ", "pending": true, @@ -421,6 +419,11 @@ "isRpcDeliveryUnknown": true } }, + "b16bdfbd5633": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 3 + }, "c343ba927b6d": { "name": "pairing.getEndpoints#1", "args": [ @@ -698,7 +701,7 @@ "id": "relay-rotation-installs-and-commits.normal:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "0f448fcd9d34"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f2c843a9b548" }, @@ -710,7 +713,7 @@ "id": "relay-rotation-installs-and-commits.result-absent:credential-rotated", "observation": { "sender": ["1ba12f7dc6fe"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "8cfbee11e6cb" }, @@ -722,7 +725,7 @@ "id": "relay-rotation-installs-and-commits.result-null:credential-rotated", "observation": { "sender": ["c3df301b7508"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "06dee54a3689" }, @@ -734,7 +737,7 @@ "id": "relay-rotation-installs-and-commits.inner-ok-missing:credential-rotated", "observation": { "sender": ["207da1016f62"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "f4f341e9c757" }, @@ -746,7 +749,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-string-error:credential-rotated", "observation": { "sender": ["8125976183d4"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "d6e7487f3275" }, @@ -758,7 +761,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-object-error:credential-rotated", "observation": { "sender": ["fa0f50329835"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "d6e7487f3275" }, @@ -770,7 +773,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused:credential-rotated", "observation": { "sender": ["d5feeb4ff8d9"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "4e3b57d795cb" }, @@ -782,7 +785,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused-no-message:credential-rotated", "observation": { "sender": ["c343ba927b6d"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "d56bfdbce702" }, @@ -794,7 +797,7 @@ "id": "relay-rotation-installs-and-commits.method-not-found:credential-rotated", "observation": { "sender": ["1f6b5b2ee817"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "f624ac81d963" }, @@ -806,7 +809,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection:credential-rotated", "observation": { "sender": ["db9eecca46e6"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "a947768bc0ed" }, @@ -818,7 +821,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection-no-message:credential-rotated", "observation": { "sender": ["7d18aba92a1d"], - "payloads": ["4877d080e309"], + "payloads": ["a69b88101d55"], "settlements": { "rotate": "c7584e82c72f" }, 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 c4f70a4f852..704ef9b6bc7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "530aa1f2ddc6fce10d485c8a160ae3e695250b2e80e1e7fc3e8dacb9f5117347", "platform": "darwin", @@ -90,10 +90,6 @@ } } }, - "0acd5ee5dc7c": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "0f448fcd9d34": { "name": "pairing.getEndpoints#2", "args": [ @@ -201,10 +197,6 @@ "pending": true, "version": 3 }, - "4877d080e309": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "4c1952cbb792": { "name": "pairing.getEndpoints#2", "args": [ @@ -248,10 +240,6 @@ "isRpcDeliveryUnknown": false } }, - "675a60981a5e": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}" - }, "6ab9ae10c756": { "name": "pairing.getEndpoints#2", "args": [ @@ -363,6 +351,11 @@ "isRpcDeliveryUnknown": false } }, + "923a7c4f532d": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}", + "sent": 2 + }, "9ade8126917f": { "name": "pairing.provisionRelay#1", "args": [ @@ -412,6 +405,11 @@ "pending": true, "version": 3 }, + "a69b88101d55": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 1 + }, "a70a2b66080c": { "outcome": "failed: refused: ", "pending": true, @@ -427,6 +425,11 @@ "isRpcDeliveryUnknown": true } }, + "b16bdfbd5633": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 3 + }, "bb37bb9fb653": { "name": "pairing.getEndpoints#2", "args": [ @@ -698,7 +701,7 @@ "id": "relay-rotation-installs-and-commits.normal:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "0f448fcd9d34"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f2c843a9b548" }, @@ -710,7 +713,7 @@ "id": "relay-rotation-installs-and-commits.result-absent:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "da555bb21d0b"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "8cfbee11e6cb" }, @@ -722,7 +725,7 @@ "id": "relay-rotation-installs-and-commits.result-null:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "4c1952cbb792"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "06dee54a3689" }, @@ -734,7 +737,7 @@ "id": "relay-rotation-installs-and-commits.inner-ok-missing:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "ec57a4c29769"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f4f341e9c757" }, @@ -746,7 +749,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-string-error:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "cacd06c33d83"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "d6e7487f3275" }, @@ -758,7 +761,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-object-error:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "079a33443470"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "d6e7487f3275" }, @@ -770,7 +773,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "6ab9ae10c756"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "4e3b57d795cb" }, @@ -782,7 +785,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused-no-message:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "19afd695caf8"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "d56bfdbce702" }, @@ -794,7 +797,7 @@ "id": "relay-rotation-installs-and-commits.method-not-found:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "bb37bb9fb653"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f624ac81d963" }, @@ -806,7 +809,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "0994327510d4"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "a947768bc0ed" }, @@ -818,7 +821,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection-no-message:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "e5d3d5384555"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "c7584e82c72f" }, 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 378e3e682e0..cb8a47b2f75 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "18b1855f354c23cd5bb7af0db698f0a23d28208c3c6b7347f667bf6cd3ed612f", "platform": "darwin", @@ -23,10 +23,6 @@ "isRpcDeliveryUnknown": false } }, - "0acd5ee5dc7c": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "0f448fcd9d34": { "name": "pairing.getEndpoints#2", "args": [ @@ -133,10 +129,6 @@ } } }, - "4877d080e309": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -190,10 +182,6 @@ } } }, - "675a60981a5e": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}" - }, "6cfdd8ca783a": { "outcome": "failed: method_not_found: Unknown method", "pending": true, @@ -416,6 +404,11 @@ } } }, + "923a7c4f532d": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}", + "sent": 2 + }, "9ade8126917f": { "name": "pairing.provisionRelay#1", "args": [ @@ -460,6 +453,11 @@ "pending": true, "version": 3 }, + "a69b88101d55": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 1 + }, "a70a2b66080c": { "outcome": "failed: refused: ", "pending": true, @@ -475,6 +473,11 @@ "isRpcDeliveryUnknown": true } }, + "b16bdfbd5633": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 3 + }, "bc4aa6dd08a2": { "name": "pairing.provisionRelay#1", "args": [ @@ -718,7 +721,7 @@ "id": "relay-rotation-installs-and-commits.normal:credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "0f448fcd9d34"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f2c843a9b548" }, @@ -730,7 +733,7 @@ "id": "relay-rotation-installs-and-commits.result-absent:credential-rotated", "observation": { "sender": ["8336e309abb8", "d76c653d35ca"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "8cfbee11e6cb" }, @@ -742,7 +745,7 @@ "id": "relay-rotation-installs-and-commits.result-null:credential-rotated", "observation": { "sender": ["8336e309abb8", "db2a43cbdbc3"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "06dee54a3689" }, @@ -754,7 +757,7 @@ "id": "relay-rotation-installs-and-commits.inner-ok-missing:credential-rotated", "observation": { "sender": ["8336e309abb8", "70f7b5793181"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "f19ff6c94d68" }, @@ -766,7 +769,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-string-error:credential-rotated", "observation": { "sender": ["8336e309abb8", "854b508a4dce"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "5099f8914209" }, @@ -778,7 +781,7 @@ "id": "relay-rotation-installs-and-commits.inner-false-object-error:credential-rotated", "observation": { "sender": ["8336e309abb8", "8e35765f186e"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "5099f8914209" }, @@ -790,7 +793,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused:credential-rotated", "observation": { "sender": ["8336e309abb8", "bc4aa6dd08a2"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "4e3b57d795cb" }, @@ -802,7 +805,7 @@ "id": "relay-rotation-installs-and-commits.outer-refused-no-message:credential-rotated", "observation": { "sender": ["8336e309abb8", "f252d71165b4"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "d56bfdbce702" }, @@ -814,7 +817,7 @@ "id": "relay-rotation-installs-and-commits.method-not-found:credential-rotated", "observation": { "sender": ["8336e309abb8", "7166e9997c47"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "f624ac81d963" }, @@ -826,7 +829,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection:credential-rotated", "observation": { "sender": ["8336e309abb8", "538f8ffc076c"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "a947768bc0ed" }, @@ -838,7 +841,7 @@ "id": "relay-rotation-installs-and-commits.transport-rejection-no-message:credential-rotated", "observation": { "sender": ["8336e309abb8", "3f50a99cf01c"], - "payloads": ["4877d080e309", "675a60981a5e"], + "payloads": ["a69b88101d55", "923a7c4f532d"], "settlements": { "rotate": "c7584e82c72f" }, 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 e2ce97a0a99..2fe74eb5bfc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "03355bc2696d02fed125d9f0e24c6c26c8df2f3709c1c5f4412aaf9317cd41d4", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "002b5db3666b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 3 + }, "06dee54a3689": { "status": "rejected", "startedAt": 0, @@ -80,10 +85,6 @@ } } }, - "1d7fdb67d4da": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" - }, "2b3f0d69e5c0": { "journal": "present", "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]" @@ -93,6 +94,11 @@ "value": "host-1", "sent": 3 }, + "4a4993ef4038": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}", + "sent": 2 + }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -198,9 +204,10 @@ }, "outcome": "declined" }, - "7583d8b57ef8": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 }, "7d023da12fdb": { "name": "journal-cleared", @@ -449,10 +456,6 @@ } } }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "c0a543a83bd5": { "name": "pairing.getEndpoints#1", "args": [ @@ -701,7 +704,7 @@ "id": "relay-direct-upgrade-commits.normal:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "157eaa06961f"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "590b3311b0c4" }, @@ -713,7 +716,7 @@ "id": "relay-direct-upgrade-commits.result-absent:direct-upgrade-committed", "observation": { "sender": ["f85f71f6d927"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "8cfbee11e6cb" }, @@ -725,7 +728,7 @@ "id": "relay-direct-upgrade-commits.result-null:direct-upgrade-committed", "observation": { "sender": ["c0a543a83bd5"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "06dee54a3689" }, @@ -737,7 +740,7 @@ "id": "relay-direct-upgrade-commits.inner-ok-missing:direct-upgrade-committed", "observation": { "sender": ["eadc22371637"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "f4f341e9c757" }, @@ -749,7 +752,7 @@ "id": "relay-direct-upgrade-commits.inner-false-string-error:direct-upgrade-committed", "observation": { "sender": ["84a67e5b95a5"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "d6e7487f3275" }, @@ -761,7 +764,7 @@ "id": "relay-direct-upgrade-commits.inner-false-object-error:direct-upgrade-committed", "observation": { "sender": ["9631a7132ab0"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "d6e7487f3275" }, @@ -773,7 +776,7 @@ "id": "relay-direct-upgrade-commits.outer-refused:direct-upgrade-committed", "observation": { "sender": ["e4db75cccc06"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "4e3b57d795cb" }, @@ -785,7 +788,7 @@ "id": "relay-direct-upgrade-commits.outer-refused-no-message:direct-upgrade-committed", "observation": { "sender": ["81230fab3114"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "d56bfdbce702" }, @@ -797,7 +800,7 @@ "id": "relay-direct-upgrade-commits.method-not-found:direct-upgrade-committed", "observation": { "sender": ["55af89989a85"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "ee20a1dc39e7" }, @@ -809,7 +812,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection:direct-upgrade-committed", "observation": { "sender": ["e8ffbfb9ecd4"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "a947768bc0ed" }, @@ -821,7 +824,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection-no-message:direct-upgrade-committed", "observation": { "sender": ["d5eb910acc55"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "c7584e82c72f" }, 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 2a2f82bcab7..eb466cb199e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "d0c4dd34645308f30c0999ea74c16b53f20e9183832fdf016c3dc21434744b05", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "002b5db3666b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 3 + }, "06dee54a3689": { "status": "rejected", "startedAt": 0, @@ -113,10 +118,6 @@ } } }, - "1d7fdb67d4da": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" - }, "2b3f0d69e5c0": { "journal": "present", "outcome": "failed: [\n {\n \"expected\": \"object\",\n \"code\": \"invalid_type\",\n \"path\": [],\n \"message\": \"Invalid input: expected object, received null\"\n }\n]" @@ -204,6 +205,11 @@ } } }, + "4a4993ef4038": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}", + "sent": 2 + }, "4deca0026eb4": { "name": "pairing.getEndpoints#2", "args": [ @@ -334,9 +340,10 @@ } } }, - "7583d8b57ef8": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 }, "7d023da12fdb": { "name": "journal-cleared", @@ -549,10 +556,6 @@ } } }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "c6a5d3f3fffe": { "name": "pairing.getEndpoints#2", "args": [ @@ -696,7 +699,7 @@ "id": "relay-direct-upgrade-commits.normal:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "157eaa06961f"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "590b3311b0c4" }, @@ -708,7 +711,7 @@ "id": "relay-direct-upgrade-commits.result-absent:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "de20033f1dbf"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "8cfbee11e6cb" }, @@ -720,7 +723,7 @@ "id": "relay-direct-upgrade-commits.result-null:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "1b79d2790caa"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "06dee54a3689" }, @@ -732,7 +735,7 @@ "id": "relay-direct-upgrade-commits.inner-ok-missing:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "890c5d024d91"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "f4f341e9c757" }, @@ -744,7 +747,7 @@ "id": "relay-direct-upgrade-commits.inner-false-string-error:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "6d07890f0d82"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "d6e7487f3275" }, @@ -756,7 +759,7 @@ "id": "relay-direct-upgrade-commits.inner-false-object-error:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "83501517f8f9"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "d6e7487f3275" }, @@ -768,7 +771,7 @@ "id": "relay-direct-upgrade-commits.outer-refused:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "f9a6d9a9d192"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "4e3b57d795cb" }, @@ -780,7 +783,7 @@ "id": "relay-direct-upgrade-commits.outer-refused-no-message:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "47728c6fb437"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "d56bfdbce702" }, @@ -792,7 +795,7 @@ "id": "relay-direct-upgrade-commits.method-not-found:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "3329c401720a"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "3dc76aecf5e0" }, @@ -804,7 +807,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "4deca0026eb4"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "a947768bc0ed" }, @@ -816,7 +819,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection-no-message:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "c6a5d3f3fffe"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "c7584e82c72f" }, 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 74804d3d40e..be65641b222 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "0fe163f405373adbb1913dddd79d6d596bf88d69fc27c824ba5a2cd4c1406446", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "002b5db3666b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 3 + }, "011ca02158db": { "name": "pairing.provisionRelay#1", "args": [ @@ -150,10 +155,6 @@ } } }, - "1d7fdb67d4da": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" - }, "2a6e0fd0f08e": { "name": "pairing.provisionRelay#1", "args": [ @@ -237,6 +238,11 @@ "value": "host-1", "sent": 3 }, + "4a4993ef4038": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}", + "sent": 2 + }, "4e3b57d795cb": { "status": "rejected", "startedAt": 0, @@ -314,9 +320,10 @@ }, "outcome": "declined" }, - "7583d8b57ef8": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 }, "7d023da12fdb": { "name": "journal-cleared", @@ -627,10 +634,6 @@ } } }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -711,7 +714,7 @@ "id": "relay-direct-upgrade-commits.normal:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "157eaa06961f"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "590b3311b0c4" }, @@ -723,7 +726,7 @@ "id": "relay-direct-upgrade-commits.result-absent:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "bcb3b3b6333a"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "8cfbee11e6cb" }, @@ -735,7 +738,7 @@ "id": "relay-direct-upgrade-commits.result-null:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "ce15ce71fe2b"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "06dee54a3689" }, @@ -747,7 +750,7 @@ "id": "relay-direct-upgrade-commits.inner-ok-missing:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "0799e98bb19f"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "f19ff6c94d68" }, @@ -759,7 +762,7 @@ "id": "relay-direct-upgrade-commits.inner-false-string-error:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "85d4f26647a1"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "5099f8914209" }, @@ -771,7 +774,7 @@ "id": "relay-direct-upgrade-commits.inner-false-object-error:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "9ff97c1fab7b"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "5099f8914209" }, @@ -783,7 +786,7 @@ "id": "relay-direct-upgrade-commits.outer-refused:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "3a68c3c9ea85"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "4e3b57d795cb" }, @@ -795,7 +798,7 @@ "id": "relay-direct-upgrade-commits.outer-refused-no-message:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "8dda0f58317b"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "d56bfdbce702" }, @@ -807,7 +810,7 @@ "id": "relay-direct-upgrade-commits.method-not-found:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "2a6e0fd0f08e"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "ee20a1dc39e7" }, @@ -819,7 +822,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "9017cc29cb80"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "a947768bc0ed" }, @@ -831,7 +834,7 @@ "id": "relay-direct-upgrade-commits.transport-rejection-no-message:direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "011ca02158db"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da"], + "payloads": ["723e3af65fac", "4a4993ef4038"], "settlements": { "upgrade": "c7584e82c72f" }, 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 deff4067601..26fc376928a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "5aaa104a652d4f10cd48ab742112cf59fca22f52bbf85ee3716505a9642fbe37", "platform": "darwin", @@ -53,6 +53,11 @@ } } }, + "2e0a00540206": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}", + "sent": 1 + }, "2eeacc921b96": { "name": "pairing.getEndpoints#2", "args": [ @@ -233,6 +238,11 @@ } } }, + "8ba03f7fcc7b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 2 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -304,10 +314,6 @@ } } }, - "b6e709c11a41": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}" - }, "baf49bcdca70": { "name": "pairing.getEndpoints#1", "args": [ @@ -490,10 +496,6 @@ "settledAt": 0, "value": "recovered" }, - "f98de3f4f0c2": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "fcb233bb6e13": { "name": "pairing.getEndpoints#1", "args": [ @@ -539,7 +541,7 @@ "id": "relay-pairing-recovery-resume-committed.normal:recovered-on-resume", "observation": { "sender": ["c5d6533ca9ce"], - "payloads": ["b6e709c11a41"], + "payloads": ["2e0a00540206"], "settlements": { "recover": "f0723ea3ab16" }, @@ -557,7 +559,7 @@ "id": "relay-pairing-recovery-resume-committed.result-absent:recovered-on-resume", "observation": { "sender": ["35b3ec66b615", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -569,7 +571,7 @@ "id": "relay-pairing-recovery-resume-committed.result-absent:cleanup", "observation": { "sender": ["35b3ec66b615", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -581,7 +583,7 @@ "id": "relay-pairing-recovery-resume-committed.result-null:recovered-on-resume", "observation": { "sender": ["4b671f98d808", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -593,7 +595,7 @@ "id": "relay-pairing-recovery-resume-committed.result-null:cleanup", "observation": { "sender": ["4b671f98d808", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -605,7 +607,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-ok-missing:recovered-on-resume", "observation": { "sender": ["c02af6dd81bf", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -617,7 +619,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-ok-missing:cleanup", "observation": { "sender": ["c02af6dd81bf", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -629,7 +631,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-false-string-error:recovered-on-resume", "observation": { "sender": ["4db4ba57f248", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -641,7 +643,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-false-string-error:cleanup", "observation": { "sender": ["4db4ba57f248", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -653,7 +655,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-false-object-error:recovered-on-resume", "observation": { "sender": ["fcb233bb6e13", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -665,7 +667,7 @@ "id": "relay-pairing-recovery-resume-committed.inner-false-object-error:cleanup", "observation": { "sender": ["fcb233bb6e13", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -677,7 +679,7 @@ "id": "relay-pairing-recovery-resume-committed.outer-refused:recovered-on-resume", "observation": { "sender": ["a772bd8e8c4e", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -689,7 +691,7 @@ "id": "relay-pairing-recovery-resume-committed.outer-refused:cleanup", "observation": { "sender": ["a772bd8e8c4e", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -701,7 +703,7 @@ "id": "relay-pairing-recovery-resume-committed.outer-refused-no-message:recovered-on-resume", "observation": { "sender": ["baf49bcdca70", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -713,7 +715,7 @@ "id": "relay-pairing-recovery-resume-committed.outer-refused-no-message:cleanup", "observation": { "sender": ["baf49bcdca70", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -725,7 +727,7 @@ "id": "relay-pairing-recovery-resume-committed.method-not-found:recovered-on-resume", "observation": { "sender": ["10e679344b45", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -737,7 +739,7 @@ "id": "relay-pairing-recovery-resume-committed.method-not-found:cleanup", "observation": { "sender": ["10e679344b45", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -749,7 +751,7 @@ "id": "relay-pairing-recovery-resume-committed.transport-rejection:recovered-on-resume", "observation": { "sender": ["aede376f279f", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -761,7 +763,7 @@ "id": "relay-pairing-recovery-resume-committed.transport-rejection:cleanup", "observation": { "sender": ["aede376f279f", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, @@ -773,7 +775,7 @@ "id": "relay-pairing-recovery-resume-committed.transport-rejection-no-message:recovered-on-resume", "observation": { "sender": ["83b560135719", "c4e8e63a5f9f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "9270aeb7d9c6" }, @@ -785,7 +787,7 @@ "id": "relay-pairing-recovery-resume-committed.transport-rejection-no-message:cleanup", "observation": { "sender": ["83b560135719", "2eeacc921b96"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b"], "settlements": { "recover": "c8a7c6e1a485" }, 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 302abda4ea4..c380bcaf9d7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "06bf92360e6985770c08a9e53be0f55b6e8ff120d4e6411dacc22e88d08cef32", "platform": "darwin", @@ -71,14 +71,6 @@ "$rpc": "null" } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "37cca55d53d5": { - "name": "files.open#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" - }, "4267c22fd1f9": { "name": "files.createFile#1", "args": [ @@ -114,6 +106,11 @@ } } }, + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 + }, "57c499bb588a": { "name": "files.createFile#1", "args": [ @@ -265,6 +262,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "858443742ca1": { "createError": "Failed to create markdown note", "creatingBrowser": false, @@ -315,10 +317,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "9692063e7d70": { "name": "toast", "value": { @@ -473,6 +471,11 @@ } } }, + "ca3214963232": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}", + "sent": 4 + }, "d38c135a5752": { "name": "files.open#1", "args": [ @@ -584,10 +587,6 @@ } } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" - }, "e6b6cf30c6ee": { "createError": "Unknown method", "creatingBrowser": false, @@ -596,6 +595,11 @@ "$rpc": "null" } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -612,7 +616,7 @@ "id": "session-create-markdown-note.normal:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -624,7 +628,7 @@ "id": "session-create-markdown-note.result-absent:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "6dbcdf95b6b6", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -636,7 +640,7 @@ "id": "session-create-markdown-note.result-null:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "77c6fe7dd40b", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -648,7 +652,7 @@ "id": "session-create-markdown-note.inner-ok-missing:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "97472d30cdaa", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -660,7 +664,7 @@ "id": "session-create-markdown-note.inner-false-string-error:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "b8e28a0d1137", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -672,7 +676,7 @@ "id": "session-create-markdown-note.inner-false-object-error:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "134529524560", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -684,7 +688,7 @@ "id": "session-create-markdown-note.outer-refused:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "71b67af3c605"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -696,7 +700,7 @@ "id": "session-create-markdown-note.outer-refused-no-message:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "d3f9329bc046"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -708,7 +712,7 @@ "id": "session-create-markdown-note.method-not-found:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "b48dafba8627"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -720,7 +724,7 @@ "id": "session-create-markdown-note.transport-rejection:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "57c499bb588a"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -732,7 +736,7 @@ "id": "session-create-markdown-note.transport-rejection-no-message:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "de7d988ecdc7"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7"], "settlements": { "markdown": "eb79a9b3682a" }, 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 a6f5e571cd5..2ff8b92ed36 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "17f87233352ff8e452f061f4558d58b44643efe49313162d4aad140343a1ead9", "platform": "darwin", @@ -92,10 +92,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "22f35b5356ec": { "name": "files.open#1", "args": [ @@ -168,10 +164,6 @@ } } }, - "37cca55d53d5": { - "name": "files.open#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" - }, "388514fefdfe": { "name": "files.open#1", "args": [ @@ -245,6 +237,11 @@ } } }, + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 + }, "58c8c82aa603": { "name": "files.open#1", "args": [ @@ -355,6 +352,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8bdc2aec524d": { "name": "worktree.show#1", "args": [ @@ -390,10 +392,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "95dfbae14c1c": { "name": "toast", "value": { @@ -448,6 +446,11 @@ } } }, + "ca3214963232": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}", + "sent": 4 + }, "d38c135a5752": { "name": "files.open#1", "args": [ @@ -490,10 +493,6 @@ "$rpc": "null" } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" - }, "e6b6cf30c6ee": { "createError": "Unknown method", "creatingBrowser": false, @@ -502,6 +501,11 @@ "$rpc": "null" } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -587,7 +591,7 @@ "id": "session-create-markdown-note.normal:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -599,7 +603,7 @@ "id": "session-create-markdown-note.result-absent:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "388514fefdfe"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -611,7 +615,7 @@ "id": "session-create-markdown-note.result-null:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "ee24e2e55136"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -623,7 +627,7 @@ "id": "session-create-markdown-note.inner-ok-missing:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "0c347b60646f"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -635,7 +639,7 @@ "id": "session-create-markdown-note.inner-false-string-error:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "6d38c61f400a"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -647,7 +651,7 @@ "id": "session-create-markdown-note.inner-false-object-error:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "307d0ae6d2d4"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -659,7 +663,7 @@ "id": "session-create-markdown-note.outer-refused:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "58c8c82aa603"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -671,7 +675,7 @@ "id": "session-create-markdown-note.outer-refused-no-message:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "22f35b5356ec"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -683,7 +687,7 @@ "id": "session-create-markdown-note.method-not-found:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "fd7e611b3d86"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -695,7 +699,7 @@ "id": "session-create-markdown-note.transport-rejection:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "76cf096ee3b3"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -707,7 +711,7 @@ "id": "session-create-markdown-note.transport-rejection-no-message:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "1992078b76bc"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, 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 8ada5378608..fd3d44bb18f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "5100bd674509d1d83b1e2594eee036af21ea14b12226185b44070555d1d43060", "platform": "darwin", @@ -93,10 +93,6 @@ "$rpc": "null" } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1fe9fbe7d375": { "createError": "Cannot read properties of undefined (reading 'capabilities')", "creatingBrowser": false, @@ -105,10 +101,6 @@ "$rpc": "null" } }, - "37cca55d53d5": { - "name": "files.open#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" - }, "39cfe991f857": { "name": "toast", "value": { @@ -215,6 +207,11 @@ } } }, + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 + }, "5216935e6a30": { "name": "toast", "value": { @@ -317,6 +314,11 @@ "$rpc": "null" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8bdc2aec524d": { "name": "worktree.show#1", "args": [ @@ -382,10 +384,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -467,6 +465,11 @@ }, "sent": 1 }, + "ca3214963232": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}", + "sent": 4 + }, "d38c135a5752": { "name": "files.open#1", "args": [ @@ -517,10 +520,6 @@ "$rpc": "null" } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" - }, "e6b6cf30c6ee": { "createError": "Unknown method", "creatingBrowser": false, @@ -529,6 +528,11 @@ "$rpc": "null" } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -622,7 +626,7 @@ "id": "session-create-markdown-note.normal:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -634,7 +638,7 @@ "id": "session-create-markdown-note.result-absent:created", "observation": { "sender": ["90817e8c47cb"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -646,7 +650,7 @@ "id": "session-create-markdown-note.result-null:created", "observation": { "sender": ["0d163aa89099"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -658,7 +662,7 @@ "id": "session-create-markdown-note.inner-ok-missing:created", "observation": { "sender": ["48e2bdc38094"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -670,7 +674,7 @@ "id": "session-create-markdown-note.inner-false-string-error:created", "observation": { "sender": ["f2a2b92aa73c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -682,7 +686,7 @@ "id": "session-create-markdown-note.inner-false-object-error:created", "observation": { "sender": ["f68f9c806fb2"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -694,7 +698,7 @@ "id": "session-create-markdown-note.outer-refused:created", "observation": { "sender": ["0b7588536afb"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -706,7 +710,7 @@ "id": "session-create-markdown-note.outer-refused-no-message:created", "observation": { "sender": ["a8d9f204690e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -718,7 +722,7 @@ "id": "session-create-markdown-note.method-not-found:created", "observation": { "sender": ["753f8f2aac3b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -730,7 +734,7 @@ "id": "session-create-markdown-note.transport-rejection:created", "observation": { "sender": ["4b0fb2833d76"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -742,7 +746,7 @@ "id": "session-create-markdown-note.transport-rejection-no-message:created", "observation": { "sender": ["74a9cdb3c227"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "markdown": "eb79a9b3682a" }, 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 3aea7accfcb..fe0f6ef5789 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "b9ca49e401df8710924f200f92a071bac2e120ed43df7be2cfb8a325ab1cd9cb", "platform": "darwin", @@ -115,10 +115,6 @@ }, "sent": 2 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2fa02ab5402f": { "name": "worktree.show#1", "args": [ @@ -155,10 +151,6 @@ } } }, - "37cca55d53d5": { - "name": "files.open#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" - }, "39a0b3c0e319": { "name": "worktree.show#1", "args": [ @@ -234,6 +226,11 @@ }, "sent": 2 }, + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 + }, "533d020d6123": { "name": "worktree.show#1", "args": [ @@ -287,6 +284,11 @@ "$rpc": "null" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8845bcbdc51b": { "name": "worktree.show#1", "args": [ @@ -356,10 +358,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "a139e9a165cd": { "name": "toast", "value": { @@ -448,6 +446,11 @@ } } }, + "ca3214963232": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}", + "sent": 4 + }, "cff8b7a5e7ce": { "name": "worktree.show#1", "args": [ @@ -532,10 +535,6 @@ "$rpc": "null" } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" - }, "e6b6cf30c6ee": { "createError": "Unknown method", "creatingBrowser": false, @@ -544,6 +543,11 @@ "$rpc": "null" } }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -622,7 +626,7 @@ "id": "session-create-markdown-note.normal:created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -634,7 +638,7 @@ "id": "session-create-markdown-note.result-absent:created", "observation": { "sender": ["a56852d6836b", "533d020d6123"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -646,7 +650,7 @@ "id": "session-create-markdown-note.result-null:created", "observation": { "sender": ["a56852d6836b", "39a0b3c0e319"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -658,7 +662,7 @@ "id": "session-create-markdown-note.inner-ok-missing:created", "observation": { "sender": ["a56852d6836b", "06cbb9a1b167"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -670,7 +674,7 @@ "id": "session-create-markdown-note.inner-false-string-error:created", "observation": { "sender": ["a56852d6836b", "8845bcbdc51b"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -682,7 +686,7 @@ "id": "session-create-markdown-note.inner-false-object-error:created", "observation": { "sender": ["a56852d6836b", "2fa02ab5402f"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -694,7 +698,7 @@ "id": "session-create-markdown-note.outer-refused:created", "observation": { "sender": ["a56852d6836b", "cff8b7a5e7ce"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -706,7 +710,7 @@ "id": "session-create-markdown-note.outer-refused-no-message:created", "observation": { "sender": ["a56852d6836b", "0b4d42954d52"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -718,7 +722,7 @@ "id": "session-create-markdown-note.method-not-found:created", "observation": { "sender": ["a56852d6836b", "c6aa5c0a7bd1"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -730,7 +734,7 @@ "id": "session-create-markdown-note.transport-rejection:created", "observation": { "sender": ["a56852d6836b", "fd50303f30ce"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -742,7 +746,7 @@ "id": "session-create-markdown-note.transport-rejection-no-message:created", "observation": { "sender": ["a56852d6836b", "fc05e7103b6c"], - "payloads": ["1e5b32902af7", "9199aee60486"], + "payloads": ["852980e2efc0", "e7e6fb5e264b"], "settlements": { "markdown": "eb79a9b3682a" }, 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 25e805b8170..092b566cb6f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "e54684bad13aa8b8b4794e06351c709053b1c4c6d87776ecdbb1dd1b4406a694", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "03647b94e7bf": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "061e626847d1": { "name": "worktree.show#1", "args": [ @@ -281,6 +277,11 @@ } } }, + "b348c9f55bf6": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 + }, "b80f8c3fa354": { "name": "unhandled-rejection", "value": { @@ -489,7 +490,7 @@ "id": "session-diff-notes-loaded.normal:loaded", "observation": { "sender": ["aca7af380492"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -501,7 +502,7 @@ "id": "session-diff-notes-loaded.result-absent:loaded", "observation": { "sender": ["4b75b3dd3b11"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -513,7 +514,7 @@ "id": "session-diff-notes-loaded.result-null:loaded", "observation": { "sender": ["061e626847d1"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -525,7 +526,7 @@ "id": "session-diff-notes-loaded.inner-ok-missing:loaded", "observation": { "sender": ["789b682a36a9"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -537,7 +538,7 @@ "id": "session-diff-notes-loaded.inner-false-string-error:loaded", "observation": { "sender": ["ee0229ca88e4"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -549,7 +550,7 @@ "id": "session-diff-notes-loaded.inner-false-object-error:loaded", "observation": { "sender": ["bcfad643c288"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -561,7 +562,7 @@ "id": "session-diff-notes-loaded.outer-refused:loaded", "observation": { "sender": ["39356bf6300e"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -573,7 +574,7 @@ "id": "session-diff-notes-loaded.outer-refused-no-message:loaded", "observation": { "sender": ["d122d6f393f0"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -585,7 +586,7 @@ "id": "session-diff-notes-loaded.method-not-found:loaded", "observation": { "sender": ["877275dff6d5"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -597,7 +598,7 @@ "id": "session-diff-notes-loaded.transport-rejection:loaded", "observation": { "sender": ["ebacf8186f13"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, @@ -609,7 +610,7 @@ "id": "session-diff-notes-loaded.transport-rejection-no-message:loaded", "observation": { "sender": ["3c47b5f5f31b"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, 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 062afa4476f..97320db54f2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "c583058382c949e977b7a1287895ed9ccb8cb408b684aef186b629976ff1da4d", "platform": "darwin", @@ -299,6 +299,11 @@ "isRpcDeliveryUnknown": false } }, + "44751250aabd": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}", + "sent": 1 + }, "523a4ad730f7": { "name": "worktree.set#1", "args": [ @@ -536,10 +541,6 @@ } } }, - "9a5a5e546290": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" - }, "9e0132f8d584": { "actionError": "outer refused", "busyAction": { @@ -1015,7 +1016,7 @@ "id": "review-mark-reviewed-persists.normal:persisted", "observation": { "sender": ["78219a737d4d"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1027,7 +1028,7 @@ "id": "review-mark-reviewed-persists.result-absent:persisted", "observation": { "sender": ["1a3792526461"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1039,7 +1040,7 @@ "id": "review-mark-reviewed-persists.result-null:persisted", "observation": { "sender": ["e229d12c47d9"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1051,7 +1052,7 @@ "id": "review-mark-reviewed-persists.inner-ok-missing:persisted", "observation": { "sender": ["fd440bc24ecc"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1063,7 +1064,7 @@ "id": "review-mark-reviewed-persists.inner-false-string-error:persisted", "observation": { "sender": ["93ea0539ca0a"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1075,7 +1076,7 @@ "id": "review-mark-reviewed-persists.inner-false-object-error:persisted", "observation": { "sender": ["f5093e949364"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, @@ -1087,7 +1088,7 @@ "id": "review-mark-reviewed-persists.outer-refused:persisted", "observation": { "sender": ["c3779b733809"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "32a7c0ae7918" }, @@ -1099,7 +1100,7 @@ "id": "review-mark-reviewed-persists.outer-refused-no-message:persisted", "observation": { "sender": ["fcb8d424e616"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "63639602640e" }, @@ -1111,7 +1112,7 @@ "id": "review-mark-reviewed-persists.method-not-found:persisted", "observation": { "sender": ["1cb44c350a93"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "b948e8307e81" }, @@ -1123,7 +1124,7 @@ "id": "review-mark-reviewed-persists.transport-rejection:persisted", "observation": { "sender": ["523a4ad730f7"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "a947768bc0ed" }, @@ -1135,7 +1136,7 @@ "id": "review-mark-reviewed-persists.transport-rejection-no-message:persisted", "observation": { "sender": ["21c2e336c1b2"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "c7584e82c72f" }, 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 5ddf9967eb1..0d6c3c2dd7e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "17e2b30594a2b37e82ff1976377722c2f1c3ae7f01857e50e010a2dd2e89da3a", "platform": "darwin", @@ -80,6 +80,11 @@ } } }, + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2364fea3981d": { "name": "worktree.show#1", "args": [ @@ -186,18 +191,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3bea6b4369e3": { "name": "worktree.show#1", "args": [ @@ -268,10 +261,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -320,6 +309,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4cb3f61eba79": { "name": "worktree.show#2", "args": [ @@ -422,9 +416,15 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", @@ -488,6 +488,11 @@ "startedAt": 0 } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "da3aebbee6f2": { "name": "git.branchCompare#1", "args": [ @@ -872,7 +877,7 @@ "id": "diff-review-snapshot.prelude:pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -891,11 +896,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -915,11 +920,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -939,11 +944,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -963,11 +968,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -987,11 +992,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1011,11 +1016,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1035,11 +1040,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1059,11 +1064,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1083,11 +1088,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1107,11 +1112,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1131,11 +1136,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" 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 de6a01ec477..4981f5469b0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b99f51a5527e42a32ea9203ad75b16f9dd3cdcdc2a3ed235f6467ac1c7e3a4f3", "platform": "darwin", @@ -293,6 +293,11 @@ } } }, + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -479,18 +484,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3ec8052ccdb3": { "name": "worktree.show#1", "args": [ @@ -527,10 +520,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -579,6 +568,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4cb3f61eba79": { "name": "worktree.show#2", "args": [ @@ -732,9 +726,15 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", @@ -1232,6 +1232,11 @@ } } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "c1c0d3047408": { "name": "git.branchCompare#1", "args": [ @@ -1864,7 +1869,7 @@ "id": "diff-review-snapshot.prelude:pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -1883,11 +1888,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1907,11 +1912,11 @@ "a4e1212e045a" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b639d96487b8" @@ -1931,11 +1936,11 @@ "64d19308284f" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b639d96487b8" @@ -1955,11 +1960,11 @@ "aff5f338caa4" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b639d96487b8" @@ -1979,11 +1984,11 @@ "e96a326d9253" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b639d96487b8" @@ -2003,11 +2008,11 @@ "a2897d26f26b" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b639d96487b8" @@ -2027,11 +2032,11 @@ "213d5ce74a73" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "fee89d394a80" @@ -2051,11 +2056,11 @@ "246e8431bafd" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "1e0dda6d45fe" @@ -2075,11 +2080,11 @@ "be771e5c5ce3" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "c0361c08f0ae" @@ -2099,11 +2104,11 @@ "c1c0d3047408" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "1ce85e8e03e6" @@ -2123,11 +2128,11 @@ "30a0765fff24" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "d0aa3b182864" 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 241bed0cb2d..848d0866c8f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "b4627f9ac9bc090a2b48fd35f32d5dc3d66fefe0fb65abab75597ef2c73510ec", "platform": "darwin", @@ -22,6 +22,11 @@ "message": "Update Orca desktop to review changes on mobile." } }, + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -60,18 +65,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -118,10 +111,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -170,6 +159,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4327397d6202": { "name": "git.status#1", "args": [ @@ -247,9 +241,15 @@ "message": "Update Orca desktop to review changes on mobile." } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "773f406d8ab5": { "name": "git.status#1", @@ -445,6 +445,11 @@ "startedAt": 0 } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -939,7 +944,7 @@ "id": "diff-review-snapshot.prelude:pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -958,11 +963,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -975,7 +980,7 @@ "id": "diff-review-snapshot.result-absent:snapshot", "observation": { "sender": ["dedfcab351e6"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "880bffe257f0" }, @@ -987,7 +992,7 @@ "id": "diff-review-snapshot.result-null:snapshot", "observation": { "sender": ["d52732ec0da4"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "880bffe257f0" }, @@ -999,7 +1004,7 @@ "id": "diff-review-snapshot.inner-ok-missing:snapshot", "observation": { "sender": ["b2cc0d6f05e0"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "880bffe257f0" }, @@ -1011,7 +1016,7 @@ "id": "diff-review-snapshot.inner-false-string-error:snapshot", "observation": { "sender": ["925bc1732e6e"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "880bffe257f0" }, @@ -1023,7 +1028,7 @@ "id": "diff-review-snapshot.inner-false-object-error:snapshot", "observation": { "sender": ["f55a580e621c"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "880bffe257f0" }, @@ -1035,7 +1040,7 @@ "id": "diff-review-snapshot.outer-refused:snapshot", "observation": { "sender": ["c7c47b24d772"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "32a7c0ae7918" }, @@ -1047,7 +1052,7 @@ "id": "diff-review-snapshot.outer-refused-no-message:snapshot", "observation": { "sender": ["773f406d8ab5"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "83a3b2ff8260" }, @@ -1059,7 +1064,7 @@ "id": "diff-review-snapshot.method-not-found:snapshot", "observation": { "sender": ["93b9682c496c"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "14804a5e414f" }, @@ -1071,7 +1076,7 @@ "id": "diff-review-snapshot.transport-rejection:snapshot", "observation": { "sender": ["4327397d6202"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "a947768bc0ed" }, @@ -1083,7 +1088,7 @@ "id": "diff-review-snapshot.transport-rejection-no-message:snapshot", "observation": { "sender": ["f04da7e8c374"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "c7584e82c72f" }, 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 5f1a198a3d5..b5fd83721dc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "c9f720134506b6db71b742c219abe736fca1f90070403d7c96df9396fd048b6f", "platform": "darwin", @@ -46,6 +46,11 @@ } } }, + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -84,18 +89,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "335768b54f09": { "name": "repo.list#1", "args": [ @@ -166,10 +159,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -218,6 +207,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4cb3f61eba79": { "name": "worktree.show#2", "args": [ @@ -290,6 +284,11 @@ } } }, + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, "6e5c6593dad8": { "name": "repo.list#1", "args": [ @@ -321,9 +320,10 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", @@ -388,6 +388,11 @@ } } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "cc1facdf008c": { "name": "repo.list#1", "args": [ @@ -872,7 +877,7 @@ "id": "diff-review-snapshot.prelude:pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -891,11 +896,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -915,11 +920,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -939,11 +944,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -963,11 +968,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -987,11 +992,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1011,11 +1016,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1035,11 +1040,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1059,11 +1064,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1083,11 +1088,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1107,11 +1112,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1131,11 +1136,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" 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 4b9433bda9c..8566be0b00f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "f17bb817f9a172e776f1814920d58abc7db122da9c49cfe3bbeaf217f82d70d7", "platform": "darwin", @@ -82,6 +82,11 @@ } } }, + "231aaf164318": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 5 + }, "2432ad799433": { "name": "repo.list#1", "args": [ @@ -120,18 +125,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, - "31bd76fdf517": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -212,10 +205,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -264,6 +253,11 @@ } } }, + "40b17d95f271": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 1 + }, "4a2786144952": { "name": "worktree.show#2", "args": [ @@ -333,9 +327,15 @@ } } }, - "75ceb6a12cfd": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "67fead2b3d30": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 4 + }, + "6f43dceb9058": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 }, "8946064957c4": { "name": "worktree.show#2", @@ -450,6 +450,11 @@ "isRpcDeliveryUnknown": false } }, + "c0edcb195574": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 4 + }, "c3c2c2e9a797": { "status": "rejected", "startedAt": 0, @@ -922,7 +927,7 @@ "id": "diff-review-snapshot.prelude:pending", "observation": { "sender": ["b8b93d3f8005"], - "payloads": ["317a243394fa"], + "payloads": ["40b17d95f271"], "settlements": { "snapshot": "9270aeb7d9c6" }, @@ -941,11 +946,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -965,11 +970,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -989,11 +994,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1013,11 +1018,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1037,11 +1042,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1061,11 +1066,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "f880a1519497" @@ -1085,11 +1090,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "32a7c0ae7918" @@ -1109,11 +1114,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "c3c2c2e9a797" @@ -1133,11 +1138,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "b948e8307e81" @@ -1157,11 +1162,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "a947768bc0ed" @@ -1181,11 +1186,11 @@ "da3aebbee6f2" ], "payloads": [ - "317a243394fa", - "3fa5df34c660", - "3179b4e89c80", - "31bd76fdf517", - "75ceb6a12cfd" + "40b17d95f271", + "c0edcb195574", + "67fead2b3d30", + "6f43dceb9058", + "231aaf164318" ], "settlements": { "snapshot": "c7584e82c72f" 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 c1442d7be24..e1ea8c85ac6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "389c6118f3137b78e88af6b901554b0331c652063a00d8ba3119e0883ce82f25", "platform": "darwin", @@ -327,10 +327,6 @@ } } }, - "be35c536a20e": { - "name": "markdown.saveTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" - }, "c1e52e8ff7d9": { "markdown": { "tab-md": { @@ -543,6 +539,11 @@ "value": { "$rpc": "undefined" } + }, + "f7fe2c70c07e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}", + "sent": 1 } }, "recording": { @@ -552,7 +553,7 @@ "id": "session-markdown-saved.normal:saved", "observation": { "sender": ["a06e17cbe383"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -564,7 +565,7 @@ "id": "session-markdown-saved.result-absent:saved", "observation": { "sender": ["e167231dab00"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -576,7 +577,7 @@ "id": "session-markdown-saved.result-null:saved", "observation": { "sender": ["b7782c6305b8"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -588,7 +589,7 @@ "id": "session-markdown-saved.inner-ok-missing:saved", "observation": { "sender": ["dec169f24f21"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -600,7 +601,7 @@ "id": "session-markdown-saved.inner-false-string-error:saved", "observation": { "sender": ["2a1476024127"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -612,7 +613,7 @@ "id": "session-markdown-saved.inner-false-object-error:saved", "observation": { "sender": ["3cab53956ec5"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -624,7 +625,7 @@ "id": "session-markdown-saved.outer-refused:saved", "observation": { "sender": ["db1a22f5197e"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -636,7 +637,7 @@ "id": "session-markdown-saved.outer-refused-no-message:saved", "observation": { "sender": ["d4147861284a"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -648,7 +649,7 @@ "id": "session-markdown-saved.method-not-found:saved", "observation": { "sender": ["bd0650cd45fe"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -660,7 +661,7 @@ "id": "session-markdown-saved.transport-rejection:saved", "observation": { "sender": ["cb2fb2a37dbd"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, @@ -672,7 +673,7 @@ "id": "session-markdown-saved.transport-rejection-no-message:saved", "observation": { "sender": ["7afacfd8853f"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, 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 9057ac7175d..8427223ccf4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "d6a0472f274d55aab584b58b67018d042ee1ba6799f42072a8a5986f45554bfc", "platform": "darwin", @@ -187,9 +187,10 @@ } } }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6e5c6593dad8": { "name": "repo.list#1", @@ -411,7 +412,7 @@ "id": "native-chat-readability-local-repo.normal:readable", "observation": { "sender": ["0f1ed2b7a695"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -423,7 +424,7 @@ "id": "native-chat-readability-local-repo.result-absent:readable", "observation": { "sender": ["2ebe4d776f9b"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -435,7 +436,7 @@ "id": "native-chat-readability-local-repo.result-null:readable", "observation": { "sender": ["38e790fd9e9c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -447,7 +448,7 @@ "id": "native-chat-readability-local-repo.inner-ok-missing:readable", "observation": { "sender": ["06b63e0d9986"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -459,7 +460,7 @@ "id": "native-chat-readability-local-repo.inner-false-string-error:readable", "observation": { "sender": ["f96e83d33565"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -471,7 +472,7 @@ "id": "native-chat-readability-local-repo.inner-false-object-error:readable", "observation": { "sender": ["9d3fa0db2665"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -483,7 +484,7 @@ "id": "native-chat-readability-local-repo.outer-refused:readable", "observation": { "sender": ["b9f0f1e94cd9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -495,7 +496,7 @@ "id": "native-chat-readability-local-repo.outer-refused-no-message:readable", "observation": { "sender": ["06fc8e7b85d5"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -507,7 +508,7 @@ "id": "native-chat-readability-local-repo.method-not-found:readable", "observation": { "sender": ["e341bd05e614"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -519,7 +520,7 @@ "id": "native-chat-readability-local-repo.transport-rejection:readable", "observation": { "sender": ["6e5c6593dad8"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -531,7 +532,7 @@ "id": "native-chat-readability-local-repo.transport-rejection-no-message:readable", "observation": { "sender": ["cc1facdf008c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, 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 6559168de5f..0081ec0e0fd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "a60de7b496f8149593a6e89cd2d29e20fdf75d26536592fec6b0100b43322d3b", "platform": "darwin", @@ -46,13 +46,10 @@ } } }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "1d3e6369460d": { "name": "terminal.send#1", @@ -133,6 +130,11 @@ } } }, + "4dfb46310986": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 + }, "4f58026b7877": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -166,10 +168,6 @@ } } }, - "538133eba781": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "60fbbfd9bd11": { "name": "cancel-pending", "value": {}, @@ -358,6 +356,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "bca437e23d8a": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -516,7 +519,7 @@ "id": "native-chat-stop-accepted.normal:first-accepted", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -528,7 +531,7 @@ "id": "native-chat-stop-accepted.normal:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -540,7 +543,7 @@ "id": "native-chat-stop-accepted.result-absent:first-accepted", "observation": { "sender": ["1d3e6369460d", "bca437e23d8a"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -552,7 +555,7 @@ "id": "native-chat-stop-accepted.result-absent:settled", "observation": { "sender": ["1d3e6369460d", "bca437e23d8a", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -564,7 +567,7 @@ "id": "native-chat-stop-accepted.result-null:first-accepted", "observation": { "sender": ["1d3e6369460d", "d642e739823d"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -576,7 +579,7 @@ "id": "native-chat-stop-accepted.result-null:settled", "observation": { "sender": ["1d3e6369460d", "d642e739823d", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -588,7 +591,7 @@ "id": "native-chat-stop-accepted.inner-ok-missing:first-accepted", "observation": { "sender": ["1d3e6369460d", "6aad8cc2e655"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -600,7 +603,7 @@ "id": "native-chat-stop-accepted.inner-ok-missing:settled", "observation": { "sender": ["1d3e6369460d", "6aad8cc2e655", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -612,7 +615,7 @@ "id": "native-chat-stop-accepted.inner-false-string-error:first-accepted", "observation": { "sender": ["1d3e6369460d", "cb9a9683ab1e"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -624,7 +627,7 @@ "id": "native-chat-stop-accepted.inner-false-string-error:settled", "observation": { "sender": ["1d3e6369460d", "cb9a9683ab1e", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -636,7 +639,7 @@ "id": "native-chat-stop-accepted.inner-false-object-error:first-accepted", "observation": { "sender": ["1d3e6369460d", "34a453846d11"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -648,7 +651,7 @@ "id": "native-chat-stop-accepted.inner-false-object-error:settled", "observation": { "sender": ["1d3e6369460d", "34a453846d11", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -660,7 +663,7 @@ "id": "native-chat-stop-accepted.outer-refused:first-accepted", "observation": { "sender": ["1d3e6369460d", "84777d7d765a"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -672,7 +675,7 @@ "id": "native-chat-stop-accepted.outer-refused:settled", "observation": { "sender": ["1d3e6369460d", "84777d7d765a", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -684,7 +687,7 @@ "id": "native-chat-stop-accepted.outer-refused-no-message:first-accepted", "observation": { "sender": ["1d3e6369460d", "dc19ad107e96"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -696,7 +699,7 @@ "id": "native-chat-stop-accepted.outer-refused-no-message:settled", "observation": { "sender": ["1d3e6369460d", "dc19ad107e96", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -708,7 +711,7 @@ "id": "native-chat-stop-accepted.method-not-found:first-accepted", "observation": { "sender": ["1d3e6369460d", "ad01b4d8b4de"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -720,7 +723,7 @@ "id": "native-chat-stop-accepted.method-not-found:settled", "observation": { "sender": ["1d3e6369460d", "ad01b4d8b4de", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -732,7 +735,7 @@ "id": "native-chat-stop-accepted.transport-rejection:first-accepted", "observation": { "sender": ["1d3e6369460d", "0203262b5432"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -744,7 +747,7 @@ "id": "native-chat-stop-accepted.transport-rejection:settled", "observation": { "sender": ["1d3e6369460d", "0203262b5432", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -756,7 +759,7 @@ "id": "native-chat-stop-accepted.transport-rejection-no-message:first-accepted", "observation": { "sender": ["1d3e6369460d", "4f58026b7877"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -768,7 +771,7 @@ "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", "observation": { "sender": ["1d3e6369460d", "4f58026b7877", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, 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 c58d3601668..b751d3ba1da 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "96499f352af2ff884bfa94996659609fdbd228e1d071ad462400b978ab8e239b", "platform": "darwin", @@ -13,17 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "161bbe9b0076": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "1d3e6369460d": { "name": "terminal.send#1", @@ -183,9 +176,15 @@ } } }, - "538133eba781": { + "4dfb46310986": { "name": "terminal.send#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 + }, + "56f3ab2e0d0b": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 3 }, "6042c9b66ea6": { "name": "terminal.send#1", @@ -231,10 +230,6 @@ "value": {}, "sent": 0 }, - "63ceb8bb55e0": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "6d0a95c36d38": { "name": "terminal.send#1", "args": [ @@ -454,6 +449,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "c285187dc5a0": { "name": "terminal.send#1", "args": [ @@ -582,6 +582,11 @@ "$rpc": "undefined" } }, + "f6d9dea0749b": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "feec2910cb8d": { "name": "terminal.send#1", "args": [ @@ -632,7 +637,7 @@ "id": "native-chat-stop-accepted.normal:first-accepted", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -644,7 +649,7 @@ "id": "native-chat-stop-accepted.normal:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -656,7 +661,7 @@ "id": "native-chat-stop-accepted.result-absent:first-accepted", "observation": { "sender": ["492866c0c9e1"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -668,7 +673,7 @@ "id": "native-chat-stop-accepted.result-absent:settled", "observation": { "sender": ["492866c0c9e1", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -680,7 +685,7 @@ "id": "native-chat-stop-accepted.result-null:first-accepted", "observation": { "sender": ["99589ad65e33"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -692,7 +697,7 @@ "id": "native-chat-stop-accepted.result-null:settled", "observation": { "sender": ["99589ad65e33", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -704,7 +709,7 @@ "id": "native-chat-stop-accepted.inner-ok-missing:first-accepted", "observation": { "sender": ["6042c9b66ea6"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -716,7 +721,7 @@ "id": "native-chat-stop-accepted.inner-ok-missing:settled", "observation": { "sender": ["6042c9b66ea6", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -728,7 +733,7 @@ "id": "native-chat-stop-accepted.inner-false-string-error:first-accepted", "observation": { "sender": ["ceb10c5df8a0"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -740,7 +745,7 @@ "id": "native-chat-stop-accepted.inner-false-string-error:settled", "observation": { "sender": ["ceb10c5df8a0", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -752,7 +757,7 @@ "id": "native-chat-stop-accepted.inner-false-object-error:first-accepted", "observation": { "sender": ["feec2910cb8d"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -764,7 +769,7 @@ "id": "native-chat-stop-accepted.inner-false-object-error:settled", "observation": { "sender": ["feec2910cb8d", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -776,7 +781,7 @@ "id": "native-chat-stop-accepted.outer-refused:first-accepted", "observation": { "sender": ["afbfdc05c156"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -788,7 +793,7 @@ "id": "native-chat-stop-accepted.outer-refused:settled", "observation": { "sender": ["afbfdc05c156", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -800,7 +805,7 @@ "id": "native-chat-stop-accepted.outer-refused-no-message:first-accepted", "observation": { "sender": ["c285187dc5a0"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -812,7 +817,7 @@ "id": "native-chat-stop-accepted.outer-refused-no-message:settled", "observation": { "sender": ["c285187dc5a0", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -824,7 +829,7 @@ "id": "native-chat-stop-accepted.method-not-found:first-accepted", "observation": { "sender": ["3e35736d8479"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -836,7 +841,7 @@ "id": "native-chat-stop-accepted.method-not-found:settled", "observation": { "sender": ["3e35736d8479", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -848,7 +853,7 @@ "id": "native-chat-stop-accepted.transport-rejection:first-accepted", "observation": { "sender": ["6d0a95c36d38"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -860,7 +865,7 @@ "id": "native-chat-stop-accepted.transport-rejection:settled", "observation": { "sender": ["6d0a95c36d38", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, @@ -872,7 +877,7 @@ "id": "native-chat-stop-accepted.transport-rejection-no-message:first-accepted", "observation": { "sender": ["cf7a58e6ca1e"], - "payloads": ["1a91fe5e4856"], + "payloads": ["1ce75e48864f"], "settlements": { "stop": "eb79a9b3682a" }, @@ -884,7 +889,7 @@ "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", "observation": { "sender": ["cf7a58e6ca1e", "3c04f6d0878f", "862750fdf5df"], - "payloads": ["1a91fe5e4856", "161bbe9b0076", "63ceb8bb55e0"], + "payloads": ["1ce75e48864f", "f6d9dea0749b", "56f3ab2e0d0b"], "settlements": { "stop": "eb79a9b3682a" }, 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 5617e2c989b..b67e100ed81 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "c28251d769ca9788952ed4fb29d8665c870fb85f2c5a4f32f8af33baf44498af", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "1d3e6369460d": { "name": "terminal.send#1", @@ -183,9 +180,10 @@ } } }, - "538133eba781": { + "4dfb46310986": { "name": "terminal.send#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 }, "60fbbfd9bd11": { "name": "cancel-pending", @@ -424,6 +422,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "c55d03869941": { "name": "terminal.send#2", "args": [ @@ -556,7 +559,7 @@ "id": "native-chat-stop-accepted.prelude:first-accepted", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -568,7 +571,7 @@ "id": "native-chat-stop-accepted.normal:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -580,7 +583,7 @@ "id": "native-chat-stop-accepted.result-absent:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "f23509c16ec5"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -592,7 +595,7 @@ "id": "native-chat-stop-accepted.result-null:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "a192a9818f72"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -604,7 +607,7 @@ "id": "native-chat-stop-accepted.inner-ok-missing:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "304c613c8e0a"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -616,7 +619,7 @@ "id": "native-chat-stop-accepted.inner-false-string-error:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "25c18cb06628"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -628,7 +631,7 @@ "id": "native-chat-stop-accepted.inner-false-object-error:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "4799bb18ef3a"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -640,7 +643,7 @@ "id": "native-chat-stop-accepted.outer-refused:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "90321ca143d3"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -652,7 +655,7 @@ "id": "native-chat-stop-accepted.outer-refused-no-message:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "c7c4d50d3486"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -664,7 +667,7 @@ "id": "native-chat-stop-accepted.method-not-found:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "830b50854dbe"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -676,7 +679,7 @@ "id": "native-chat-stop-accepted.transport-rejection:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "704e2e7084db"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, @@ -688,7 +691,7 @@ "id": "native-chat-stop-accepted.transport-rejection-no-message:settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "c55d03869941"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, 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 a77c84ac58c..767c0eaec43 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "af78542ad2c449b629f8705b940ec92fd16f879a9bcc81ff6ae3a192f804fa2c", "platform": "darwin", @@ -176,6 +176,16 @@ "startedAt": 0 } }, + "2c98f3579e7e": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 4 + }, + "2dfe41567b29": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 + }, "30a0765fff24": { "name": "git.branchCompare#1", "args": [ @@ -208,14 +218,6 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "317a243394fa": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3ec8052ccdb3": { "name": "worktree.show#1", "args": [ @@ -252,10 +254,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -432,6 +430,11 @@ "status": "pending", "startedAt": 0 }, + "9c58eb1d4d91": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 3 + }, "a525bc7c9a5a": { "name": "git.branchCompare#1", "args": [ @@ -620,9 +623,10 @@ } } }, - "da6855b5e2bf": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "edfc4ab3b60b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "f0e28a4b20aa": { "identity": { @@ -728,7 +732,7 @@ "id": "pr-branch-identity.prelude:pending", "observation": { "sender": ["b8b93d3f8005", "c70359272e10", "26accd69bc48"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91"], "settlements": { "identity": "9270aeb7d9c6" }, @@ -740,7 +744,7 @@ "id": "pr-branch-identity.normal:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -752,7 +756,7 @@ "id": "pr-branch-identity.result-absent:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "067a7cb169d0"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -764,7 +768,7 @@ "id": "pr-branch-identity.result-null:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "d8ab15a50216"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -776,7 +780,7 @@ "id": "pr-branch-identity.inner-ok-missing:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "160243f9f693"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -788,7 +792,7 @@ "id": "pr-branch-identity.inner-false-string-error:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "86f2913af9d4"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -800,7 +804,7 @@ "id": "pr-branch-identity.inner-false-object-error:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "a525bc7c9a5a"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -812,7 +816,7 @@ "id": "pr-branch-identity.outer-refused:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "624e3d46d668"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -824,7 +828,7 @@ "id": "pr-branch-identity.outer-refused-no-message:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "0c1103f58536"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -836,7 +840,7 @@ "id": "pr-branch-identity.method-not-found:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "a97f49e6c1a1"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -848,7 +852,7 @@ "id": "pr-branch-identity.transport-rejection:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "c1c0d3047408"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -860,7 +864,7 @@ "id": "pr-branch-identity.transport-rejection-no-message:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "30a0765fff24"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, 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 fe144fd0482..ea559217633 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "1e7cad00f4dfcda65a3830b0b2468020816b940611af1b68600de33cd8c1d7c2", "platform": "darwin", @@ -76,13 +76,15 @@ "startedAt": 0 } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "2c98f3579e7e": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 4 }, - "317a243394fa": { + "2dfe41567b29": { "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "3ec8052ccdb3": { "name": "worktree.show#1", @@ -120,10 +122,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -363,6 +361,11 @@ } } }, + "9c58eb1d4d91": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 3 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -547,10 +550,6 @@ } } }, - "da6855b5e2bf": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" - }, "dedfcab351e6": { "name": "git.status#1", "args": [ @@ -581,6 +580,11 @@ } } }, + "edfc4ab3b60b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 + }, "f043e677bc3b": { "identity": { "branch": { @@ -764,7 +768,7 @@ "id": "pr-branch-identity.prelude:pending", "observation": { "sender": ["b8b93d3f8005", "c70359272e10", "26accd69bc48"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91"], "settlements": { "identity": "9270aeb7d9c6" }, @@ -776,7 +780,7 @@ "id": "pr-branch-identity.normal:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -788,7 +792,7 @@ "id": "pr-branch-identity.result-absent:identity", "observation": { "sender": ["dedfcab351e6", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -800,7 +804,7 @@ "id": "pr-branch-identity.result-null:identity", "observation": { "sender": ["d52732ec0da4", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -812,7 +816,7 @@ "id": "pr-branch-identity.inner-ok-missing:identity", "observation": { "sender": ["b2cc0d6f05e0", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -824,7 +828,7 @@ "id": "pr-branch-identity.inner-false-string-error:identity", "observation": { "sender": ["925bc1732e6e", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -836,7 +840,7 @@ "id": "pr-branch-identity.inner-false-object-error:identity", "observation": { "sender": ["f55a580e621c", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -848,7 +852,7 @@ "id": "pr-branch-identity.outer-refused:identity", "observation": { "sender": ["c7c47b24d772", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -860,7 +864,7 @@ "id": "pr-branch-identity.outer-refused-no-message:identity", "observation": { "sender": ["773f406d8ab5", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -872,7 +876,7 @@ "id": "pr-branch-identity.method-not-found:identity", "observation": { "sender": ["93b9682c496c", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "d344a3126471" }, @@ -884,7 +888,7 @@ "id": "pr-branch-identity.transport-rejection:identity", "observation": { "sender": ["4327397d6202", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "a947768bc0ed" }, @@ -896,7 +900,7 @@ "id": "pr-branch-identity.transport-rejection-no-message:identity", "observation": { "sender": ["f04da7e8c374", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "c7584e82c72f" }, 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 8322a7745ca..87c90ab62da 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d456ec18056eb9663e99d4991784bd802422256d81ddd7509720814da06915f4", "platform": "darwin", @@ -109,13 +109,15 @@ "startedAt": 0 } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "2c98f3579e7e": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 4 }, - "317a243394fa": { + "2dfe41567b29": { "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "335768b54f09": { "name": "repo.list#1", @@ -187,10 +189,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -362,6 +360,11 @@ "status": "pending", "startedAt": 0 }, + "9c58eb1d4d91": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 3 + }, "b8b93d3f8005": { "name": "git.status#1", "args": [ @@ -507,10 +510,6 @@ } } }, - "da6855b5e2bf": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" - }, "e8bad95ea299": { "name": "repo.list#1", "args": [ @@ -547,6 +546,11 @@ } } }, + "edfc4ab3b60b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 + }, "f0e28a4b20aa": { "identity": { "branch": "feature", @@ -718,7 +722,7 @@ "id": "pr-branch-identity.prelude:pending", "observation": { "sender": ["b8b93d3f8005", "c70359272e10", "26accd69bc48"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91"], "settlements": { "identity": "9270aeb7d9c6" }, @@ -730,7 +734,7 @@ "id": "pr-branch-identity.normal:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -742,7 +746,7 @@ "id": "pr-branch-identity.result-absent:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "d76c1ced0b3a", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -754,7 +758,7 @@ "id": "pr-branch-identity.result-null:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "f1a2cd24ab44", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -766,7 +770,7 @@ "id": "pr-branch-identity.inner-ok-missing:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "205b2a8716a9", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -778,7 +782,7 @@ "id": "pr-branch-identity.inner-false-string-error:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "bcd88b035c68", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -790,7 +794,7 @@ "id": "pr-branch-identity.inner-false-object-error:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "e8bad95ea299", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -802,7 +806,7 @@ "id": "pr-branch-identity.outer-refused:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "ff397549b306", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -814,7 +818,7 @@ "id": "pr-branch-identity.outer-refused-no-message:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "521ebac025f3", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -826,7 +830,7 @@ "id": "pr-branch-identity.method-not-found:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "335768b54f09", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -838,7 +842,7 @@ "id": "pr-branch-identity.transport-rejection:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "6e5c6593dad8", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -850,7 +854,7 @@ "id": "pr-branch-identity.transport-rejection-no-message:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "cc1facdf008c", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, 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 f4f2d09da79..07f46f2f31c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "039f26cc90d2239028d6ad1d9ecae9cc976d48f386f2d29fbfa425afc702657d", "platform": "darwin", @@ -211,13 +211,15 @@ } } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "2c98f3579e7e": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 4 }, - "317a243394fa": { + "2dfe41567b29": { "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "3bea6b4369e3": { "name": "worktree.show#1", @@ -289,10 +291,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -463,6 +461,11 @@ "status": "pending", "startedAt": 0 }, + "9c58eb1d4d91": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 3 + }, "a5bd800249ca": { "name": "worktree.show#1", "args": [ @@ -546,10 +549,6 @@ "startedAt": 0 } }, - "da6855b5e2bf": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" - }, "e7543a6ecdbd": { "name": "worktree.show#1", "args": [ @@ -584,6 +583,11 @@ } } }, + "edfc4ab3b60b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 + }, "f0e28a4b20aa": { "identity": { "branch": "feature", @@ -718,7 +722,7 @@ "id": "pr-branch-identity.prelude:pending", "observation": { "sender": ["b8b93d3f8005", "c70359272e10", "26accd69bc48"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91"], "settlements": { "identity": "9270aeb7d9c6" }, @@ -730,7 +734,7 @@ "id": "pr-branch-identity.normal:identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -742,7 +746,7 @@ "id": "pr-branch-identity.result-absent:identity", "observation": { "sender": ["3feccf790548", "f8ddb70a8e3b", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -754,7 +758,7 @@ "id": "pr-branch-identity.result-null:identity", "observation": { "sender": ["3feccf790548", "67ef11487a39", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -766,7 +770,7 @@ "id": "pr-branch-identity.inner-ok-missing:identity", "observation": { "sender": ["3feccf790548", "a5bd800249ca", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -778,7 +782,7 @@ "id": "pr-branch-identity.inner-false-string-error:identity", "observation": { "sender": ["3feccf790548", "2364fea3981d", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -790,7 +794,7 @@ "id": "pr-branch-identity.inner-false-object-error:identity", "observation": { "sender": ["3feccf790548", "0ac283ea970f", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -802,7 +806,7 @@ "id": "pr-branch-identity.outer-refused:identity", "observation": { "sender": ["3feccf790548", "28454093b34a", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -814,7 +818,7 @@ "id": "pr-branch-identity.outer-refused-no-message:identity", "observation": { "sender": ["3feccf790548", "3bea6b4369e3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -826,7 +830,7 @@ "id": "pr-branch-identity.method-not-found:identity", "observation": { "sender": ["3feccf790548", "e7543a6ecdbd", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -838,7 +842,7 @@ "id": "pr-branch-identity.transport-rejection:identity", "observation": { "sender": ["3feccf790548", "5ec805b0c81e", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, @@ -850,7 +854,7 @@ "id": "pr-branch-identity.transport-rejection-no-message:identity", "observation": { "sender": ["3feccf790548", "1131db124495", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, 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 ac4bb6e1b9d..273396c2021 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "0d06d27000a8f6ad66480a16c7b84e8464f4b6e1d775326aeae005926e134cb4", "platform": "darwin", @@ -106,6 +106,11 @@ "isRpcDeliveryUnknown": false } }, + "39a17efe1de6": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "43aa948e3918": { "name": "terminal.send#1", "args": [ @@ -278,6 +283,11 @@ "isRpcDeliveryUnknown": false } }, + "c286eacee37b": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}", + "sent": 2 + }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -329,10 +339,6 @@ } } }, - "d3b1c8acd1dd": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "e15e98b4502f": { "name": "session.tabs.createTerminal#1", "args": [ @@ -448,10 +454,6 @@ } } }, - "f3199cb6db52": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}" - }, "f3edde9dd385": { "name": "session.tabs.createTerminal#1", "args": [ @@ -573,7 +575,7 @@ "id": "pr-triage-launch.prelude:pending", "observation": { "sender": ["b5eced0566fb"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "9270aeb7d9c6" }, @@ -585,7 +587,7 @@ "id": "pr-triage-launch.normal:launched", "observation": { "sender": ["d0f04fba35ce", "43aa948e3918"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -597,7 +599,7 @@ "id": "pr-triage-launch.result-absent:launched", "observation": { "sender": ["e15e98b4502f"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, @@ -609,7 +611,7 @@ "id": "pr-triage-launch.result-null:launched", "observation": { "sender": ["13d5b62d9335"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, @@ -621,7 +623,7 @@ "id": "pr-triage-launch.inner-ok-missing:launched", "observation": { "sender": ["9bf5a66636e8"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, @@ -633,7 +635,7 @@ "id": "pr-triage-launch.inner-false-string-error:launched", "observation": { "sender": ["f3edde9dd385"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, @@ -645,7 +647,7 @@ "id": "pr-triage-launch.inner-false-object-error:launched", "observation": { "sender": ["fc9c768a4e5b"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, @@ -657,7 +659,7 @@ "id": "pr-triage-launch.outer-refused:launched", "observation": { "sender": ["0c54b1949d2e"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "32a7c0ae7918" }, @@ -669,7 +671,7 @@ "id": "pr-triage-launch.outer-refused-no-message:launched", "observation": { "sender": ["ef42ebed8204"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "30ec57518c05" }, @@ -681,7 +683,7 @@ "id": "pr-triage-launch.method-not-found:launched", "observation": { "sender": ["edecb88c17e4"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "b948e8307e81" }, @@ -693,7 +695,7 @@ "id": "pr-triage-launch.transport-rejection:launched", "observation": { "sender": ["f8822a0cc5c3"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "a947768bc0ed" }, @@ -705,7 +707,7 @@ "id": "pr-triage-launch.transport-rejection-no-message:launched", "observation": { "sender": ["4aada9ff077b"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "c7584e82c72f" }, 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 460cc81a4cf..1b9fb8b1a20 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "a288e105a0af6dbbd9657b84f7c4860826184fb7f50dabc6e31b114a70d7ca44", "platform": "darwin", @@ -196,6 +196,11 @@ "isRpcDeliveryUnknown": false } }, + "39a17efe1de6": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "3c187805b423": { "name": "terminal.send#1", "args": [ @@ -402,6 +407,11 @@ "isRpcDeliveryUnknown": false } }, + "c286eacee37b": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}", + "sent": 2 + }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -453,10 +463,6 @@ } } }, - "d3b1c8acd1dd": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "da9bcdd1476c": { "name": "terminal.send#1", "args": [ @@ -503,10 +509,6 @@ "$rpc": "undefined" } }, - "f3199cb6db52": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}" - }, "fa878dff5c9f": { "name": "terminal.send#1", "args": [ @@ -553,7 +555,7 @@ "id": "pr-triage-launch.prelude:pending", "observation": { "sender": ["b5eced0566fb"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "9270aeb7d9c6" }, @@ -565,7 +567,7 @@ "id": "pr-triage-launch.normal:launched", "observation": { "sender": ["d0f04fba35ce", "43aa948e3918"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -577,7 +579,7 @@ "id": "pr-triage-launch.result-absent:launched", "observation": { "sender": ["d0f04fba35ce", "320e153a96c9"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -589,7 +591,7 @@ "id": "pr-triage-launch.result-null:launched", "observation": { "sender": ["d0f04fba35ce", "fa878dff5c9f"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -601,7 +603,7 @@ "id": "pr-triage-launch.inner-ok-missing:launched", "observation": { "sender": ["d0f04fba35ce", "506450411791"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -613,7 +615,7 @@ "id": "pr-triage-launch.inner-false-string-error:launched", "observation": { "sender": ["d0f04fba35ce", "316ab6a726e5"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -625,7 +627,7 @@ "id": "pr-triage-launch.inner-false-object-error:launched", "observation": { "sender": ["d0f04fba35ce", "da9bcdd1476c"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, @@ -637,7 +639,7 @@ "id": "pr-triage-launch.outer-refused:launched", "observation": { "sender": ["d0f04fba35ce", "15926e346f69"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "32a7c0ae7918" }, @@ -649,7 +651,7 @@ "id": "pr-triage-launch.outer-refused-no-message:launched", "observation": { "sender": ["d0f04fba35ce", "10b06f97e842"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "a21f478354cc" }, @@ -661,7 +663,7 @@ "id": "pr-triage-launch.method-not-found:launched", "observation": { "sender": ["d0f04fba35ce", "3c187805b423"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "b948e8307e81" }, @@ -673,7 +675,7 @@ "id": "pr-triage-launch.transport-rejection:launched", "observation": { "sender": ["d0f04fba35ce", "a7379ff0aa00"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "a947768bc0ed" }, @@ -685,7 +687,7 @@ "id": "pr-triage-launch.transport-rejection-no-message:launched", "observation": { "sender": ["d0f04fba35ce", "301d6e3945b3"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "c7584e82c72f" }, 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 7097f64632f..3f08e6de4bf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "d25fc19d4e3e9b12f2a60a076ea10741e13fc45dcd9a76bd3a9d88432c3e6fbe", "platform": "darwin", @@ -50,9 +50,10 @@ } } }, - "0442e34fbb3f": { + "11b4a1934825": { "name": "terminal.focus#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}", + "sent": 1 }, "12726a31e046": { "name": "session.tabs.activate#1", @@ -391,6 +392,11 @@ } } }, + "7cd4f4dc7a60": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 + }, "7d4b7965217b": { "status": "fulfilled", "startedAt": 0, @@ -547,10 +553,6 @@ "isRpcDeliveryUnknown": true } }, - "c9c16f3b6d6f": { - "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" - }, "c9ffa22c6b1c": { "name": "session.tabs.activate#1", "args": [ @@ -809,7 +811,7 @@ "id": "session-tab-activation-focus-and-activate.normal:activated", "observation": { "sender": ["7118e8aeaaae", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "84d74a6de2ca" @@ -822,7 +824,7 @@ "id": "session-tab-activation-focus-and-activate.result-absent:activated", "observation": { "sender": ["7118e8aeaaae", "c9ffa22c6b1c"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "86832c8db827" @@ -835,7 +837,7 @@ "id": "session-tab-activation-focus-and-activate.result-null:activated", "observation": { "sender": ["7118e8aeaaae", "02648396b3a2"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "bb654f2bdea7" @@ -848,7 +850,7 @@ "id": "session-tab-activation-focus-and-activate.inner-ok-missing:activated", "observation": { "sender": ["7118e8aeaaae", "12726a31e046"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "7d4b7965217b" @@ -861,7 +863,7 @@ "id": "session-tab-activation-focus-and-activate.inner-false-string-error:activated", "observation": { "sender": ["7118e8aeaaae", "2a882f2e8b6b"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "5f3ba1cd76e0" @@ -874,7 +876,7 @@ "id": "session-tab-activation-focus-and-activate.inner-false-object-error:activated", "observation": { "sender": ["7118e8aeaaae", "aa61e32f6fc2"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "23857f5f3255" @@ -887,7 +889,7 @@ "id": "session-tab-activation-focus-and-activate.outer-refused:activated", "observation": { "sender": ["7118e8aeaaae", "3b8731983e55"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "ccf7770577df" @@ -900,7 +902,7 @@ "id": "session-tab-activation-focus-and-activate.outer-refused-no-message:activated", "observation": { "sender": ["7118e8aeaaae", "799e842efb06"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "43044100d546" @@ -913,7 +915,7 @@ "id": "session-tab-activation-focus-and-activate.method-not-found:activated", "observation": { "sender": ["7118e8aeaaae", "d53e4b22b23e"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "45c1af849de7" @@ -926,7 +928,7 @@ "id": "session-tab-activation-focus-and-activate.transport-rejection:activated", "observation": { "sender": ["7118e8aeaaae", "8a96ab8caedf"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "a947768bc0ed" @@ -939,7 +941,7 @@ "id": "session-tab-activation-focus-and-activate.transport-rejection-no-message:activated", "observation": { "sender": ["7118e8aeaaae", "e972c0a27347"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "c7584e82c72f" 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 861eabf0723..96d473f9962 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "5b050af6f02aa90f66340838cb5cc53c8fc0d5693d313b653c23881150384874", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0442e34fbb3f": { - "name": "terminal.focus#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" - }, "0590b758ddc1": { "activate": { "id": "frame-2", @@ -37,6 +33,11 @@ } } }, + "11b4a1934825": { + "name": "terminal.focus#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}", + "sent": 1 + }, "159084d9517c": { "name": "terminal.focus#1", "args": [ @@ -289,6 +290,11 @@ } } }, + "7cd4f4dc7a60": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 + }, "84d74a6de2ca": { "status": "fulfilled", "startedAt": 0, @@ -642,10 +648,6 @@ } } }, - "c9c16f3b6d6f": { - "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" - }, "d563a507f706": { "name": "terminal.focus#1", "args": [ @@ -779,7 +781,7 @@ "id": "session-tab-activation-focus-and-activate.normal:activated", "observation": { "sender": ["7118e8aeaaae", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "84d74a6de2ca" @@ -792,7 +794,7 @@ "id": "session-tab-activation-focus-and-activate.result-absent:activated", "observation": { "sender": ["25e79f9d5740", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "fdc16c91d99d", "activate": "84d74a6de2ca" @@ -805,7 +807,7 @@ "id": "session-tab-activation-focus-and-activate.result-null:activated", "observation": { "sender": ["a8af1cd1c301", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "c76b51daf336", "activate": "84d74a6de2ca" @@ -818,7 +820,7 @@ "id": "session-tab-activation-focus-and-activate.inner-ok-missing:activated", "observation": { "sender": ["a0e45ce9a66b", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "2502744f8808", "activate": "84d74a6de2ca" @@ -831,7 +833,7 @@ "id": "session-tab-activation-focus-and-activate.inner-false-string-error:activated", "observation": { "sender": ["d563a507f706", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "57ccbda9fde1", "activate": "84d74a6de2ca" @@ -844,7 +846,7 @@ "id": "session-tab-activation-focus-and-activate.inner-false-object-error:activated", "observation": { "sender": ["b5031b4cc6e6", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "97219c38288c", "activate": "84d74a6de2ca" @@ -857,7 +859,7 @@ "id": "session-tab-activation-focus-and-activate.outer-refused:activated", "observation": { "sender": ["bbc6fbe00a97", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "c43f43ee2e4c", "activate": "84d74a6de2ca" @@ -870,7 +872,7 @@ "id": "session-tab-activation-focus-and-activate.outer-refused-no-message:activated", "observation": { "sender": ["ba98adc95c80", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "fe7233635ac5", "activate": "84d74a6de2ca" @@ -883,7 +885,7 @@ "id": "session-tab-activation-focus-and-activate.method-not-found:activated", "observation": { "sender": ["893f5a2f4823", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "484fd4423b44", "activate": "84d74a6de2ca" @@ -896,7 +898,7 @@ "id": "session-tab-activation-focus-and-activate.transport-rejection:activated", "observation": { "sender": ["159084d9517c", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "a947768bc0ed", "activate": "84d74a6de2ca" @@ -909,7 +911,7 @@ "id": "session-tab-activation-focus-and-activate.transport-rejection-no-message:activated", "observation": { "sender": ["36ee2d642745", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "c7584e82c72f", "activate": "84d74a6de2ca" 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 534390baf6e..57cf9f83e3a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "89141e3e400feea78460ede72d5269bdc885f6d3de75388542b4b7d6dff2840d", "platform": "darwin", @@ -77,10 +77,6 @@ } } }, - "2d697fe0c9bf": { - "name": "terminal.close#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "3c8f3199915d": { "name": "terminal.close#1", "args": [ @@ -274,6 +270,11 @@ }, "sent": 1 }, + "af3f27d99348": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 + }, "c965e2e20176": { "name": "clear-live-input", "value": { @@ -444,7 +445,7 @@ "id": "session-tab-close-terminal.normal:closed", "observation": { "sender": ["7e31b0a0202e"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -456,7 +457,7 @@ "id": "session-tab-close-terminal.result-absent:closed", "observation": { "sender": ["ff73917214a8"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -468,7 +469,7 @@ "id": "session-tab-close-terminal.result-null:closed", "observation": { "sender": ["1ae2d1fe0b13"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -480,7 +481,7 @@ "id": "session-tab-close-terminal.inner-ok-missing:closed", "observation": { "sender": ["65deed7773ff"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -492,7 +493,7 @@ "id": "session-tab-close-terminal.inner-false-string-error:closed", "observation": { "sender": ["f2dc4d1788f4"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -504,7 +505,7 @@ "id": "session-tab-close-terminal.inner-false-object-error:closed", "observation": { "sender": ["6c7772079255"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -516,7 +517,7 @@ "id": "session-tab-close-terminal.outer-refused:closed", "observation": { "sender": ["952c4e3cc256"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -528,7 +529,7 @@ "id": "session-tab-close-terminal.outer-refused-no-message:closed", "observation": { "sender": ["d863d1a239d3"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -540,7 +541,7 @@ "id": "session-tab-close-terminal.method-not-found:closed", "observation": { "sender": ["d141f04cb173"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -552,7 +553,7 @@ "id": "session-tab-close-terminal.transport-rejection:closed", "observation": { "sender": ["3c8f3199915d"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, @@ -564,7 +565,7 @@ "id": "session-tab-close-terminal.transport-rejection-no-message:closed", "observation": { "sender": ["2c418d165266"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, 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 a843423243d..42c223ee241 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "c97d925b63253e87ada0777e95a24ccf4e4e1682eda048800b44e335767df648", "platform": "darwin", @@ -323,9 +323,10 @@ } } }, - "b084676e5f8f": { + "af5666510c34": { "name": "markdown.readTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}", + "sent": 1 }, "cdeef4a961fe": { "name": "markdown.readTab#1", @@ -461,7 +462,7 @@ "id": "session-markdown-tab-read.normal:read", "observation": { "sender": ["38b08634cae3"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -473,7 +474,7 @@ "id": "session-markdown-tab-read.result-absent:read", "observation": { "sender": ["f3f0693c7791"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -485,7 +486,7 @@ "id": "session-markdown-tab-read.result-null:read", "observation": { "sender": ["0f062a4c61ef"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -497,7 +498,7 @@ "id": "session-markdown-tab-read.inner-ok-missing:read", "observation": { "sender": ["4d2966bef600"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -509,7 +510,7 @@ "id": "session-markdown-tab-read.inner-false-string-error:read", "observation": { "sender": ["cdeef4a961fe"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -521,7 +522,7 @@ "id": "session-markdown-tab-read.inner-false-object-error:read", "observation": { "sender": ["4a63a1a50d4c"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -533,7 +534,7 @@ "id": "session-markdown-tab-read.outer-refused:read", "observation": { "sender": ["15b3e337fb90"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -545,7 +546,7 @@ "id": "session-markdown-tab-read.outer-refused-no-message:read", "observation": { "sender": ["d07653bfda9f"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -557,7 +558,7 @@ "id": "session-markdown-tab-read.method-not-found:read", "observation": { "sender": ["475bab247189"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -569,7 +570,7 @@ "id": "session-markdown-tab-read.transport-rejection:read", "observation": { "sender": ["04c0c8bada07"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, @@ -581,7 +582,7 @@ "id": "session-markdown-tab-read.transport-rejection-no-message:read", "observation": { "sender": ["4145feef3760"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, 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 deaacb64ec3..b380f4a183e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "73366226aeaec1581aeeb47219fc703917143cfd7f6a2eb01d7bd703a7c7612d", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0f9f4df04699": { + "0410be39707b": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "10e4a5c67c9f": { "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 }, "2384a82b2f68": { "name": "session.tabs.activate#1", @@ -482,10 +488,6 @@ } } }, - "eb116b4d99bb": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "f2afcb7dd64d": { "name": "session.tabs.activate#1", "args": [ @@ -557,7 +559,7 @@ "id": "sc-reveal-first-poll.prelude:list-pending", "observation": { "sender": ["f884811cfa05"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -569,7 +571,7 @@ "id": "sc-reveal-first-poll.prelude:activate-pending", "observation": { "sender": ["92b5192ed75d", "5fbe284a7387"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -581,7 +583,7 @@ "id": "sc-reveal-first-poll.normal:settled", "observation": { "sender": ["92b5192ed75d", "bb3b4ee6b927"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "60ef11dd407d" }, @@ -593,7 +595,7 @@ "id": "sc-reveal-first-poll.result-absent:settled", "observation": { "sender": ["92b5192ed75d", "2384a82b2f68"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -605,7 +607,7 @@ "id": "sc-reveal-first-poll.result-null:settled", "observation": { "sender": ["92b5192ed75d", "77bd8427d179"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -617,7 +619,7 @@ "id": "sc-reveal-first-poll.inner-ok-missing:settled", "observation": { "sender": ["92b5192ed75d", "d23ecdfde21c"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -629,7 +631,7 @@ "id": "sc-reveal-first-poll.inner-false-string-error:settled", "observation": { "sender": ["92b5192ed75d", "d9fa0bff7ae7"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -641,7 +643,7 @@ "id": "sc-reveal-first-poll.inner-false-object-error:settled", "observation": { "sender": ["92b5192ed75d", "35ed60d6e127"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -653,7 +655,7 @@ "id": "sc-reveal-first-poll.outer-refused:settled", "observation": { "sender": ["92b5192ed75d", "ea1d154a9fcf"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -665,7 +667,7 @@ "id": "sc-reveal-first-poll.outer-refused-no-message:settled", "observation": { "sender": ["92b5192ed75d", "f2afcb7dd64d"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -677,7 +679,7 @@ "id": "sc-reveal-first-poll.method-not-found:settled", "observation": { "sender": ["92b5192ed75d", "4c133e67c92a"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -689,7 +691,7 @@ "id": "sc-reveal-first-poll.transport-rejection:settled", "observation": { "sender": ["92b5192ed75d", "e0a0bb81e43c"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -701,7 +703,7 @@ "id": "sc-reveal-first-poll.transport-rejection-no-message:settled", "observation": { "sender": ["92b5192ed75d", "33ae0e26bf62"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, 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 8a7c318829e..52dc5cfbb49 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "c38f2bc5c9faca0774dfe202137877bada9deba165c5e9c955cbe67eae0cbdd9", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0f9f4df04699": { + "0410be39707b": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "10e4a5c67c9f": { "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 }, "12380cd54c7c": { "name": "session.tabs.list#1", @@ -446,10 +452,6 @@ } } }, - "eb116b4d99bb": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "f0e11346d0fc": { "name": "session.tabs.list#1", "args": [ @@ -517,7 +519,7 @@ "id": "sc-reveal-first-poll.prelude:list-pending", "observation": { "sender": ["f884811cfa05"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -529,7 +531,7 @@ "id": "sc-reveal-first-poll.normal:activate-pending", "observation": { "sender": ["92b5192ed75d", "5fbe284a7387"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -541,7 +543,7 @@ "id": "sc-reveal-first-poll.normal:settled", "observation": { "sender": ["92b5192ed75d", "bb3b4ee6b927"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "60ef11dd407d" }, @@ -553,7 +555,7 @@ "id": "sc-reveal-first-poll.result-absent:activate-pending", "observation": { "sender": ["94db2ba485c5"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -565,7 +567,7 @@ "id": "sc-reveal-first-poll.result-absent:settled", "observation": { "sender": ["94db2ba485c5"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -577,7 +579,7 @@ "id": "sc-reveal-first-poll.result-null:activate-pending", "observation": { "sender": ["7eb00dad4d0d"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -589,7 +591,7 @@ "id": "sc-reveal-first-poll.result-null:settled", "observation": { "sender": ["7eb00dad4d0d"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -601,7 +603,7 @@ "id": "sc-reveal-first-poll.inner-ok-missing:activate-pending", "observation": { "sender": ["c3ee87ce1af9"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -613,7 +615,7 @@ "id": "sc-reveal-first-poll.inner-ok-missing:settled", "observation": { "sender": ["c3ee87ce1af9"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -625,7 +627,7 @@ "id": "sc-reveal-first-poll.inner-false-string-error:activate-pending", "observation": { "sender": ["f0e11346d0fc"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -637,7 +639,7 @@ "id": "sc-reveal-first-poll.inner-false-string-error:settled", "observation": { "sender": ["f0e11346d0fc"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -649,7 +651,7 @@ "id": "sc-reveal-first-poll.inner-false-object-error:activate-pending", "observation": { "sender": ["12380cd54c7c"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -661,7 +663,7 @@ "id": "sc-reveal-first-poll.inner-false-object-error:settled", "observation": { "sender": ["12380cd54c7c"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -673,7 +675,7 @@ "id": "sc-reveal-first-poll.outer-refused:activate-pending", "observation": { "sender": ["661ed2754e93"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -685,7 +687,7 @@ "id": "sc-reveal-first-poll.outer-refused:settled", "observation": { "sender": ["661ed2754e93"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -697,7 +699,7 @@ "id": "sc-reveal-first-poll.outer-refused-no-message:activate-pending", "observation": { "sender": ["c7d63e6d1ae1"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -709,7 +711,7 @@ "id": "sc-reveal-first-poll.outer-refused-no-message:settled", "observation": { "sender": ["c7d63e6d1ae1"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -721,7 +723,7 @@ "id": "sc-reveal-first-poll.method-not-found:activate-pending", "observation": { "sender": ["b5a14b5bcd38"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -733,7 +735,7 @@ "id": "sc-reveal-first-poll.method-not-found:settled", "observation": { "sender": ["b5a14b5bcd38"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -745,7 +747,7 @@ "id": "sc-reveal-first-poll.transport-rejection:activate-pending", "observation": { "sender": ["4fe73924ca34"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -757,7 +759,7 @@ "id": "sc-reveal-first-poll.transport-rejection:settled", "observation": { "sender": ["4fe73924ca34"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -769,7 +771,7 @@ "id": "sc-reveal-first-poll.transport-rejection-no-message:activate-pending", "observation": { "sender": ["63a99e79af5b"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -781,7 +783,7 @@ "id": "sc-reveal-first-poll.transport-rejection-no-message:settled", "observation": { "sender": ["63a99e79af5b"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, 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 ab3a4469b63..6c2014b2072 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "fab12524a09049d976da752cbe1b837a0aee04ce6e1eef75cbf517c862cb0d4a", "platform": "darwin", @@ -54,15 +54,16 @@ } } }, + "1ee5cdadc74e": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 + }, "2eae38db7631": { "name": "fetch-errored", "value": "", "sent": 1 }, - "30425281a407": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "32f791db34da": { "name": "session.tabs.list#1", "args": [ @@ -527,7 +528,7 @@ "id": "session-tabs-health-reconciled.normal:reconciled", "observation": { "sender": ["d46815b7ac09"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -540,7 +541,7 @@ "id": "session-tabs-health-reconciled.result-absent:reconciled", "observation": { "sender": ["e4b0c74e48f9"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -553,7 +554,7 @@ "id": "session-tabs-health-reconciled.result-null:reconciled", "observation": { "sender": ["32f791db34da"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -566,7 +567,7 @@ "id": "session-tabs-health-reconciled.inner-ok-missing:reconciled", "observation": { "sender": ["42599e959a49"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -579,7 +580,7 @@ "id": "session-tabs-health-reconciled.inner-false-string-error:reconciled", "observation": { "sender": ["e582528e16b2"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -592,7 +593,7 @@ "id": "session-tabs-health-reconciled.inner-false-object-error:reconciled", "observation": { "sender": ["17e92af0f44e"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -605,7 +606,7 @@ "id": "session-tabs-health-reconciled.outer-refused:reconciled", "observation": { "sender": ["5a9d6a1160e9"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -618,7 +619,7 @@ "id": "session-tabs-health-reconciled.outer-refused-no-message:reconciled", "observation": { "sender": ["67009efe57d4"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -631,7 +632,7 @@ "id": "session-tabs-health-reconciled.method-not-found:reconciled", "observation": { "sender": ["f65bb5453d98"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -644,7 +645,7 @@ "id": "session-tabs-health-reconciled.transport-rejection:reconciled", "observation": { "sender": ["fafc7ede7ef6"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" @@ -657,7 +658,7 @@ "id": "session-tabs-health-reconciled.transport-rejection-no-message:reconciled", "observation": { "sender": ["eb7e045cfdd3"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" 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 4b06d9ec6b7..03c50964594 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "cde3cac5407ef731315d18fc855b2696b9bfd30b90cb43d4a2cc812059cdd987", "platform": "darwin", @@ -89,10 +89,6 @@ "liveAccepted": "unsent", "sending": false }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "34a453846d11": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -207,6 +203,11 @@ } } }, + "72956b7aff32": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "750695db0ef8": { "name": "terminal.send#1", "args": [ @@ -320,6 +321,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "bca437e23d8a": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -352,10 +358,6 @@ } } }, - "c28710807a02": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "cb9a9683ab1e": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -492,7 +494,7 @@ "id": "terminal-input-send-accepted.normal:sent", "observation": { "sender": ["750695db0ef8", "093b7147f9b0"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -506,7 +508,7 @@ "id": "terminal-input-send-accepted.result-absent:sent", "observation": { "sender": ["750695db0ef8", "bca437e23d8a"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -520,7 +522,7 @@ "id": "terminal-input-send-accepted.result-null:sent", "observation": { "sender": ["750695db0ef8", "d642e739823d"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -534,7 +536,7 @@ "id": "terminal-input-send-accepted.inner-ok-missing:sent", "observation": { "sender": ["750695db0ef8", "6aad8cc2e655"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -548,7 +550,7 @@ "id": "terminal-input-send-accepted.inner-false-string-error:sent", "observation": { "sender": ["750695db0ef8", "cb9a9683ab1e"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -562,7 +564,7 @@ "id": "terminal-input-send-accepted.inner-false-object-error:sent", "observation": { "sender": ["750695db0ef8", "34a453846d11"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -576,7 +578,7 @@ "id": "terminal-input-send-accepted.outer-refused:sent", "observation": { "sender": ["750695db0ef8", "84777d7d765a"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -590,7 +592,7 @@ "id": "terminal-input-send-accepted.outer-refused-no-message:sent", "observation": { "sender": ["750695db0ef8", "dc19ad107e96"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -604,7 +606,7 @@ "id": "terminal-input-send-accepted.method-not-found:sent", "observation": { "sender": ["750695db0ef8", "ad01b4d8b4de"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -618,7 +620,7 @@ "id": "terminal-input-send-accepted.transport-rejection:sent", "observation": { "sender": ["750695db0ef8", "0203262b5432"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -632,7 +634,7 @@ "id": "terminal-input-send-accepted.transport-rejection-no-message:sent", "observation": { "sender": ["750695db0ef8", "4f58026b7877"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", 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 71f29bbe325..373bb5f521b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "6575a0f89894d9b66e50a73446dfe92293ceccc7048b556f1ff114fd3ce05b8e", "platform": "darwin", @@ -93,10 +93,6 @@ } } }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "3e2a483908bf": { "name": "terminal.send#1", "args": [ @@ -300,6 +296,11 @@ "liveAccepted": "unsent", "sending": false }, + "72956b7aff32": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "750695db0ef8": { "name": "terminal.send#1", "args": [ @@ -422,9 +423,10 @@ } } }, - "c28710807a02": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 }, "db539dd077c2": { "name": "terminal.send#1", @@ -532,7 +534,7 @@ "id": "terminal-input-send-accepted.normal:sent", "observation": { "sender": ["750695db0ef8", "093b7147f9b0"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -546,7 +548,7 @@ "id": "terminal-input-send-accepted.result-absent:sent", "observation": { "sender": ["5c7f8cb7e930"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -560,7 +562,7 @@ "id": "terminal-input-send-accepted.result-null:sent", "observation": { "sender": ["9be1be46fdb3"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -574,7 +576,7 @@ "id": "terminal-input-send-accepted.inner-ok-missing:sent", "observation": { "sender": ["431e2651ee54"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -588,7 +590,7 @@ "id": "terminal-input-send-accepted.inner-false-string-error:sent", "observation": { "sender": ["59ae86ca6e18"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -602,7 +604,7 @@ "id": "terminal-input-send-accepted.inner-false-object-error:sent", "observation": { "sender": ["ae241b7bb5cd"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -616,7 +618,7 @@ "id": "terminal-input-send-accepted.outer-refused:sent", "observation": { "sender": ["db539dd077c2"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -630,7 +632,7 @@ "id": "terminal-input-send-accepted.outer-refused-no-message:sent", "observation": { "sender": ["53392468a4c7"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -644,7 +646,7 @@ "id": "terminal-input-send-accepted.method-not-found:sent", "observation": { "sender": ["3e2a483908bf"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -658,7 +660,7 @@ "id": "terminal-input-send-accepted.transport-rejection:sent", "observation": { "sender": ["18f98f3c57c5"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", @@ -672,7 +674,7 @@ "id": "terminal-input-send-accepted.transport-rejection-no-message:sent", "observation": { "sender": ["ea46298a695e"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", 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 f90d85d16ee..673efa893d7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "12f1006d704e362552317a3afcb4db4366146da3a863a1c55b524c6fc1b9757a", "platform": "darwin", @@ -120,10 +120,6 @@ "value": ["terminal-1", "terminal-2"], "sent": 1 }, - "5eea50c700fd": { - "name": "terminal.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" - }, "6a8e7504d43b": { "name": "terminal.list#1", "args": [ @@ -343,6 +339,11 @@ } } }, + "c08af175e65b": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}", + "sent": 1 + }, "c2ee5279a532": { "name": "terminal.list#1", "args": [ @@ -468,7 +469,7 @@ "id": "session-terminal-list-merged.normal:listed", "observation": { "sender": ["c2ee5279a532"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "84e5ca07cb7a" }, @@ -480,7 +481,7 @@ "id": "session-terminal-list-merged.result-absent:listed", "observation": { "sender": ["6a8e7504d43b"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -492,7 +493,7 @@ "id": "session-terminal-list-merged.result-null:listed", "observation": { "sender": ["9d8ce13428ab"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -504,7 +505,7 @@ "id": "session-terminal-list-merged.inner-ok-missing:listed", "observation": { "sender": ["bdf04e5ac57b"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -516,7 +517,7 @@ "id": "session-terminal-list-merged.inner-false-string-error:listed", "observation": { "sender": ["04a21fb366ae"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -528,7 +529,7 @@ "id": "session-terminal-list-merged.inner-false-object-error:listed", "observation": { "sender": ["d717363e37dc"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -540,7 +541,7 @@ "id": "session-terminal-list-merged.outer-refused:listed", "observation": { "sender": ["4e9902faac20"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -552,7 +553,7 @@ "id": "session-terminal-list-merged.outer-refused-no-message:listed", "observation": { "sender": ["bc87546461f3"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -564,7 +565,7 @@ "id": "session-terminal-list-merged.method-not-found:listed", "observation": { "sender": ["70acf7d1b267"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -576,7 +577,7 @@ "id": "session-terminal-list-merged.transport-rejection:listed", "observation": { "sender": ["e187b80ff917"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, @@ -588,7 +589,7 @@ "id": "session-terminal-list-merged.transport-rejection-no-message:listed", "observation": { "sender": ["3cd6cd315c56"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, 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 863f19607a2..b99f674b3e6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "27c4f13ae43042cf5e6b5ca95e9c1a37db2f1f0c08b31a1164bb56cf0967549a", "platform": "darwin", @@ -241,6 +241,16 @@ }, "pasteOutcome": "sent" }, + "56f3ab2e0d0b": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 3 + }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "61a24302b6cc": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -277,10 +287,6 @@ } } }, - "63ceb8bb55e0": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "7107540f16ca": { "name": "toast", "value": { @@ -291,10 +297,6 @@ }, "sent": 1 }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "7f20afa60962": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -410,6 +412,11 @@ } } }, + "d582f882a68d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "d8dd3cd46511": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -525,10 +532,6 @@ } } } - }, - "f63f705d3a7f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" } }, "recording": { @@ -538,7 +541,7 @@ "id": "terminal-paste-accepted.prelude:copied", "observation": { "sender": ["f3df5e006d8e"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -551,7 +554,7 @@ "id": "terminal-paste-accepted.normal:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -565,7 +568,7 @@ "id": "terminal-paste-accepted.result-absent:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "d8dd3cd46511"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -579,7 +582,7 @@ "id": "terminal-paste-accepted.result-null:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "b7fae68f05c9"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -593,7 +596,7 @@ "id": "terminal-paste-accepted.inner-ok-missing:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "9c3247b7bf64"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -607,7 +610,7 @@ "id": "terminal-paste-accepted.inner-false-string-error:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "61a24302b6cc"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -621,7 +624,7 @@ "id": "terminal-paste-accepted.inner-false-object-error:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "7f20afa60962"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -635,7 +638,7 @@ "id": "terminal-paste-accepted.outer-refused:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "1ec65e7a7aca"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -649,7 +652,7 @@ "id": "terminal-paste-accepted.outer-refused-no-message:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "3735935dd61c"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -663,7 +666,7 @@ "id": "terminal-paste-accepted.method-not-found:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "0aa7daf076d0"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -677,7 +680,7 @@ "id": "terminal-paste-accepted.transport-rejection:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "0203262b5432"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -691,7 +694,7 @@ "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "4f58026b7877"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", 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 dee31a82ed2..1338e991c4a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "449f8c793a371dddf1bb9b3beb36b2dbd9b991918dae1f6290df75fe6d2aeace", "platform": "darwin", @@ -167,9 +167,15 @@ }, "pasteOutcome": "sent" }, - "63ceb8bb55e0": { + "56f3ab2e0d0b": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 3 + }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "6a98511b6371": { "name": "settings.get#1", @@ -215,10 +221,6 @@ }, "sent": 1 }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "84990d8de7e9": { "connectionId": "unresolved", "crash": { @@ -359,6 +361,11 @@ } } }, + "d582f882a68d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "e0cf1af55a54": { "name": "settings.get#1", "args": [ @@ -505,10 +512,6 @@ } } } - }, - "f63f705d3a7f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" } }, "recording": { @@ -518,7 +521,7 @@ "id": "terminal-paste-accepted.normal:copied", "observation": { "sender": ["f3df5e006d8e"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -531,7 +534,7 @@ "id": "terminal-paste-accepted.normal:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -545,7 +548,7 @@ "id": "terminal-paste-accepted.result-absent:copied", "observation": { "sender": ["e0cf1af55a54"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -558,7 +561,7 @@ "id": "terminal-paste-accepted.result-absent:pasted", "observation": { "sender": ["e0cf1af55a54", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -572,7 +575,7 @@ "id": "terminal-paste-accepted.result-null:copied", "observation": { "sender": ["e1bd8b4a5d70"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -585,7 +588,7 @@ "id": "terminal-paste-accepted.result-null:pasted", "observation": { "sender": ["e1bd8b4a5d70", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -599,7 +602,7 @@ "id": "terminal-paste-accepted.inner-ok-missing:copied", "observation": { "sender": ["0fc3e204e7ba"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -612,7 +615,7 @@ "id": "terminal-paste-accepted.inner-ok-missing:pasted", "observation": { "sender": ["0fc3e204e7ba", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -626,7 +629,7 @@ "id": "terminal-paste-accepted.inner-false-string-error:copied", "observation": { "sender": ["d27ce798af34"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -639,7 +642,7 @@ "id": "terminal-paste-accepted.inner-false-string-error:pasted", "observation": { "sender": ["d27ce798af34", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -653,7 +656,7 @@ "id": "terminal-paste-accepted.inner-false-object-error:copied", "observation": { "sender": ["127ad2bdc042"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -666,7 +669,7 @@ "id": "terminal-paste-accepted.inner-false-object-error:pasted", "observation": { "sender": ["127ad2bdc042", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -680,7 +683,7 @@ "id": "terminal-paste-accepted.outer-refused:copied", "observation": { "sender": ["8f8296303a77"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -693,7 +696,7 @@ "id": "terminal-paste-accepted.outer-refused:pasted", "observation": { "sender": ["8f8296303a77", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -707,7 +710,7 @@ "id": "terminal-paste-accepted.outer-refused-no-message:copied", "observation": { "sender": ["6a98511b6371"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -720,7 +723,7 @@ "id": "terminal-paste-accepted.outer-refused-no-message:pasted", "observation": { "sender": ["6a98511b6371", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -734,7 +737,7 @@ "id": "terminal-paste-accepted.method-not-found:copied", "observation": { "sender": ["b759ab27e4dd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -747,7 +750,7 @@ "id": "terminal-paste-accepted.method-not-found:pasted", "observation": { "sender": ["b759ab27e4dd", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -761,7 +764,7 @@ "id": "terminal-paste-accepted.transport-rejection:copied", "observation": { "sender": ["8b77098df0c3"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -774,7 +777,7 @@ "id": "terminal-paste-accepted.transport-rejection:pasted", "observation": { "sender": ["8b77098df0c3", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -788,7 +791,7 @@ "id": "terminal-paste-accepted.transport-rejection-no-message:copied", "observation": { "sender": ["2b3aa0da0852"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -801,7 +804,7 @@ "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", "observation": { "sender": ["2b3aa0da0852", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", 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 f4e0c18c2c6..36d2afbc9cf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "5cc67ab6df80a81be814a16cb60dcc4c703b0fc17594e409697a9fdeb0edeb76", "platform": "darwin", @@ -191,9 +191,15 @@ }, "pasteOutcome": "sent" }, - "63ceb8bb55e0": { + "56f3ab2e0d0b": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 3 + }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "7107540f16ca": { "name": "toast", @@ -282,10 +288,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "847bbb81a389": { "name": "terminal.send#1", "args": [ @@ -446,6 +448,11 @@ } } }, + "d582f882a68d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "d8542c0eba03": { "name": "toast", "value": { @@ -587,10 +594,6 @@ } } }, - "f63f705d3a7f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "fd8a212e7908": { "name": "terminal.send#1", "args": [ @@ -635,7 +638,7 @@ "id": "terminal-paste-accepted.prelude:copied", "observation": { "sender": ["f3df5e006d8e"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -648,7 +651,7 @@ "id": "terminal-paste-accepted.prelude:cleanup", "observation": { "sender": ["f3df5e006d8e", "7b22b223fd28"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -662,7 +665,7 @@ "id": "terminal-paste-accepted.normal:pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -676,7 +679,7 @@ "id": "terminal-paste-accepted.result-absent:pasted", "observation": { "sender": ["f3df5e006d8e", "fd8a212e7908"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -690,7 +693,7 @@ "id": "terminal-paste-accepted.result-null:pasted", "observation": { "sender": ["f3df5e006d8e", "847bbb81a389"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -704,7 +707,7 @@ "id": "terminal-paste-accepted.inner-ok-missing:pasted", "observation": { "sender": ["f3df5e006d8e", "50c4c0f3e188"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -718,7 +721,7 @@ "id": "terminal-paste-accepted.inner-false-string-error:pasted", "observation": { "sender": ["f3df5e006d8e", "a3feb18ca8f5"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -732,7 +735,7 @@ "id": "terminal-paste-accepted.inner-false-object-error:pasted", "observation": { "sender": ["f3df5e006d8e", "def2823f0306"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -746,7 +749,7 @@ "id": "terminal-paste-accepted.outer-refused:pasted", "observation": { "sender": ["f3df5e006d8e", "21f01e71bca3"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -760,7 +763,7 @@ "id": "terminal-paste-accepted.outer-refused-no-message:pasted", "observation": { "sender": ["f3df5e006d8e", "280b3e341a56"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -774,7 +777,7 @@ "id": "terminal-paste-accepted.method-not-found:pasted", "observation": { "sender": ["f3df5e006d8e", "7a59c74ff63f"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -788,7 +791,7 @@ "id": "terminal-paste-accepted.transport-rejection:pasted", "observation": { "sender": ["f3df5e006d8e", "cb723e8eb690"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", @@ -802,7 +805,7 @@ "id": "terminal-paste-accepted.transport-rejection-no-message:pasted", "observation": { "sender": ["f3df5e006d8e", "a76bbdc0f8dd"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", 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 bdb65a0bff1..91da7c8734d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "e7fb7a8083aac4c8c5edc7dd52465ca53bfcded00bf8b1ec18ae7604651bbe32", "platform": "darwin", @@ -149,9 +149,10 @@ } } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "63200026ea8b": { "name": "repo.list#1", @@ -271,10 +272,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "87c5de8dadf8": { "connectionId": { "$rpc": "null" @@ -331,6 +328,11 @@ "isRpcDeliveryUnknown": true } }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "ae85758452ae": { "name": "repo.list#1", "args": [ @@ -588,7 +590,7 @@ "id": "terminal-worktree-connection-resolved.normal:resolved", "observation": { "sender": ["f3df5e006d8e", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -601,7 +603,7 @@ "id": "terminal-worktree-connection-resolved.result-absent:resolved", "observation": { "sender": ["f3df5e006d8e", "9eb52b24aea4"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "2381a3fe154e" @@ -614,7 +616,7 @@ "id": "terminal-worktree-connection-resolved.result-null:resolved", "observation": { "sender": ["f3df5e006d8e", "63c1ccf6c3e3"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "63dfbb6942f2" @@ -627,7 +629,7 @@ "id": "terminal-worktree-connection-resolved.inner-ok-missing:resolved", "observation": { "sender": ["f3df5e006d8e", "ae85758452ae"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "ee20a1dc39e7" @@ -640,7 +642,7 @@ "id": "terminal-worktree-connection-resolved.inner-false-string-error:resolved", "observation": { "sender": ["f3df5e006d8e", "572ea5e1e980"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "ee20a1dc39e7" @@ -653,7 +655,7 @@ "id": "terminal-worktree-connection-resolved.inner-false-object-error:resolved", "observation": { "sender": ["f3df5e006d8e", "caa7fdd9839a"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "ee20a1dc39e7" @@ -666,7 +668,7 @@ "id": "terminal-worktree-connection-resolved.outer-refused:resolved", "observation": { "sender": ["f3df5e006d8e", "52500878f297"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "32a7c0ae7918" @@ -679,7 +681,7 @@ "id": "terminal-worktree-connection-resolved.outer-refused-no-message:resolved", "observation": { "sender": ["f3df5e006d8e", "397587780f89"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "f3b516f62081" @@ -692,7 +694,7 @@ "id": "terminal-worktree-connection-resolved.method-not-found:resolved", "observation": { "sender": ["f3df5e006d8e", "e31fdb68b5c2"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "b948e8307e81" @@ -705,7 +707,7 @@ "id": "terminal-worktree-connection-resolved.transport-rejection:resolved", "observation": { "sender": ["f3df5e006d8e", "6e5c6593dad8"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "a947768bc0ed" @@ -718,7 +720,7 @@ "id": "terminal-worktree-connection-resolved.transport-rejection-no-message:resolved", "observation": { "sender": ["f3df5e006d8e", "cc1facdf008c"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "c7584e82c72f" 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 31d5f0dc8a3..b734bdf58c4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "b1e1b221ab7bfe5356c89a09cf4252613c78aecab48b2212e84ac7de885ec569", "platform": "darwin", @@ -113,9 +113,10 @@ } } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "63200026ea8b": { "name": "repo.list#1", @@ -195,10 +196,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -264,6 +261,11 @@ } } }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "b759ab27e4dd": { "name": "settings.get#1", "args": [ @@ -459,7 +461,7 @@ "id": "terminal-worktree-connection-resolved.normal:resolved", "observation": { "sender": ["f3df5e006d8e", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -472,7 +474,7 @@ "id": "terminal-worktree-connection-resolved.result-absent:resolved", "observation": { "sender": ["e0cf1af55a54", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -485,7 +487,7 @@ "id": "terminal-worktree-connection-resolved.result-null:resolved", "observation": { "sender": ["e1bd8b4a5d70", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -498,7 +500,7 @@ "id": "terminal-worktree-connection-resolved.inner-ok-missing:resolved", "observation": { "sender": ["0fc3e204e7ba", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -511,7 +513,7 @@ "id": "terminal-worktree-connection-resolved.inner-false-string-error:resolved", "observation": { "sender": ["d27ce798af34", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -524,7 +526,7 @@ "id": "terminal-worktree-connection-resolved.inner-false-object-error:resolved", "observation": { "sender": ["127ad2bdc042", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -537,7 +539,7 @@ "id": "terminal-worktree-connection-resolved.outer-refused:resolved", "observation": { "sender": ["8f8296303a77", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -550,7 +552,7 @@ "id": "terminal-worktree-connection-resolved.outer-refused-no-message:resolved", "observation": { "sender": ["6a98511b6371", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -563,7 +565,7 @@ "id": "terminal-worktree-connection-resolved.method-not-found:resolved", "observation": { "sender": ["b759ab27e4dd", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -576,7 +578,7 @@ "id": "terminal-worktree-connection-resolved.transport-rejection:resolved", "observation": { "sender": ["8b77098df0c3", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" @@ -589,7 +591,7 @@ "id": "terminal-worktree-connection-resolved.transport-rejection-no-message:resolved", "observation": { "sender": ["2b3aa0da0852", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" 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 685a771474c..72351cecd43 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "a0effc9a0be519ccd18c1b1abfc8b497cd3858b89ea8d345ac0f8bd6d195cf21", "platform": "darwin", @@ -324,10 +324,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6fe734ca80ae": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -361,6 +357,11 @@ } } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -452,10 +453,6 @@ } ] }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -548,6 +545,11 @@ "isRpcDeliveryUnknown": true } }, + "d0694611a403": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, "d32b9c7891a0": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -582,10 +584,6 @@ } } }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -595,6 +593,11 @@ "message": "", "isRpcDeliveryUnknown": false } + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -604,7 +607,7 @@ "id": "settings-new-tab-ssh.prelude:pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -616,7 +619,7 @@ "id": "settings-new-tab-ssh.normal:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, @@ -628,7 +631,7 @@ "id": "settings-new-tab-ssh.result-absent:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "4ed35c961a4b"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "25716369cd8f" }, @@ -640,7 +643,7 @@ "id": "settings-new-tab-ssh.result-null:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "6fe734ca80ae"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "25716369cd8f" }, @@ -652,7 +655,7 @@ "id": "settings-new-tab-ssh.inner-ok-missing:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "0fc9b6295af5"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "5651342f395d" }, @@ -664,7 +667,7 @@ "id": "settings-new-tab-ssh.inner-false-string-error:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "2f067ba3a711"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "5651342f395d" }, @@ -676,7 +679,7 @@ "id": "settings-new-tab-ssh.inner-false-object-error:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "63c912abe2bc"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "5651342f395d" }, @@ -688,7 +691,7 @@ "id": "settings-new-tab-ssh.outer-refused:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "d32b9c7891a0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "32a7c0ae7918" }, @@ -700,7 +703,7 @@ "id": "settings-new-tab-ssh.outer-refused-no-message:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "3cc72974b9bb"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "f3b516f62081" }, @@ -712,7 +715,7 @@ "id": "settings-new-tab-ssh.method-not-found:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "c2a61640d827"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b948e8307e81" }, @@ -724,7 +727,7 @@ "id": "settings-new-tab-ssh.transport-rejection:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "07d4c9b0eaf2"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "a947768bc0ed" }, @@ -736,7 +739,7 @@ "id": "settings-new-tab-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "95dee1165f95"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "c7584e82c72f" }, 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 3cc19eb1407..c155bdf6ee6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "c21b2e0e97fab86664f634cc99d77dd587df4af4d02e6286c8380e09844096b2", "platform": "darwin", @@ -270,10 +270,6 @@ "isRpcDeliveryUnknown": false } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6e5c6593dad8": { "name": "repo.list#1", "args": [ @@ -305,6 +301,11 @@ } } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -401,10 +402,6 @@ } ] }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -528,6 +525,11 @@ } } }, + "d0694611a403": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, "e341bd05e614": { "name": "repo.list#1", "args": [ @@ -562,10 +564,6 @@ } } }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -609,6 +607,11 @@ } } } + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -618,7 +621,7 @@ "id": "settings-new-tab-ssh.prelude:pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -630,7 +633,7 @@ "id": "settings-new-tab-ssh.normal:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, @@ -642,7 +645,7 @@ "id": "settings-new-tab-ssh.result-absent:settled", "observation": { "sender": ["2ebe4d776f9b", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "2381a3fe154e" }, @@ -654,7 +657,7 @@ "id": "settings-new-tab-ssh.result-null:settled", "observation": { "sender": ["38e790fd9e9c", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "63dfbb6942f2" }, @@ -666,7 +669,7 @@ "id": "settings-new-tab-ssh.inner-ok-missing:settled", "observation": { "sender": ["06b63e0d9986", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "37a374f87be0" }, @@ -678,7 +681,7 @@ "id": "settings-new-tab-ssh.inner-false-string-error:settled", "observation": { "sender": ["f96e83d33565", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "37a374f87be0" }, @@ -690,7 +693,7 @@ "id": "settings-new-tab-ssh.inner-false-object-error:settled", "observation": { "sender": ["9d3fa0db2665", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "37a374f87be0" }, @@ -702,7 +705,7 @@ "id": "settings-new-tab-ssh.outer-refused:settled", "observation": { "sender": ["b9f0f1e94cd9", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "32a7c0ae7918" }, @@ -714,7 +717,7 @@ "id": "settings-new-tab-ssh.outer-refused-no-message:settled", "observation": { "sender": ["06fc8e7b85d5", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "f3b516f62081" }, @@ -726,7 +729,7 @@ "id": "settings-new-tab-ssh.method-not-found:settled", "observation": { "sender": ["e341bd05e614", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "b948e8307e81" }, @@ -738,7 +741,7 @@ "id": "settings-new-tab-ssh.transport-rejection:settled", "observation": { "sender": ["6e5c6593dad8", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "a947768bc0ed" }, @@ -750,7 +753,7 @@ "id": "settings-new-tab-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["cc1facdf008c", "554718767f5a"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "c7584e82c72f" }, 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 529da41db7a..9d0f6b32f26 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "46c4e32a921612c736c8cf45ff72ed513431c917ed3dd03f289c0ba4c28d6adb", "platform": "darwin", @@ -277,10 +277,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6d584492e802": { "name": "settings.get#1", "args": [ @@ -349,6 +345,11 @@ } } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -509,10 +510,6 @@ } ] }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -571,9 +568,10 @@ "isRpcDeliveryUnknown": true } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 }, "ed866f202034": { "name": "settings.get#1", @@ -614,6 +612,11 @@ "message": "", "isRpcDeliveryUnknown": false } + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -623,7 +626,7 @@ "id": "settings-new-tab-ssh.prelude:pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -635,7 +638,7 @@ "id": "settings-new-tab-ssh.normal:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, @@ -647,7 +650,7 @@ "id": "settings-new-tab-ssh.result-absent:settled", "observation": { "sender": ["bae1ab4f96f9", "ed866f202034", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "1c10eabc36a4" }, @@ -659,7 +662,7 @@ "id": "settings-new-tab-ssh.result-null:settled", "observation": { "sender": ["bae1ab4f96f9", "924e33dd1165", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "1a04332d2ee1" }, @@ -671,7 +674,7 @@ "id": "settings-new-tab-ssh.inner-ok-missing:settled", "observation": { "sender": ["bae1ab4f96f9", "35584987e88e", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "3c911d72c9be" }, @@ -683,7 +686,7 @@ "id": "settings-new-tab-ssh.inner-false-string-error:settled", "observation": { "sender": ["bae1ab4f96f9", "1e7f0f9265cc", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "3c911d72c9be" }, @@ -695,7 +698,7 @@ "id": "settings-new-tab-ssh.inner-false-object-error:settled", "observation": { "sender": ["bae1ab4f96f9", "8bbc0944abe9", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "3c911d72c9be" }, @@ -707,7 +710,7 @@ "id": "settings-new-tab-ssh.outer-refused:settled", "observation": { "sender": ["bae1ab4f96f9", "72d637915e56", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "32a7c0ae7918" }, @@ -719,7 +722,7 @@ "id": "settings-new-tab-ssh.outer-refused-no-message:settled", "observation": { "sender": ["bae1ab4f96f9", "6d584492e802", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "f3b516f62081" }, @@ -731,7 +734,7 @@ "id": "settings-new-tab-ssh.method-not-found:settled", "observation": { "sender": ["bae1ab4f96f9", "2ae8bb906793", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b948e8307e81" }, @@ -743,7 +746,7 @@ "id": "settings-new-tab-ssh.transport-rejection:settled", "observation": { "sender": ["bae1ab4f96f9", "8b77098df0c3", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "a947768bc0ed" }, @@ -755,7 +758,7 @@ "id": "settings-new-tab-ssh.transport-rejection-no-message:settled", "observation": { "sender": ["bae1ab4f96f9", "2b3aa0da0852", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "c7584e82c72f" }, 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 cf1a3a00655..52629b8629b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "cf671da175d50a4c2e1336f4e8338c24c4752db111e1eafd226bee6ff3582b1d", "platform": "darwin", @@ -78,10 +78,6 @@ } } }, - "2369258c9999": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultTaskViewPreset\":\"assigned\"}}" - }, "2b21a178e827": { "name": "settings.update#1", "args": [ @@ -276,6 +272,11 @@ } } }, + "7f8a022ecd59": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultTaskViewPreset\":\"assigned\"}}", + "sent": 1 + }, "8bdf90b8099a": { "name": "defaultGitHubPreset", "value": "assigned", @@ -429,7 +430,7 @@ "id": "settings-task-write.prelude:optimistic", "observation": { "sender": ["74827568abb0"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -442,7 +443,7 @@ "id": "settings-task-write.normal:settled", "observation": { "sender": ["5b0cac0bdf84"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -455,7 +456,7 @@ "id": "settings-task-write.result-absent:settled", "observation": { "sender": ["79d43c68f387"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -468,7 +469,7 @@ "id": "settings-task-write.result-null:settled", "observation": { "sender": ["71615e0dba6b"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -481,7 +482,7 @@ "id": "settings-task-write.inner-ok-missing:settled", "observation": { "sender": ["a90dfad3297a"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -494,7 +495,7 @@ "id": "settings-task-write.inner-false-string-error:settled", "observation": { "sender": ["71459ddb091d"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -507,7 +508,7 @@ "id": "settings-task-write.inner-false-object-error:settled", "observation": { "sender": ["2b21a178e827"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -520,7 +521,7 @@ "id": "settings-task-write.outer-refused:settled", "observation": { "sender": ["1ba7a60a2f98"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -533,7 +534,7 @@ "id": "settings-task-write.outer-refused-no-message:settled", "observation": { "sender": ["9b81c7f38dcf"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -546,7 +547,7 @@ "id": "settings-task-write.method-not-found:settled", "observation": { "sender": ["f9d1c4554592"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -559,7 +560,7 @@ "id": "settings-task-write.transport-rejection:settled", "observation": { "sender": ["178d4ef77ad7"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -572,7 +573,7 @@ "id": "settings-task-write.transport-rejection-no-message:settled", "observation": { "sender": ["d26aa345f588"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" 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 61dd62bd489..09f459e8b3c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "01408cebcc193f8e30119381c8acf494fa5e29850fe010809deb330c2f9bcb36", "platform": "darwin", @@ -139,6 +139,11 @@ } }, "4f53cda18c2b": [], + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "6a98511b6371": { "name": "settings.get#1", "args": [ @@ -212,10 +217,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -429,7 +430,7 @@ "id": "settings-bot-overrides-fulfilled.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -441,7 +442,7 @@ "id": "settings-bot-overrides-fulfilled.normal:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -453,7 +454,7 @@ "id": "settings-bot-overrides-fulfilled.result-absent:settled", "observation": { "sender": ["e0cf1af55a54"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -465,7 +466,7 @@ "id": "settings-bot-overrides-fulfilled.result-null:settled", "observation": { "sender": ["e1bd8b4a5d70"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -477,7 +478,7 @@ "id": "settings-bot-overrides-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["0fc3e204e7ba"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -489,7 +490,7 @@ "id": "settings-bot-overrides-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["d27ce798af34"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -501,7 +502,7 @@ "id": "settings-bot-overrides-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["127ad2bdc042"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -513,7 +514,7 @@ "id": "settings-bot-overrides-fulfilled.outer-refused:settled", "observation": { "sender": ["8f8296303a77"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -525,7 +526,7 @@ "id": "settings-bot-overrides-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["6a98511b6371"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -537,7 +538,7 @@ "id": "settings-bot-overrides-fulfilled.method-not-found:settled", "observation": { "sender": ["b759ab27e4dd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -549,7 +550,7 @@ "id": "settings-bot-overrides-fulfilled.transport-rejection:settled", "observation": { "sender": ["8b77098df0c3"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -561,7 +562,7 @@ "id": "settings-bot-overrides-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["2b3aa0da0852"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, 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 3fd889af876..70101ddcb52 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "19b445b39da98d28bcbcdab6f70e47ce208ca68f165e7b62c5fe9762eee67c8d", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "2c906720f812": { "name": "linear.status#1", "args": [ @@ -154,11 +150,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "49ba5f0a06c8": { "name": "linear.status#1", "args": [ @@ -273,6 +270,11 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -346,10 +348,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -555,6 +553,11 @@ } } } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -564,7 +567,7 @@ "id": "settings-home-providers-fulfilled.prelude:settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -576,7 +579,7 @@ "id": "settings-home-providers-fulfilled.normal:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -588,7 +591,7 @@ "id": "settings-home-providers-fulfilled.result-absent:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "8f4c679a09be"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -600,7 +603,7 @@ "id": "settings-home-providers-fulfilled.result-null:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "ab4cddba914f"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -612,7 +615,7 @@ "id": "settings-home-providers-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "59c1e048ffc5"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -624,7 +627,7 @@ "id": "settings-home-providers-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "ed179042b8c8"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -636,7 +639,7 @@ "id": "settings-home-providers-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "ad11a8182697"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -648,7 +651,7 @@ "id": "settings-home-providers-fulfilled.outer-refused:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "34aa2df10382"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -660,7 +663,7 @@ "id": "settings-home-providers-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "0e7c79cad23f"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -672,7 +675,7 @@ "id": "settings-home-providers-fulfilled.method-not-found:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "2c906720f812"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -684,7 +687,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "49ba5f0a06c8"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -696,7 +699,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "7aa41c1293ae"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, 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 98447fd83e0..573abb655d3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4953dd0de509ce620b9840d7f460e472dc74f54d53636694d12cba2e3bb51da8", "platform": "darwin", @@ -46,10 +46,6 @@ } } }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "349f2cb31004": { "name": "preflight.check#1", "args": [ @@ -119,11 +115,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -239,6 +236,11 @@ } } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -281,10 +283,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -493,6 +491,11 @@ "$rpc": "undefined" } }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 + }, "f351709792d2": { "name": "preflight.check#1", "args": [ @@ -564,7 +567,7 @@ "id": "settings-home-providers-fulfilled.prelude:settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -576,7 +579,7 @@ "id": "settings-home-providers-fulfilled.normal:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -588,7 +591,7 @@ "id": "settings-home-providers-fulfilled.result-absent:settled", "observation": { "sender": ["7dadf370725c", "fb840c0b39e9", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -600,7 +603,7 @@ "id": "settings-home-providers-fulfilled.result-null:settled", "observation": { "sender": ["7dadf370725c", "f351709792d2", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -612,7 +615,7 @@ "id": "settings-home-providers-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["7dadf370725c", "0dcc6f40d62e", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -624,7 +627,7 @@ "id": "settings-home-providers-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["7dadf370725c", "74ecdd98d1e6", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -636,7 +639,7 @@ "id": "settings-home-providers-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["7dadf370725c", "e2d1516ff734", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -648,7 +651,7 @@ "id": "settings-home-providers-fulfilled.outer-refused:settled", "observation": { "sender": ["7dadf370725c", "c54f9d6cd594", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -660,7 +663,7 @@ "id": "settings-home-providers-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["7dadf370725c", "38ac58305f52", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -672,7 +675,7 @@ "id": "settings-home-providers-fulfilled.method-not-found:settled", "observation": { "sender": ["7dadf370725c", "d6cbbd40a61d", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -684,7 +687,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection:settled", "observation": { "sender": ["7dadf370725c", "eb54685d6e7e", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -696,7 +699,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["7dadf370725c", "753d9a4acc88", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, 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 e0c8e8f6054..5e3bc008f59 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "70f601caeaee957bd3b172fc0fc12e85d6e2d6bed7683c86869559c6c9f25834", "platform": "darwin", @@ -80,10 +80,6 @@ } } }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "31bffe41a47f": { "name": "settings.get#1", "args": [ @@ -251,11 +247,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -371,6 +368,11 @@ } } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -413,10 +415,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -555,6 +553,11 @@ "value": { "$rpc": "undefined" } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -564,7 +567,7 @@ "id": "settings-home-providers-fulfilled.prelude:settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -576,7 +579,7 @@ "id": "settings-home-providers-fulfilled.normal:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -588,7 +591,7 @@ "id": "settings-home-providers-fulfilled.result-absent:settled", "observation": { "sender": ["d08bd2846cf7", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -600,7 +603,7 @@ "id": "settings-home-providers-fulfilled.result-null:settled", "observation": { "sender": ["40b5654c1d45", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -612,7 +615,7 @@ "id": "settings-home-providers-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["272a1c90c400", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -624,7 +627,7 @@ "id": "settings-home-providers-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["6493002b4410", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -636,7 +639,7 @@ "id": "settings-home-providers-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["c14c60dab8a3", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -648,7 +651,7 @@ "id": "settings-home-providers-fulfilled.outer-refused:settled", "observation": { "sender": ["090d7111bcf7", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -660,7 +663,7 @@ "id": "settings-home-providers-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["31bffe41a47f", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -672,7 +675,7 @@ "id": "settings-home-providers-fulfilled.method-not-found:settled", "observation": { "sender": ["3870e54005de", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -684,7 +687,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection:settled", "observation": { "sender": ["3c9d36434dd9", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -696,7 +699,7 @@ "id": "settings-home-providers-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["68046551307c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, 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 c6127f6e137..9e3a2f487cb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "c6d5040d0fd1e6b852625561aa67d11f555f5adb12303b6f8d0176183026a6b1", "platform": "darwin", @@ -278,6 +278,11 @@ } } }, + "a832f000ad89": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}", + "sent": 1 + }, "ae75d9a09c8f": { "name": "settings.getTerminalQuickCommands#1", "args": [ @@ -400,13 +405,10 @@ } } }, - "e1663c7c38e3": { - "name": "settings.getTerminalQuickCommands#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" - }, - "e3cf3d452fcf": { + "e6aede33fdf3": { "name": "settings.updateTerminalQuickCommands#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}", + "sent": 2 }, "e7d45eb699d8": { "name": "settings.getTerminalQuickCommands#1", @@ -496,7 +498,7 @@ "id": "quick-commands-loaded-and-saved.normal:saved", "observation": { "sender": ["d766ce9ee125", "b0069ba7e0a2"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -509,7 +511,7 @@ "id": "quick-commands-loaded-and-saved.result-absent:saved", "observation": { "sender": ["21ccc919b368"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -522,7 +524,7 @@ "id": "quick-commands-loaded-and-saved.result-null:saved", "observation": { "sender": ["21ee979928e9"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -535,7 +537,7 @@ "id": "quick-commands-loaded-and-saved.inner-ok-missing:saved", "observation": { "sender": ["8215dc36bdfb"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -548,7 +550,7 @@ "id": "quick-commands-loaded-and-saved.inner-false-string-error:saved", "observation": { "sender": ["f555436e2b82"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -561,7 +563,7 @@ "id": "quick-commands-loaded-and-saved.inner-false-object-error:saved", "observation": { "sender": ["04f6dbaf09c1"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -574,7 +576,7 @@ "id": "quick-commands-loaded-and-saved.outer-refused:saved", "observation": { "sender": ["1ce4c013ba3d"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -587,7 +589,7 @@ "id": "quick-commands-loaded-and-saved.outer-refused-no-message:saved", "observation": { "sender": ["51361d7747a6"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -600,7 +602,7 @@ "id": "quick-commands-loaded-and-saved.method-not-found:saved", "observation": { "sender": ["ae75d9a09c8f"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -613,7 +615,7 @@ "id": "quick-commands-loaded-and-saved.transport-rejection:saved", "observation": { "sender": ["e7d45eb699d8"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -626,7 +628,7 @@ "id": "quick-commands-loaded-and-saved.transport-rejection-no-message:saved", "observation": { "sender": ["55a0abce3ee8"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" 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 42bccef3489..44d5faaac7b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "b9edb5c27852d4e1e968f85668f1ea7afde3ed1c6e5c6582d6607f9fa5643356", "platform": "darwin", @@ -72,6 +72,11 @@ "persisted": [false], "ready": true }, + "a832f000ad89": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}", + "sent": 1 + }, "aa6cb2d59de0": { "name": "settings.updateTerminalQuickCommands#1", "args": [ @@ -489,10 +494,6 @@ } } }, - "e1663c7c38e3": { - "name": "settings.getTerminalQuickCommands#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" - }, "e1a6101399e1": { "name": "settings.updateTerminalQuickCommands#1", "args": [ @@ -535,10 +536,6 @@ } } }, - "e3cf3d452fcf": { - "name": "settings.updateTerminalQuickCommands#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" - }, "e481e68c74c9": { "commands": [], "error": "", @@ -546,6 +543,11 @@ "persisted": [false], "ready": true }, + "e6aede33fdf3": { + "name": "settings.updateTerminalQuickCommands#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}", + "sent": 2 + }, "e9c308be6dea": { "commands": [], "error": "Failed to save quick command", @@ -569,7 +571,7 @@ "id": "quick-commands-loaded-and-saved.normal:saved", "observation": { "sender": ["d766ce9ee125", "b0069ba7e0a2"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -582,7 +584,7 @@ "id": "quick-commands-loaded-and-saved.result-absent:saved", "observation": { "sender": ["d766ce9ee125", "aa6cb2d59de0"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -595,7 +597,7 @@ "id": "quick-commands-loaded-and-saved.result-null:saved", "observation": { "sender": ["d766ce9ee125", "b8ac830eaf5f"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -608,7 +610,7 @@ "id": "quick-commands-loaded-and-saved.inner-ok-missing:saved", "observation": { "sender": ["d766ce9ee125", "da090221e587"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -621,7 +623,7 @@ "id": "quick-commands-loaded-and-saved.inner-false-string-error:saved", "observation": { "sender": ["d766ce9ee125", "e1603b0c081f"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -634,7 +636,7 @@ "id": "quick-commands-loaded-and-saved.inner-false-object-error:saved", "observation": { "sender": ["d766ce9ee125", "cd5b13bf9061"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -647,7 +649,7 @@ "id": "quick-commands-loaded-and-saved.outer-refused:saved", "observation": { "sender": ["d766ce9ee125", "e1a6101399e1"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -660,7 +662,7 @@ "id": "quick-commands-loaded-and-saved.outer-refused-no-message:saved", "observation": { "sender": ["d766ce9ee125", "d02852b743c2"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -673,7 +675,7 @@ "id": "quick-commands-loaded-and-saved.method-not-found:saved", "observation": { "sender": ["d766ce9ee125", "c321b3e8e439"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -686,7 +688,7 @@ "id": "quick-commands-loaded-and-saved.transport-rejection:saved", "observation": { "sender": ["d766ce9ee125", "35b74155a70e"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" @@ -699,7 +701,7 @@ "id": "quick-commands-loaded-and-saved.transport-rejection-no-message:saved", "observation": { "sender": ["d766ce9ee125", "b5abe986e17a"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" 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 8e4c7840569..dbdf4d188bb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "687b109bd2bcc0c85b7c858d553e68e2fc4cb5b281d9f8b32836dbacc4bdc8f2", "platform": "darwin", @@ -181,14 +181,6 @@ ["Remote", "repo-2"] ] }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4bec80c16f02": { "name": "host.platform#1", "args": [ @@ -285,6 +277,11 @@ } } }, + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 + }, "6134b73f18d0": { "repoColorsByName": [ ["Local", "#6366f1"], @@ -300,9 +297,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7ddd37ed8da5": { "name": "host.platform#1", @@ -647,9 +645,10 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -704,6 +703,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -713,7 +717,7 @@ "id": "settings-repo-metadata-fulfilled.prelude:settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -726,7 +730,7 @@ "id": "settings-repo-metadata-fulfilled.prelude:cleanup", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "9acf4d7a0ba1"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -746,7 +750,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -766,7 +770,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "8400cb9da553"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -786,7 +790,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "a6443e8b2129"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -806,7 +810,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "186c2437de25"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -826,7 +830,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "0fdf9f35751e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -846,7 +850,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7ddd37ed8da5"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -866,7 +870,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "c20cbed07b1d"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -886,7 +890,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "83f3f1b40ac7"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -906,7 +910,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "4bf86567ed13"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -926,7 +930,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "4fa7f6058fbd"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -946,7 +950,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "4bec80c16f02"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 4a5396da8ff..548f112b2d2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3199c745e22973b432b0a36c34bb0bdda994334a4a0cd7ad2daf8b172625ce8d", "platform": "darwin", @@ -155,10 +155,6 @@ "startedAt": 0 } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, "2ebe4d776f9b": { "name": "repo.list#1", "args": [ @@ -222,11 +218,12 @@ } } }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "44136fa355b3": {}, + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 + }, "6134b73f18d0": { "repoColorsByName": [ ["Local", "#6366f1"], @@ -242,9 +239,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "6e5c6593dad8": { "name": "repo.list#1", @@ -492,6 +490,11 @@ } } }, + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 + }, "cc1facdf008c": { "name": "repo.list#1", "args": [ @@ -523,10 +526,6 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" - }, "e341bd05e614": { "name": "repo.list#1", "args": [ @@ -648,6 +647,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -657,7 +661,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -670,7 +674,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -690,7 +694,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settings-pending", "observation": { "sender": ["2ebe4d776f9b"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -703,7 +707,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settled", "observation": { "sender": ["2ebe4d776f9b"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -716,7 +720,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settings-pending", "observation": { "sender": ["38e790fd9e9c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -729,7 +733,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settled", "observation": { "sender": ["38e790fd9e9c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -742,7 +746,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settings-pending", "observation": { "sender": ["06b63e0d9986"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -755,7 +759,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["06b63e0d9986"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -768,7 +772,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settings-pending", "observation": { "sender": ["f96e83d33565"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -781,7 +785,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["f96e83d33565"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -794,7 +798,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settings-pending", "observation": { "sender": ["9d3fa0db2665"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -807,7 +811,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["9d3fa0db2665"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -820,7 +824,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settings-pending", "observation": { "sender": ["b9f0f1e94cd9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -833,7 +837,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settled", "observation": { "sender": ["b9f0f1e94cd9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -846,7 +850,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settings-pending", "observation": { "sender": ["06fc8e7b85d5"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -859,7 +863,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["06fc8e7b85d5"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -872,7 +876,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settings-pending", "observation": { "sender": ["e341bd05e614"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -885,7 +889,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settled", "observation": { "sender": ["e341bd05e614"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -898,7 +902,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settings-pending", "observation": { "sender": ["6e5c6593dad8"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -911,7 +915,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settled", "observation": { "sender": ["6e5c6593dad8"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -924,7 +928,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settings-pending", "observation": { "sender": ["cc1facdf008c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -937,7 +941,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["cc1facdf008c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 82b26296b92..95dc7b86464 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "5e9c3ff57cf432b24a17ee046636b61b94116a687cfa506cd79dee464542b76b", "platform": "darwin", @@ -165,10 +165,6 @@ } } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, "2b3aa0da0852": { "name": "settings.get#1", "args": [ @@ -264,9 +260,10 @@ } } }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -283,9 +280,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7f85f28c922e": { "name": "host.platform#1", @@ -561,6 +559,11 @@ } } }, + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 + }, "d3eea0a00315": { "name": "settings.get#1", "args": [ @@ -595,10 +598,6 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -684,6 +683,11 @@ } } }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 + }, "ff34527b3e2e": { "name": "settings.get#1", "args": [ @@ -725,7 +729,7 @@ "id": "settings-repo-metadata-fulfilled.prelude:settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -738,7 +742,7 @@ "id": "settings-repo-metadata-fulfilled.prelude:cleanup", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "f84a8688af61", "9acf4d7a0ba1"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -758,7 +762,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -778,7 +782,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "329ace7b96e9", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -798,7 +802,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "9582447b1277", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -818,7 +822,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "ff34527b3e2e", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -838,7 +842,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "4043cd1b2634", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -858,7 +862,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "099b501d90c2", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -878,7 +882,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "0c433d37dba9", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -898,7 +902,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "9a2df19b1d5f", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -918,7 +922,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d3eea0a00315", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -938,7 +942,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "8b77098df0c3", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -958,7 +962,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "2b3aa0da0852", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 0981e8b1c3b..6923a688952 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a88061d3d1f03074b0ed2b663b523f1602362bc317ba614106f1f646d037d6e3", "platform": "darwin", @@ -157,13 +157,10 @@ } } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "5fd9a3414746": { "name": "ssh.listTargetSummaries#1", @@ -214,9 +211,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "70f9ee89a1da": { "name": "ssh.listTargetSummaries#1", @@ -457,6 +455,11 @@ } } }, + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 + }, "cb88e4c74a37": { "name": "ssh.listTargetSummaries#1", "args": [ @@ -556,10 +559,6 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" - }, "eabc0f0fcd85": { "name": "hostLabelById", "value": [], @@ -669,6 +668,11 @@ "ok": false } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -678,7 +682,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -691,7 +695,7 @@ "id": "settings-repo-metadata-fulfilled.normal:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -711,7 +715,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settings-pending", "observation": { "sender": ["b40605df86b7", "70f9ee89a1da", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -724,7 +728,7 @@ "id": "settings-repo-metadata-fulfilled.result-absent:settled", "observation": { "sender": ["b40605df86b7", "70f9ee89a1da", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -744,7 +748,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settings-pending", "observation": { "sender": ["b40605df86b7", "9fdaf48cf9b6", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -757,7 +761,7 @@ "id": "settings-repo-metadata-fulfilled.result-null:settled", "observation": { "sender": ["b40605df86b7", "9fdaf48cf9b6", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -777,7 +781,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settings-pending", "observation": { "sender": ["b40605df86b7", "153aad174580", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -790,7 +794,7 @@ "id": "settings-repo-metadata-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["b40605df86b7", "153aad174580", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -810,7 +814,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settings-pending", "observation": { "sender": ["b40605df86b7", "d589c372905b", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -823,7 +827,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["b40605df86b7", "d589c372905b", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -843,7 +847,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settings-pending", "observation": { "sender": ["b40605df86b7", "205d78f95e06", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -856,7 +860,7 @@ "id": "settings-repo-metadata-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["b40605df86b7", "205d78f95e06", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -876,7 +880,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settings-pending", "observation": { "sender": ["b40605df86b7", "5fd9a3414746", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -889,7 +893,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused:settled", "observation": { "sender": ["b40605df86b7", "5fd9a3414746", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -909,7 +913,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settings-pending", "observation": { "sender": ["b40605df86b7", "dcd949b896ed", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -922,7 +926,7 @@ "id": "settings-repo-metadata-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["b40605df86b7", "dcd949b896ed", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -942,7 +946,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settings-pending", "observation": { "sender": ["b40605df86b7", "f7da3ff7d52e", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -955,7 +959,7 @@ "id": "settings-repo-metadata-fulfilled.method-not-found:settled", "observation": { "sender": ["b40605df86b7", "f7da3ff7d52e", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -975,7 +979,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settings-pending", "observation": { "sender": ["b40605df86b7", "900068047f8a", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -988,7 +992,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection:settled", "observation": { "sender": ["b40605df86b7", "900068047f8a", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -1008,7 +1012,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settings-pending", "observation": { "sender": ["b40605df86b7", "cb88e4c74a37", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -1021,7 +1025,7 @@ "id": "settings-repo-metadata-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["b40605df86b7", "cb88e4c74a37", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 51e6e974eb0..2bd45116b8e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "50ba7c7963cb494e4b3d484eb334977d21cc69018da57d75a7b6fd0c92860bd2", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "181e302d461f": { "name": "folderWorkspace.list#1", @@ -149,10 +150,6 @@ } } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -197,9 +194,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", @@ -234,10 +232,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "83189a0d5814": { "name": "folderWorkspace.list#1", "args": [ @@ -471,6 +465,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -504,9 +503,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "e7348f1edb42": { "name": "folderWorkspace.list#1", @@ -574,6 +574,11 @@ } } }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 + }, "f9ed4fd4d151": { "name": "folderWorkspace.list#1", "args": [ @@ -622,11 +627,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -646,11 +651,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -670,11 +675,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -694,11 +699,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -718,11 +723,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -742,11 +747,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -766,11 +771,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -790,11 +795,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -814,11 +819,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -838,11 +843,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -862,11 +867,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -886,11 +891,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -910,11 +915,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -934,11 +939,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -958,11 +963,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -982,11 +987,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1006,11 +1011,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1030,11 +1035,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1054,11 +1059,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1078,11 +1083,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1102,11 +1107,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1126,11 +1131,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" 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 1569f93c71c..18a4c76a481 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "8dfd4550b39f0cfcb9aaa72fab0631b11f9e776ed389b206b326359d7f4c2d6e", "platform": "darwin", @@ -47,9 +47,10 @@ } } }, - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -212,10 +213,6 @@ } } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -294,9 +291,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", @@ -331,10 +329,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "8d2b0b707eda": { "name": "projectGroup.list#1", "args": [ @@ -537,6 +531,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -570,9 +569,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -606,6 +606,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -622,11 +627,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -646,11 +651,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -670,11 +675,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -694,11 +699,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -718,11 +723,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -742,11 +747,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -766,11 +771,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -790,11 +795,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -814,11 +819,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -838,11 +843,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -862,11 +867,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -886,11 +891,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -910,11 +915,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -934,11 +939,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -958,11 +963,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -982,11 +987,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1006,11 +1011,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1030,11 +1035,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1054,11 +1059,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1078,11 +1083,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -1102,11 +1107,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1126,11 +1131,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" 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 035ce1c22a2..a1848d76ab6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "85dc526201f66409dd6a411c5e14615b82389791ec210efb9889078f5d580373", "platform": "darwin", @@ -49,9 +49,10 @@ } } }, - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -137,10 +138,6 @@ "isRpcDeliveryUnknown": false } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -216,10 +213,6 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" - }, "52bfda76d878": { "name": "repo.list#1", "args": [ @@ -253,6 +246,11 @@ } } }, + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 + }, "63dfbb6942f2": { "status": "rejected", "startedAt": 0, @@ -330,10 +328,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "903707b33a87": { "name": "repo.list#1", "args": [ @@ -573,6 +567,11 @@ "isRpcDeliveryUnknown": true } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -606,9 +605,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -643,6 +643,11 @@ } } }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 + }, "ff39fc8a6845": { "name": "repo.list#1", "args": [ @@ -692,11 +697,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -716,11 +721,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -740,11 +745,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -764,11 +769,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "2381a3fe154e" @@ -788,11 +793,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -812,11 +817,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "63dfbb6942f2" @@ -836,11 +841,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -860,11 +865,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -884,11 +889,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -908,11 +913,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -932,11 +937,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -956,11 +961,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -980,11 +985,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1004,11 +1009,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "32a7c0ae7918" @@ -1028,11 +1033,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1052,11 +1057,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "ab291c60ed46" @@ -1076,11 +1081,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -1100,11 +1105,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "b948e8307e81" @@ -1124,11 +1129,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "a947768bc0ed" @@ -1148,11 +1153,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "a947768bc0ed" @@ -1172,11 +1177,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "c7584e82c72f" @@ -1196,11 +1201,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "c7584e82c72f" 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 ae35f99d969..31d1128dec7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "080e10ae774ef097082267da0c8b6d0ebacae582d57b04a189c123258d0e5131", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "172c1804073c": { "name": "settings.get#1", @@ -114,10 +115,6 @@ "startedAt": 0 } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -162,10 +159,6 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" - }, "51376d8c72f9": { "name": "settings.get#1", "args": [ @@ -197,6 +190,11 @@ } } }, + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 + }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", "args": [ @@ -230,10 +228,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "7dd8f694eab8": { "name": "settings.get#1", "args": [ @@ -422,6 +416,11 @@ "worktrees": [] } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -520,9 +519,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "e64a052ce032": { "name": "settings.get#1", @@ -587,6 +587,11 @@ } } }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 + }, "f970b472a5c6": { "name": "settings.get#1", "args": [ @@ -636,11 +641,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -660,11 +665,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -684,11 +689,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -708,11 +713,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -732,11 +737,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -756,11 +761,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -780,11 +785,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -804,11 +809,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -828,11 +833,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -852,11 +857,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -876,11 +881,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" @@ -900,11 +905,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" 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 84980c4d348..7a3773083a0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "5988fa5ce0bf6b8585f7ec66918123ee086d5cdf1185a4eeff2e88904985064c", "platform": "darwin", @@ -66,9 +66,10 @@ } } }, - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -168,10 +169,6 @@ } } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -280,9 +277,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "5d7904f5569d": { "name": "worktree.ps#1", @@ -353,10 +351,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "77d369a76345": { "name": "worktree.ps#1", "args": [ @@ -557,6 +551,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -590,9 +589,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -626,6 +626,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -642,11 +647,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -666,11 +671,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -690,11 +695,11 @@ "a469b68534ac" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -714,11 +719,11 @@ "063aab8060dc" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -738,11 +743,11 @@ "3d2a818fc3a4" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -762,11 +767,11 @@ "c6caf75a15d6" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -786,11 +791,11 @@ "5d7904f5569d" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -810,11 +815,11 @@ "7b6c7d3ffc56" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -834,11 +839,11 @@ "9bac7c18c6f2" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -858,11 +863,11 @@ "202490f13aba" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -882,11 +887,11 @@ "4248358a67cb" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" @@ -906,11 +911,11 @@ "77d369a76345" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "0620c0819077" 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 2a9ddf47bb9..4c33ba95aed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f5033a7a3567cc9e016bf09ac8bcd8ff381c3054c041dbccc773f7011918bf1d", "platform": "darwin", @@ -142,10 +142,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -236,6 +232,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -311,6 +312,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -470,6 +476,16 @@ } } }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -554,6 +570,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -706,10 +727,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -935,10 +952,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -951,10 +964,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -996,10 +1005,6 @@ } } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -1030,11 +1035,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1095,11 +1100,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1179,11 +1184,11 @@ "c9e80e33c0bf" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1263,11 +1268,11 @@ "9203cee5313f" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1347,11 +1352,11 @@ "ed4a7babca45" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1431,11 +1436,11 @@ "d04b03f317eb" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1515,11 +1520,11 @@ "c0659c6ea513" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1599,11 +1604,11 @@ "0188d88101b8" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1683,11 +1688,11 @@ "79d765c34258" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1767,11 +1772,11 @@ "a9b0412f8019" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1851,11 +1856,11 @@ "158449a16852" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1918,11 +1923,11 @@ "4620b5cc7ae9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 5f6544ce505..67338aa4843 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "0931b3d35868e5452cb550962f2408b6ce7cd6c89e90a9cf2897425edbb4b42d", "platform": "darwin", @@ -77,10 +77,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -171,6 +167,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -283,6 +284,11 @@ } } }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "535a11fdd274": { "name": "preflight.check#1", "args": [ @@ -544,6 +550,16 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -595,6 +611,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -744,10 +765,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -968,10 +985,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -984,10 +997,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -996,10 +1005,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -1030,11 +1035,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1095,11 +1100,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1179,11 +1184,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1263,11 +1268,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1347,11 +1352,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1431,11 +1436,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1515,11 +1520,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1599,11 +1604,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1683,11 +1688,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1767,11 +1772,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1851,11 +1856,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1918,11 +1923,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 7370cc7b41a..fc01aa799ec 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d0f8d9bfe0e1469af3b0dab8b5c9799d91cc2234e72f0e031d6872059654077d", "platform": "darwin", @@ -77,10 +77,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1e7f0f9265cc": { "name": "settings.get#1", "args": [ @@ -275,6 +271,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -352,6 +353,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -550,11 +556,21 @@ "value": "Cannot read properties of undefined (reading 'settings')", "sent": 5 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, "81ea51ff9d26": { "name": "error", "value": "Cannot read properties of null (reading 'settings')", "sent": 5 }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -710,6 +726,11 @@ "hydrated": true, "settings": {} }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -828,10 +849,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -957,10 +974,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -973,10 +986,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1015,10 +1024,6 @@ } } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -1049,11 +1054,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1114,11 +1119,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1198,11 +1203,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1265,11 +1270,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1332,11 +1337,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1416,11 +1421,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1500,11 +1505,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1584,11 +1589,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1668,11 +1673,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1752,11 +1757,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1836,11 +1841,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1903,11 +1908,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 993fb15737d..645f2e15648 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3f448feff463b59c3927dae020ecd8d4931bb4a6036df6d6af080de2ec5fcf2b", "platform": "darwin", @@ -155,10 +155,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -287,6 +283,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -398,6 +399,11 @@ "value": false, "sent": 1 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "52e9c7685310": { "name": "pendingHostedMerge", "value": { @@ -570,6 +576,11 @@ } } }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, "84465663f388": { "name": "actionItem", "value": { @@ -577,6 +588,11 @@ }, "sent": 1 }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -744,6 +760,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -918,10 +939,6 @@ "value": false, "sent": 1 }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "ae0c3d3070af": { "name": "showGitHubProjectSortPicker", "value": false, @@ -1184,10 +1201,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -1205,10 +1218,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1222,10 +1231,6 @@ "value": false, "sent": 1 }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f1905d689cd8": { "name": "showGitLabFilterPicker", "value": false, @@ -1283,11 +1288,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1348,11 +1353,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1425,7 +1430,7 @@ "id": "settings-task-hydration-fulfilled.result-absent:settings-pending", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1478,7 +1483,7 @@ "id": "settings-task-hydration-fulfilled.result-absent:settled", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1531,7 +1536,7 @@ "id": "settings-task-hydration-fulfilled.result-null:settings-pending", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1584,7 +1589,7 @@ "id": "settings-task-hydration-fulfilled.result-null:settled", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1637,7 +1642,7 @@ "id": "settings-task-hydration-fulfilled.inner-ok-missing:settings-pending", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1730,7 +1735,7 @@ "id": "settings-task-hydration-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1823,7 +1828,7 @@ "id": "settings-task-hydration-fulfilled.inner-false-string-error:settings-pending", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1916,7 +1921,7 @@ "id": "settings-task-hydration-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2009,7 +2014,7 @@ "id": "settings-task-hydration-fulfilled.inner-false-object-error:settings-pending", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2102,7 +2107,7 @@ "id": "settings-task-hydration-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2195,7 +2200,7 @@ "id": "settings-task-hydration-fulfilled.outer-refused:settings-pending", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2248,7 +2253,7 @@ "id": "settings-task-hydration-fulfilled.outer-refused:settled", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2301,7 +2306,7 @@ "id": "settings-task-hydration-fulfilled.outer-refused-no-message:settings-pending", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2354,7 +2359,7 @@ "id": "settings-task-hydration-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2407,7 +2412,7 @@ "id": "settings-task-hydration-fulfilled.method-not-found:settings-pending", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2460,7 +2465,7 @@ "id": "settings-task-hydration-fulfilled.method-not-found:settled", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2513,7 +2518,7 @@ "id": "settings-task-hydration-fulfilled.transport-rejection:settings-pending", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2566,7 +2571,7 @@ "id": "settings-task-hydration-fulfilled.transport-rejection:settled", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2619,7 +2624,7 @@ "id": "settings-task-hydration-fulfilled.transport-rejection-no-message:settings-pending", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -2672,7 +2677,7 @@ "id": "settings-task-hydration-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 8449cf4a99e..9b79ce27311 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4438f9fd62876333bb980157612aaf457c5a9b9115659c8c941c3b373ad071dd", "platform": "darwin", @@ -118,10 +118,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -212,6 +208,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -323,6 +324,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -549,6 +555,16 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -677,6 +693,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -825,10 +846,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -954,10 +971,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -970,10 +983,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -982,10 +991,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f2b6195abacc": { "name": "ui.get#1", "args": [ @@ -1050,11 +1055,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1115,11 +1120,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1199,11 +1204,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1267,11 +1272,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1335,11 +1340,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1419,11 +1424,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1503,11 +1508,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1587,11 +1592,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1671,11 +1676,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1755,11 +1760,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1839,11 +1844,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1906,11 +1911,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 bf18cb3460d..7b8e8ca219d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "7e4c5bb29e0f630cda8a09233575b9295e485f3d3e315ebdc0458c69515fcfc7", "platform": "darwin", @@ -257,6 +257,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "6a98511b6371": { "name": "settings.get#1", "args": [ @@ -298,10 +303,6 @@ "disabledTuiAgents": ["claude"] } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -371,6 +372,11 @@ "status": "pending", "startedAt": 0 }, + "92e24c796e40": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}", + "sent": 2 + }, "94d10e7369a8": { "name": "setupPrompt", "value": { @@ -443,10 +449,6 @@ } } }, - "baa74a0ec378": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}" - }, "d27ce798af34": { "name": "settings.get#1", "args": [ @@ -618,7 +620,7 @@ "id": "settings-task-workspace-create-linear.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -631,7 +633,7 @@ "id": "settings-task-workspace-create-linear.prelude:cleanup", "observation": { "sender": ["f84a8688af61"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -651,7 +653,7 @@ "id": "settings-task-workspace-create-linear.normal:created", "observation": { "sender": ["2473f12c7cdd", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -673,7 +675,7 @@ "id": "settings-task-workspace-create-linear.result-absent:created", "observation": { "sender": ["e0cf1af55a54"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -693,7 +695,7 @@ "id": "settings-task-workspace-create-linear.result-null:created", "observation": { "sender": ["e1bd8b4a5d70"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -713,7 +715,7 @@ "id": "settings-task-workspace-create-linear.inner-ok-missing:created", "observation": { "sender": ["0fc3e204e7ba", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -735,7 +737,7 @@ "id": "settings-task-workspace-create-linear.inner-false-string-error:created", "observation": { "sender": ["d27ce798af34", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -757,7 +759,7 @@ "id": "settings-task-workspace-create-linear.inner-false-object-error:created", "observation": { "sender": ["127ad2bdc042", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -779,7 +781,7 @@ "id": "settings-task-workspace-create-linear.outer-refused:created", "observation": { "sender": ["8f8296303a77"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -799,7 +801,7 @@ "id": "settings-task-workspace-create-linear.outer-refused-no-message:created", "observation": { "sender": ["6a98511b6371"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -819,7 +821,7 @@ "id": "settings-task-workspace-create-linear.method-not-found:created", "observation": { "sender": ["b759ab27e4dd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -839,7 +841,7 @@ "id": "settings-task-workspace-create-linear.transport-rejection:created", "observation": { "sender": ["8b77098df0c3"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -859,7 +861,7 @@ "id": "settings-task-workspace-create-linear.transport-rejection-no-message:created", "observation": { "sender": ["2b3aa0da0852"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 cc6a4a9aa83..90650e96cde 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "1d7713cf4c23d053105c2abb02340d81d5eb689f4311a0984932d8ebd031b4ce", "platform": "darwin", @@ -341,6 +341,11 @@ "value": "transport failure", "sent": 2 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "67b44e804cc9": { "creating": { "$rpc": "null" @@ -368,10 +373,6 @@ "disabledTuiAgents": [] } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "841ba02855c9": { "name": "worktree.create#1", "args": [ @@ -456,6 +457,11 @@ "status": "pending", "startedAt": 0 }, + "92e24c796e40": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}", + "sent": 2 + }, "94d10e7369a8": { "name": "setupPrompt", "value": { @@ -559,10 +565,6 @@ "value": "", "sent": 2 }, - "baa74a0ec378": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}" - }, "c7d9517809c8": { "name": "worktree.create#1", "args": [ @@ -771,7 +773,7 @@ "id": "settings-task-workspace-create-linear.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -784,7 +786,7 @@ "id": "settings-task-workspace-create-linear.prelude:cleanup", "observation": { "sender": ["2473f12c7cdd", "eb44ca9ac41f"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -803,7 +805,7 @@ "id": "settings-task-workspace-create-linear.normal:created", "observation": { "sender": ["2473f12c7cdd", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -825,7 +827,7 @@ "id": "settings-task-workspace-create-linear.result-absent:created", "observation": { "sender": ["2473f12c7cdd", "841ba02855c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -847,7 +849,7 @@ "id": "settings-task-workspace-create-linear.result-null:created", "observation": { "sender": ["2473f12c7cdd", "0ca3bb7ac195"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -869,7 +871,7 @@ "id": "settings-task-workspace-create-linear.inner-ok-missing:created", "observation": { "sender": ["2473f12c7cdd", "ff28e2c78e1b"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -891,7 +893,7 @@ "id": "settings-task-workspace-create-linear.inner-false-string-error:created", "observation": { "sender": ["2473f12c7cdd", "89456eae5a16"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -913,7 +915,7 @@ "id": "settings-task-workspace-create-linear.inner-false-object-error:created", "observation": { "sender": ["2473f12c7cdd", "f73b6faeedba"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -935,7 +937,7 @@ "id": "settings-task-workspace-create-linear.outer-refused:created", "observation": { "sender": ["2473f12c7cdd", "c7d9517809c8"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -954,7 +956,7 @@ "id": "settings-task-workspace-create-linear.outer-refused-no-message:created", "observation": { "sender": ["2473f12c7cdd", "2f13b6f74cc6"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -973,7 +975,7 @@ "id": "settings-task-workspace-create-linear.method-not-found:created", "observation": { "sender": ["2473f12c7cdd", "adfc4e9a82be"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -992,7 +994,7 @@ "id": "settings-task-workspace-create-linear.transport-rejection:created", "observation": { "sender": ["2473f12c7cdd", "31738898988e"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -1011,7 +1013,7 @@ "id": "settings-task-workspace-create-linear.transport-rejection-no-message:created", "observation": { "sender": ["2473f12c7cdd", "37345621a939"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 2c26dd88ed7..050848ef7d9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "994ea8b4ddb05774a8c2d5902bb68bf5e8f25399a787262b8f23f458f2790698", "platform": "darwin", @@ -183,6 +183,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "6a98511b6371": { "name": "settings.get#1", "args": [ @@ -263,10 +268,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -563,7 +564,7 @@ "id": "settings-task-workspace-fulfilled.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -576,7 +577,7 @@ "id": "settings-task-workspace-fulfilled.prelude:cleanup", "observation": { "sender": ["f84a8688af61"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -596,7 +597,7 @@ "id": "settings-task-workspace-fulfilled.normal:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -617,7 +618,7 @@ "id": "settings-task-workspace-fulfilled.result-absent:settled", "observation": { "sender": ["e0cf1af55a54"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -637,7 +638,7 @@ "id": "settings-task-workspace-fulfilled.result-null:settled", "observation": { "sender": ["e1bd8b4a5d70"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -657,7 +658,7 @@ "id": "settings-task-workspace-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["0fc3e204e7ba"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -676,7 +677,7 @@ "id": "settings-task-workspace-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["d27ce798af34"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -695,7 +696,7 @@ "id": "settings-task-workspace-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["127ad2bdc042"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -714,7 +715,7 @@ "id": "settings-task-workspace-fulfilled.outer-refused:settled", "observation": { "sender": ["8f8296303a77"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -734,7 +735,7 @@ "id": "settings-task-workspace-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["6a98511b6371"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -754,7 +755,7 @@ "id": "settings-task-workspace-fulfilled.method-not-found:settled", "observation": { "sender": ["b759ab27e4dd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -774,7 +775,7 @@ "id": "settings-task-workspace-fulfilled.transport-rejection:settled", "observation": { "sender": ["8b77098df0c3"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -794,7 +795,7 @@ "id": "settings-task-workspace-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["2b3aa0da0852"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 9f98b2e50f7..7d1eede54f9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "30b3f8d79589e9fb3d7ef804233554fa231f68ab88e5130ddfa78e79221e3c78", "platform": "darwin", @@ -38,10 +38,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "158449a16852": { "name": "linear.status#1", "args": [ @@ -109,6 +105,11 @@ }, "trust": {} }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, "35e63fba1bfc": { "name": "linear.status#1", "args": [ @@ -176,10 +177,6 @@ } } }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4620b5cc7ae9": { "name": "linear.status#1", "args": [ @@ -244,6 +241,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -304,9 +306,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "77975bbcd4be": { "name": "linear.status#1", @@ -405,6 +408,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -444,10 +452,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "883566e08378": { "name": "linear.status#1", "args": [ @@ -633,7 +637,7 @@ "id": "settings-workspace-context-fulfilled.prelude:settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -645,7 +649,7 @@ "id": "settings-workspace-context-fulfilled.normal:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -657,7 +661,7 @@ "id": "settings-workspace-context-fulfilled.result-absent:settled", "observation": { "sender": ["563e4c82b345", "7a4c4c2227f8", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -669,7 +673,7 @@ "id": "settings-workspace-context-fulfilled.result-null:settled", "observation": { "sender": ["563e4c82b345", "f8e51955170c", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -681,7 +685,7 @@ "id": "settings-workspace-context-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["563e4c82b345", "406d79ff45ca", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -693,7 +697,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["563e4c82b345", "ae32d773383c", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -705,7 +709,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["563e4c82b345", "883566e08378", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -717,7 +721,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused:settled", "observation": { "sender": ["563e4c82b345", "f81d65015197", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -729,7 +733,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["563e4c82b345", "77975bbcd4be", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -741,7 +745,7 @@ "id": "settings-workspace-context-fulfilled.method-not-found:settled", "observation": { "sender": ["563e4c82b345", "35e63fba1bfc", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -753,7 +757,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection:settled", "observation": { "sender": ["563e4c82b345", "158449a16852", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -765,7 +769,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["563e4c82b345", "4620b5cc7ae9", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 38c2d24a333..dd62c5e1c39 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a5366cbd31d899feeb7e1901edd0c78191c2c8c8179ad5d5b24b7ca22bd538f8", "platform": "darwin", @@ -72,10 +72,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -146,9 +142,10 @@ } } }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 }, "4938921744c6": { "name": "ui.get#1", @@ -183,6 +180,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -276,9 +278,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "789980530ae3": { "name": "linear.status#1", @@ -313,6 +316,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -352,10 +360,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "83ca8036193a": { "name": "preflight.check#1", "args": [ @@ -633,7 +637,7 @@ "id": "settings-workspace-context-fulfilled.prelude:settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -645,7 +649,7 @@ "id": "settings-workspace-context-fulfilled.normal:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -657,7 +661,7 @@ "id": "settings-workspace-context-fulfilled.result-absent:settled", "observation": { "sender": ["a7aa6be3bc50", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -669,7 +673,7 @@ "id": "settings-workspace-context-fulfilled.result-null:settled", "observation": { "sender": ["5db3a8e21647", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -681,7 +685,7 @@ "id": "settings-workspace-context-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["84b6f82edb6e", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -693,7 +697,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["83ca8036193a", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -705,7 +709,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["bb36ad1df1bc", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -717,7 +721,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused:settled", "observation": { "sender": ["b2d23d4a833f", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -729,7 +733,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["02eac6141a1f", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -741,7 +745,7 @@ "id": "settings-workspace-context-fulfilled.method-not-found:settled", "observation": { "sender": ["2b9e034d9983", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -753,7 +757,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection:settled", "observation": { "sender": ["a042b29c0044", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -765,7 +769,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["ca8f5459b39f", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 f0058600c9f..c2e40eb6129 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "797ea410af6536410335ebe93b8bc354cd633cf980eb95efbb10bc46f5516cb7", "platform": "darwin", @@ -108,10 +108,6 @@ } } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -179,6 +175,11 @@ } } }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, "329ace7b96e9": { "name": "settings.get#1", "args": [ @@ -250,10 +251,6 @@ } } }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4938921744c6": { "name": "ui.get#1", "args": [ @@ -287,6 +284,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -347,9 +349,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "789980530ae3": { "name": "linear.status#1", @@ -384,6 +387,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -423,10 +431,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -640,7 +644,7 @@ "id": "settings-workspace-context-fulfilled.prelude:settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -652,7 +656,7 @@ "id": "settings-workspace-context-fulfilled.normal:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -664,7 +668,7 @@ "id": "settings-workspace-context-fulfilled.result-absent:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "329ace7b96e9", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -676,7 +680,7 @@ "id": "settings-workspace-context-fulfilled.result-null:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "9582447b1277", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -688,7 +692,7 @@ "id": "settings-workspace-context-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "ff34527b3e2e", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -700,7 +704,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "4043cd1b2634", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -712,7 +716,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "099b501d90c2", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -724,7 +728,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "0c433d37dba9", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -736,7 +740,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "9a2df19b1d5f", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -748,7 +752,7 @@ "id": "settings-workspace-context-fulfilled.method-not-found:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "d3eea0a00315", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -760,7 +764,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "8b77098df0c3", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -772,7 +776,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "2b3aa0da0852", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 4e951f74996..9aab59bc028 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3cd29e7b6a1cdfd99796a58cf6ad6f9aa3dbac75dd6e989ea99ba6027c210028", "platform": "darwin", @@ -99,10 +99,6 @@ } } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -139,9 +135,10 @@ }, "trust": {} }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 }, "4938921744c6": { "name": "ui.get#1", @@ -176,6 +173,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "531bba7bae49": { "name": "ui.get#1", "args": [ @@ -303,6 +305,11 @@ } } }, + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 + }, "757d36f7d7c1": { "name": "ui.get#1", "args": [ @@ -334,10 +341,6 @@ } } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "789980530ae3": { "name": "linear.status#1", "args": [ @@ -371,6 +374,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -410,10 +418,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "8947d9c9202f": { "name": "ui.get#1", "args": [ @@ -633,7 +637,7 @@ "id": "settings-workspace-context-fulfilled.prelude:settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -645,7 +649,7 @@ "id": "settings-workspace-context-fulfilled.normal:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -657,7 +661,7 @@ "id": "settings-workspace-context-fulfilled.result-absent:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "0949ca378eeb"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -669,7 +673,7 @@ "id": "settings-workspace-context-fulfilled.result-null:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "8947d9c9202f"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -681,7 +685,7 @@ "id": "settings-workspace-context-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "531bba7bae49"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -693,7 +697,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "fdb9d6146352"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -705,7 +709,7 @@ "id": "settings-workspace-context-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "e9f764966b3b"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -717,7 +721,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "8be416d0b1ef"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -729,7 +733,7 @@ "id": "settings-workspace-context-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "6b1ec8280e91"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -741,7 +745,7 @@ "id": "settings-workspace-context-fulfilled.method-not-found:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "8cbd7ddc26d9"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -753,7 +757,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "757d36f7d7c1"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -765,7 +769,7 @@ "id": "settings-workspace-context-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "0039f2221403"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 590b1417dc7..f7d6d780f0f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a89bdf93df71a958810aba72c80e42f663644781a29e934898e2ddf86c5dd5d5", "platform": "darwin", @@ -114,6 +114,11 @@ "disabledTuiAgents": ["claude"] } }, + "28faeb877519": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"setupDecision\":\"inherit\",\"name\":\"recorded\",\"displayName\":\"recorded\",\"displayNameKind\":\"user\",\"startupAgent\":\"claude\",\"createdWithAgent\":\"claude\"}}", + "sent": 2 + }, "2b3aa0da0852": { "name": "settings.get#1", "args": [ @@ -207,6 +212,11 @@ } } }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "5efbd884ea5a": { "creating": false, "error": "Selected agent is disabled. Choose an enabled agent before creating.", @@ -298,10 +308,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b77098df0c3": { "name": "settings.get#1", "args": [ @@ -538,10 +544,6 @@ "$rpc": "undefined" } }, - "f0d91b98b6a3": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"setupDecision\":\"inherit\",\"name\":\"recorded\",\"displayName\":\"recorded\",\"displayNameKind\":\"user\",\"startupAgent\":\"claude\",\"createdWithAgent\":\"claude\"}}" - }, "f84a8688af61": { "name": "settings.get#1", "args": [ @@ -612,7 +614,7 @@ "id": "settings-workspace-submit-fulfilled.prelude:settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -625,7 +627,7 @@ "id": "settings-workspace-submit-fulfilled.prelude:cleanup", "observation": { "sender": ["f84a8688af61"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -638,7 +640,7 @@ "id": "settings-workspace-submit-fulfilled.normal:settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -657,7 +659,7 @@ "id": "settings-workspace-submit-fulfilled.result-absent:settled", "observation": { "sender": ["e0cf1af55a54"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -670,7 +672,7 @@ "id": "settings-workspace-submit-fulfilled.result-null:settled", "observation": { "sender": ["e1bd8b4a5d70"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -683,7 +685,7 @@ "id": "settings-workspace-submit-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["0fc3e204e7ba", "fbc1bf929509"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -696,7 +698,7 @@ "id": "settings-workspace-submit-fulfilled.inner-ok-missing:cleanup", "observation": { "sender": ["0fc3e204e7ba", "588949297c83"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -709,7 +711,7 @@ "id": "settings-workspace-submit-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["d27ce798af34", "fbc1bf929509"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -722,7 +724,7 @@ "id": "settings-workspace-submit-fulfilled.inner-false-string-error:cleanup", "observation": { "sender": ["d27ce798af34", "588949297c83"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -735,7 +737,7 @@ "id": "settings-workspace-submit-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["127ad2bdc042", "fbc1bf929509"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -748,7 +750,7 @@ "id": "settings-workspace-submit-fulfilled.inner-false-object-error:cleanup", "observation": { "sender": ["127ad2bdc042", "588949297c83"], - "payloads": ["7ddcb1852b39", "f0d91b98b6a3"], + "payloads": ["5c52bc3f9e55", "28faeb877519"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -761,7 +763,7 @@ "id": "settings-workspace-submit-fulfilled.outer-refused:settled", "observation": { "sender": ["8f8296303a77"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -774,7 +776,7 @@ "id": "settings-workspace-submit-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["6a98511b6371"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -787,7 +789,7 @@ "id": "settings-workspace-submit-fulfilled.method-not-found:settled", "observation": { "sender": ["b759ab27e4dd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -800,7 +802,7 @@ "id": "settings-workspace-submit-fulfilled.transport-rejection:settled", "observation": { "sender": ["8b77098df0c3"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" @@ -813,7 +815,7 @@ "id": "settings-workspace-submit-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["2b3aa0da0852"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 6c8102cfba2..6e29b69d50c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cfc84498c2ed080ca2be50725c8ad4fac84eaf2e64ecad1445997949737da11d", "platform": "darwin", @@ -274,10 +274,6 @@ } } }, - "90af24dc404f": { - "name": "speech.dictation.chunk#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.chunk\",\"params\":{\"dictationId\":\"dictation-1\",\"audioBase64\":\"ACVKb5S53gM=\",\"sampleRate\":16000}}" - }, "9db288492eed": { "name": "speech.dictation.chunk#1", "args": [ @@ -355,6 +351,11 @@ "failures": [""], "pending": 0 }, + "b5c5cee75a84": { + "name": "speech.dictation.chunk#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.chunk\",\"params\":{\"dictationId\":\"dictation-1\",\"audioBase64\":\"ACVKb5S53gM=\",\"sampleRate\":16000}}", + "sent": 1 + }, "bc459c132276": { "status": "fulfilled", "startedAt": 0, @@ -450,7 +451,7 @@ "id": "speech-audio-chunk-acknowledged.normal:acknowledged", "observation": { "sender": ["c0d15d1b2941"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -462,7 +463,7 @@ "id": "speech-audio-chunk-acknowledged.result-absent:acknowledged", "observation": { "sender": ["fad94b386878"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -474,7 +475,7 @@ "id": "speech-audio-chunk-acknowledged.result-null:acknowledged", "observation": { "sender": ["64d841ddbfc2"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -486,7 +487,7 @@ "id": "speech-audio-chunk-acknowledged.inner-ok-missing:acknowledged", "observation": { "sender": ["6afeecf90444"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -498,7 +499,7 @@ "id": "speech-audio-chunk-acknowledged.inner-false-string-error:acknowledged", "observation": { "sender": ["24559ea7f608"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -510,7 +511,7 @@ "id": "speech-audio-chunk-acknowledged.inner-false-object-error:acknowledged", "observation": { "sender": ["6b58f71b4e01"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -522,7 +523,7 @@ "id": "speech-audio-chunk-acknowledged.outer-refused:acknowledged", "observation": { "sender": ["351dc95151e8"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -534,7 +535,7 @@ "id": "speech-audio-chunk-acknowledged.outer-refused-no-message:acknowledged", "observation": { "sender": ["48fbdc97b6b4"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -546,7 +547,7 @@ "id": "speech-audio-chunk-acknowledged.method-not-found:acknowledged", "observation": { "sender": ["9db288492eed"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -558,7 +559,7 @@ "id": "speech-audio-chunk-acknowledged.transport-rejection:acknowledged", "observation": { "sender": ["3e346f1803ba"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, @@ -570,7 +571,7 @@ "id": "speech-audio-chunk-acknowledged.transport-rejection-no-message:acknowledged", "observation": { "sender": ["b2ed580da421"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, 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 cb0a3cd879f..0f6edea4740 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "f3b57e7a3d46f7ee2761ecced03e74019758172fe0a040ef5df0612c8ac18358", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0469b72b9c8a": { + "name": "speech.dictation.start#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 1 + }, "073a32801a55": { "error": "Cannot read properties of null (reading 'text')", "status": "error", @@ -37,6 +42,11 @@ }, "sent": 3 }, + "12aee19e9a0c": { + "name": "speech.dictation.finish#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 2 + }, "3c7368349e13": { "name": "speech.dictation.finish#1", "args": [ @@ -78,10 +88,6 @@ }, "sent": 3 }, - "3fe14b61ba9c": { - "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "4a8791bf23bb": { "name": "dictation-error", "value": { @@ -382,10 +388,6 @@ } } }, - "a79e628b898b": { - "name": "speech.dictation.finish#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "ac6550e5cd05": { "name": "speech.dictation.finish#1", "args": [ @@ -459,10 +461,6 @@ "status": "error", "transcripts": [] }, - "bbda4a44cbe0": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "c72663fd883b": { "name": "speech.dictation.finish#1", "args": [ @@ -532,6 +530,11 @@ } } }, + "dc377e917e9e": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 3 + }, "dd2a6fe5923c": { "error": "transport failure", "status": "error", @@ -553,7 +556,7 @@ "id": "speech-dictation-session-transcript.normal:transcribed", "observation": { "sender": ["a3d4b25bf713", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -567,7 +570,7 @@ "id": "speech-dictation-session-transcript.result-absent:transcribed", "observation": { "sender": ["a3d4b25bf713", "851c52f1c33e", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -581,7 +584,7 @@ "id": "speech-dictation-session-transcript.result-null:transcribed", "observation": { "sender": ["a3d4b25bf713", "733c914832a5", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -595,7 +598,7 @@ "id": "speech-dictation-session-transcript.inner-ok-missing:transcribed", "observation": { "sender": ["a3d4b25bf713", "cafa38b4e2f3"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -609,7 +612,7 @@ "id": "speech-dictation-session-transcript.inner-false-string-error:transcribed", "observation": { "sender": ["a3d4b25bf713", "ae04287096aa"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -623,7 +626,7 @@ "id": "speech-dictation-session-transcript.inner-false-object-error:transcribed", "observation": { "sender": ["a3d4b25bf713", "c72663fd883b"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -637,7 +640,7 @@ "id": "speech-dictation-session-transcript.outer-refused:transcribed", "observation": { "sender": ["a3d4b25bf713", "3c7368349e13", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -651,7 +654,7 @@ "id": "speech-dictation-session-transcript.outer-refused-no-message:transcribed", "observation": { "sender": ["a3d4b25bf713", "66c94ecbfe85", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -665,7 +668,7 @@ "id": "speech-dictation-session-transcript.method-not-found:transcribed", "observation": { "sender": ["a3d4b25bf713", "ac6550e5cd05", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -679,7 +682,7 @@ "id": "speech-dictation-session-transcript.transport-rejection:transcribed", "observation": { "sender": ["a3d4b25bf713", "93e894a59a4e", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -693,7 +696,7 @@ "id": "speech-dictation-session-transcript.transport-rejection-no-message:transcribed", "observation": { "sender": ["a3d4b25bf713", "7e57b271644a", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "a79e628b898b", "bbda4a44cbe0"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c", "dc377e917e9e"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", 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 a069c123b16..b7a09ff9505 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "afe7c4d2085b095cac343607db3e9cc157921c2e0b20bae53260cd207ee5e4eb", "platform": "darwin", @@ -43,6 +43,16 @@ } } }, + "0469b72b9c8a": { + "name": "speech.dictation.start#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 1 + }, + "12aee19e9a0c": { + "name": "speech.dictation.finish#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 2 + }, "133244b5f259": { "name": "speech.dictation.start#1", "args": [ @@ -74,10 +84,6 @@ } } }, - "19545af661f2": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "31bfff245eea": { "name": "speech.dictation.start#1", "args": [ @@ -143,10 +149,6 @@ } } }, - "3fe14b61ba9c": { - "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "410f671e8571": { "name": "speech.dictation.start#1", "args": [ @@ -350,10 +352,6 @@ } } }, - "a79e628b898b": { - "name": "speech.dictation.finish#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "b67ded1393a7": { "name": "speech.dictation.start#1", "args": [ @@ -432,6 +430,11 @@ "$rpc": "undefined" } }, + "f2afab6e5c12": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 2 + }, "f6a74c428142": { "error": { "$rpc": "null" @@ -480,7 +483,7 @@ "id": "speech-dictation-session-transcript.normal:transcribed", "observation": { "sender": ["a3d4b25bf713", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -494,7 +497,7 @@ "id": "speech-dictation-session-transcript.result-absent:transcribed", "observation": { "sender": ["03ef87c361a6", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -508,7 +511,7 @@ "id": "speech-dictation-session-transcript.result-null:transcribed", "observation": { "sender": ["f93fdd460783", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -522,7 +525,7 @@ "id": "speech-dictation-session-transcript.inner-ok-missing:transcribed", "observation": { "sender": ["669ca80a030f", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -536,7 +539,7 @@ "id": "speech-dictation-session-transcript.inner-false-string-error:transcribed", "observation": { "sender": ["b67ded1393a7", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -550,7 +553,7 @@ "id": "speech-dictation-session-transcript.inner-false-object-error:transcribed", "observation": { "sender": ["d99a7c527d94", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", @@ -564,7 +567,7 @@ "id": "speech-dictation-session-transcript.outer-refused:transcribed", "observation": { "sender": ["410f671e8571", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "9270aeb7d9c6", @@ -578,7 +581,7 @@ "id": "speech-dictation-session-transcript.outer-refused-no-message:transcribed", "observation": { "sender": ["a30fb20eccfd", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "9270aeb7d9c6", @@ -592,7 +595,7 @@ "id": "speech-dictation-session-transcript.method-not-found:transcribed", "observation": { "sender": ["31bfff245eea", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "9270aeb7d9c6", @@ -606,7 +609,7 @@ "id": "speech-dictation-session-transcript.transport-rejection:transcribed", "observation": { "sender": ["3e46953e2718", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "9270aeb7d9c6", @@ -620,7 +623,7 @@ "id": "speech-dictation-session-transcript.transport-rejection-no-message:transcribed", "observation": { "sender": ["133244b5f259", "5c21b9ecd037"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "9270aeb7d9c6", 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 b9c6e1f906f..8c4d632bc9b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "ef890c668aded545c5423322aeaab0e0715ff80d5f76c6512d6579e277853f6c", "platform": "darwin", @@ -180,6 +180,11 @@ } } }, + "601f4167c1ac": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 2 + }, "7ed3d39f0607": { "status": "fulfilled", "startedAt": 0, @@ -284,10 +289,6 @@ } } }, - "a78a87e09f05": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "bbe508ab7f95": { "name": "speech.dictation.start#1", "args": [ @@ -351,6 +352,11 @@ } } }, + "cbb6c5c8ae91": { + "name": "speech.dictation.start#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 1 + }, "d4e067bbbe7c": { "name": "speech.dictation.cancel#1", "args": [ @@ -392,10 +398,6 @@ "idle": false, "started": false }, - "e1538fe51a1e": { - "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -446,7 +448,7 @@ "id": "speech-desktop-start-superseded.normal:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -459,7 +461,7 @@ "id": "speech-desktop-start-superseded.result-absent:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "c742dd428fd0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -472,7 +474,7 @@ "id": "speech-desktop-start-superseded.result-null:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "9cacf4553e49"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -485,7 +487,7 @@ "id": "speech-desktop-start-superseded.inner-ok-missing:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "2c06ef299dba"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -498,7 +500,7 @@ "id": "speech-desktop-start-superseded.inner-false-string-error:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "ff829d6d4f1a"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -511,7 +513,7 @@ "id": "speech-desktop-start-superseded.inner-false-object-error:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "2d0a00315cb6"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -524,7 +526,7 @@ "id": "speech-desktop-start-superseded.outer-refused:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "934c27800758"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -537,7 +539,7 @@ "id": "speech-desktop-start-superseded.outer-refused-no-message:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "d4e067bbbe7c"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -550,7 +552,7 @@ "id": "speech-desktop-start-superseded.method-not-found:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "43eb5a277ab8"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -563,7 +565,7 @@ "id": "speech-desktop-start-superseded.transport-rejection:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "195cab46ce8e"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -576,7 +578,7 @@ "id": "speech-desktop-start-superseded.transport-rejection-no-message:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "84794daca96b"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" 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 9a673220ddf..442dec8d7fa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cd65f6b30f92d9542d19ad74cc9437ea33a1ec8fbdf4439ba13c14960f8a1994", "platform": "darwin", @@ -80,6 +80,11 @@ } } }, + "601f4167c1ac": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 2 + }, "7ed3d39f0607": { "status": "fulfilled", "startedAt": 0, @@ -253,10 +258,6 @@ } } }, - "a78a87e09f05": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "bbe508ab7f95": { "name": "speech.dictation.start#1", "args": [ @@ -290,6 +291,11 @@ } } }, + "cbb6c5c8ae91": { + "name": "speech.dictation.start#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 1 + }, "ce0d14ebee21": { "name": "speech.dictation.start#1", "args": [ @@ -395,10 +401,6 @@ "idle": false, "started": false }, - "e1538fe51a1e": { - "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -446,7 +448,7 @@ "id": "speech-desktop-start-superseded.normal:stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -459,7 +461,7 @@ "id": "speech-desktop-start-superseded.result-absent:stale-start-cancelled", "observation": { "sender": ["87ea622bd437", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -472,7 +474,7 @@ "id": "speech-desktop-start-superseded.result-null:stale-start-cancelled", "observation": { "sender": ["8384bf167bb1", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -485,7 +487,7 @@ "id": "speech-desktop-start-superseded.inner-ok-missing:stale-start-cancelled", "observation": { "sender": ["ce0d14ebee21", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -498,7 +500,7 @@ "id": "speech-desktop-start-superseded.inner-false-string-error:stale-start-cancelled", "observation": { "sender": ["d74bc2ce6806", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -511,7 +513,7 @@ "id": "speech-desktop-start-superseded.inner-false-object-error:stale-start-cancelled", "observation": { "sender": ["92b319a1e1ae", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -524,7 +526,7 @@ "id": "speech-desktop-start-superseded.outer-refused:stale-start-cancelled", "observation": { "sender": ["59e9ca68d314", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -537,7 +539,7 @@ "id": "speech-desktop-start-superseded.outer-refused-no-message:stale-start-cancelled", "observation": { "sender": ["a3d98968619a", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -550,7 +552,7 @@ "id": "speech-desktop-start-superseded.method-not-found:stale-start-cancelled", "observation": { "sender": ["7f93ccc70f02", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -563,7 +565,7 @@ "id": "speech-desktop-start-superseded.transport-rejection:stale-start-cancelled", "observation": { "sender": ["debfc02fbb08", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" @@ -576,7 +578,7 @@ "id": "speech-desktop-start-superseded.transport-rejection-no-message:stale-start-cancelled", "observation": { "sender": ["fae9f51834d5", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" 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 c9fe05f4242..1db50a9da9a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "407a52b099cbf2fcb261010e4235dae2e5e16e11b386fb6bc99d5a2d237af541", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ea7d26d0706": { - "name": "speech.dictation.setup#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}" - }, "14adf36a6f27": { "name": "speech.dictation.setup#1", "args": [ @@ -402,6 +398,16 @@ } } }, + "73dfd7a0c915": { + "name": "speech.dictation.setup#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}", + "sent": 4 + }, + "74cafa3ceeba": { + "name": "speech.models.download#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 2 + }, "7af31590ded9": { "configure": "started", "delete": { @@ -487,6 +493,11 @@ } } }, + "90128f3a26be": { + "name": "speech.models.delete#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 3 + }, "9f00dd54ba64": { "status": "fulfilled", "startedAt": 0, @@ -779,17 +790,10 @@ "selectedModelId": "whisper-small" } }, - "f14b5bb0c614": { - "name": "speech.models.delete#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7594a980fe2": { - "name": "speech.models.download#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 }, "fc5fb77f49bb": { "status": "fulfilled", @@ -809,7 +813,7 @@ "id": "speech-setup-sheet-fulfilled.normal:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -824,7 +828,7 @@ "id": "speech-setup-sheet-fulfilled.result-absent:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "6c06e4415402"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -839,7 +843,7 @@ "id": "speech-setup-sheet-fulfilled.result-null:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "a3cf1a5dec55"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -854,7 +858,7 @@ "id": "speech-setup-sheet-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "45f050437dd6"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -869,7 +873,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "686e4bca37ab"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -884,7 +888,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "14adf36a6f27"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -899,7 +903,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "81ec9b5ca7f2"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -914,7 +918,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "b7dd03f7a089"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -929,7 +933,7 @@ "id": "speech-setup-sheet-fulfilled.method-not-found:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "577b0a918b44"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -944,7 +948,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "25148d3fd4e0"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -959,7 +963,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "3bf5ed7bb628"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", 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 499960781b0..e89d64da7e2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "140ede79a9ee0c02bedbfe67551060ef85692b6cb71968a48a1c41fcb4863804", "platform": "darwin", @@ -78,10 +78,6 @@ } } }, - "0ea7d26d0706": { - "name": "speech.dictation.setup#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}" - }, "1117d44df3f8": { "configure": { "enabled": true, @@ -363,6 +359,16 @@ } } }, + "73dfd7a0c915": { + "name": "speech.dictation.setup#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}", + "sent": 4 + }, + "74cafa3ceeba": { + "name": "speech.models.download#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 2 + }, "7c5b27891a8f": { "configure": { "enabled": true, @@ -424,6 +430,11 @@ } } }, + "90128f3a26be": { + "name": "speech.models.delete#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 3 + }, "9f00dd54ba64": { "status": "fulfilled", "startedAt": 0, @@ -805,17 +816,10 @@ "$rpc": "null" } }, - "f14b5bb0c614": { - "name": "speech.models.delete#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7594a980fe2": { - "name": "speech.models.download#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 }, "fc5fb77f49bb": { "status": "fulfilled", @@ -835,7 +839,7 @@ "id": "speech-setup-sheet-fulfilled.normal:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -850,7 +854,7 @@ "id": "speech-setup-sheet-fulfilled.result-absent:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "ea8cab25bcf2", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -865,7 +869,7 @@ "id": "speech-setup-sheet-fulfilled.result-null:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "ab2c55671644", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -880,7 +884,7 @@ "id": "speech-setup-sheet-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "a3cb3bb824dc", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -895,7 +899,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "722a26526fad", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -910,7 +914,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "50d91aa16b10", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -925,7 +929,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "e8d746fbfb7a", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -940,7 +944,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "d5a1b3479c34", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -955,7 +959,7 @@ "id": "speech-setup-sheet-fulfilled.method-not-found:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "0b2ffa0243d3", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -970,7 +974,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "8496b8c738aa", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -985,7 +989,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "57573810dae3", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", 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 1f04c70d55c..0b8d7ffd814 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "6c0a9d2f2e28acd10c3a1f03888c23961e95bff02af10fe0e703d34fe6d60e8b", "platform": "darwin", @@ -76,10 +76,6 @@ } } }, - "0ea7d26d0706": { - "name": "speech.dictation.setup#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}" - }, "13c598d21f30": { "name": "speech.models.download#1", "args": [ @@ -337,6 +333,16 @@ } } }, + "73dfd7a0c915": { + "name": "speech.dictation.setup#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}", + "sent": 4 + }, + "74cafa3ceeba": { + "name": "speech.models.download#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 2 + }, "7adbf3e936d4": { "name": "speech.models.download#1", "args": [ @@ -398,6 +404,11 @@ "selectedModelId": "whisper-small" } }, + "90128f3a26be": { + "name": "speech.models.delete#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 3 + }, "94b559509089": { "name": "speech.models.download#1", "args": [ @@ -631,17 +642,10 @@ "$rpc": "undefined" } }, - "f14b5bb0c614": { - "name": "speech.models.delete#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7594a980fe2": { - "name": "speech.models.download#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 }, "fc5fb77f49bb": { "status": "fulfilled", @@ -661,7 +665,7 @@ "id": "speech-setup-sheet-fulfilled.normal:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -676,7 +680,7 @@ "id": "speech-setup-sheet-fulfilled.result-absent:settled", "observation": { "sender": ["4670310cd94e", "625909c6ba57", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -691,7 +695,7 @@ "id": "speech-setup-sheet-fulfilled.result-null:settled", "observation": { "sender": ["4670310cd94e", "234c35cef130", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -706,7 +710,7 @@ "id": "speech-setup-sheet-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["4670310cd94e", "1c35c145196b", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -721,7 +725,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["4670310cd94e", "070886afd931", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -736,7 +740,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["4670310cd94e", "99815410184d", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -751,7 +755,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused:settled", "observation": { "sender": ["4670310cd94e", "13c598d21f30", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "32a7c0ae7918", @@ -766,7 +770,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["4670310cd94e", "5a8462b1c151", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "d1b9d465d73d", @@ -781,7 +785,7 @@ "id": "speech-setup-sheet-fulfilled.method-not-found:settled", "observation": { "sender": ["4670310cd94e", "94b559509089", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "b948e8307e81", @@ -796,7 +800,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection:settled", "observation": { "sender": ["4670310cd94e", "bd088da40a2e", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "a947768bc0ed", @@ -811,7 +815,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["4670310cd94e", "7adbf3e936d4", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "c7584e82c72f", 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 21c2e7cda1f..78466dbc016 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "d63062b89cc83321f6bcbd05c55dd21c71c6ff8c8026d026b5d94e44278ed3d8", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ea7d26d0706": { - "name": "speech.dictation.setup#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}" - }, "1885e95050f7": { "configure": { "enabled": true, @@ -384,6 +380,16 @@ } } }, + "73dfd7a0c915": { + "name": "speech.dictation.setup#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}", + "sent": 4 + }, + "74cafa3ceeba": { + "name": "speech.models.download#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 2 + }, "7c5b27891a8f": { "configure": { "enabled": true, @@ -455,6 +461,11 @@ }, "download": "started" }, + "90128f3a26be": { + "name": "speech.models.delete#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 3 + }, "9f00dd54ba64": { "status": "fulfilled", "startedAt": 0, @@ -769,17 +780,10 @@ "$rpc": "null" } }, - "f14b5bb0c614": { - "name": "speech.models.delete#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7594a980fe2": { - "name": "speech.models.download#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 }, "fc5fb77f49bb": { "status": "fulfilled", @@ -799,7 +803,7 @@ "id": "speech-setup-sheet-fulfilled.normal:settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", @@ -814,7 +818,7 @@ "id": "speech-setup-sheet-fulfilled.result-absent:settled", "observation": { "sender": ["b698e02be8d5", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "eb79a9b3682a", "download": "eb79a9b3682a", @@ -829,7 +833,7 @@ "id": "speech-setup-sheet-fulfilled.result-null:settled", "observation": { "sender": ["64340d3fedd9", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "ee20a1dc39e7", "download": "eb79a9b3682a", @@ -844,7 +848,7 @@ "id": "speech-setup-sheet-fulfilled.inner-ok-missing:settled", "observation": { "sender": ["c4726b5b1f11", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "301151228fa3", "download": "eb79a9b3682a", @@ -859,7 +863,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-string-error:settled", "observation": { "sender": ["6b2c571b433c", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "9f00dd54ba64", "download": "eb79a9b3682a", @@ -874,7 +878,7 @@ "id": "speech-setup-sheet-fulfilled.inner-false-object-error:settled", "observation": { "sender": ["af96601f1b92", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "ad8a954e879d", "download": "eb79a9b3682a", @@ -889,7 +893,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused:settled", "observation": { "sender": ["b578b1b51282", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "32a7c0ae7918", "download": "eb79a9b3682a", @@ -904,7 +908,7 @@ "id": "speech-setup-sheet-fulfilled.outer-refused-no-message:settled", "observation": { "sender": ["5db4eee60ae8", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "53e0a15f84cd", "download": "eb79a9b3682a", @@ -919,7 +923,7 @@ "id": "speech-setup-sheet-fulfilled.method-not-found:settled", "observation": { "sender": ["6d0755a50f1e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "b948e8307e81", "download": "eb79a9b3682a", @@ -934,7 +938,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection:settled", "observation": { "sender": ["2da5080eab9e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a947768bc0ed", "download": "eb79a9b3682a", @@ -949,7 +953,7 @@ "id": "speech-setup-sheet-fulfilled.transport-rejection-no-message:settled", "observation": { "sender": ["adf4d28ddca2", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "c7584e82c72f", "download": "eb79a9b3682a", 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 421bd51e671..18dd5a282d7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "751e0446d4cb64f80c997695cadb5d59d9698b4920a8ae16b95cb01e1ff37579", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "02b35324051f": { "name": "prFileLoadingPath", "value": { @@ -34,6 +30,16 @@ "value": false, "sent": 3 }, + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 + }, "139752a53264": { "contents": { "src/index.ts": { @@ -220,10 +226,6 @@ }, "refreshSeq": 1 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "1e34370849ff": { "name": "error", "value": "", @@ -652,9 +654,10 @@ "value": "", "sent": 5 }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 }, "7418dba01b6e": { "contents": {}, @@ -1503,10 +1506,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -1634,9 +1633,10 @@ } } }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "e87d71fbc115": { "name": "error", @@ -1842,6 +1842,11 @@ "reviewRequests": [] }, "sent": 5 + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -1851,7 +1856,7 @@ "id": "tk-item-checks-files.prelude:rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -1864,7 +1869,7 @@ "id": "tk-item-checks-files.prelude:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1887,7 +1892,7 @@ "id": "tk-item-checks-files.prelude:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1915,7 +1920,7 @@ "id": "tk-item-checks-files.prelude:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1956,11 +1961,11 @@ "d2a2d7255ff4" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2007,11 +2012,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2059,11 +2064,11 @@ "9e745ce96dca" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2110,11 +2115,11 @@ "bda506c98a54" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2161,11 +2166,11 @@ "c6e27e4aac60" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2213,11 +2218,11 @@ "e294d34724a7" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2264,11 +2269,11 @@ "8920eea8d02d" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2315,11 +2320,11 @@ "ca1b07a1f5d1" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2366,11 +2371,11 @@ "a2e2063acb1e" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2417,11 +2422,11 @@ "a8b3659ce28d" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2468,11 +2473,11 @@ "48887ca5265d" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2519,11 +2524,11 @@ "c6fec2450611" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", 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 d092efc8d3f..3209655fc6e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "525fc4a694e8d1eaa4dab254c05f6bbdfbff31f9137bf9ba277ed508fd56e30e", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "02b35324051f": { "name": "prFileLoadingPath", "value": { @@ -92,9 +88,15 @@ "value": false, "sent": 3 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 }, "1906d3587624": { "name": "github.prFileContents#1", @@ -1021,9 +1023,10 @@ }, "refreshSeq": 1 }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 }, "7417da4c0d2a": { "contents": { @@ -1801,10 +1804,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -1942,6 +1941,11 @@ "value": "transport failure", "sent": 4 }, + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "e6577d375511": { "contents": { "src/index.ts": { @@ -2006,10 +2010,6 @@ }, "refreshSeq": 1 }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -2136,6 +2136,11 @@ "reviewRequests": [] }, "refreshSeq": 1 + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -2145,7 +2150,7 @@ "id": "tk-item-checks-files.prelude:rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2158,7 +2163,7 @@ "id": "tk-item-checks-files.prelude:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2181,7 +2186,7 @@ "id": "tk-item-checks-files.prelude:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2209,7 +2214,7 @@ "id": "tk-item-checks-files.prelude:cleanup", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "a4977f18017a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2243,7 +2248,7 @@ "id": "tk-item-checks-files.normal:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2284,11 +2289,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2329,7 +2334,7 @@ "id": "tk-item-checks-files.result-absent:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "541730f3b51f"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2370,11 +2375,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2415,7 +2420,7 @@ "id": "tk-item-checks-files.result-null:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "1906d3587624"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2456,11 +2461,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2501,7 +2506,7 @@ "id": "tk-item-checks-files.inner-ok-missing:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "1e46eab4fde9"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2542,11 +2547,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2587,7 +2592,7 @@ "id": "tk-item-checks-files.inner-false-string-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "5a1e66f04e98"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2628,11 +2633,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2673,7 +2678,7 @@ "id": "tk-item-checks-files.inner-false-object-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "f9b4dc062a34"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2714,11 +2719,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2759,7 +2764,7 @@ "id": "tk-item-checks-files.outer-refused:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "d085d3db6143"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2800,11 +2805,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2845,7 +2850,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "b86cf363fb90"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2886,11 +2891,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2931,7 +2936,7 @@ "id": "tk-item-checks-files.method-not-found:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "54bc4c012b07"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2972,11 +2977,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3017,7 +3022,7 @@ "id": "tk-item-checks-files.transport-rejection:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "e068d3c5d275"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3058,11 +3063,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3103,7 +3108,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "2d7af81eed6d"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3144,11 +3149,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", 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 dc06a80f280..18dcd287db5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "693c645ebbd13f438f19a8a96d52fa2e72c1c910aa45f04ba7f17c1c90e13169", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "023bc6c4612e": { "name": "github.rerunPRChecks#1", "args": [ @@ -73,6 +69,11 @@ "value": false, "sent": 3 }, + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, "11b5f0721ce4": { "contents": { "src/index.ts": { @@ -139,6 +140,11 @@ }, "refreshSeq": 0 }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 + }, "132e05e135de": { "contents": {}, "drafts": { @@ -193,10 +199,6 @@ }, "refreshSeq": 0 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "198ac889ae28": { "name": "error", "value": "transport failure", @@ -708,6 +710,11 @@ } } }, + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 + }, "7037a57cc5dc": { "contents": {}, "drafts": { @@ -762,10 +769,6 @@ }, "refreshSeq": 0 }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, "72e6ae650560": { "name": "github.rerunPRChecks#1", "args": [ @@ -1574,10 +1577,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -1774,6 +1773,11 @@ }, "refreshSeq": 0 }, + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 + }, "e643b2fcc7a7": { "name": "github.rerunPRChecks#1", "args": [ @@ -1808,10 +1812,6 @@ } } }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1839,6 +1839,11 @@ "name": "error", "value": "Cannot read properties of null (reading 'ok')", "sent": 1 + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -1848,7 +1853,7 @@ "id": "tk-item-checks-files.normal:rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -1861,7 +1866,7 @@ "id": "tk-item-checks-files.normal:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1884,7 +1889,7 @@ "id": "tk-item-checks-files.normal:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1912,7 +1917,7 @@ "id": "tk-item-checks-files.normal:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1953,11 +1958,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -1998,7 +2003,7 @@ "id": "tk-item-checks-files.result-absent:rerun-settled", "observation": { "sender": ["85d07c192bf2"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2011,7 +2016,7 @@ "id": "tk-item-checks-files.result-absent:viewed-settled", "observation": { "sender": ["85d07c192bf2", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2034,7 +2039,7 @@ "id": "tk-item-checks-files.result-absent:thread-settled", "observation": { "sender": ["85d07c192bf2", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2062,7 +2067,7 @@ "id": "tk-item-checks-files.result-absent:expand-settled", "observation": { "sender": ["85d07c192bf2", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2103,11 +2108,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2148,7 +2153,7 @@ "id": "tk-item-checks-files.result-null:rerun-settled", "observation": { "sender": ["63eee231db8a"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2161,7 +2166,7 @@ "id": "tk-item-checks-files.result-null:viewed-settled", "observation": { "sender": ["63eee231db8a", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2184,7 +2189,7 @@ "id": "tk-item-checks-files.result-null:thread-settled", "observation": { "sender": ["63eee231db8a", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2212,7 +2217,7 @@ "id": "tk-item-checks-files.result-null:expand-settled", "observation": { "sender": ["63eee231db8a", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2253,11 +2258,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2298,7 +2303,7 @@ "id": "tk-item-checks-files.inner-ok-missing:rerun-settled", "observation": { "sender": ["bcd505b6ddab"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2311,7 +2316,7 @@ "id": "tk-item-checks-files.inner-ok-missing:viewed-settled", "observation": { "sender": ["bcd505b6ddab", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2334,7 +2339,7 @@ "id": "tk-item-checks-files.inner-ok-missing:thread-settled", "observation": { "sender": ["bcd505b6ddab", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2362,7 +2367,7 @@ "id": "tk-item-checks-files.inner-ok-missing:expand-settled", "observation": { "sender": ["bcd505b6ddab", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2403,11 +2408,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2448,7 +2453,7 @@ "id": "tk-item-checks-files.inner-false-string-error:rerun-settled", "observation": { "sender": ["86327c5f8340"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2461,7 +2466,7 @@ "id": "tk-item-checks-files.inner-false-string-error:viewed-settled", "observation": { "sender": ["86327c5f8340", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2484,7 +2489,7 @@ "id": "tk-item-checks-files.inner-false-string-error:thread-settled", "observation": { "sender": ["86327c5f8340", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2512,7 +2517,7 @@ "id": "tk-item-checks-files.inner-false-string-error:expand-settled", "observation": { "sender": ["86327c5f8340", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2553,11 +2558,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2598,7 +2603,7 @@ "id": "tk-item-checks-files.inner-false-object-error:rerun-settled", "observation": { "sender": ["023bc6c4612e"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2611,7 +2616,7 @@ "id": "tk-item-checks-files.inner-false-object-error:viewed-settled", "observation": { "sender": ["023bc6c4612e", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2634,7 +2639,7 @@ "id": "tk-item-checks-files.inner-false-object-error:thread-settled", "observation": { "sender": ["023bc6c4612e", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2662,7 +2667,7 @@ "id": "tk-item-checks-files.inner-false-object-error:expand-settled", "observation": { "sender": ["023bc6c4612e", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2703,11 +2708,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2748,7 +2753,7 @@ "id": "tk-item-checks-files.outer-refused:rerun-settled", "observation": { "sender": ["c9c92edf96b7"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2761,7 +2766,7 @@ "id": "tk-item-checks-files.outer-refused:viewed-settled", "observation": { "sender": ["c9c92edf96b7", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2784,7 +2789,7 @@ "id": "tk-item-checks-files.outer-refused:thread-settled", "observation": { "sender": ["c9c92edf96b7", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2812,7 +2817,7 @@ "id": "tk-item-checks-files.outer-refused:expand-settled", "observation": { "sender": ["c9c92edf96b7", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2853,11 +2858,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2898,7 +2903,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:rerun-settled", "observation": { "sender": ["839ca552d09d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -2911,7 +2916,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:viewed-settled", "observation": { "sender": ["839ca552d09d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2934,7 +2939,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:thread-settled", "observation": { "sender": ["839ca552d09d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2962,7 +2967,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:expand-settled", "observation": { "sender": ["839ca552d09d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3003,11 +3008,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3048,7 +3053,7 @@ "id": "tk-item-checks-files.method-not-found:rerun-settled", "observation": { "sender": ["72e6ae650560"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -3061,7 +3066,7 @@ "id": "tk-item-checks-files.method-not-found:viewed-settled", "observation": { "sender": ["72e6ae650560", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3084,7 +3089,7 @@ "id": "tk-item-checks-files.method-not-found:thread-settled", "observation": { "sender": ["72e6ae650560", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3112,7 +3117,7 @@ "id": "tk-item-checks-files.method-not-found:expand-settled", "observation": { "sender": ["72e6ae650560", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3153,11 +3158,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3198,7 +3203,7 @@ "id": "tk-item-checks-files.transport-rejection:rerun-settled", "observation": { "sender": ["83d249a53990"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -3211,7 +3216,7 @@ "id": "tk-item-checks-files.transport-rejection:viewed-settled", "observation": { "sender": ["83d249a53990", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3234,7 +3239,7 @@ "id": "tk-item-checks-files.transport-rejection:thread-settled", "observation": { "sender": ["83d249a53990", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3262,7 +3267,7 @@ "id": "tk-item-checks-files.transport-rejection:expand-settled", "observation": { "sender": ["83d249a53990", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3303,11 +3308,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3348,7 +3353,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:rerun-settled", "observation": { "sender": ["e643b2fcc7a7"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -3361,7 +3366,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["e643b2fcc7a7", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3384,7 +3389,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:thread-settled", "observation": { "sender": ["e643b2fcc7a7", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3412,7 +3417,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:expand-settled", "observation": { "sender": ["e643b2fcc7a7", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3453,11 +3458,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", 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 8f9287e5a60..cd15d440f46 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "aa567e882db4be1bf3c9174e4af8266e1f9a25f8c353d7cb41f6c7e51c4d48b5", "platform": "darwin", @@ -48,10 +48,6 @@ } } }, - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "02b35324051f": { "name": "prFileLoadingPath", "value": { @@ -69,6 +65,11 @@ "value": false, "sent": 3 }, + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, "128457772a2b": { "name": "detailPayload", "value": { @@ -126,6 +127,11 @@ }, "sent": 5 }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 + }, "148dc3b21af5": { "name": "github.resolveReviewThread#1", "args": [ @@ -158,10 +164,6 @@ } } }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "18d6aedd20c0": { "name": "error", "value": "outer refused", @@ -719,9 +721,10 @@ }, "refreshSeq": 1 }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 }, "7418dba01b6e": { "contents": {}, @@ -1431,10 +1434,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -1528,9 +1527,10 @@ } } }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "eb645da7e93b": { "contents": {}, @@ -1639,6 +1639,11 @@ "ok": false } } + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -1648,7 +1653,7 @@ "id": "tk-item-checks-files.prelude:rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -1661,7 +1666,7 @@ "id": "tk-item-checks-files.prelude:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1684,7 +1689,7 @@ "id": "tk-item-checks-files.prelude:cleanup", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "4c89478d0f9d"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1712,7 +1717,7 @@ "id": "tk-item-checks-files.normal:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1740,7 +1745,7 @@ "id": "tk-item-checks-files.normal:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1781,11 +1786,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -1826,7 +1831,7 @@ "id": "tk-item-checks-files.result-absent:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "148dc3b21af5"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1854,7 +1859,7 @@ "id": "tk-item-checks-files.result-absent:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "148dc3b21af5", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1895,11 +1900,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -1940,7 +1945,7 @@ "id": "tk-item-checks-files.result-null:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "01b07d8f5587"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1968,7 +1973,7 @@ "id": "tk-item-checks-files.result-null:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "01b07d8f5587", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2009,11 +2014,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2054,7 +2059,7 @@ "id": "tk-item-checks-files.inner-ok-missing:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "19017ac9e692"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2082,7 +2087,7 @@ "id": "tk-item-checks-files.inner-ok-missing:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "19017ac9e692", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2123,11 +2128,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2168,7 +2173,7 @@ "id": "tk-item-checks-files.inner-false-string-error:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "a9130d675f78"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2196,7 +2201,7 @@ "id": "tk-item-checks-files.inner-false-string-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "a9130d675f78", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2237,11 +2242,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2282,7 +2287,7 @@ "id": "tk-item-checks-files.inner-false-object-error:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "c95b1847dd34"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2310,7 +2315,7 @@ "id": "tk-item-checks-files.inner-false-object-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "c95b1847dd34", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2351,11 +2356,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2396,7 +2401,7 @@ "id": "tk-item-checks-files.outer-refused:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "f62f9a51e15b"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2424,7 +2429,7 @@ "id": "tk-item-checks-files.outer-refused:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "f62f9a51e15b", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2465,11 +2470,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2510,7 +2515,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "c81d8dee87a4"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2538,7 +2543,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "c81d8dee87a4", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2579,11 +2584,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2624,7 +2629,7 @@ "id": "tk-item-checks-files.method-not-found:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "29a4b370d70f"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2652,7 +2657,7 @@ "id": "tk-item-checks-files.method-not-found:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "29a4b370d70f", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2693,11 +2698,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2738,7 +2743,7 @@ "id": "tk-item-checks-files.transport-rejection:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "3694dfb6503a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2766,7 +2771,7 @@ "id": "tk-item-checks-files.transport-rejection:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "3694dfb6503a", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2807,11 +2812,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2852,7 +2857,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcbf4ea6c5d1"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2880,7 +2885,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcbf4ea6c5d1", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2921,11 +2926,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", 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 51dfb349215..518d7c2d084 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "eefa7111ee94d5966692fb6f9bed1b3ccd7e1fe40c540438c005731d0cae305c", "platform": "darwin", @@ -18,10 +18,6 @@ "value": "outer refused", "sent": 2 }, - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "02b35324051f": { "name": "prFileLoadingPath", "value": { @@ -108,9 +104,15 @@ "value": false, "sent": 3 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 }, "1e34370849ff": { "name": "error", @@ -764,9 +766,10 @@ } } }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 }, "7418dba01b6e": { "contents": {}, @@ -1525,10 +1528,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -1688,9 +1687,10 @@ } } }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1753,6 +1753,11 @@ } } } + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -1762,7 +1767,7 @@ "id": "tk-item-checks-files.prelude:rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -1775,7 +1780,7 @@ "id": "tk-item-checks-files.prelude:cleanup", "observation": { "sender": ["a94ae672d47d", "6426dff00b14"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1798,7 +1803,7 @@ "id": "tk-item-checks-files.normal:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1821,7 +1826,7 @@ "id": "tk-item-checks-files.normal:thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1849,7 +1854,7 @@ "id": "tk-item-checks-files.normal:expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1890,11 +1895,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -1935,7 +1940,7 @@ "id": "tk-item-checks-files.result-absent:viewed-settled", "observation": { "sender": ["a94ae672d47d", "0a7337ca2136"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1958,7 +1963,7 @@ "id": "tk-item-checks-files.result-absent:thread-settled", "observation": { "sender": ["a94ae672d47d", "0a7337ca2136", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -1986,7 +1991,7 @@ "id": "tk-item-checks-files.result-absent:expand-settled", "observation": { "sender": ["a94ae672d47d", "0a7337ca2136", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2027,11 +2032,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2072,7 +2077,7 @@ "id": "tk-item-checks-files.result-null:viewed-settled", "observation": { "sender": ["a94ae672d47d", "50fab4c32096"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2095,7 +2100,7 @@ "id": "tk-item-checks-files.result-null:thread-settled", "observation": { "sender": ["a94ae672d47d", "50fab4c32096", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2123,7 +2128,7 @@ "id": "tk-item-checks-files.result-null:expand-settled", "observation": { "sender": ["a94ae672d47d", "50fab4c32096", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2164,11 +2169,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2209,7 +2214,7 @@ "id": "tk-item-checks-files.inner-ok-missing:viewed-settled", "observation": { "sender": ["a94ae672d47d", "02bd45162a6b"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2232,7 +2237,7 @@ "id": "tk-item-checks-files.inner-ok-missing:thread-settled", "observation": { "sender": ["a94ae672d47d", "02bd45162a6b", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2260,7 +2265,7 @@ "id": "tk-item-checks-files.inner-ok-missing:expand-settled", "observation": { "sender": ["a94ae672d47d", "02bd45162a6b", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2301,11 +2306,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2346,7 +2351,7 @@ "id": "tk-item-checks-files.inner-false-string-error:viewed-settled", "observation": { "sender": ["a94ae672d47d", "2334be3be938"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2369,7 +2374,7 @@ "id": "tk-item-checks-files.inner-false-string-error:thread-settled", "observation": { "sender": ["a94ae672d47d", "2334be3be938", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2397,7 +2402,7 @@ "id": "tk-item-checks-files.inner-false-string-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "2334be3be938", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2438,11 +2443,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2483,7 +2488,7 @@ "id": "tk-item-checks-files.inner-false-object-error:viewed-settled", "observation": { "sender": ["a94ae672d47d", "f3d1bdd6c8c8"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2506,7 +2511,7 @@ "id": "tk-item-checks-files.inner-false-object-error:thread-settled", "observation": { "sender": ["a94ae672d47d", "f3d1bdd6c8c8", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2534,7 +2539,7 @@ "id": "tk-item-checks-files.inner-false-object-error:expand-settled", "observation": { "sender": ["a94ae672d47d", "f3d1bdd6c8c8", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2575,11 +2580,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2620,7 +2625,7 @@ "id": "tk-item-checks-files.outer-refused:viewed-settled", "observation": { "sender": ["a94ae672d47d", "e11cc4c14e30"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2643,7 +2648,7 @@ "id": "tk-item-checks-files.outer-refused:thread-settled", "observation": { "sender": ["a94ae672d47d", "e11cc4c14e30", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2671,7 +2676,7 @@ "id": "tk-item-checks-files.outer-refused:expand-settled", "observation": { "sender": ["a94ae672d47d", "e11cc4c14e30", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2712,11 +2717,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2757,7 +2762,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:viewed-settled", "observation": { "sender": ["a94ae672d47d", "7ccde0bb0876"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2780,7 +2785,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:thread-settled", "observation": { "sender": ["a94ae672d47d", "7ccde0bb0876", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2808,7 +2813,7 @@ "id": "tk-item-checks-files.outer-refused-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "7ccde0bb0876", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2849,11 +2854,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -2894,7 +2899,7 @@ "id": "tk-item-checks-files.method-not-found:viewed-settled", "observation": { "sender": ["a94ae672d47d", "667e91681dd2"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2917,7 +2922,7 @@ "id": "tk-item-checks-files.method-not-found:thread-settled", "observation": { "sender": ["a94ae672d47d", "667e91681dd2", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2945,7 +2950,7 @@ "id": "tk-item-checks-files.method-not-found:expand-settled", "observation": { "sender": ["a94ae672d47d", "667e91681dd2", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -2986,11 +2991,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3031,7 +3036,7 @@ "id": "tk-item-checks-files.transport-rejection:viewed-settled", "observation": { "sender": ["a94ae672d47d", "d9e1d01cd9c5"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3054,7 +3059,7 @@ "id": "tk-item-checks-files.transport-rejection:thread-settled", "observation": { "sender": ["a94ae672d47d", "d9e1d01cd9c5", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3082,7 +3087,7 @@ "id": "tk-item-checks-files.transport-rejection:expand-settled", "observation": { "sender": ["a94ae672d47d", "d9e1d01cd9c5", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3123,11 +3128,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", @@ -3168,7 +3173,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["a94ae672d47d", "4668891266a8"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3191,7 +3196,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:thread-settled", "observation": { "sender": ["a94ae672d47d", "4668891266a8", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3219,7 +3224,7 @@ "id": "tk-item-checks-files.transport-rejection-no-message:expand-settled", "observation": { "sender": ["a94ae672d47d", "4668891266a8", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -3260,11 +3265,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", 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 b1b62fb3e22..1b7efc12e57 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "1cc7fdf3139e0c5a81cd83987ffedc4f59cd4866fc1b4018b61e35eacc74fc11", "platform": "darwin", @@ -406,10 +406,6 @@ "reviewRequests": [] } }, - "79a7f51f2a84": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}" - }, "7d901d60a01a": { "name": "error", "value": "[object Object]", @@ -478,6 +474,11 @@ "reviewRequests": [] } }, + "9cd49fc064c7": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}", + "sent": 1 + }, "9e263f5e91be": { "name": "error", "value": "", @@ -1247,7 +1248,7 @@ "id": "tk-item-comment-github.normal:comment-settled", "observation": { "sender": ["7297a232d830"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1266,7 +1267,7 @@ "id": "tk-item-comment-github.result-absent:comment-settled", "observation": { "sender": ["f11c380fcc49"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1279,7 +1280,7 @@ "id": "tk-item-comment-github.result-null:comment-settled", "observation": { "sender": ["eeabdda57f2e"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1292,7 +1293,7 @@ "id": "tk-item-comment-github.inner-ok-missing:comment-settled", "observation": { "sender": ["4d8af8e76f0d"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1311,7 +1312,7 @@ "id": "tk-item-comment-github.inner-false-string-error:comment-settled", "observation": { "sender": ["b7d0cffab0ca"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1324,7 +1325,7 @@ "id": "tk-item-comment-github.inner-false-object-error:comment-settled", "observation": { "sender": ["6c11b73fe686"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1337,7 +1338,7 @@ "id": "tk-item-comment-github.outer-refused:comment-settled", "observation": { "sender": ["e4efd14a7239"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1350,7 +1351,7 @@ "id": "tk-item-comment-github.outer-refused-no-message:comment-settled", "observation": { "sender": ["5949b46afd35"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1363,7 +1364,7 @@ "id": "tk-item-comment-github.method-not-found:comment-settled", "observation": { "sender": ["faeb3568c88c"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1376,7 +1377,7 @@ "id": "tk-item-comment-github.transport-rejection:comment-settled", "observation": { "sender": ["2145a24ffb7c"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1389,7 +1390,7 @@ "id": "tk-item-comment-github.transport-rejection-no-message:comment-settled", "observation": { "sender": ["befa2eb39911"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" 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 2ab94bee6a7..f08d4f1b8aa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "154d91d00db23ea2718a6ee0b6c5cafc7233084532b3d561731b059d58e006f5", "platform": "darwin", @@ -121,6 +121,11 @@ "value": "transport failure", "sent": 1 }, + "1ca4b0d3bbd0": { + "name": "gitlab.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "1f27ffccd3c3": { "name": "gitlab.addIssueComment#1", "args": [ @@ -549,10 +554,6 @@ } } }, - "7251019fd224": { - "name": "gitlab.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" - }, "7a6c84318727": { "draft": "a comment", "error": "outer refused", @@ -887,7 +888,7 @@ "id": "tk-item-comment-gitlab.normal:comment-settled", "observation": { "sender": ["1f27ffccd3c3"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -906,7 +907,7 @@ "id": "tk-item-comment-gitlab.result-absent:comment-settled", "observation": { "sender": ["2fcb406ea267"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -919,7 +920,7 @@ "id": "tk-item-comment-gitlab.result-null:comment-settled", "observation": { "sender": ["39c7fd272daf"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -932,7 +933,7 @@ "id": "tk-item-comment-gitlab.inner-ok-missing:comment-settled", "observation": { "sender": ["cb18508bfe06"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -951,7 +952,7 @@ "id": "tk-item-comment-gitlab.inner-false-string-error:comment-settled", "observation": { "sender": ["fe21c61cf6a3"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -964,7 +965,7 @@ "id": "tk-item-comment-gitlab.inner-false-object-error:comment-settled", "observation": { "sender": ["2733873ba39e"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -977,7 +978,7 @@ "id": "tk-item-comment-gitlab.outer-refused:comment-settled", "observation": { "sender": ["13cad23ebd19"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -990,7 +991,7 @@ "id": "tk-item-comment-gitlab.outer-refused-no-message:comment-settled", "observation": { "sender": ["3d8c0130481e"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1003,7 +1004,7 @@ "id": "tk-item-comment-gitlab.method-not-found:comment-settled", "observation": { "sender": ["f7fdfa8aaddb"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1016,7 +1017,7 @@ "id": "tk-item-comment-gitlab.transport-rejection:comment-settled", "observation": { "sender": ["a0921dd0e496"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1029,7 +1030,7 @@ "id": "tk-item-comment-gitlab.transport-rejection-no-message:comment-settled", "observation": { "sender": ["643d27f4f64d"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" 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 002463232a5..a261139d525 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "ae07579881829263a2b5590249d4119f5d9f4ef3877149ac3b780ad985413f00", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "02a9b21b0da8": { - "name": "gitlab.addMRComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" - }, "0846de0f949a": { "draft": "a comment", "error": "transport failure", @@ -856,6 +852,11 @@ } } }, + "e13ed6b2ab74": { + "name": "gitlab.addMRComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -887,7 +888,7 @@ "id": "tk-item-comment-gitlab-mr.normal:comment-settled", "observation": { "sender": ["c6b7aaa4bd08"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -906,7 +907,7 @@ "id": "tk-item-comment-gitlab-mr.result-absent:comment-settled", "observation": { "sender": ["20abdda2b770"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -919,7 +920,7 @@ "id": "tk-item-comment-gitlab-mr.result-null:comment-settled", "observation": { "sender": ["c89ea6e7700c"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -932,7 +933,7 @@ "id": "tk-item-comment-gitlab-mr.inner-ok-missing:comment-settled", "observation": { "sender": ["d8a0bdf0682e"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -951,7 +952,7 @@ "id": "tk-item-comment-gitlab-mr.inner-false-string-error:comment-settled", "observation": { "sender": ["e0e1142aee10"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -964,7 +965,7 @@ "id": "tk-item-comment-gitlab-mr.inner-false-object-error:comment-settled", "observation": { "sender": ["d447b467c652"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -977,7 +978,7 @@ "id": "tk-item-comment-gitlab-mr.outer-refused:comment-settled", "observation": { "sender": ["3e5facf48993"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -990,7 +991,7 @@ "id": "tk-item-comment-gitlab-mr.outer-refused-no-message:comment-settled", "observation": { "sender": ["7f2697ace03b"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1003,7 +1004,7 @@ "id": "tk-item-comment-gitlab-mr.method-not-found:comment-settled", "observation": { "sender": ["ad694b26e210"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1016,7 +1017,7 @@ "id": "tk-item-comment-gitlab-mr.transport-rejection:comment-settled", "observation": { "sender": ["01a6101342a9"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1029,7 +1030,7 @@ "id": "tk-item-comment-gitlab-mr.transport-rejection-no-message:comment-settled", "observation": { "sender": ["e07e078ae271"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" 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 d32d75c6a2d..5c554720543 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "955729f9100dce7eeb103f7b4d08ff56ac66853b9ad0d33627c0838011287bca", "platform": "darwin", @@ -338,6 +338,11 @@ } } }, + "7a351201fa97": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"type\":\"pr\"}}", + "sent": 1 + }, "85b9acf85c67": { "name": "github.workItemDetails#1", "args": [ @@ -710,10 +715,6 @@ "value": "Details not found", "sent": 1 }, - "d46a22dbc133": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"type\":\"pr\"}}" - }, "eb1f947767b0": { "error": "", "item": { @@ -857,7 +858,7 @@ "id": "tk-item-detail-github.normal:mounted", "observation": { "sender": ["54ee429ef116"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -875,7 +876,7 @@ "id": "tk-item-detail-github.result-absent:mounted", "observation": { "sender": ["64e5ae4019a2"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -893,7 +894,7 @@ "id": "tk-item-detail-github.result-null:mounted", "observation": { "sender": ["c3f9c5e184b4"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -911,7 +912,7 @@ "id": "tk-item-detail-github.inner-ok-missing:mounted", "observation": { "sender": ["ce4ab5211cfd"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -929,7 +930,7 @@ "id": "tk-item-detail-github.inner-false-string-error:mounted", "observation": { "sender": ["85b9acf85c67"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -947,7 +948,7 @@ "id": "tk-item-detail-github.inner-false-object-error:mounted", "observation": { "sender": ["710c5f655599"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -965,7 +966,7 @@ "id": "tk-item-detail-github.outer-refused:mounted", "observation": { "sender": ["f6a5a82a230c"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -983,7 +984,7 @@ "id": "tk-item-detail-github.outer-refused-no-message:mounted", "observation": { "sender": ["c8f810d0473e"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1001,7 +1002,7 @@ "id": "tk-item-detail-github.method-not-found:mounted", "observation": { "sender": ["ba2827f74800"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1019,7 +1020,7 @@ "id": "tk-item-detail-github.transport-rejection:mounted", "observation": { "sender": ["981b7de38854"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1037,7 +1038,7 @@ "id": "tk-item-detail-github.transport-rejection-no-message:mounted", "observation": { "sender": ["978c0a45552a"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, 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 946995d4400..c6ad9955de5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "d163c6125fa180da7575642ee29f4bb18e3678079b7c30a42934550896d5b3c1", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "08049512c6dd": { - "name": "gitlab.workItemDetails#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":4,\"type\":\"issue\",\"projectRef\":\"group/project\"}}" - }, "0ca6a727a14e": { "name": "gitlab.workItemDetails#1", "args": [ @@ -188,6 +184,11 @@ } } }, + "48d06c2dc5c4": { + "name": "gitlab.workItemDetails#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":4,\"type\":\"issue\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "490069b5b08d": { "name": "detailError", "value": "Unknown method", @@ -915,7 +916,7 @@ "id": "tk-item-detail-gitlab.normal:mounted", "observation": { "sender": ["292ec83c1b66"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -935,7 +936,7 @@ "id": "tk-item-detail-gitlab.result-absent:mounted", "observation": { "sender": ["407e67708c25"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -953,7 +954,7 @@ "id": "tk-item-detail-gitlab.result-null:mounted", "observation": { "sender": ["58bc89f3db3d"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -971,7 +972,7 @@ "id": "tk-item-detail-gitlab.inner-ok-missing:mounted", "observation": { "sender": ["21e97f41ebab"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -991,7 +992,7 @@ "id": "tk-item-detail-gitlab.inner-false-string-error:mounted", "observation": { "sender": ["d06829d31551"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1011,7 +1012,7 @@ "id": "tk-item-detail-gitlab.inner-false-object-error:mounted", "observation": { "sender": ["8fe769a85d76"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1031,7 +1032,7 @@ "id": "tk-item-detail-gitlab.outer-refused:mounted", "observation": { "sender": ["f09795d68134"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1049,7 +1050,7 @@ "id": "tk-item-detail-gitlab.outer-refused-no-message:mounted", "observation": { "sender": ["0ca6a727a14e"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1067,7 +1068,7 @@ "id": "tk-item-detail-gitlab.method-not-found:mounted", "observation": { "sender": ["7e6dc074a7c0"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1085,7 +1086,7 @@ "id": "tk-item-detail-gitlab.transport-rejection:mounted", "observation": { "sender": ["c305480d6e9b"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1103,7 +1104,7 @@ "id": "tk-item-detail-gitlab.transport-rejection-no-message:mounted", "observation": { "sender": ["9777323a741d"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, 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 f6dcdfd58a4..81ecd244d7b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "83b30b2a160d162d16c66aa3bf6a633489e86dd4fd1c30828d2d244164b9c95e", "platform": "darwin", @@ -199,6 +199,11 @@ "value": "", "sent": 2 }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "47f3ae87c00a": { "name": "linear.getIssue#1", "args": [ @@ -370,6 +375,11 @@ "value": "Details not found", "sent": 2 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "5ce7f3fa558f": { "name": "linear.getIssue#1", "args": [ @@ -969,10 +979,6 @@ } } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "bc9642565680": { "name": "linear.getIssue#1", "args": [ @@ -1065,10 +1071,6 @@ } } }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1125,7 +1127,7 @@ "id": "tk-item-detail-linear.normal:mounted", "observation": { "sender": ["47f3ae87c00a", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1144,7 +1146,7 @@ "id": "tk-item-detail-linear.result-absent:mounted", "observation": { "sender": ["77d756736896", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1162,7 +1164,7 @@ "id": "tk-item-detail-linear.result-null:mounted", "observation": { "sender": ["68f4ab6eb5df", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1180,7 +1182,7 @@ "id": "tk-item-detail-linear.inner-ok-missing:mounted", "observation": { "sender": ["d5a45b61726a", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1199,7 +1201,7 @@ "id": "tk-item-detail-linear.inner-false-string-error:mounted", "observation": { "sender": ["a1504f9a0912", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1218,7 +1220,7 @@ "id": "tk-item-detail-linear.inner-false-object-error:mounted", "observation": { "sender": ["5ce7f3fa558f", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1237,7 +1239,7 @@ "id": "tk-item-detail-linear.outer-refused:mounted", "observation": { "sender": ["ff164d27a928", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1255,7 +1257,7 @@ "id": "tk-item-detail-linear.outer-refused-no-message:mounted", "observation": { "sender": ["1736ff39135a", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1273,7 +1275,7 @@ "id": "tk-item-detail-linear.method-not-found:mounted", "observation": { "sender": ["8ec7d930f214", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1291,7 +1293,7 @@ "id": "tk-item-detail-linear.transport-rejection:mounted", "observation": { "sender": ["bc9642565680", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1309,7 +1311,7 @@ "id": "tk-item-detail-linear.transport-rejection-no-message:mounted", "observation": { "sender": ["b15e02226c97", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, 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 4183d14c7f4..7a7217fdd9b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "06b06c84f4b8a1ee8e5159d8ada2656da4d7096729759c76601ad4e251310924", "platform": "darwin", @@ -442,6 +442,11 @@ } } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "47f3ae87c00a": { "name": "linear.getIssue#1", "args": [ @@ -608,6 +613,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "6fe5d1bcbc90": { "name": "detailPayload", "value": { @@ -948,10 +958,6 @@ "provider": "linear" } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "c360db88accd": { "name": "linear.issueComments#1", "args": [ @@ -1021,10 +1027,6 @@ } } }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1193,7 +1195,7 @@ "id": "tk-item-detail-linear.normal:mounted", "observation": { "sender": ["47f3ae87c00a", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1212,7 +1214,7 @@ "id": "tk-item-detail-linear.result-absent:mounted", "observation": { "sender": ["47f3ae87c00a", "16e0cc3237e8"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1231,7 +1233,7 @@ "id": "tk-item-detail-linear.result-null:mounted", "observation": { "sender": ["47f3ae87c00a", "f60c595d990e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1250,7 +1252,7 @@ "id": "tk-item-detail-linear.inner-ok-missing:mounted", "observation": { "sender": ["47f3ae87c00a", "c360db88accd"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1269,7 +1271,7 @@ "id": "tk-item-detail-linear.inner-false-string-error:mounted", "observation": { "sender": ["47f3ae87c00a", "c92234b1167b"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1288,7 +1290,7 @@ "id": "tk-item-detail-linear.inner-false-object-error:mounted", "observation": { "sender": ["47f3ae87c00a", "3276e1a41446"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1307,7 +1309,7 @@ "id": "tk-item-detail-linear.outer-refused:mounted", "observation": { "sender": ["47f3ae87c00a", "a2450a300ddf"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1326,7 +1328,7 @@ "id": "tk-item-detail-linear.outer-refused-no-message:mounted", "observation": { "sender": ["47f3ae87c00a", "9f8c9f7294a0"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1345,7 +1347,7 @@ "id": "tk-item-detail-linear.method-not-found:mounted", "observation": { "sender": ["47f3ae87c00a", "3bb04fc55c1a"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1364,7 +1366,7 @@ "id": "tk-item-detail-linear.transport-rejection:mounted", "observation": { "sender": ["47f3ae87c00a", "ecb0f6b35964"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1382,7 +1384,7 @@ "id": "tk-item-detail-linear.transport-rejection-no-message:mounted", "observation": { "sender": ["47f3ae87c00a", "3df3437aa9b4"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, 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 b48c8b0b41e..1f79b9c5e49 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "3ef6ef046f60d2d11ef81adf69bd5216036405eb05e5fd30cf1c402120488ee5", "platform": "darwin", @@ -88,6 +88,11 @@ } } }, + "11dbb2f7ba6a": { + "name": "github.listLabels#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "13787c8669de": { "name": "itemAssignableUsers", "value": { @@ -132,6 +137,11 @@ }, "sent": 2 }, + "2c7c5fe4358d": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "30554accaab5": { "name": "itemAvailableLabels", "value": ["bug", "chore"], @@ -201,10 +211,6 @@ "usersError": "Unknown method", "usersLoading": false }, - "594a2904a1bc": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "5b9626f7c5fd": { "labels": ["bug", "chore"], "labelsError": "", @@ -600,10 +606,6 @@ "$rpc": "undefined" } }, - "ef317c60c3c6": { - "name": "github.listLabels#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "f70626574f7a": { "name": "itemAvailableLabels", "value": [], @@ -661,7 +663,7 @@ "id": "tk-item-detail-metadata.normal:mounted", "observation": { "sender": ["31a9aea0d54a", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -685,7 +687,7 @@ "id": "tk-item-detail-metadata.result-absent:mounted", "observation": { "sender": ["31a9aea0d54a", "6d95cba5d507"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -709,7 +711,7 @@ "id": "tk-item-detail-metadata.result-null:mounted", "observation": { "sender": ["31a9aea0d54a", "c023bb126b23"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -733,7 +735,7 @@ "id": "tk-item-detail-metadata.inner-ok-missing:mounted", "observation": { "sender": ["31a9aea0d54a", "0fe9f9810aa0"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -757,7 +759,7 @@ "id": "tk-item-detail-metadata.inner-false-string-error:mounted", "observation": { "sender": ["31a9aea0d54a", "9a2526df52e3"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -781,7 +783,7 @@ "id": "tk-item-detail-metadata.inner-false-object-error:mounted", "observation": { "sender": ["31a9aea0d54a", "bd9fec1f736c"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -805,7 +807,7 @@ "id": "tk-item-detail-metadata.outer-refused:mounted", "observation": { "sender": ["31a9aea0d54a", "0201be19f73d"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -829,7 +831,7 @@ "id": "tk-item-detail-metadata.outer-refused-no-message:mounted", "observation": { "sender": ["31a9aea0d54a", "c9f3dee36b09"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -853,7 +855,7 @@ "id": "tk-item-detail-metadata.method-not-found:mounted", "observation": { "sender": ["31a9aea0d54a", "fba383759dad"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -877,7 +879,7 @@ "id": "tk-item-detail-metadata.transport-rejection:mounted", "observation": { "sender": ["31a9aea0d54a", "a282430e8f14"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -901,7 +903,7 @@ "id": "tk-item-detail-metadata.transport-rejection-no-message:mounted", "observation": { "sender": ["31a9aea0d54a", "78c83a187176"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, 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 4d1dbab9c4f..d4693d8305e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "a2ecf4ddc2c9870a8d73cbd920b46bb0663a958ac156dc6de092be3c9474ea2b", "platform": "darwin", @@ -111,6 +111,11 @@ "usersError": "", "usersLoading": false }, + "11dbb2f7ba6a": { + "name": "github.listLabels#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "14b04c3d1156": { "name": "itemAssignableUsersLoading", "value": true, @@ -163,6 +168,11 @@ } } }, + "2c7c5fe4358d": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "2f84a8101a09": { "name": "itemAvailableLabels", "value": { @@ -322,10 +332,6 @@ "usersError": "", "usersLoading": false }, - "594a2904a1bc": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "60ab7459b747": { "name": "itemLabelsLoading", "value": true, @@ -699,10 +705,6 @@ "$rpc": "undefined" } }, - "ef317c60c3c6": { - "name": "github.listLabels#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "f06d897d7f6d": { "name": "itemAvailableLabels", "value": { @@ -733,7 +735,7 @@ "id": "tk-item-detail-metadata.normal:mounted", "observation": { "sender": ["31a9aea0d54a", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -757,7 +759,7 @@ "id": "tk-item-detail-metadata.result-absent:mounted", "observation": { "sender": ["0512455a3440", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -781,7 +783,7 @@ "id": "tk-item-detail-metadata.result-null:mounted", "observation": { "sender": ["d81297d32421", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -805,7 +807,7 @@ "id": "tk-item-detail-metadata.inner-ok-missing:mounted", "observation": { "sender": ["3f1ea2cb79b5", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -829,7 +831,7 @@ "id": "tk-item-detail-metadata.inner-false-string-error:mounted", "observation": { "sender": ["3de77e6e6dc2", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -853,7 +855,7 @@ "id": "tk-item-detail-metadata.inner-false-object-error:mounted", "observation": { "sender": ["b041f1e6a2ab", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -877,7 +879,7 @@ "id": "tk-item-detail-metadata.outer-refused:mounted", "observation": { "sender": ["e37b0adae2ad", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -901,7 +903,7 @@ "id": "tk-item-detail-metadata.outer-refused-no-message:mounted", "observation": { "sender": ["b807e8ed0345", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -925,7 +927,7 @@ "id": "tk-item-detail-metadata.method-not-found:mounted", "observation": { "sender": ["089cd991bfef", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -949,7 +951,7 @@ "id": "tk-item-detail-metadata.transport-rejection:mounted", "observation": { "sender": ["26a2b4de39d4", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, @@ -973,7 +975,7 @@ "id": "tk-item-detail-metadata.transport-rejection-no-message:mounted", "observation": { "sender": ["c98fbfaab90a", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, 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 54bf546e57f..153fa135e75 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "f40d99c60523ad1a6a3a761935e86ab0739337486dd316e6ab3248980e575027", "platform": "darwin", @@ -508,6 +508,11 @@ "provider": "gitlab" } }, + "772281b8af97": { + "name": "gitlab.mergeMR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "7d901d60a01a": { "name": "error", "value": "[object Object]", @@ -775,10 +780,6 @@ "value": "inner refused", "sent": 1 }, - "c6bf9878ffb7": { - "name": "gitlab.mergeMR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}" - }, "c939abf83c6c": { "name": "error", "value": "Cannot read properties of undefined (reading 'ok')", @@ -904,7 +905,7 @@ "id": "tk-item-merge-gitlab.normal:merge-settled", "observation": { "sender": ["c483c06533af"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -917,7 +918,7 @@ "id": "tk-item-merge-gitlab.result-absent:merge-settled", "observation": { "sender": ["4d7333674e35"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -930,7 +931,7 @@ "id": "tk-item-merge-gitlab.result-null:merge-settled", "observation": { "sender": ["b9a92050e801"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -943,7 +944,7 @@ "id": "tk-item-merge-gitlab.inner-ok-missing:merge-settled", "observation": { "sender": ["596e9105e64e"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -956,7 +957,7 @@ "id": "tk-item-merge-gitlab.inner-false-string-error:merge-settled", "observation": { "sender": ["0710d702fe2d"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -969,7 +970,7 @@ "id": "tk-item-merge-gitlab.inner-false-object-error:merge-settled", "observation": { "sender": ["5800f9a3534e"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -982,7 +983,7 @@ "id": "tk-item-merge-gitlab.outer-refused:merge-settled", "observation": { "sender": ["0c139860a4c9"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -995,7 +996,7 @@ "id": "tk-item-merge-gitlab.outer-refused-no-message:merge-settled", "observation": { "sender": ["ff408cae1bac"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -1008,7 +1009,7 @@ "id": "tk-item-merge-gitlab.method-not-found:merge-settled", "observation": { "sender": ["c0f3f2064a7d"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -1021,7 +1022,7 @@ "id": "tk-item-merge-gitlab.transport-rejection:merge-settled", "observation": { "sender": ["2e07d214f23a"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" @@ -1034,7 +1035,7 @@ "id": "tk-item-merge-gitlab.transport-rejection-no-message:merge-settled", "observation": { "sender": ["59aec6b3bf9f"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" 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 6b99bca7026..ddb4d79bfc1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "27587bfb5745051e3cb27b01dc49b90b6f3c8ddbeb38f20772502fae2f562d91", "platform": "darwin", @@ -316,6 +316,11 @@ "value": false, "sent": 1 }, + "387542f122bb": { + "name": "github.updatePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}", + "sent": 1 + }, "48545870a5c1": { "name": "items", "value": [ @@ -774,10 +779,6 @@ }, "sent": 1 }, - "b092bbd7362d": { - "name": "github.updatePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}" - }, "b53c339a3854": { "name": "error", "value": "Unknown method", @@ -1368,7 +1369,7 @@ "id": "tk-item-metadata-github.normal:update-pr-settled", "observation": { "sender": ["7cb20f219688"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1388,7 +1389,7 @@ "id": "tk-item-metadata-github.result-absent:update-pr-settled", "observation": { "sender": ["e7eb483032e9"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1401,7 +1402,7 @@ "id": "tk-item-metadata-github.result-null:update-pr-settled", "observation": { "sender": ["107d6bce09cd"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1414,7 +1415,7 @@ "id": "tk-item-metadata-github.inner-ok-missing:update-pr-settled", "observation": { "sender": ["cd3f120ad936"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1434,7 +1435,7 @@ "id": "tk-item-metadata-github.inner-false-string-error:update-pr-settled", "observation": { "sender": ["a188da72de28"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1447,7 +1448,7 @@ "id": "tk-item-metadata-github.inner-false-object-error:update-pr-settled", "observation": { "sender": ["6411b70b2d18"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1460,7 +1461,7 @@ "id": "tk-item-metadata-github.outer-refused:update-pr-settled", "observation": { "sender": ["5b0b55895e09"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1473,7 +1474,7 @@ "id": "tk-item-metadata-github.outer-refused-no-message:update-pr-settled", "observation": { "sender": ["81d3548ec9e7"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1486,7 +1487,7 @@ "id": "tk-item-metadata-github.method-not-found:update-pr-settled", "observation": { "sender": ["cfadfbdb8f62"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1499,7 +1500,7 @@ "id": "tk-item-metadata-github.transport-rejection:update-pr-settled", "observation": { "sender": ["d1a69a5a36ed"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" @@ -1512,7 +1513,7 @@ "id": "tk-item-metadata-github.transport-rejection-no-message:update-pr-settled", "observation": { "sender": ["5cf7d5c76957"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" 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 a403b59585f..70481eca29f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "01664112d8f24d0a08fa7ba4e2d7f389acb363ce493e083f359f90fa0b87911d", "platform": "darwin", @@ -193,6 +193,11 @@ } } }, + "1824f451be8e": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "198ac889ae28": { "name": "error", "value": "transport failure", @@ -365,10 +370,6 @@ } } }, - "5feb9fb600e8": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}" - }, "64de2ffc02e1": { "name": "gitlab.updateIssue#1", "args": [ @@ -1019,7 +1020,7 @@ "id": "tk-item-metadata-gitlab.normal:update-gitlab-settled", "observation": { "sender": ["166d84331771"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1043,7 +1044,7 @@ "id": "tk-item-metadata-gitlab.result-absent:update-gitlab-settled", "observation": { "sender": ["eb4006f87a9c"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1056,7 +1057,7 @@ "id": "tk-item-metadata-gitlab.result-null:update-gitlab-settled", "observation": { "sender": ["64de2ffc02e1"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1069,7 +1070,7 @@ "id": "tk-item-metadata-gitlab.inner-ok-missing:update-gitlab-settled", "observation": { "sender": ["722b4cabad81"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1093,7 +1094,7 @@ "id": "tk-item-metadata-gitlab.inner-false-string-error:update-gitlab-settled", "observation": { "sender": ["1bd2c74facb2"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1106,7 +1107,7 @@ "id": "tk-item-metadata-gitlab.inner-false-object-error:update-gitlab-settled", "observation": { "sender": ["de4046dfccd3"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1119,7 +1120,7 @@ "id": "tk-item-metadata-gitlab.outer-refused:update-gitlab-settled", "observation": { "sender": ["52d7bbd9c6f1"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1132,7 +1133,7 @@ "id": "tk-item-metadata-gitlab.outer-refused-no-message:update-gitlab-settled", "observation": { "sender": ["1421c6947fc6"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1145,7 +1146,7 @@ "id": "tk-item-metadata-gitlab.method-not-found:update-gitlab-settled", "observation": { "sender": ["5da920329649"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1158,7 +1159,7 @@ "id": "tk-item-metadata-gitlab.transport-rejection:update-gitlab-settled", "observation": { "sender": ["1ea4bbdf229c"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1171,7 +1172,7 @@ "id": "tk-item-metadata-gitlab.transport-rejection-no-message:update-gitlab-settled", "observation": { "sender": ["90de742b0786"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" 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 a43de1c4bdb..8022fad142f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "186444ac8dc34dc63d1fbf304275e2265d96c6742e4c8f1e8e5568aa5504bf5d", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "00ccf4aaa4aa": { + "name": "gitlab.updateMR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}", + "sent": 1 + }, "0687dba3171a": { "error": "Unknown method", "item": { @@ -1053,10 +1058,6 @@ "$rpc": "undefined" } }, - "f2369a06d2a9": { - "name": "gitlab.updateMR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}" - }, "f791567b212f": { "name": "error", "value": "outer refused", @@ -1075,7 +1076,7 @@ "id": "tk-item-metadata-gitlab-mr.normal:update-gitlab-settled", "observation": { "sender": ["a62f6e435d85"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1097,7 +1098,7 @@ "id": "tk-item-metadata-gitlab-mr.result-absent:update-gitlab-settled", "observation": { "sender": ["d741c7e7aa87"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1110,7 +1111,7 @@ "id": "tk-item-metadata-gitlab-mr.result-null:update-gitlab-settled", "observation": { "sender": ["bbb125ada245"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1123,7 +1124,7 @@ "id": "tk-item-metadata-gitlab-mr.inner-ok-missing:update-gitlab-settled", "observation": { "sender": ["0eee686b6b9d"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1145,7 +1146,7 @@ "id": "tk-item-metadata-gitlab-mr.inner-false-string-error:update-gitlab-settled", "observation": { "sender": ["b44a23036f40"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1158,7 +1159,7 @@ "id": "tk-item-metadata-gitlab-mr.inner-false-object-error:update-gitlab-settled", "observation": { "sender": ["747c965ee632"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1171,7 +1172,7 @@ "id": "tk-item-metadata-gitlab-mr.outer-refused:update-gitlab-settled", "observation": { "sender": ["157d70bbab4d"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1184,7 +1185,7 @@ "id": "tk-item-metadata-gitlab-mr.outer-refused-no-message:update-gitlab-settled", "observation": { "sender": ["7a7312c037c0"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1197,7 +1198,7 @@ "id": "tk-item-metadata-gitlab-mr.method-not-found:update-gitlab-settled", "observation": { "sender": ["49978f6eab90"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1210,7 +1211,7 @@ "id": "tk-item-metadata-gitlab-mr.transport-rejection:update-gitlab-settled", "observation": { "sender": ["14db9890ade7"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" @@ -1223,7 +1224,7 @@ "id": "tk-item-metadata-gitlab-mr.transport-rejection-no-message:update-gitlab-settled", "observation": { "sender": ["2972953b8c32"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" 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 915d00e18f8..29f70367f48 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "c6e5ae446b875afba3944a96d931fdca6006ed8e904374e5040088004eb9b044", "platform": "darwin", @@ -18,10 +18,6 @@ "value": "outer refused", "sent": 2 }, - "036b197488e0": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "05d134c26c53": { "name": "github.mergePR#1", "args": [ @@ -57,10 +53,6 @@ } } }, - "08f1b4229a2c": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -409,11 +401,26 @@ } } }, + "48b5e80976b1": { + "name": "linear.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}", + "sent": 4 + }, + "50b7beefee34": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 3 + }, "52d25e1f3035": { "name": "error", "value": "Connection closed", "sent": 2 }, + "5701a4cdd402": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 1 + }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -504,10 +511,6 @@ "reviewRequests": [] } }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "70678ab6df9a": { "name": "mutatingStatus", "value": false, @@ -1432,10 +1435,6 @@ "value": "", "sent": 2 }, - "b959a668e307": { - "name": "linear.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" - }, "b9e5e21559ce": { "name": "github.addIssueComment#1", "args": [ @@ -2047,6 +2046,11 @@ "reviewRequests": [] } }, + "db5675927800": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 2 + }, "dbbebbd74a18": { "name": "error", "value": "", @@ -2261,7 +2265,7 @@ "id": "tk-item-reply-merge.prelude:review-reply-settled", "observation": { "sender": ["ae78fb6dcf29"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2280,7 +2284,7 @@ "id": "tk-item-reply-merge.prelude:cleanup", "observation": { "sender": ["ae78fb6dcf29", "363749dbbd9b"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2304,7 +2308,7 @@ "id": "tk-item-reply-merge.normal:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2329,7 +2333,7 @@ "id": "tk-item-reply-merge.normal:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2359,7 +2363,7 @@ "id": "tk-item-reply-merge.normal:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2395,7 +2399,7 @@ "id": "tk-item-reply-merge.result-absent:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "40539a6c3997"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2419,7 +2423,7 @@ "id": "tk-item-reply-merge.result-absent:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "40539a6c3997", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2448,7 +2452,7 @@ "id": "tk-item-reply-merge.result-absent:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "40539a6c3997", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2483,7 +2487,7 @@ "id": "tk-item-reply-merge.result-null:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "89754d4c5374"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2507,7 +2511,7 @@ "id": "tk-item-reply-merge.result-null:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "89754d4c5374", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2536,7 +2540,7 @@ "id": "tk-item-reply-merge.result-null:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "89754d4c5374", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2571,7 +2575,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "b9e5e21559ce"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2596,7 +2600,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "b9e5e21559ce", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2626,7 +2630,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "b9e5e21559ce", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2662,7 +2666,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "b3d61b3364c4"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2686,7 +2690,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "b3d61b3364c4", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2715,7 +2719,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "b3d61b3364c4", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2750,7 +2754,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "0c49fa33aca6"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2774,7 +2778,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "0c49fa33aca6", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2803,7 +2807,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "0c49fa33aca6", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2838,7 +2842,7 @@ "id": "tk-item-reply-merge.outer-refused:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "99b89a26c176"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2862,7 +2866,7 @@ "id": "tk-item-reply-merge.outer-refused:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "99b89a26c176", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2891,7 +2895,7 @@ "id": "tk-item-reply-merge.outer-refused:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "99b89a26c176", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2926,7 +2930,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "8f8b93bf32f5"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2950,7 +2954,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "8f8b93bf32f5", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2979,7 +2983,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "8f8b93bf32f5", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3014,7 +3018,7 @@ "id": "tk-item-reply-merge.method-not-found:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "ad0a4ad52848"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3038,7 +3042,7 @@ "id": "tk-item-reply-merge.method-not-found:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "ad0a4ad52848", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3067,7 +3071,7 @@ "id": "tk-item-reply-merge.method-not-found:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "ad0a4ad52848", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3102,7 +3106,7 @@ "id": "tk-item-reply-merge.transport-rejection:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "bb314726a57a"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3126,7 +3130,7 @@ "id": "tk-item-reply-merge.transport-rejection:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "bb314726a57a", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3155,7 +3159,7 @@ "id": "tk-item-reply-merge.transport-rejection:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "bb314726a57a", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3190,7 +3194,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "b0f07cc9ab5c"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3214,7 +3218,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "b0f07cc9ab5c", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3243,7 +3247,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "b0f07cc9ab5c", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", 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 2a6a43f5249..72c1a79bf86 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "2da11d5a9c7a223a59c56ec416ab33acd42d900b4080132bde27313e042808d9", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "036b197488e0": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "05d134c26c53": { "name": "github.mergePR#1", "args": [ @@ -107,10 +103,6 @@ }, "sent": 2 }, - "08f1b4229a2c": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -836,6 +828,11 @@ } } }, + "48b5e80976b1": { + "name": "linear.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}", + "sent": 4 + }, "48bbd02c6416": { "error": "", "item": { @@ -927,6 +924,16 @@ "reviewRequests": [] } }, + "50b7beefee34": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 3 + }, + "5701a4cdd402": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 1 + }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -1075,10 +1082,6 @@ "reviewRequests": [] } }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "70678ab6df9a": { "name": "mutatingStatus", "value": false, @@ -1687,10 +1690,6 @@ "value": "", "sent": 2 }, - "b959a668e307": { - "name": "linear.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" - }, "bc3f6bcb8a5e": { "name": "detailPayload", "value": { @@ -2290,6 +2289,11 @@ }, "sent": 2 }, + "db5675927800": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 2 + }, "dbbebbd74a18": { "name": "error", "value": "", @@ -2455,7 +2459,7 @@ "id": "tk-item-reply-merge.normal:review-reply-settled", "observation": { "sender": ["ae78fb6dcf29"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2474,7 +2478,7 @@ "id": "tk-item-reply-merge.normal:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2499,7 +2503,7 @@ "id": "tk-item-reply-merge.normal:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2529,7 +2533,7 @@ "id": "tk-item-reply-merge.normal:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2565,7 +2569,7 @@ "id": "tk-item-reply-merge.result-absent:review-reply-settled", "observation": { "sender": ["3fa60c95d79d"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2578,7 +2582,7 @@ "id": "tk-item-reply-merge.result-absent:issue-reply-settled", "observation": { "sender": ["3fa60c95d79d", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2602,7 +2606,7 @@ "id": "tk-item-reply-merge.result-absent:merge-settled", "observation": { "sender": ["3fa60c95d79d", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2631,7 +2635,7 @@ "id": "tk-item-reply-merge.result-absent:linear-status-settled", "observation": { "sender": ["3fa60c95d79d", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2666,7 +2670,7 @@ "id": "tk-item-reply-merge.result-null:review-reply-settled", "observation": { "sender": ["1ed6beefcf2f"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2679,7 +2683,7 @@ "id": "tk-item-reply-merge.result-null:issue-reply-settled", "observation": { "sender": ["1ed6beefcf2f", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2703,7 +2707,7 @@ "id": "tk-item-reply-merge.result-null:merge-settled", "observation": { "sender": ["1ed6beefcf2f", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2732,7 +2736,7 @@ "id": "tk-item-reply-merge.result-null:linear-status-settled", "observation": { "sender": ["1ed6beefcf2f", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2767,7 +2771,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:review-reply-settled", "observation": { "sender": ["2d4884d43755"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2786,7 +2790,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["2d4884d43755", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2811,7 +2815,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["2d4884d43755", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2841,7 +2845,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:linear-status-settled", "observation": { "sender": ["2d4884d43755", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2877,7 +2881,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:review-reply-settled", "observation": { "sender": ["480a870ef248"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2890,7 +2894,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["480a870ef248", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2914,7 +2918,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["480a870ef248", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2943,7 +2947,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:linear-status-settled", "observation": { "sender": ["480a870ef248", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2978,7 +2982,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:review-reply-settled", "observation": { "sender": ["7e661c93872a"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -2991,7 +2995,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["7e661c93872a", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3015,7 +3019,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["7e661c93872a", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3044,7 +3048,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:linear-status-settled", "observation": { "sender": ["7e661c93872a", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3079,7 +3083,7 @@ "id": "tk-item-reply-merge.outer-refused:review-reply-settled", "observation": { "sender": ["e13337da345a"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -3092,7 +3096,7 @@ "id": "tk-item-reply-merge.outer-refused:issue-reply-settled", "observation": { "sender": ["e13337da345a", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3116,7 +3120,7 @@ "id": "tk-item-reply-merge.outer-refused:merge-settled", "observation": { "sender": ["e13337da345a", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3145,7 +3149,7 @@ "id": "tk-item-reply-merge.outer-refused:linear-status-settled", "observation": { "sender": ["e13337da345a", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3180,7 +3184,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:review-reply-settled", "observation": { "sender": ["bf306437dfcd"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -3193,7 +3197,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["bf306437dfcd", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3217,7 +3221,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["bf306437dfcd", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3246,7 +3250,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:linear-status-settled", "observation": { "sender": ["bf306437dfcd", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3281,7 +3285,7 @@ "id": "tk-item-reply-merge.method-not-found:review-reply-settled", "observation": { "sender": ["d5f27f2ec601"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -3294,7 +3298,7 @@ "id": "tk-item-reply-merge.method-not-found:issue-reply-settled", "observation": { "sender": ["d5f27f2ec601", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3318,7 +3322,7 @@ "id": "tk-item-reply-merge.method-not-found:merge-settled", "observation": { "sender": ["d5f27f2ec601", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3347,7 +3351,7 @@ "id": "tk-item-reply-merge.method-not-found:linear-status-settled", "observation": { "sender": ["d5f27f2ec601", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3382,7 +3386,7 @@ "id": "tk-item-reply-merge.transport-rejection:review-reply-settled", "observation": { "sender": ["172e181385d9"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -3395,7 +3399,7 @@ "id": "tk-item-reply-merge.transport-rejection:issue-reply-settled", "observation": { "sender": ["172e181385d9", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3419,7 +3423,7 @@ "id": "tk-item-reply-merge.transport-rejection:merge-settled", "observation": { "sender": ["172e181385d9", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3448,7 +3452,7 @@ "id": "tk-item-reply-merge.transport-rejection:linear-status-settled", "observation": { "sender": ["172e181385d9", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3483,7 +3487,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:review-reply-settled", "observation": { "sender": ["37d4aaf699c4"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -3496,7 +3500,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["37d4aaf699c4", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3520,7 +3524,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["37d4aaf699c4", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -3549,7 +3553,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:linear-status-settled", "observation": { "sender": ["37d4aaf699c4", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", 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 93f1503bf9f..1b47034fd84 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "a5d8ba37f44421d3efd19617ef319f37fda3fe53004b6829ae2c320f85d5c98d", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "036b197488e0": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "058adf5e0940": { "name": "github.mergePR#1", "args": [ @@ -84,10 +80,6 @@ } } }, - "08f1b4229a2c": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "0a46d3eb33d3": { "error": "transport failure", "item": { @@ -881,6 +873,11 @@ "reviewRequests": [] } }, + "48b5e80976b1": { + "name": "linear.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}", + "sent": 4 + }, "49de686b4e08": { "name": "github.mergePR#1", "args": [ @@ -949,15 +946,21 @@ } } }, + "50b7beefee34": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 3 + }, + "5701a4cdd402": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 1 + }, "583b546bd557": { "name": "mutatingStatus", "value": true, "sent": 1 }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "6e6324634191": { "name": "error", "value": "inner refused", @@ -1329,10 +1332,6 @@ "value": "", "sent": 2 }, - "b959a668e307": { - "name": "linear.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" - }, "bc3f6bcb8a5e": { "name": "detailPayload", "value": { @@ -1709,6 +1708,11 @@ "value": "Connection closed", "sent": 3 }, + "db5675927800": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 2 + }, "dbbebbd74a18": { "name": "error", "value": "", @@ -1962,7 +1966,7 @@ "id": "tk-item-reply-merge.prelude:review-reply-settled", "observation": { "sender": ["ae78fb6dcf29"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -1981,7 +1985,7 @@ "id": "tk-item-reply-merge.prelude:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2006,7 +2010,7 @@ "id": "tk-item-reply-merge.prelude:cleanup", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "e9c165fbead8"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2036,7 +2040,7 @@ "id": "tk-item-reply-merge.normal:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2066,7 +2070,7 @@ "id": "tk-item-reply-merge.normal:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2102,7 +2106,7 @@ "id": "tk-item-reply-merge.result-absent:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "058adf5e0940"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2132,7 +2136,7 @@ "id": "tk-item-reply-merge.result-absent:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "058adf5e0940", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2168,7 +2172,7 @@ "id": "tk-item-reply-merge.result-null:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "4e3d66877bcd"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2198,7 +2202,7 @@ "id": "tk-item-reply-merge.result-null:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "4e3d66877bcd", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2234,7 +2238,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "3b7522cf9569"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2264,7 +2268,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "3b7522cf9569", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2300,7 +2304,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "2c9067cc7a01"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2330,7 +2334,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "2c9067cc7a01", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2366,7 +2370,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "2f33b0c5e383"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2396,7 +2400,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "2f33b0c5e383", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2432,7 +2436,7 @@ "id": "tk-item-reply-merge.outer-refused:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "f444d4227fd9"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2462,7 +2466,7 @@ "id": "tk-item-reply-merge.outer-refused:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "f444d4227fd9", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2498,7 +2502,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "f2967c5a1118"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2528,7 +2532,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "f2967c5a1118", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2564,7 +2568,7 @@ "id": "tk-item-reply-merge.method-not-found:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "848732dba3e1"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2594,7 +2598,7 @@ "id": "tk-item-reply-merge.method-not-found:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "848732dba3e1", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2630,7 +2634,7 @@ "id": "tk-item-reply-merge.transport-rejection:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "49de686b4e08"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2660,7 +2664,7 @@ "id": "tk-item-reply-merge.transport-rejection:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "49de686b4e08", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2696,7 +2700,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "ff85751571ac"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -2726,7 +2730,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "ff85751571ac", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", 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 c27fea149a5..e7e8b3f25c7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "abc4b882c92ba90a52d3635fe882b2c653bc91ab4d9927f240ebee4dd147b81d", "platform": "darwin", @@ -53,10 +53,6 @@ } } }, - "036b197488e0": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "05d134c26c53": { "name": "github.mergePR#1", "args": [ @@ -127,10 +123,6 @@ } } }, - "08f1b4229a2c": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -434,6 +426,11 @@ } } }, + "48b5e80976b1": { + "name": "linear.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}", + "sent": 4 + }, "48c813e0c460": { "error": "Unknown method", "item": { @@ -525,6 +522,11 @@ "value": "Connection closed", "sent": 4 }, + "50b7beefee34": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 3 + }, "5280890edee6": { "error": "", "item": { @@ -611,6 +613,11 @@ "reviewRequests": [] } }, + "5701a4cdd402": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 1 + }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -696,10 +703,6 @@ } } }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "70678ab6df9a": { "name": "mutatingStatus", "value": false, @@ -1003,10 +1006,6 @@ "value": "", "sent": 2 }, - "b959a668e307": { - "name": "linear.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" - }, "bc3f6bcb8a5e": { "name": "detailPayload", "value": { @@ -1329,6 +1328,11 @@ "reviewRequests": [] } }, + "db5675927800": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 2 + }, "dbbebbd74a18": { "name": "error", "value": "", @@ -1492,7 +1496,7 @@ "id": "tk-item-reply-merge.prelude:review-reply-settled", "observation": { "sender": ["ae78fb6dcf29"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -1511,7 +1515,7 @@ "id": "tk-item-reply-merge.prelude:issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1536,7 +1540,7 @@ "id": "tk-item-reply-merge.prelude:merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1566,7 +1570,7 @@ "id": "tk-item-reply-merge.prelude:cleanup", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "8b9fb662d065"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1601,7 +1605,7 @@ "id": "tk-item-reply-merge.normal:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1637,7 +1641,7 @@ "id": "tk-item-reply-merge.result-absent:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "3bbcb7ee26a2"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1673,7 +1677,7 @@ "id": "tk-item-reply-merge.result-null:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "d34e32079f6e"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1709,7 +1713,7 @@ "id": "tk-item-reply-merge.inner-ok-missing:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "5e7c8c40ecf1"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1745,7 +1749,7 @@ "id": "tk-item-reply-merge.inner-false-string-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "ed15cd3ff2d7"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1781,7 +1785,7 @@ "id": "tk-item-reply-merge.inner-false-object-error:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "007c2dba2c05"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1817,7 +1821,7 @@ "id": "tk-item-reply-merge.outer-refused:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "d4359ccca915"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1852,7 +1856,7 @@ "id": "tk-item-reply-merge.outer-refused-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "a2891bf99011"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1887,7 +1891,7 @@ "id": "tk-item-reply-merge.method-not-found:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "5ab1df79005c"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1922,7 +1926,7 @@ "id": "tk-item-reply-merge.transport-rejection:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "08400fb91676"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -1957,7 +1961,7 @@ "id": "tk-item-reply-merge.transport-rejection-no-message:linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "45739d7274cd"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", 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 8025badc9e3..06b2cd04dd9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "77b0812842903075bb3d3ec1f7bcea94b1e1dac5993c3c8854bd4c3d2a567988", "platform": "darwin", @@ -18,6 +18,11 @@ "value": "outer refused", "sent": 2 }, + "03f32ac43ec3": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "0879b3f9a393": { "name": "itemReviewersDraft", "value": "", @@ -61,6 +66,11 @@ ], "sent": 1 }, + "15f7c99a18fb": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "193449bf1c4d": { "draft": "a comment", "error": "transport failure", @@ -389,19 +399,11 @@ } } }, - "4fdc894b14c6": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" - }, "52d25e1f3035": { "name": "error", "value": "Connection closed", "sent": 2 }, - "53b8bc3863fe": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "5652285eaff7": { "draft": "a comment", "error": "", @@ -1465,7 +1467,7 @@ "id": "tk-item-review-github.prelude:reviewers-settled", "observation": { "sender": ["d4d38f1bf018"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1486,7 +1488,7 @@ "id": "tk-item-review-github.prelude:cleanup", "observation": { "sender": ["d4d38f1bf018", "227732d86ad6"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1512,7 +1514,7 @@ "id": "tk-item-review-github.normal:checks-settled", "observation": { "sender": ["d4d38f1bf018", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1540,7 +1542,7 @@ "id": "tk-item-review-github.result-absent:checks-settled", "observation": { "sender": ["d4d38f1bf018", "49bfc4ebe9c1"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1566,7 +1568,7 @@ "id": "tk-item-review-github.result-null:checks-settled", "observation": { "sender": ["d4d38f1bf018", "35b06a3e84d7"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1592,7 +1594,7 @@ "id": "tk-item-review-github.inner-ok-missing:checks-settled", "observation": { "sender": ["d4d38f1bf018", "b980a4f03682"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1618,7 +1620,7 @@ "id": "tk-item-review-github.inner-false-string-error:checks-settled", "observation": { "sender": ["d4d38f1bf018", "ad435cdf6cd7"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1644,7 +1646,7 @@ "id": "tk-item-review-github.inner-false-object-error:checks-settled", "observation": { "sender": ["d4d38f1bf018", "cc50caed33f4"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1670,7 +1672,7 @@ "id": "tk-item-review-github.outer-refused:checks-settled", "observation": { "sender": ["d4d38f1bf018", "d1b002eaac7d"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1696,7 +1698,7 @@ "id": "tk-item-review-github.outer-refused-no-message:checks-settled", "observation": { "sender": ["d4d38f1bf018", "3d317dffb023"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1722,7 +1724,7 @@ "id": "tk-item-review-github.method-not-found:checks-settled", "observation": { "sender": ["d4d38f1bf018", "39e5f350a12a"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1748,7 +1750,7 @@ "id": "tk-item-review-github.transport-rejection:checks-settled", "observation": { "sender": ["d4d38f1bf018", "852540b712d7"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1774,7 +1776,7 @@ "id": "tk-item-review-github.transport-rejection-no-message:checks-settled", "observation": { "sender": ["d4d38f1bf018", "5ff04b5a92eb"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 955ec40ba1c..95fa6ec4920 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "96a1813de0159396f6a5eb36a764fad4511de0a25eff6323571e1fade2a7f334", "platform": "darwin", @@ -46,6 +46,11 @@ } } }, + "03f32ac43ec3": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "06fb2e0c8ddc": { "draft": "a comment", "error": "", @@ -197,6 +202,11 @@ ], "sent": 2 }, + "15f7c99a18fb": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "17d23d758a0f": { "name": "github.requestPRReviewers#1", "args": [ @@ -610,14 +620,6 @@ "reviewRequests": [] } }, - "4fdc894b14c6": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" - }, - "53b8bc3863fe": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -1725,7 +1727,7 @@ "id": "tk-item-review-github.normal:reviewers-settled", "observation": { "sender": ["d4d38f1bf018"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1746,7 +1748,7 @@ "id": "tk-item-review-github.normal:checks-settled", "observation": { "sender": ["d4d38f1bf018", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1774,7 +1776,7 @@ "id": "tk-item-review-github.result-absent:reviewers-settled", "observation": { "sender": ["87f8d2d1da8a"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1787,7 +1789,7 @@ "id": "tk-item-review-github.result-absent:checks-settled", "observation": { "sender": ["87f8d2d1da8a", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1812,7 +1814,7 @@ "id": "tk-item-review-github.result-null:reviewers-settled", "observation": { "sender": ["caa676e9ffbb"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1825,7 +1827,7 @@ "id": "tk-item-review-github.result-null:checks-settled", "observation": { "sender": ["caa676e9ffbb", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1850,7 +1852,7 @@ "id": "tk-item-review-github.inner-ok-missing:reviewers-settled", "observation": { "sender": ["a68fceb8e7f7"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1871,7 +1873,7 @@ "id": "tk-item-review-github.inner-ok-missing:checks-settled", "observation": { "sender": ["a68fceb8e7f7", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1899,7 +1901,7 @@ "id": "tk-item-review-github.inner-false-string-error:reviewers-settled", "observation": { "sender": ["5f9a509bc8df"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1912,7 +1914,7 @@ "id": "tk-item-review-github.inner-false-string-error:checks-settled", "observation": { "sender": ["5f9a509bc8df", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1937,7 +1939,7 @@ "id": "tk-item-review-github.inner-false-object-error:reviewers-settled", "observation": { "sender": ["3a7dc8156612"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1950,7 +1952,7 @@ "id": "tk-item-review-github.inner-false-object-error:checks-settled", "observation": { "sender": ["3a7dc8156612", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1975,7 +1977,7 @@ "id": "tk-item-review-github.outer-refused:reviewers-settled", "observation": { "sender": ["30e9bc33b669"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1988,7 +1990,7 @@ "id": "tk-item-review-github.outer-refused:checks-settled", "observation": { "sender": ["30e9bc33b669", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2013,7 +2015,7 @@ "id": "tk-item-review-github.outer-refused-no-message:reviewers-settled", "observation": { "sender": ["96d642554487"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2026,7 +2028,7 @@ "id": "tk-item-review-github.outer-refused-no-message:checks-settled", "observation": { "sender": ["96d642554487", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2051,7 +2053,7 @@ "id": "tk-item-review-github.method-not-found:reviewers-settled", "observation": { "sender": ["17d23d758a0f"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2064,7 +2066,7 @@ "id": "tk-item-review-github.method-not-found:checks-settled", "observation": { "sender": ["17d23d758a0f", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2089,7 +2091,7 @@ "id": "tk-item-review-github.transport-rejection:reviewers-settled", "observation": { "sender": ["1a5c7547618c"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2102,7 +2104,7 @@ "id": "tk-item-review-github.transport-rejection:checks-settled", "observation": { "sender": ["1a5c7547618c", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2127,7 +2129,7 @@ "id": "tk-item-review-github.transport-rejection-no-message:reviewers-settled", "observation": { "sender": ["02077b59a856"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2140,7 +2142,7 @@ "id": "tk-item-review-github.transport-rejection-no-message:checks-settled", "observation": { "sender": ["02077b59a856", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 2f80cdcb89d..aed0773066a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "57c41b51e34e451975a9f28a6461aa3b8e9dcf04cbebaea80ddf14afc4b78edf", "platform": "darwin", @@ -94,10 +94,6 @@ "provider": "gitlab" } }, - "132591a733d1": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" - }, "13b233a5bc5a": { "name": "itemRemoveAssigneesDraft", "value": "", @@ -551,9 +547,10 @@ } } }, - "71cb3feddd6c": { + "75f13d97f25f": { "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}", + "sent": 2 }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", @@ -747,6 +744,11 @@ } } }, + "948d1db5279c": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "993c830982a5": { "error": "[object Object]", "item": { @@ -1021,7 +1023,7 @@ "id": "tk-item-status-gitlab.prelude:gitlab-status-settled", "observation": { "sender": ["779cb33e2c39"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1034,7 +1036,7 @@ "id": "tk-item-status-gitlab.prelude:cleanup", "observation": { "sender": ["779cb33e2c39", "6b02e1a29337"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1057,7 +1059,7 @@ "id": "tk-item-status-gitlab.normal:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1086,7 +1088,7 @@ "id": "tk-item-status-gitlab.result-absent:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "46938ed15335"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1109,7 +1111,7 @@ "id": "tk-item-status-gitlab.result-null:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "9206a8ba61dd"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1132,7 +1134,7 @@ "id": "tk-item-status-gitlab.inner-ok-missing:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "0d406a5fe28c"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1161,7 +1163,7 @@ "id": "tk-item-status-gitlab.inner-false-string-error:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "5430dc9c82ae"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1184,7 +1186,7 @@ "id": "tk-item-status-gitlab.inner-false-object-error:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "e9d113f34a4a"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1207,7 +1209,7 @@ "id": "tk-item-status-gitlab.outer-refused:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "1a810f391376"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1230,7 +1232,7 @@ "id": "tk-item-status-gitlab.outer-refused-no-message:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "6502de5a8b97"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1253,7 +1255,7 @@ "id": "tk-item-status-gitlab.method-not-found:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "57fc55c08a0c"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1276,7 +1278,7 @@ "id": "tk-item-status-gitlab.transport-rejection:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "53ddf1fb8329"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1299,7 +1301,7 @@ "id": "tk-item-status-gitlab.transport-rejection-no-message:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "ad5f976dd33c"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", 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 1f74a6f5781..eb1b95e8de1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "64a7af1bfac25dfe673832ef0ef7776be8d1a628c995eafd938fa3ad11d7ba0f", "platform": "darwin", @@ -60,10 +60,6 @@ "provider": "gitlab" } }, - "132591a733d1": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" - }, "13b233a5bc5a": { "name": "itemRemoveAssigneesDraft", "value": "", @@ -338,10 +334,6 @@ } } }, - "71cb3feddd6c": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" - }, "74c6c47d6a72": { "name": "gitlab.updateIssue#1", "args": [ @@ -417,6 +409,11 @@ } } }, + "75f13d97f25f": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}", + "sent": 2 + }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", "args": [ @@ -496,6 +493,11 @@ "value": false, "sent": 2 }, + "948d1db5279c": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "9999466f95f3": { "name": "detailPayload", "value": { @@ -1061,7 +1063,7 @@ "id": "tk-item-status-gitlab.normal:gitlab-status-settled", "observation": { "sender": ["779cb33e2c39"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1074,7 +1076,7 @@ "id": "tk-item-status-gitlab.normal:github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1103,7 +1105,7 @@ "id": "tk-item-status-gitlab.result-absent:gitlab-status-settled", "observation": { "sender": ["c2492936b676"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1116,7 +1118,7 @@ "id": "tk-item-status-gitlab.result-absent:github-metadata-settled", "observation": { "sender": ["c2492936b676", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1145,7 +1147,7 @@ "id": "tk-item-status-gitlab.result-null:gitlab-status-settled", "observation": { "sender": ["21940eac2e09"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1158,7 +1160,7 @@ "id": "tk-item-status-gitlab.result-null:github-metadata-settled", "observation": { "sender": ["21940eac2e09", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1187,7 +1189,7 @@ "id": "tk-item-status-gitlab.inner-ok-missing:gitlab-status-settled", "observation": { "sender": ["e051b754feec"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1200,7 +1202,7 @@ "id": "tk-item-status-gitlab.inner-ok-missing:github-metadata-settled", "observation": { "sender": ["e051b754feec", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1229,7 +1231,7 @@ "id": "tk-item-status-gitlab.inner-false-string-error:gitlab-status-settled", "observation": { "sender": ["4e1886bc3875"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1242,7 +1244,7 @@ "id": "tk-item-status-gitlab.inner-false-string-error:github-metadata-settled", "observation": { "sender": ["4e1886bc3875", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1271,7 +1273,7 @@ "id": "tk-item-status-gitlab.inner-false-object-error:gitlab-status-settled", "observation": { "sender": ["63b0ae8ff253"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1284,7 +1286,7 @@ "id": "tk-item-status-gitlab.inner-false-object-error:github-metadata-settled", "observation": { "sender": ["63b0ae8ff253", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1313,7 +1315,7 @@ "id": "tk-item-status-gitlab.outer-refused:gitlab-status-settled", "observation": { "sender": ["22919860bacb"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1326,7 +1328,7 @@ "id": "tk-item-status-gitlab.outer-refused:github-metadata-settled", "observation": { "sender": ["22919860bacb", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1355,7 +1357,7 @@ "id": "tk-item-status-gitlab.outer-refused-no-message:gitlab-status-settled", "observation": { "sender": ["755d2a2dffe0"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1368,7 +1370,7 @@ "id": "tk-item-status-gitlab.outer-refused-no-message:github-metadata-settled", "observation": { "sender": ["755d2a2dffe0", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1397,7 +1399,7 @@ "id": "tk-item-status-gitlab.method-not-found:gitlab-status-settled", "observation": { "sender": ["17f5e522f786"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1410,7 +1412,7 @@ "id": "tk-item-status-gitlab.method-not-found:github-metadata-settled", "observation": { "sender": ["17f5e522f786", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1439,7 +1441,7 @@ "id": "tk-item-status-gitlab.transport-rejection:gitlab-status-settled", "observation": { "sender": ["74c6c47d6a72"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1452,7 +1454,7 @@ "id": "tk-item-status-gitlab.transport-rejection:github-metadata-settled", "observation": { "sender": ["74c6c47d6a72", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", @@ -1481,7 +1483,7 @@ "id": "tk-item-status-gitlab.transport-rejection-no-message:gitlab-status-settled", "observation": { "sender": ["2e2e489860b5"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1494,7 +1496,7 @@ "id": "tk-item-status-gitlab.transport-rejection-no-message:github-metadata-settled", "observation": { "sender": ["2e2e489860b5", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", 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 54c440ce756..a1e7143e696 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "8443a59a1d432fbcfb9d158995cfa69bef364c33b66a97cbef0e70e197fcad4d", "platform": "darwin", @@ -737,10 +737,6 @@ "provider": "gitlab" } }, - "bbda8a8eedb1": { - "name": "gitlab.updateMRState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}" - }, "bda784694329": { "name": "gitlab.updateMRState#1", "args": [ @@ -849,6 +845,11 @@ "$rpc": "undefined" } }, + "eef11f4ec3f3": { + "name": "gitlab.updateMRState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "f791567b212f": { "name": "error", "value": "outer refused", @@ -904,7 +905,7 @@ "id": "tk-item-status-gitlab-mr.normal:gitlab-status-settled", "observation": { "sender": ["1380dafff177"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -917,7 +918,7 @@ "id": "tk-item-status-gitlab-mr.result-absent:gitlab-status-settled", "observation": { "sender": ["bda784694329"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -930,7 +931,7 @@ "id": "tk-item-status-gitlab-mr.result-null:gitlab-status-settled", "observation": { "sender": ["388906970826"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -943,7 +944,7 @@ "id": "tk-item-status-gitlab-mr.inner-ok-missing:gitlab-status-settled", "observation": { "sender": ["a0d7adf1785a"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -956,7 +957,7 @@ "id": "tk-item-status-gitlab-mr.inner-false-string-error:gitlab-status-settled", "observation": { "sender": ["09483eaa1bdd"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -969,7 +970,7 @@ "id": "tk-item-status-gitlab-mr.inner-false-object-error:gitlab-status-settled", "observation": { "sender": ["29cc0a425dd8"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -982,7 +983,7 @@ "id": "tk-item-status-gitlab-mr.outer-refused:gitlab-status-settled", "observation": { "sender": ["8e3dbb5fa917"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -995,7 +996,7 @@ "id": "tk-item-status-gitlab-mr.outer-refused-no-message:gitlab-status-settled", "observation": { "sender": ["580815f89d46"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1008,7 +1009,7 @@ "id": "tk-item-status-gitlab-mr.method-not-found:gitlab-status-settled", "observation": { "sender": ["fa02360dc148"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1021,7 +1022,7 @@ "id": "tk-item-status-gitlab-mr.transport-rejection:gitlab-status-settled", "observation": { "sender": ["b4646bea3bbb"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -1034,7 +1035,7 @@ "id": "tk-item-status-gitlab-mr.transport-rejection-no-message:gitlab-status-settled", "observation": { "sender": ["0225dd148bd1"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" 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 45ed0ea661a..337717055b7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a60d7c0ce3d155116aecbb3d1ca015b4d9de310155f4e840b2fc391dc9d04860", "platform": "darwin", @@ -196,6 +196,11 @@ } } }, + "6469c8226ac8": { + "name": "linear.connect#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.connect\",\"params\":{\"apiKey\":\"lin_api_key\"}}", + "sent": 1 + }, "69d74e72326c": { "name": "linearConnected", "value": true, @@ -422,10 +427,6 @@ } } }, - "dae705f55c7f": { - "name": "linear.connect#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.connect\",\"params\":{\"apiKey\":\"lin_api_key\"}}" - }, "dfd3413a2232": { "connected": false, "error": "inner refused", @@ -544,7 +545,7 @@ "id": "tk-linear-connect.normal:connect-settled", "observation": { "sender": ["b7f1fad8d45f"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -566,7 +567,7 @@ "id": "tk-linear-connect.result-absent:connect-settled", "observation": { "sender": ["f9bc34407ac9"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -579,7 +580,7 @@ "id": "tk-linear-connect.result-null:connect-settled", "observation": { "sender": ["632dd7f078e3"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -592,7 +593,7 @@ "id": "tk-linear-connect.inner-ok-missing:connect-settled", "observation": { "sender": ["d01bbd7239d1"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -614,7 +615,7 @@ "id": "tk-linear-connect.inner-false-string-error:connect-settled", "observation": { "sender": ["2be5e0f901e5"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -627,7 +628,7 @@ "id": "tk-linear-connect.inner-false-object-error:connect-settled", "observation": { "sender": ["a0771398ca86"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -640,7 +641,7 @@ "id": "tk-linear-connect.outer-refused:connect-settled", "observation": { "sender": ["292bbaa1f6fe"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -653,7 +654,7 @@ "id": "tk-linear-connect.outer-refused-no-message:connect-settled", "observation": { "sender": ["a80af0abe2b3"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -666,7 +667,7 @@ "id": "tk-linear-connect.method-not-found:connect-settled", "observation": { "sender": ["4e1726d2cf8f"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -679,7 +680,7 @@ "id": "tk-linear-connect.transport-rejection:connect-settled", "observation": { "sender": ["9f6138af26e9"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" @@ -692,7 +693,7 @@ "id": "tk-linear-connect.transport-rejection-no-message:connect-settled", "observation": { "sender": ["fc80dec0189f"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" 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 df58f827e29..e39bc5cf1a5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "a2c0c5c200b36d2194815e67df2ea50422f6ecfd9df411132202e9660c87c41b", "platform": "darwin", @@ -163,6 +163,11 @@ } } }, + "10b28ba0acf6": { + "name": "linear.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}", + "sent": 1 + }, "12b9ca6d3411": { "name": "linearCommentDraft", "value": "", @@ -253,10 +258,6 @@ "provider": "linear" } }, - "252af9581c95": { - "name": "linear.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" - }, "2649a1245792": { "error": "[object Object]", "item": { @@ -806,10 +807,6 @@ } } }, - "56711aa72642": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -894,10 +891,6 @@ } } }, - "6fbb2167a2a8": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" - }, "7807d636d5ca": { "error": "outer refused", "item": { @@ -1092,6 +1085,11 @@ } } }, + "9e002043a9c9": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "9e263f5e91be": { "name": "error", "value": "", @@ -1450,6 +1448,11 @@ "$rpc": "undefined" } }, + "ee9691287208": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}", + "sent": 3 + }, "f0a8a5417034": { "error": "", "item": { @@ -1616,7 +1619,7 @@ "id": "tk-linear-item.normal:comment-settled", "observation": { "sender": ["4c69e7210f1a"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1635,7 +1638,7 @@ "id": "tk-linear-item.normal:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1659,7 +1662,7 @@ "id": "tk-linear-item.normal:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1689,7 +1692,7 @@ "id": "tk-linear-item.result-absent:comment-settled", "observation": { "sender": ["5f501a8dbfff"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1702,7 +1705,7 @@ "id": "tk-linear-item.result-absent:sub-issue-open-settled", "observation": { "sender": ["5f501a8dbfff", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1725,7 +1728,7 @@ "id": "tk-linear-item.result-absent:sub-issue-create-settled", "observation": { "sender": ["5f501a8dbfff", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1754,7 +1757,7 @@ "id": "tk-linear-item.result-null:comment-settled", "observation": { "sender": ["0e08807eccd5"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1767,7 +1770,7 @@ "id": "tk-linear-item.result-null:sub-issue-open-settled", "observation": { "sender": ["0e08807eccd5", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1790,7 +1793,7 @@ "id": "tk-linear-item.result-null:sub-issue-create-settled", "observation": { "sender": ["0e08807eccd5", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1819,7 +1822,7 @@ "id": "tk-linear-item.inner-ok-missing:comment-settled", "observation": { "sender": ["4cbe7d2c75e8"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1838,7 +1841,7 @@ "id": "tk-linear-item.inner-ok-missing:sub-issue-open-settled", "observation": { "sender": ["4cbe7d2c75e8", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1862,7 +1865,7 @@ "id": "tk-linear-item.inner-ok-missing:sub-issue-create-settled", "observation": { "sender": ["4cbe7d2c75e8", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1892,7 +1895,7 @@ "id": "tk-linear-item.inner-false-string-error:comment-settled", "observation": { "sender": ["b25b80b10fc1"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1905,7 +1908,7 @@ "id": "tk-linear-item.inner-false-string-error:sub-issue-open-settled", "observation": { "sender": ["b25b80b10fc1", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1928,7 +1931,7 @@ "id": "tk-linear-item.inner-false-string-error:sub-issue-create-settled", "observation": { "sender": ["b25b80b10fc1", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1957,7 +1960,7 @@ "id": "tk-linear-item.inner-false-object-error:comment-settled", "observation": { "sender": ["c33fb7bbdab0"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1970,7 +1973,7 @@ "id": "tk-linear-item.inner-false-object-error:sub-issue-open-settled", "observation": { "sender": ["c33fb7bbdab0", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1993,7 +1996,7 @@ "id": "tk-linear-item.inner-false-object-error:sub-issue-create-settled", "observation": { "sender": ["c33fb7bbdab0", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2022,7 +2025,7 @@ "id": "tk-linear-item.outer-refused:comment-settled", "observation": { "sender": ["3ca847fca558"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -2035,7 +2038,7 @@ "id": "tk-linear-item.outer-refused:sub-issue-open-settled", "observation": { "sender": ["3ca847fca558", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2058,7 +2061,7 @@ "id": "tk-linear-item.outer-refused:sub-issue-create-settled", "observation": { "sender": ["3ca847fca558", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2087,7 +2090,7 @@ "id": "tk-linear-item.outer-refused-no-message:comment-settled", "observation": { "sender": ["d857a39962fb"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -2100,7 +2103,7 @@ "id": "tk-linear-item.outer-refused-no-message:sub-issue-open-settled", "observation": { "sender": ["d857a39962fb", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2123,7 +2126,7 @@ "id": "tk-linear-item.outer-refused-no-message:sub-issue-create-settled", "observation": { "sender": ["d857a39962fb", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2152,7 +2155,7 @@ "id": "tk-linear-item.method-not-found:comment-settled", "observation": { "sender": ["3e73e27d5cd5"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -2165,7 +2168,7 @@ "id": "tk-linear-item.method-not-found:sub-issue-open-settled", "observation": { "sender": ["3e73e27d5cd5", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2188,7 +2191,7 @@ "id": "tk-linear-item.method-not-found:sub-issue-create-settled", "observation": { "sender": ["3e73e27d5cd5", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2217,7 +2220,7 @@ "id": "tk-linear-item.transport-rejection:comment-settled", "observation": { "sender": ["818ab7fe22f5"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -2230,7 +2233,7 @@ "id": "tk-linear-item.transport-rejection:sub-issue-open-settled", "observation": { "sender": ["818ab7fe22f5", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2253,7 +2256,7 @@ "id": "tk-linear-item.transport-rejection:sub-issue-create-settled", "observation": { "sender": ["818ab7fe22f5", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2282,7 +2285,7 @@ "id": "tk-linear-item.transport-rejection-no-message:comment-settled", "observation": { "sender": ["bd8766792875"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -2295,7 +2298,7 @@ "id": "tk-linear-item.transport-rejection-no-message:sub-issue-open-settled", "observation": { "sender": ["bd8766792875", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -2318,7 +2321,7 @@ "id": "tk-linear-item.transport-rejection-no-message:sub-issue-create-settled", "observation": { "sender": ["bd8766792875", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", 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 c3dba113d6d..f6e9d57a349 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "8a5c5b210459d3938bc010bc88c69696a631072cd5a6b7e1a3eb3e1fd0da9c8a", "platform": "darwin", @@ -18,6 +18,11 @@ "value": false, "sent": 3 }, + "10b28ba0acf6": { + "name": "linear.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}", + "sent": 1 + }, "12b9ca6d3411": { "name": "linearCommentDraft", "value": "", @@ -182,10 +187,6 @@ } } }, - "252af9581c95": { - "name": "linear.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" - }, "26374b8263d6": { "name": "error", "value": "transport failure", @@ -487,10 +488,6 @@ "provider": "linear" } }, - "56711aa72642": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -538,10 +535,6 @@ "value": "inner refused", "sent": 3 }, - "6fbb2167a2a8": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" - }, "733c78cbf099": { "name": "linear.createIssue#1", "args": [ @@ -1111,6 +1104,11 @@ } } }, + "9e002043a9c9": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "9e263f5e91be": { "name": "error", "value": "", @@ -1413,6 +1411,11 @@ "$rpc": "undefined" } }, + "ee9691287208": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}", + "sent": 3 + }, "f4878d38b306": { "error": "refused", "item": { @@ -1477,7 +1480,7 @@ "id": "tk-linear-item.prelude:comment-settled", "observation": { "sender": ["4c69e7210f1a"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1496,7 +1499,7 @@ "id": "tk-linear-item.prelude:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1520,7 +1523,7 @@ "id": "tk-linear-item.prelude:cleanup", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "e6954e969cb9"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1549,7 +1552,7 @@ "id": "tk-linear-item.normal:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1579,7 +1582,7 @@ "id": "tk-linear-item.result-absent:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "82e1d0775df9"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1608,7 +1611,7 @@ "id": "tk-linear-item.result-null:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "9d7372645165"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1637,7 +1640,7 @@ "id": "tk-linear-item.inner-ok-missing:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "7a8140de3f8b"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1666,7 +1669,7 @@ "id": "tk-linear-item.inner-false-string-error:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "7b7a52934284"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1695,7 +1698,7 @@ "id": "tk-linear-item.inner-false-object-error:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "733c78cbf099"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1724,7 +1727,7 @@ "id": "tk-linear-item.outer-refused:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "acebdd95fdf3"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1753,7 +1756,7 @@ "id": "tk-linear-item.outer-refused-no-message:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "88dc883be043"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1782,7 +1785,7 @@ "id": "tk-linear-item.method-not-found:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "3537547b034c"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1811,7 +1814,7 @@ "id": "tk-linear-item.transport-rejection:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "1edb9a75e1c7"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1840,7 +1843,7 @@ "id": "tk-linear-item.transport-rejection-no-message:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "6544d325ab6e"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", 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 d5ca16efeb7..6b8608b8cc5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "ab0ac02611d487a9edd58319c6e4b9302148684f27711afc3b69feaa73fc4b07", "platform": "darwin", @@ -93,6 +93,11 @@ } } }, + "10b28ba0acf6": { + "name": "linear.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}", + "sent": 1 + }, "12b9ca6d3411": { "name": "linearCommentDraft", "value": "", @@ -245,10 +250,6 @@ } } }, - "252af9581c95": { - "name": "linear.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" - }, "2c8f51509f45": { "name": "linear.getIssue#1", "args": [ @@ -593,10 +594,6 @@ "value": "Connection closed", "sent": 2 }, - "56711aa72642": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -735,10 +732,6 @@ } } }, - "6fbb2167a2a8": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" - }, "7c14fba8a1fe": { "error": "", "item": { @@ -1007,6 +1000,11 @@ } } }, + "9e002043a9c9": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "9e263f5e91be": { "name": "error", "value": "", @@ -1284,6 +1282,11 @@ "$rpc": "undefined" } }, + "ee9691287208": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}", + "sent": 3 + }, "f1cfc2d1bcc1": { "name": "error", "value": "Unknown method", @@ -1297,7 +1300,7 @@ "id": "tk-linear-item.prelude:comment-settled", "observation": { "sender": ["4c69e7210f1a"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -1316,7 +1319,7 @@ "id": "tk-linear-item.prelude:cleanup", "observation": { "sender": ["4c69e7210f1a", "8e84155275d3"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1340,7 +1343,7 @@ "id": "tk-linear-item.normal:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1364,7 +1367,7 @@ "id": "tk-linear-item.normal:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1394,7 +1397,7 @@ "id": "tk-linear-item.result-absent:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "5ddf0fd75757"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1418,7 +1421,7 @@ "id": "tk-linear-item.result-absent:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "5ddf0fd75757", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1448,7 +1451,7 @@ "id": "tk-linear-item.result-null:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "7d5d5cb0c11f"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1472,7 +1475,7 @@ "id": "tk-linear-item.result-null:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "7d5d5cb0c11f", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1502,7 +1505,7 @@ "id": "tk-linear-item.inner-ok-missing:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "5a11bbb29a30"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1526,7 +1529,7 @@ "id": "tk-linear-item.inner-ok-missing:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "5a11bbb29a30", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1556,7 +1559,7 @@ "id": "tk-linear-item.inner-false-string-error:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "0c7a193ff0fc"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1580,7 +1583,7 @@ "id": "tk-linear-item.inner-false-string-error:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "0c7a193ff0fc", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1610,7 +1613,7 @@ "id": "tk-linear-item.inner-false-object-error:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "8af40adb9d8d"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1634,7 +1637,7 @@ "id": "tk-linear-item.inner-false-object-error:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "8af40adb9d8d", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1664,7 +1667,7 @@ "id": "tk-linear-item.outer-refused:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "2508f48c9b7c"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1688,7 +1691,7 @@ "id": "tk-linear-item.outer-refused:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2508f48c9b7c", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1718,7 +1721,7 @@ "id": "tk-linear-item.outer-refused-no-message:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "b12529ce2cd1"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1742,7 +1745,7 @@ "id": "tk-linear-item.outer-refused-no-message:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "b12529ce2cd1", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1772,7 +1775,7 @@ "id": "tk-linear-item.method-not-found:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "03ba75574787"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1796,7 +1799,7 @@ "id": "tk-linear-item.method-not-found:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "03ba75574787", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1826,7 +1829,7 @@ "id": "tk-linear-item.transport-rejection:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "321e12a67360"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1850,7 +1853,7 @@ "id": "tk-linear-item.transport-rejection:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "321e12a67360", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1880,7 +1883,7 @@ "id": "tk-linear-item.transport-rejection-no-message:sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "d999cf5823a0"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -1904,7 +1907,7 @@ "id": "tk-linear-item.transport-rejection-no-message:sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "d999cf5823a0", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", 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 6d78d1ddb92..0ac3b615a5a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "c4a5928ef7035ad8bed20945f235f4fa509238b3a167c91df50baefff8e8433f", "platform": "darwin", @@ -45,10 +45,6 @@ "value": "", "sent": 1 }, - "18a1433d8d21": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" - }, "1d9a37f58a33": { "name": "creatingTask", "value": false, @@ -91,6 +87,11 @@ } ] }, + "3c5b5dea64bc": { + "name": "linear.teamStates#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "40f9e992c3d0": { "name": "linearTeams", "value": { @@ -314,6 +315,11 @@ } } }, + "6f8af71244c2": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}", + "sent": 1 + }, "6fa69d344960": { "name": "linearTeams", "value": { @@ -748,10 +754,6 @@ "value": "", "sent": 1 }, - "e132489d2d57": { - "name": "linear.teamStates#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "e201f508b2a8": { "name": "linearTeams", "value": { @@ -790,7 +792,7 @@ "id": "tk-linear-team-context.normal:open-composer-settled", "observation": { "sender": ["4f71189f4e00"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -825,7 +827,7 @@ "id": "tk-linear-team-context.normal:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -866,7 +868,7 @@ "id": "tk-linear-team-context.result-absent:open-composer-settled", "observation": { "sender": ["599b1be870ef"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -902,7 +904,7 @@ "id": "tk-linear-team-context.result-absent:select-metadata-item-settled", "observation": { "sender": ["599b1be870ef", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -944,7 +946,7 @@ "id": "tk-linear-team-context.result-null:open-composer-settled", "observation": { "sender": ["6cd6efbcaf7e"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -980,7 +982,7 @@ "id": "tk-linear-team-context.result-null:select-metadata-item-settled", "observation": { "sender": ["6cd6efbcaf7e", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1022,7 +1024,7 @@ "id": "tk-linear-team-context.inner-ok-missing:open-composer-settled", "observation": { "sender": ["abb71c80728e"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1057,7 +1059,7 @@ "id": "tk-linear-team-context.inner-ok-missing:select-metadata-item-settled", "observation": { "sender": ["abb71c80728e", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1098,7 +1100,7 @@ "id": "tk-linear-team-context.inner-false-string-error:open-composer-settled", "observation": { "sender": ["79d1ab045d8b"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1133,7 +1135,7 @@ "id": "tk-linear-team-context.inner-false-string-error:select-metadata-item-settled", "observation": { "sender": ["79d1ab045d8b", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1174,7 +1176,7 @@ "id": "tk-linear-team-context.inner-false-object-error:open-composer-settled", "observation": { "sender": ["788bcfdee78c"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1209,7 +1211,7 @@ "id": "tk-linear-team-context.inner-false-object-error:select-metadata-item-settled", "observation": { "sender": ["788bcfdee78c", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1250,7 +1252,7 @@ "id": "tk-linear-team-context.outer-refused:open-composer-settled", "observation": { "sender": ["a84509df0515"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1285,7 +1287,7 @@ "id": "tk-linear-team-context.outer-refused:select-metadata-item-settled", "observation": { "sender": ["a84509df0515", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1326,7 +1328,7 @@ "id": "tk-linear-team-context.outer-refused-no-message:open-composer-settled", "observation": { "sender": ["5324aa581c57"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1361,7 +1363,7 @@ "id": "tk-linear-team-context.outer-refused-no-message:select-metadata-item-settled", "observation": { "sender": ["5324aa581c57", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1402,7 +1404,7 @@ "id": "tk-linear-team-context.method-not-found:open-composer-settled", "observation": { "sender": ["514aa14f1539"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1437,7 +1439,7 @@ "id": "tk-linear-team-context.method-not-found:select-metadata-item-settled", "observation": { "sender": ["514aa14f1539", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1478,7 +1480,7 @@ "id": "tk-linear-team-context.transport-rejection:open-composer-settled", "observation": { "sender": ["d9287348e74d"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1513,7 +1515,7 @@ "id": "tk-linear-team-context.transport-rejection:select-metadata-item-settled", "observation": { "sender": ["d9287348e74d", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1554,7 +1556,7 @@ "id": "tk-linear-team-context.transport-rejection-no-message:open-composer-settled", "observation": { "sender": ["8a1b2b9ec56a"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -1589,7 +1591,7 @@ "id": "tk-linear-team-context.transport-rejection-no-message:select-metadata-item-settled", "observation": { "sender": ["8a1b2b9ec56a", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", 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 7ef2368ba19..12242c7f0de 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "8ec517c98775f3af0d45776dc74bcaaf99dcc751e85343084e39c557b6ddede1", "platform": "darwin", @@ -74,10 +74,6 @@ } ] }, - "18a1433d8d21": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" - }, "1be3c2d3f900": { "name": "linear.teamStates#1", "args": [ @@ -202,6 +198,11 @@ }, "sent": 2 }, + "3c5b5dea64bc": { + "name": "linear.teamStates#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4331036690d4": { "name": "prFileLoadingPath", "value": { @@ -349,6 +350,11 @@ } ] }, + "6f8af71244c2": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}", + "sent": 1 + }, "74bc5ac6d229": { "name": "itemAddAssigneesDraft", "value": "", @@ -578,10 +584,6 @@ "value": "", "sent": 1 }, - "e132489d2d57": { - "name": "linear.teamStates#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "e483917577a8": { "name": "createTeamId", "value": "team-1", @@ -760,7 +762,7 @@ "id": "tk-linear-team-context.prelude:open-composer-settled", "observation": { "sender": ["4f71189f4e00"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -795,7 +797,7 @@ "id": "tk-linear-team-context.normal:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -836,7 +838,7 @@ "id": "tk-linear-team-context.result-absent:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "fe6b927ff90e"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -877,7 +879,7 @@ "id": "tk-linear-team-context.result-null:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "ec16d088c0ed"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -918,7 +920,7 @@ "id": "tk-linear-team-context.inner-ok-missing:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "bbefc1f517c9"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -959,7 +961,7 @@ "id": "tk-linear-team-context.inner-false-string-error:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "c4dd260b5637"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1000,7 +1002,7 @@ "id": "tk-linear-team-context.inner-false-object-error:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "ecec373aba14"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1041,7 +1043,7 @@ "id": "tk-linear-team-context.outer-refused:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "f4fb9aa31b3d"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1082,7 +1084,7 @@ "id": "tk-linear-team-context.outer-refused-no-message:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "4be9ec43794e"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1123,7 +1125,7 @@ "id": "tk-linear-team-context.method-not-found:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "227f11dbe2ec"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1164,7 +1166,7 @@ "id": "tk-linear-team-context.transport-rejection:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "4a21828e3c78"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", @@ -1205,7 +1207,7 @@ "id": "tk-linear-team-context.transport-rejection-no-message:select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "1be3c2d3f900"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", 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 514961f3af6..f5b301ea8fa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "749f877ac0c08860f74fc56e34b07f51960dda5bd1fdcf9df847b5200bf67779", "platform": "darwin", @@ -33,10 +33,6 @@ } } }, - "11ab96fde6c9": { - "name": "gitlab.workItemByPath#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}" - }, "135faf86ace7": { "by-number": { "number": 12, @@ -151,9 +147,10 @@ "startedAt": 0 } }, - "398515139d34": { - "name": "github.repoSlug#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-2\"}}" + "293712bf6b06": { + "name": "github.workItemByOwnerRepo#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}", + "sent": 2 }, "46e234697d93": { "status": "rejected", @@ -242,6 +239,11 @@ } } }, + "62d4d4b68fd1": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 4 + }, "65342779da15": { "name": "github.workItem#1", "args": [ @@ -486,10 +488,6 @@ } } }, - "a45a7dd68af6": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "aaad292bbd1b": { "name": "github.repoSlug#1", "args": [ @@ -523,10 +521,6 @@ } } }, - "aaf80675fc49": { - "name": "github.workItem#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, "b303200fec39": { "name": "github.repoSlug#1", "args": [ @@ -568,6 +562,11 @@ "title": "seven" } }, + "cc9f2830e6ec": { + "name": "github.repoSlug#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-2\"}}", + "sent": 5 + }, "cded841b4a1b": { "name": "github.repoSlug#1", "args": [ @@ -604,6 +603,11 @@ } } }, + "d296887f365c": { + "name": "gitlab.workItemByPath#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}", + "sent": 3 + }, "d48fa181d583": { "by-number": { "number": 12, @@ -629,10 +633,6 @@ "title": "seven" } }, - "e1f537905a65": { - "name": "github.workItemByOwnerRepo#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" - }, "e29333b1693f": { "name": "gitlab.workItemByPath#1", "args": [ @@ -726,6 +726,11 @@ "$rpc": "null" } }, + "ee9b55f8dafb": { + "name": "github.workItem#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}", + "sent": 1 + }, "f0486ebd441c": { "name": "github.repoSlug#1", "args": [ @@ -805,7 +810,7 @@ "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { "sender": ["65342779da15"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "731507dd2e23" }, @@ -817,7 +822,7 @@ "id": "tw-paste-lookup-resolved.prelude:by-slug", "observation": { "sender": ["65342779da15", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23" @@ -830,7 +835,7 @@ "id": "tw-paste-lookup-resolved.prelude:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -844,7 +849,7 @@ "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -866,11 +871,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", @@ -893,11 +898,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", @@ -913,7 +918,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "f0486ebd441c"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -928,7 +933,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "9e6675f5d017"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -943,7 +948,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "cded841b4a1b"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -965,11 +970,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", @@ -992,11 +997,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", @@ -1012,7 +1017,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "6662fbe6a28e"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1034,11 +1039,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", @@ -1061,11 +1066,11 @@ "285ceb964a96" ], "payloads": [ - "aaf80675fc49", - "e1f537905a65", - "11ab96fde6c9", - "a45a7dd68af6", - "398515139d34" + "ee9b55f8dafb", + "293712bf6b06", + "d296887f365c", + "62d4d4b68fd1", + "cc9f2830e6ec" ], "settlements": { "by-number": "731507dd2e23", 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 02ac218b3fe..5c22abe6151 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "2a11156b7b6d3cf0773c8dc02a72e126bc187dcf62ad7d1bf5f30d7b27192b03", "platform": "darwin", @@ -68,10 +68,6 @@ } } }, - "11ab96fde6c9": { - "name": "gitlab.workItemByPath#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}" - }, "19bc74accf11": { "name": "github.workItem#1", "args": [ @@ -182,6 +178,11 @@ }, "cache": [] }, + "293712bf6b06": { + "name": "github.workItemByOwnerRepo#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}", + "sent": 2 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -380,6 +381,11 @@ "title": "seven" } }, + "62d4d4b68fd1": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 4 + }, "65342779da15": { "name": "github.workItem#1", "args": [ @@ -657,10 +663,6 @@ "repoId": "repo-1" } }, - "a45a7dd68af6": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "a7f4472cdb70": { "status": "fulfilled", "startedAt": 0, @@ -683,10 +685,6 @@ "isRpcDeliveryUnknown": true } }, - "aaf80675fc49": { - "name": "github.workItem#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, "ad658847a638": { "by-number": { "error": "refused", @@ -854,6 +852,11 @@ } } }, + "d296887f365c": { + "name": "gitlab.workItemByPath#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}", + "sent": 3 + }, "d65cceb204a7": { "by-number": { "error": "refused", @@ -901,10 +904,6 @@ } } }, - "e1f537905a65": { - "name": "github.workItemByOwnerRepo#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" - }, "e29333b1693f": { "name": "gitlab.workItemByPath#1", "args": [ @@ -964,6 +963,11 @@ "$rpc": "null" } }, + "ee9b55f8dafb": { + "name": "github.workItem#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}", + "sent": 1 + }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -1051,7 +1055,7 @@ "id": "tw-paste-lookup-resolved.normal:by-number", "observation": { "sender": ["65342779da15"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "731507dd2e23" }, @@ -1063,7 +1067,7 @@ "id": "tw-paste-lookup-resolved.normal:by-slug", "observation": { "sender": ["65342779da15", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23" @@ -1076,7 +1080,7 @@ "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1090,7 +1094,7 @@ "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1105,7 +1109,7 @@ "id": "tw-paste-lookup-resolved.result-absent:by-number", "observation": { "sender": ["fb69e80392e8"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "ee20a1dc39e7" }, @@ -1117,7 +1121,7 @@ "id": "tw-paste-lookup-resolved.result-absent:by-slug", "observation": { "sender": ["fb69e80392e8", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23" @@ -1130,7 +1134,7 @@ "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { "sender": ["fb69e80392e8", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23", @@ -1144,7 +1148,7 @@ "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { "sender": ["fb69e80392e8", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23", @@ -1159,7 +1163,7 @@ "id": "tw-paste-lookup-resolved.result-null:by-number", "observation": { "sender": ["5827c760c69a"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "ee20a1dc39e7" }, @@ -1171,7 +1175,7 @@ "id": "tw-paste-lookup-resolved.result-null:by-slug", "observation": { "sender": ["5827c760c69a", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23" @@ -1184,7 +1188,7 @@ "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { "sender": ["5827c760c69a", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23", @@ -1198,7 +1202,7 @@ "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { "sender": ["5827c760c69a", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "ee20a1dc39e7", "by-slug": "731507dd2e23", @@ -1213,7 +1217,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:by-number", "observation": { "sender": ["19bc74accf11"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "46daeacd502c" }, @@ -1225,7 +1229,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:by-slug", "observation": { "sender": ["19bc74accf11", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "46daeacd502c", "by-slug": "731507dd2e23" @@ -1238,7 +1242,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { "sender": ["19bc74accf11", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "46daeacd502c", "by-slug": "731507dd2e23", @@ -1252,7 +1256,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { "sender": ["19bc74accf11", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "46daeacd502c", "by-slug": "731507dd2e23", @@ -1267,7 +1271,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:by-number", "observation": { "sender": ["d0150efe4124"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "9e9f15f7df58" }, @@ -1279,7 +1283,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:by-slug", "observation": { "sender": ["d0150efe4124", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "9e9f15f7df58", "by-slug": "731507dd2e23" @@ -1292,7 +1296,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { "sender": ["d0150efe4124", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "9e9f15f7df58", "by-slug": "731507dd2e23", @@ -1306,7 +1310,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { "sender": ["d0150efe4124", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "9e9f15f7df58", "by-slug": "731507dd2e23", @@ -1321,7 +1325,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:by-number", "observation": { "sender": ["896610e0c4e7"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "a7f4472cdb70" }, @@ -1333,7 +1337,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:by-slug", "observation": { "sender": ["896610e0c4e7", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "a7f4472cdb70", "by-slug": "731507dd2e23" @@ -1346,7 +1350,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { "sender": ["896610e0c4e7", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "a7f4472cdb70", "by-slug": "731507dd2e23", @@ -1360,7 +1364,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { "sender": ["896610e0c4e7", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "a7f4472cdb70", "by-slug": "731507dd2e23", @@ -1375,7 +1379,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:by-number", "observation": { "sender": ["90de73e52a3d"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "32a7c0ae7918" }, @@ -1387,7 +1391,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:by-slug", "observation": { "sender": ["90de73e52a3d", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "32a7c0ae7918", "by-slug": "731507dd2e23" @@ -1400,7 +1404,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { "sender": ["90de73e52a3d", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "32a7c0ae7918", "by-slug": "731507dd2e23", @@ -1414,7 +1418,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { "sender": ["90de73e52a3d", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "32a7c0ae7918", "by-slug": "731507dd2e23", @@ -1429,7 +1433,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:by-number", "observation": { "sender": ["870d10fe8de9"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "f3b516f62081" }, @@ -1441,7 +1445,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:by-slug", "observation": { "sender": ["870d10fe8de9", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "f3b516f62081", "by-slug": "731507dd2e23" @@ -1454,7 +1458,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { "sender": ["870d10fe8de9", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "f3b516f62081", "by-slug": "731507dd2e23", @@ -1468,7 +1472,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { "sender": ["870d10fe8de9", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "f3b516f62081", "by-slug": "731507dd2e23", @@ -1483,7 +1487,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:by-number", "observation": { "sender": ["06c63d693b0e"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "b948e8307e81" }, @@ -1495,7 +1499,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:by-slug", "observation": { "sender": ["06c63d693b0e", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "b948e8307e81", "by-slug": "731507dd2e23" @@ -1508,7 +1512,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { "sender": ["06c63d693b0e", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "b948e8307e81", "by-slug": "731507dd2e23", @@ -1522,7 +1526,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { "sender": ["06c63d693b0e", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "b948e8307e81", "by-slug": "731507dd2e23", @@ -1537,7 +1541,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:by-number", "observation": { "sender": ["1e7d56be018c"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "a947768bc0ed" }, @@ -1549,7 +1553,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:by-slug", "observation": { "sender": ["1e7d56be018c", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "a947768bc0ed", "by-slug": "731507dd2e23" @@ -1562,7 +1566,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { "sender": ["1e7d56be018c", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "a947768bc0ed", "by-slug": "731507dd2e23", @@ -1576,7 +1580,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { "sender": ["1e7d56be018c", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "a947768bc0ed", "by-slug": "731507dd2e23", @@ -1591,7 +1595,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:by-number", "observation": { "sender": ["8f8ff0f7d554"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "c7584e82c72f" }, @@ -1603,7 +1607,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:by-slug", "observation": { "sender": ["8f8ff0f7d554", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "c7584e82c72f", "by-slug": "731507dd2e23" @@ -1616,7 +1620,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { "sender": ["8f8ff0f7d554", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "c7584e82c72f", "by-slug": "731507dd2e23", @@ -1630,7 +1634,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { "sender": ["8f8ff0f7d554", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "c7584e82c72f", "by-slug": "731507dd2e23", 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 45c287f077d..77d449fbf87 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "4c2560ac236a1cc1ef239b7c97a0436e115b19a6ad3ddd96b3b77970aa631ae3", "platform": "darwin", @@ -106,10 +106,6 @@ } } }, - "11ab96fde6c9": { - "name": "gitlab.workItemByPath#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}" - }, "1930e5b10aa4": { "by-number": { "number": 12, @@ -186,6 +182,11 @@ }, "cache": [] }, + "293712bf6b06": { + "name": "github.workItemByOwnerRepo#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}", + "sent": 2 + }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -391,6 +392,11 @@ } } }, + "62d4d4b68fd1": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 4 + }, "65342779da15": { "name": "github.workItem#1", "args": [ @@ -693,10 +699,6 @@ } } }, - "a45a7dd68af6": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "a7f4472cdb70": { "status": "fulfilled", "startedAt": 0, @@ -719,10 +721,6 @@ "isRpcDeliveryUnknown": true } }, - "aaf80675fc49": { - "name": "github.workItem#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, "ab24157c895e": { "by-number": { "number": 12, @@ -850,6 +848,11 @@ "isRpcDeliveryUnknown": true } }, + "d296887f365c": { + "name": "gitlab.workItemByPath#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}", + "sent": 3 + }, "d58cca0b1bf7": { "name": "github.workItemByOwnerRepo#1", "args": [ @@ -907,10 +910,6 @@ "title": "seven" } }, - "e1f537905a65": { - "name": "github.workItemByOwnerRepo#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" - }, "e29333b1693f": { "name": "gitlab.workItemByPath#1", "args": [ @@ -983,6 +982,11 @@ "$rpc": "null" } }, + "ee9b55f8dafb": { + "name": "github.workItem#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}", + "sent": 1 + }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -1039,7 +1043,7 @@ "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { "sender": ["65342779da15"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "731507dd2e23" }, @@ -1051,7 +1055,7 @@ "id": "tw-paste-lookup-resolved.normal:by-slug", "observation": { "sender": ["65342779da15", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23" @@ -1064,7 +1068,7 @@ "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1078,7 +1082,7 @@ "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1093,7 +1097,7 @@ "id": "tw-paste-lookup-resolved.result-absent:by-slug", "observation": { "sender": ["65342779da15", "3b70826f7fe6"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7" @@ -1106,7 +1110,7 @@ "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { "sender": ["65342779da15", "3b70826f7fe6", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7", @@ -1120,7 +1124,7 @@ "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { "sender": ["65342779da15", "3b70826f7fe6", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7", @@ -1135,7 +1139,7 @@ "id": "tw-paste-lookup-resolved.result-null:by-slug", "observation": { "sender": ["65342779da15", "d58cca0b1bf7"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7" @@ -1148,7 +1152,7 @@ "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { "sender": ["65342779da15", "d58cca0b1bf7", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7", @@ -1162,7 +1166,7 @@ "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { "sender": ["65342779da15", "d58cca0b1bf7", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "ee20a1dc39e7", @@ -1177,7 +1181,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:by-slug", "observation": { "sender": ["65342779da15", "c4a429577522"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "46daeacd502c" @@ -1190,7 +1194,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { "sender": ["65342779da15", "c4a429577522", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "46daeacd502c", @@ -1204,7 +1208,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { "sender": ["65342779da15", "c4a429577522", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "46daeacd502c", @@ -1219,7 +1223,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:by-slug", "observation": { "sender": ["65342779da15", "90adb9377343"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "9e9f15f7df58" @@ -1232,7 +1236,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { "sender": ["65342779da15", "90adb9377343", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "9e9f15f7df58", @@ -1246,7 +1250,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "90adb9377343", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "9e9f15f7df58", @@ -1261,7 +1265,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:by-slug", "observation": { "sender": ["65342779da15", "9221b9a7a4b0"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a7f4472cdb70" @@ -1274,7 +1278,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { "sender": ["65342779da15", "9221b9a7a4b0", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a7f4472cdb70", @@ -1288,7 +1292,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "9221b9a7a4b0", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a7f4472cdb70", @@ -1303,7 +1307,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:by-slug", "observation": { "sender": ["65342779da15", "34d2c8648702"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "32a7c0ae7918" @@ -1316,7 +1320,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { "sender": ["65342779da15", "34d2c8648702", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "32a7c0ae7918", @@ -1330,7 +1334,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { "sender": ["65342779da15", "34d2c8648702", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "32a7c0ae7918", @@ -1345,7 +1349,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:by-slug", "observation": { "sender": ["65342779da15", "9fe9e3dcad5b"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "f3b516f62081" @@ -1358,7 +1362,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { "sender": ["65342779da15", "9fe9e3dcad5b", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "f3b516f62081", @@ -1372,7 +1376,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { "sender": ["65342779da15", "9fe9e3dcad5b", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "f3b516f62081", @@ -1387,7 +1391,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:by-slug", "observation": { "sender": ["65342779da15", "0e35851dfc19"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "b948e8307e81" @@ -1400,7 +1404,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { "sender": ["65342779da15", "0e35851dfc19", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "b948e8307e81", @@ -1414,7 +1418,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { "sender": ["65342779da15", "0e35851dfc19", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "b948e8307e81", @@ -1429,7 +1433,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:by-slug", "observation": { "sender": ["65342779da15", "518d26b50905"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a947768bc0ed" @@ -1442,7 +1446,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { "sender": ["65342779da15", "518d26b50905", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a947768bc0ed", @@ -1456,7 +1460,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { "sender": ["65342779da15", "518d26b50905", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "a947768bc0ed", @@ -1471,7 +1475,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:by-slug", "observation": { "sender": ["65342779da15", "825e80908bc2"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "c7584e82c72f" @@ -1484,7 +1488,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { "sender": ["65342779da15", "825e80908bc2", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "c7584e82c72f", @@ -1498,7 +1502,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { "sender": ["65342779da15", "825e80908bc2", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "c7584e82c72f", 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 382c62b21c7..689ccb0bb61 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "ab5511fa34181dc9de590df2fe57a0d061a261e7b204a6ef830c03bc53923d65", "platform": "darwin", @@ -104,10 +104,6 @@ } } }, - "11ab96fde6c9": { - "name": "gitlab.workItemByPath#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}" - }, "2113a0cc7708": { "by-number": { "number": 12, @@ -196,6 +192,11 @@ "repoId": "repo-1" } }, + "293712bf6b06": { + "name": "github.workItemByOwnerRepo#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}", + "sent": 2 + }, "2c926252e701": { "name": "gitlab.workItemByPath#1", "args": [ @@ -340,6 +341,11 @@ } } }, + "62d4d4b68fd1": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 4 + }, "65342779da15": { "name": "github.workItem#1", "args": [ @@ -648,10 +654,6 @@ } } }, - "a45a7dd68af6": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "a7f4472cdb70": { "status": "fulfilled", "startedAt": 0, @@ -674,10 +676,6 @@ "isRpcDeliveryUnknown": true } }, - "aaf80675fc49": { - "name": "github.workItem#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -741,6 +739,11 @@ } } }, + "d296887f365c": { + "name": "gitlab.workItemByPath#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}", + "sent": 3 + }, "dfcabc236ad7": { "name": "gitlab.workItemByPath#1", "args": [ @@ -781,10 +784,6 @@ } } }, - "e1f537905a65": { - "name": "github.workItemByOwnerRepo#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" - }, "e29333b1693f": { "name": "gitlab.workItemByPath#1", "args": [ @@ -844,6 +843,11 @@ "$rpc": "null" } }, + "ee9b55f8dafb": { + "name": "github.workItem#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}", + "sent": 1 + }, "f0766555428a": { "name": "gitlab.workItemByPath#1", "args": [ @@ -975,7 +979,7 @@ "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { "sender": ["65342779da15"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "731507dd2e23" }, @@ -987,7 +991,7 @@ "id": "tw-paste-lookup-resolved.prelude:by-slug", "observation": { "sender": ["65342779da15", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23" @@ -1000,7 +1004,7 @@ "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1014,7 +1018,7 @@ "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1029,7 +1033,7 @@ "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "5f9434462f8a"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1043,7 +1047,7 @@ "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "5f9434462f8a", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1058,7 +1062,7 @@ "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "f215cf4a0ca3"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1072,7 +1076,7 @@ "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "f215cf4a0ca3", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1087,7 +1091,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "22a0e7139433"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1101,7 +1105,7 @@ "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "22a0e7139433", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1116,7 +1120,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "0c4bd9fe5448"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1130,7 +1134,7 @@ "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "0c4bd9fe5448", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1145,7 +1149,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "dfcabc236ad7"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1159,7 +1163,7 @@ "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "dfcabc236ad7", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1174,7 +1178,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "4ef10450d3fc"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1188,7 +1192,7 @@ "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "4ef10450d3fc", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1203,7 +1207,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "f0766555428a"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1217,7 +1221,7 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "f0766555428a", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1232,7 +1236,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "737574c61e8d"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1246,7 +1250,7 @@ "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "737574c61e8d", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1261,7 +1265,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "2c926252e701"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1275,7 +1279,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "2c926252e701", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1290,7 +1294,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "a346acfeb887"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -1304,7 +1308,7 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "a346acfeb887", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", 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 8aae36a92dc..c2ae3b3c09e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7c16d49ffeace5c689309316da6e4638fa1b70d3ef52a78d27db934ae56cf64d", "platform": "darwin", @@ -118,10 +118,6 @@ } ] }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "147d0c98fb46": { "error": "", "loading": false, @@ -178,10 +174,6 @@ } } }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "25b0ac550549": { "name": "githubProjectPartialFailures", "value": [], @@ -300,14 +292,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "42d96f8f44ae": { "name": "githubProjectError", "value": "", @@ -386,6 +370,11 @@ } ] }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ @@ -503,9 +492,10 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 }, "7868f9428edf": { "status": "rejected", @@ -517,6 +507,11 @@ "isRpcDeliveryUnknown": false } }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 + }, "7f38226869db": { "name": "github.project.listAccessible#1", "args": [ @@ -569,6 +564,11 @@ "value": false, "sent": 4 }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "a666b0248aa0": { "name": "github.project.listAccessible#1", "args": [ @@ -791,6 +791,11 @@ "isRpcDeliveryUnknown": false } }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "db45b655b685": { "status": "rejected", "startedAt": 0, @@ -1002,7 +1007,7 @@ "id": "tk-project-board-load.normal:projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -1015,7 +1020,7 @@ "id": "tk-project-board-load.normal:views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1035,7 +1040,7 @@ "id": "tk-project-board-load.normal:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1069,11 +1074,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1115,7 +1120,7 @@ "id": "tk-project-board-load.result-absent:projects-settled", "observation": { "sender": ["2eca8c3879a2"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "db45b655b685" @@ -1128,7 +1133,7 @@ "id": "tk-project-board-load.result-absent:views-settled", "observation": { "sender": ["2eca8c3879a2", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "db45b655b685", @@ -1142,7 +1147,7 @@ "id": "tk-project-board-load.result-absent:table-settled", "observation": { "sender": ["2eca8c3879a2", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "db45b655b685", @@ -1174,11 +1179,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1218,7 +1223,7 @@ "id": "tk-project-board-load.result-null:projects-settled", "observation": { "sender": ["a666b0248aa0"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "7868f9428edf" @@ -1231,7 +1236,7 @@ "id": "tk-project-board-load.result-null:views-settled", "observation": { "sender": ["a666b0248aa0", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "7868f9428edf", @@ -1245,7 +1250,7 @@ "id": "tk-project-board-load.result-null:table-settled", "observation": { "sender": ["a666b0248aa0", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "7868f9428edf", @@ -1277,11 +1282,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1321,7 +1326,7 @@ "id": "tk-project-board-load.inner-ok-missing:projects-settled", "observation": { "sender": ["b51d4b287393"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081" @@ -1334,7 +1339,7 @@ "id": "tk-project-board-load.inner-ok-missing:views-settled", "observation": { "sender": ["b51d4b287393", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1348,7 +1353,7 @@ "id": "tk-project-board-load.inner-ok-missing:table-settled", "observation": { "sender": ["b51d4b287393", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1380,11 +1385,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1424,7 +1429,7 @@ "id": "tk-project-board-load.inner-false-string-error:projects-settled", "observation": { "sender": ["bcc305ff49f6"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081" @@ -1437,7 +1442,7 @@ "id": "tk-project-board-load.inner-false-string-error:views-settled", "observation": { "sender": ["bcc305ff49f6", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1451,7 +1456,7 @@ "id": "tk-project-board-load.inner-false-string-error:table-settled", "observation": { "sender": ["bcc305ff49f6", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1483,11 +1488,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1527,7 +1532,7 @@ "id": "tk-project-board-load.inner-false-object-error:projects-settled", "observation": { "sender": ["19ca94a33e1c"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "d05b2d417b9c" @@ -1540,7 +1545,7 @@ "id": "tk-project-board-load.inner-false-object-error:views-settled", "observation": { "sender": ["19ca94a33e1c", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "d05b2d417b9c", @@ -1554,7 +1559,7 @@ "id": "tk-project-board-load.inner-false-object-error:table-settled", "observation": { "sender": ["19ca94a33e1c", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "d05b2d417b9c", @@ -1586,11 +1591,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1630,7 +1635,7 @@ "id": "tk-project-board-load.outer-refused:projects-settled", "observation": { "sender": ["6daf8fc5b2c1"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "32a7c0ae7918" @@ -1643,7 +1648,7 @@ "id": "tk-project-board-load.outer-refused:views-settled", "observation": { "sender": ["6daf8fc5b2c1", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "32a7c0ae7918", @@ -1657,7 +1662,7 @@ "id": "tk-project-board-load.outer-refused:table-settled", "observation": { "sender": ["6daf8fc5b2c1", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "32a7c0ae7918", @@ -1689,11 +1694,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1733,7 +1738,7 @@ "id": "tk-project-board-load.outer-refused-no-message:projects-settled", "observation": { "sender": ["7f38226869db"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081" @@ -1746,7 +1751,7 @@ "id": "tk-project-board-load.outer-refused-no-message:views-settled", "observation": { "sender": ["7f38226869db", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1760,7 +1765,7 @@ "id": "tk-project-board-load.outer-refused-no-message:table-settled", "observation": { "sender": ["7f38226869db", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "f3b516f62081", @@ -1792,11 +1797,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1836,7 +1841,7 @@ "id": "tk-project-board-load.method-not-found:projects-settled", "observation": { "sender": ["66aa748f97f8"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "b948e8307e81" @@ -1849,7 +1854,7 @@ "id": "tk-project-board-load.method-not-found:views-settled", "observation": { "sender": ["66aa748f97f8", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "b948e8307e81", @@ -1863,7 +1868,7 @@ "id": "tk-project-board-load.method-not-found:table-settled", "observation": { "sender": ["66aa748f97f8", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "b948e8307e81", @@ -1895,11 +1900,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1939,7 +1944,7 @@ "id": "tk-project-board-load.transport-rejection:projects-settled", "observation": { "sender": ["f7d4b459305a"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "a947768bc0ed" @@ -1952,7 +1957,7 @@ "id": "tk-project-board-load.transport-rejection:views-settled", "observation": { "sender": ["f7d4b459305a", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "a947768bc0ed", @@ -1966,7 +1971,7 @@ "id": "tk-project-board-load.transport-rejection:table-settled", "observation": { "sender": ["f7d4b459305a", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "a947768bc0ed", @@ -1998,11 +2003,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -2042,7 +2047,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:projects-settled", "observation": { "sender": ["f6aecc8c253c"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "c7584e82c72f" @@ -2055,7 +2060,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:views-settled", "observation": { "sender": ["f6aecc8c253c", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "c7584e82c72f", @@ -2069,7 +2074,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:table-settled", "observation": { "sender": ["f6aecc8c253c", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "c7584e82c72f", @@ -2101,11 +2106,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", 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 05e9028a01b..e98eac11eb3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "c5cc9a11a75a86780195be7d1055d1064c8aba78bb8e4e8bbdf033409c2b2aa5", "platform": "darwin", @@ -101,10 +101,6 @@ } } }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "1264f49f4abd": { "name": "github.project.listViews#1", "args": [ @@ -148,10 +144,6 @@ "value": "", "sent": 5 }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "205bbb499ca8": { "name": "github.project.listViews#1", "args": [ @@ -313,14 +305,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "42d96f8f44ae": { "name": "githubProjectError", "value": "", @@ -369,6 +353,11 @@ } } }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ @@ -454,9 +443,10 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 }, "7868f9428edf": { "status": "rejected", @@ -468,6 +458,11 @@ "isRpcDeliveryUnknown": false } }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 + }, "80ceb7c32703": { "name": "githubProjects", "value": [ @@ -520,6 +515,11 @@ "value": false, "sent": 4 }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -715,6 +715,11 @@ "isRpcDeliveryUnknown": false } }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "db45b655b685": { "status": "rejected", "startedAt": 0, @@ -975,7 +980,7 @@ "id": "tk-project-board-load.prelude:projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -988,7 +993,7 @@ "id": "tk-project-board-load.normal:views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1008,7 +1013,7 @@ "id": "tk-project-board-load.normal:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1042,11 +1047,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1088,7 +1093,7 @@ "id": "tk-project-board-load.result-absent:views-settled", "observation": { "sender": ["43d044e8caea", "1264f49f4abd"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1102,7 +1107,7 @@ "id": "tk-project-board-load.result-absent:table-settled", "observation": { "sender": ["43d044e8caea", "1264f49f4abd", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1135,11 +1140,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1180,7 +1185,7 @@ "id": "tk-project-board-load.result-null:views-settled", "observation": { "sender": ["43d044e8caea", "561d216cf2d4"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1194,7 +1199,7 @@ "id": "tk-project-board-load.result-null:table-settled", "observation": { "sender": ["43d044e8caea", "561d216cf2d4", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1227,11 +1232,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1272,7 +1277,7 @@ "id": "tk-project-board-load.inner-ok-missing:views-settled", "observation": { "sender": ["43d044e8caea", "205bbb499ca8"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1286,7 +1291,7 @@ "id": "tk-project-board-load.inner-ok-missing:table-settled", "observation": { "sender": ["43d044e8caea", "205bbb499ca8", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1319,11 +1324,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1364,7 +1369,7 @@ "id": "tk-project-board-load.inner-false-string-error:views-settled", "observation": { "sender": ["43d044e8caea", "e9ddd99252b5"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1378,7 +1383,7 @@ "id": "tk-project-board-load.inner-false-string-error:table-settled", "observation": { "sender": ["43d044e8caea", "e9ddd99252b5", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1411,11 +1416,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1456,7 +1461,7 @@ "id": "tk-project-board-load.inner-false-object-error:views-settled", "observation": { "sender": ["43d044e8caea", "ced28adf12ed"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1470,7 +1475,7 @@ "id": "tk-project-board-load.inner-false-object-error:table-settled", "observation": { "sender": ["43d044e8caea", "ced28adf12ed", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1503,11 +1508,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1548,7 +1553,7 @@ "id": "tk-project-board-load.outer-refused:views-settled", "observation": { "sender": ["43d044e8caea", "dcc04fab4332"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1562,7 +1567,7 @@ "id": "tk-project-board-load.outer-refused:table-settled", "observation": { "sender": ["43d044e8caea", "dcc04fab4332", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1595,11 +1600,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1640,7 +1645,7 @@ "id": "tk-project-board-load.outer-refused-no-message:views-settled", "observation": { "sender": ["43d044e8caea", "ee22a8355cbd"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1654,7 +1659,7 @@ "id": "tk-project-board-load.outer-refused-no-message:table-settled", "observation": { "sender": ["43d044e8caea", "ee22a8355cbd", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1687,11 +1692,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1732,7 +1737,7 @@ "id": "tk-project-board-load.method-not-found:views-settled", "observation": { "sender": ["43d044e8caea", "25ded056137c"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1746,7 +1751,7 @@ "id": "tk-project-board-load.method-not-found:table-settled", "observation": { "sender": ["43d044e8caea", "25ded056137c", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1779,11 +1784,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1824,7 +1829,7 @@ "id": "tk-project-board-load.transport-rejection:views-settled", "observation": { "sender": ["43d044e8caea", "b43273a232f5"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1838,7 +1843,7 @@ "id": "tk-project-board-load.transport-rejection:table-settled", "observation": { "sender": ["43d044e8caea", "b43273a232f5", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1871,11 +1876,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1916,7 +1921,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:views-settled", "observation": { "sender": ["43d044e8caea", "8387244cd4f1"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1930,7 +1935,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:table-settled", "observation": { "sender": ["43d044e8caea", "8387244cd4f1", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1963,11 +1968,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", 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 5943b2b133c..6d53d2e652a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7f748bb55df907bba315ea6899c585837d97fa0ea9b312330cf35d95bda87bd1", "platform": "darwin", @@ -101,10 +101,6 @@ } } }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "156064e9724d": { "name": "githubProjectPasteBusy", "value": true, @@ -195,10 +191,6 @@ "value": "Connection closed", "sent": 5 }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "1fc005bf68ed": { "name": "githubProjectError", "value": "transport failure", @@ -433,14 +425,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "42d96f8f44ae": { "name": "githubProjectError", "value": "", @@ -489,6 +473,11 @@ } } }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ @@ -581,15 +570,21 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" - }, "708b116bab85": { "name": "githubProjectError", "value": "", "sent": 5 }, + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 + }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 + }, "7e7f0e10b49d": { "name": "github.project.listViews#2", "args": [ @@ -793,6 +788,11 @@ } ] }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "a7afd7be9a23": { "name": "github.project.listViews#2", "args": [ @@ -1063,6 +1063,11 @@ } } }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "ddc3cac1e389": { "name": "githubProjectTable", "value": { @@ -1235,7 +1240,7 @@ "id": "tk-project-board-load.prelude:projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -1248,7 +1253,7 @@ "id": "tk-project-board-load.prelude:views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1268,7 +1273,7 @@ "id": "tk-project-board-load.prelude:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1302,11 +1307,11 @@ "b4d6fa5183e5" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1352,11 +1357,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1405,11 +1410,11 @@ "98e1a8b95833" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1455,11 +1460,11 @@ "29b4d604921f" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1505,11 +1510,11 @@ "2d0e42961cec" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1555,11 +1560,11 @@ "a0be195a8974" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1605,11 +1610,11 @@ "a7afd7be9a23" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1655,11 +1660,11 @@ "29aec6d77c95" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1705,11 +1710,11 @@ "2a1601ad9099" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1755,11 +1760,11 @@ "17fdd112d0a7" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1805,11 +1810,11 @@ "d068dd4c0d9d" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1855,11 +1860,11 @@ "7e7f0e10b49d" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", 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 4fbd93b1a97..69e7cd3b23c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "4ab4e4022cafd69cbc7af45ddf72d2dad3e8215df363511651d7faea014147d3", "platform": "darwin", @@ -106,10 +106,6 @@ "value": "", "sent": 4 }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "12ff41170090": { "error": "", "loading": false, @@ -158,10 +154,6 @@ "value": "", "sent": 5 }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "25b0ac550549": { "name": "githubProjectPartialFailures", "value": [], @@ -272,10 +264,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, "3c881dadbe0c": { "name": "github.project.resolveRef#1", "args": [ @@ -313,10 +301,6 @@ } } }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "42d96f8f44ae": { "name": "githubProjectError", "value": "", @@ -435,6 +419,11 @@ } } }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47aa692d7dc9": { "error": "", "loading": false, @@ -678,9 +667,10 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 }, "7a234b9d2ae3": { "error": "", @@ -720,6 +710,11 @@ } ] }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 + }, "80ceb7c32703": { "name": "githubProjects", "value": [ @@ -863,6 +858,11 @@ "value": "inner refused", "sent": 4 }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "b05e50b1dc22": { "name": "githubProjectPasteBusy", "value": false, @@ -1055,6 +1055,11 @@ } ] }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "ddc3cac1e389": { "name": "githubProjectTable", "value": { @@ -1227,7 +1232,7 @@ "id": "tk-project-board-load.prelude:projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -1240,7 +1245,7 @@ "id": "tk-project-board-load.prelude:views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1260,7 +1265,7 @@ "id": "tk-project-board-load.prelude:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1287,7 +1292,7 @@ "id": "tk-project-board-load.prelude:cleanup", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "d73cf56a3eac"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1327,11 +1332,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1373,7 +1378,7 @@ "id": "tk-project-board-load.result-absent:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "eaeb8885f03d"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1406,7 +1411,7 @@ "id": "tk-project-board-load.result-null:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "6836d7fdd70a"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1439,7 +1444,7 @@ "id": "tk-project-board-load.inner-ok-missing:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "8b44cdbe429d"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1472,7 +1477,7 @@ "id": "tk-project-board-load.inner-false-string-error:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "43f95b0c95f8"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1505,7 +1510,7 @@ "id": "tk-project-board-load.inner-false-object-error:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "3c881dadbe0c"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1538,7 +1543,7 @@ "id": "tk-project-board-load.outer-refused:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "5e0f133660e0"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1571,7 +1576,7 @@ "id": "tk-project-board-load.outer-refused-no-message:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "46bb2cca7c25"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1604,7 +1609,7 @@ "id": "tk-project-board-load.method-not-found:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "bce0d93ba4fe"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1637,7 +1642,7 @@ "id": "tk-project-board-load.transport-rejection:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "500bc939e9f2"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1670,7 +1675,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:paste-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9", "34c532a971ec"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d", "6f73e51854d5"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3", "d81c02b76226"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", 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 e7feedbef8a..0b1a78143b1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "cf64dd43e708ff953ba2cbb2a70378aa8ab5d13ede157af7ba0967d913755b82", "platform": "darwin", @@ -101,10 +101,6 @@ } } }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "156064e9724d": { "name": "githubProjectPasteBusy", "value": true, @@ -115,10 +111,6 @@ "value": "", "sent": 5 }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "218236a33a96": { "name": "githubProjectError", "value": "Unknown method", @@ -252,10 +244,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, "3d9ba9ad6aee": { "name": "github.project.viewTable#1", "args": [ @@ -294,10 +282,6 @@ } } }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "4244a1d83025": { "name": "githubProjectError", "value": "transport failure", @@ -351,6 +335,11 @@ } } }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ @@ -510,9 +499,10 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 }, "74f8ab788f2e": { "error": "", @@ -577,6 +567,11 @@ } } }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 + }, "80ceb7c32703": { "name": "githubProjects", "value": [ @@ -713,6 +708,11 @@ } } }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "b05e50b1dc22": { "name": "githubProjectPasteBusy", "value": false, @@ -898,6 +898,11 @@ "value": "Cannot read properties of null (reading 'ok')", "sent": 3 }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "ddc3cac1e389": { "name": "githubProjectTable", "value": { @@ -1157,7 +1162,7 @@ "id": "tk-project-board-load.prelude:projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -1170,7 +1175,7 @@ "id": "tk-project-board-load.prelude:views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1190,7 +1195,7 @@ "id": "tk-project-board-load.prelude:cleanup", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "c39cbca62adf"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1216,7 +1221,7 @@ "id": "tk-project-board-load.normal:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1250,11 +1255,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1296,7 +1301,7 @@ "id": "tk-project-board-load.result-absent:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "91394970ae38"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1329,11 +1334,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1374,7 +1379,7 @@ "id": "tk-project-board-load.result-null:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "fab4d5ff43b8"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1407,11 +1412,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1452,7 +1457,7 @@ "id": "tk-project-board-load.inner-ok-missing:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "a09d190ee4fa"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1485,11 +1490,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1530,7 +1535,7 @@ "id": "tk-project-board-load.inner-false-string-error:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "b7072d162a52"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1563,11 +1568,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1608,7 +1613,7 @@ "id": "tk-project-board-load.inner-false-object-error:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "5af49cca31cf"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1641,11 +1646,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1686,7 +1691,7 @@ "id": "tk-project-board-load.outer-refused:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "ebfd636aa78d"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1719,11 +1724,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1764,7 +1769,7 @@ "id": "tk-project-board-load.outer-refused-no-message:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "767cf5b5be25"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1797,11 +1802,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1842,7 +1847,7 @@ "id": "tk-project-board-load.method-not-found:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "3d9ba9ad6aee"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1875,11 +1880,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1920,7 +1925,7 @@ "id": "tk-project-board-load.transport-rejection:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "95d6f2bce698"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -1953,11 +1958,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", @@ -1998,7 +2003,7 @@ "id": "tk-project-board-load.transport-rejection-no-message:table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "482cebdadf7a"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -2031,11 +2036,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", 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 dff13c46bef..84833e4255c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "667a06cf9ff8129eee64327566012448abe1fe31f58c0d9b882b13e74db5a877", "platform": "darwin", @@ -174,10 +174,6 @@ } } }, - "6530ef4dbd15": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "687b5a42463c": { "name": "github.repoSlug#1", "args": [ @@ -313,6 +309,11 @@ } } }, + "81640993e00b": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "8a9b6f06911d": { "cache": { "repo-1": { @@ -566,7 +567,7 @@ "id": "tk-project-repo-slugs.normal:mounted", "observation": { "sender": ["5330ec46fa7e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -578,7 +579,7 @@ "id": "tk-project-repo-slugs.result-absent:mounted", "observation": { "sender": ["e933226b8b59"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -590,7 +591,7 @@ "id": "tk-project-repo-slugs.result-null:mounted", "observation": { "sender": ["6eacf14fe40e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -602,7 +603,7 @@ "id": "tk-project-repo-slugs.inner-ok-missing:mounted", "observation": { "sender": ["ffd83cd58474"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -614,7 +615,7 @@ "id": "tk-project-repo-slugs.inner-false-string-error:mounted", "observation": { "sender": ["a6d3481c0eea"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -626,7 +627,7 @@ "id": "tk-project-repo-slugs.inner-false-object-error:mounted", "observation": { "sender": ["00546d51a1b2"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -638,7 +639,7 @@ "id": "tk-project-repo-slugs.outer-refused:mounted", "observation": { "sender": ["dc2fd792171e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -650,7 +651,7 @@ "id": "tk-project-repo-slugs.outer-refused-no-message:mounted", "observation": { "sender": ["436770d5f8a8"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -662,7 +663,7 @@ "id": "tk-project-repo-slugs.method-not-found:mounted", "observation": { "sender": ["96fe094f2ea3"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -674,7 +675,7 @@ "id": "tk-project-repo-slugs.transport-rejection:mounted", "observation": { "sender": ["7de03629a406"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -686,7 +687,7 @@ "id": "tk-project-repo-slugs.transport-rejection-no-message:mounted", "observation": { "sender": ["687b5a42463c"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, 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 ffea0704882..5c470b1265b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "9fd4756c2224f3ecbc9ffc82e1ee11615a9e057e600bc56ccaf5c5e2c0e411d8", "platform": "darwin", @@ -155,10 +155,6 @@ "itemType": "ISSUE" } }, - "0ce8caa0cc82": { - "name": "github.project.addIssueCommentBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" - }, "0d3abde11044": { "name": "projectRowDetailError", "value": "Connection closed", @@ -235,10 +231,6 @@ "itemType": "ISSUE" } }, - "16637fd57f65": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" - }, "3d626a8131b4": { "name": "projectRowDetail", "value": { @@ -629,6 +621,11 @@ } } }, + "5f2604a47fa1": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}", + "sent": 3 + }, "6732613ec527": { "detail": { "assignees": ["octocat"], @@ -1073,10 +1070,6 @@ "itemType": "ISSUE" } }, - "9340829c00ac": { - "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}" - }, "9698ad92ebc9": { "name": "projectCommentDraft", "value": "", @@ -1293,6 +1286,11 @@ }, "sent": 2 }, + "c2bda70f8353": { + "name": "github.project.updateIssueBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, "ca900f5bc97e": { "name": "github.project.addIssueCommentBySlug#1", "args": [ @@ -1333,6 +1331,11 @@ } } }, + "cfc8331c4dc0": { + "name": "github.project.addIssueCommentBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}", + "sent": 2 + }, "d1bb762720d5": { "name": "projectMutating", "value": true, @@ -1702,7 +1705,7 @@ "id": "tk-project-row-comments-issue.prelude:update-item-settled", "observation": { "sender": ["a3c003fbf907"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1715,7 +1718,7 @@ "id": "tk-project-row-comments-issue.prelude:cleanup", "observation": { "sender": ["a3c003fbf907", "a919a9358d84"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1737,7 +1740,7 @@ "id": "tk-project-row-comments-issue.normal:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1760,7 +1763,7 @@ "id": "tk-project-row-comments-issue.normal:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1790,7 +1793,7 @@ "id": "tk-project-row-comments-issue.result-absent:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "ffca882b5ac7"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1812,7 +1815,7 @@ "id": "tk-project-row-comments-issue.result-absent:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "ffca882b5ac7", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1841,7 +1844,7 @@ "id": "tk-project-row-comments-issue.result-null:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "904c7fb9b8eb"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1863,7 +1866,7 @@ "id": "tk-project-row-comments-issue.result-null:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "904c7fb9b8eb", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1892,7 +1895,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "99357cb70ec5"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1914,7 +1917,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "99357cb70ec5", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1943,7 +1946,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "5da29084db11"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1965,7 +1968,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "5da29084db11", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1994,7 +1997,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "ca900f5bc97e"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2016,7 +2019,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "ca900f5bc97e", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2045,7 +2048,7 @@ "id": "tk-project-row-comments-issue.outer-refused:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "9c53830b0865"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2067,7 +2070,7 @@ "id": "tk-project-row-comments-issue.outer-refused:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "9c53830b0865", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2096,7 +2099,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "585e4c6b6fac"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2118,7 +2121,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "585e4c6b6fac", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2147,7 +2150,7 @@ "id": "tk-project-row-comments-issue.method-not-found:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "7b395b440507"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2169,7 +2172,7 @@ "id": "tk-project-row-comments-issue.method-not-found:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "7b395b440507", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2198,7 +2201,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "d2f88225ac22"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2220,7 +2223,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "d2f88225ac22", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2249,7 +2252,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "4f1e1382f08b"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2271,7 +2274,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "4f1e1382f08b", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", 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 4ec5e36a2ff..33c06606687 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "cfe0284f502001a57a9d18585222e5ae4b254d9bac32e0bb4080ee9363e8e019", "platform": "darwin", @@ -89,10 +89,6 @@ "itemType": "ISSUE" } }, - "0ce8caa0cc82": { - "name": "github.project.addIssueCommentBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" - }, "0ef970845cc7": { "name": "projectRowDetailError", "value": "outer refused", @@ -185,10 +181,6 @@ "value": "Unknown method", "sent": 1 }, - "16637fd57f65": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" - }, "1c06180a60fe": { "detail": { "assignees": ["octocat"], @@ -803,6 +795,11 @@ } } }, + "5f2604a47fa1": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}", + "sent": 3 + }, "68f35933f895": { "name": "github.project.updateIssueBySlug#1", "args": [ @@ -1220,10 +1217,6 @@ "itemType": "ISSUE" } }, - "9340829c00ac": { - "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}" - }, "9698ad92ebc9": { "name": "projectCommentDraft", "value": "", @@ -1562,6 +1555,16 @@ } } }, + "c2bda70f8353": { + "name": "github.project.updateIssueBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, + "cfc8331c4dc0": { + "name": "github.project.addIssueCommentBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}", + "sent": 2 + }, "d1bb762720d5": { "name": "projectMutating", "value": true, @@ -2203,7 +2206,7 @@ "id": "tk-project-row-comments-issue.normal:update-item-settled", "observation": { "sender": ["a3c003fbf907"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2216,7 +2219,7 @@ "id": "tk-project-row-comments-issue.normal:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2239,7 +2242,7 @@ "id": "tk-project-row-comments-issue.normal:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2269,7 +2272,7 @@ "id": "tk-project-row-comments-issue.result-absent:update-item-settled", "observation": { "sender": ["5ed215cd45d5"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2282,7 +2285,7 @@ "id": "tk-project-row-comments-issue.result-absent:add-comment-settled", "observation": { "sender": ["5ed215cd45d5", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2304,7 +2307,7 @@ "id": "tk-project-row-comments-issue.result-absent:update-comment-settled", "observation": { "sender": ["5ed215cd45d5", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2333,7 +2336,7 @@ "id": "tk-project-row-comments-issue.result-null:update-item-settled", "observation": { "sender": ["4d1ed5381bf1"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2346,7 +2349,7 @@ "id": "tk-project-row-comments-issue.result-null:add-comment-settled", "observation": { "sender": ["4d1ed5381bf1", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2368,7 +2371,7 @@ "id": "tk-project-row-comments-issue.result-null:update-comment-settled", "observation": { "sender": ["4d1ed5381bf1", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2397,7 +2400,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:update-item-settled", "observation": { "sender": ["a36c9349bb7d"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2410,7 +2413,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:add-comment-settled", "observation": { "sender": ["a36c9349bb7d", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2433,7 +2436,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:update-comment-settled", "observation": { "sender": ["a36c9349bb7d", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2463,7 +2466,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:update-item-settled", "observation": { "sender": ["a2f2a0705e06"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2476,7 +2479,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:add-comment-settled", "observation": { "sender": ["a2f2a0705e06", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2498,7 +2501,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:update-comment-settled", "observation": { "sender": ["a2f2a0705e06", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2527,7 +2530,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:update-item-settled", "observation": { "sender": ["5e7147dcfd07"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2540,7 +2543,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:add-comment-settled", "observation": { "sender": ["5e7147dcfd07", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2562,7 +2565,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:update-comment-settled", "observation": { "sender": ["5e7147dcfd07", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2591,7 +2594,7 @@ "id": "tk-project-row-comments-issue.outer-refused:update-item-settled", "observation": { "sender": ["bc53376d51ab"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2604,7 +2607,7 @@ "id": "tk-project-row-comments-issue.outer-refused:add-comment-settled", "observation": { "sender": ["bc53376d51ab", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2626,7 +2629,7 @@ "id": "tk-project-row-comments-issue.outer-refused:update-comment-settled", "observation": { "sender": ["bc53376d51ab", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2655,7 +2658,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:update-item-settled", "observation": { "sender": ["13824903a84a"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2668,7 +2671,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:add-comment-settled", "observation": { "sender": ["13824903a84a", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2690,7 +2693,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:update-comment-settled", "observation": { "sender": ["13824903a84a", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2719,7 +2722,7 @@ "id": "tk-project-row-comments-issue.method-not-found:update-item-settled", "observation": { "sender": ["68f35933f895"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2732,7 +2735,7 @@ "id": "tk-project-row-comments-issue.method-not-found:add-comment-settled", "observation": { "sender": ["68f35933f895", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2754,7 +2757,7 @@ "id": "tk-project-row-comments-issue.method-not-found:update-comment-settled", "observation": { "sender": ["68f35933f895", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2783,7 +2786,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:update-item-settled", "observation": { "sender": ["b0b8eaa35966"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2796,7 +2799,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:add-comment-settled", "observation": { "sender": ["b0b8eaa35966", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2818,7 +2821,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:update-comment-settled", "observation": { "sender": ["b0b8eaa35966", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2847,7 +2850,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:update-item-settled", "observation": { "sender": ["140fa75b0a29"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -2860,7 +2863,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:add-comment-settled", "observation": { "sender": ["140fa75b0a29", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2882,7 +2885,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:update-comment-settled", "observation": { "sender": ["140fa75b0a29", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", 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 73aecb0bfd7..149a39e6799 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "b21a3b3f568bf6caecca62272f4b7882062027684c70878fd5f883622ff2a9ea", "platform": "darwin", @@ -90,19 +90,11 @@ "itemType": "ISSUE" } }, - "0ce8caa0cc82": { - "name": "github.project.addIssueCommentBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" - }, "0f3697bbd111": { "name": "projectMutating", "value": true, "sent": 2 }, - "16637fd57f65": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" - }, "1b30471b40d2": { "name": "projectRowDetailError", "value": "inner refused", @@ -373,6 +365,11 @@ "itemType": "ISSUE" } }, + "5f2604a47fa1": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}", + "sent": 3 + }, "6f4f9198e5ff": { "name": "projectMutating", "value": false, @@ -763,10 +760,6 @@ "itemType": "ISSUE" } }, - "9340829c00ac": { - "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}" - }, "9698ad92ebc9": { "name": "projectCommentDraft", "value": "", @@ -1058,6 +1051,16 @@ } } }, + "c2bda70f8353": { + "name": "github.project.updateIssueBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, + "cfc8331c4dc0": { + "name": "github.project.addIssueCommentBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}", + "sent": 2 + }, "d1bb762720d5": { "name": "projectMutating", "value": true, @@ -1563,7 +1566,7 @@ "id": "tk-project-row-comments-issue.prelude:update-item-settled", "observation": { "sender": ["a3c003fbf907"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1576,7 +1579,7 @@ "id": "tk-project-row-comments-issue.prelude:add-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1599,7 +1602,7 @@ "id": "tk-project-row-comments-issue.prelude:cleanup", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "a3404a53c58b"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1627,7 +1630,7 @@ "id": "tk-project-row-comments-issue.normal:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1657,7 +1660,7 @@ "id": "tk-project-row-comments-issue.result-absent:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "f5296aa6ec28"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1685,7 +1688,7 @@ "id": "tk-project-row-comments-issue.result-null:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "e6decc8d528e"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1713,7 +1716,7 @@ "id": "tk-project-row-comments-issue.inner-ok-missing:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "8745b196b032"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1743,7 +1746,7 @@ "id": "tk-project-row-comments-issue.inner-false-string-error:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "a1ef0cf29aaa"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1771,7 +1774,7 @@ "id": "tk-project-row-comments-issue.inner-false-object-error:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "b867fbc25fae"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1799,7 +1802,7 @@ "id": "tk-project-row-comments-issue.outer-refused:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "4ef3d6c081cc"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1827,7 +1830,7 @@ "id": "tk-project-row-comments-issue.outer-refused-no-message:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "435d84b75259"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1855,7 +1858,7 @@ "id": "tk-project-row-comments-issue.method-not-found:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "7683733d824b"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1883,7 +1886,7 @@ "id": "tk-project-row-comments-issue.transport-rejection:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "ee5cfc07be28"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -1911,7 +1914,7 @@ "id": "tk-project-row-comments-issue.transport-rejection-no-message:update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "249f844e5fd7"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", 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 4df40d73491..f115f0ea31a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "e286edb942c338fd844ce8437ac03c872838228515ce833cfd310332354da725", "platform": "darwin", @@ -623,10 +623,6 @@ } } }, - "80e87e83df29": { - "name": "github.project.updatePullRequestBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}" - }, "8237b3a567bf": { "name": "projectRowDetailError", "value": "transport failure", @@ -1029,6 +1025,11 @@ } } }, + "e1d50458f904": { + "name": "github.project.updatePullRequestBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1180,7 +1181,7 @@ "id": "tk-project-row-comments-pr.normal:update-item-settled", "observation": { "sender": ["0fa9db1cc7c0"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1193,7 +1194,7 @@ "id": "tk-project-row-comments-pr.result-absent:update-item-settled", "observation": { "sender": ["4aa5b1f0a2a8"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1206,7 +1207,7 @@ "id": "tk-project-row-comments-pr.result-null:update-item-settled", "observation": { "sender": ["4cc5ce7ffda2"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1219,7 +1220,7 @@ "id": "tk-project-row-comments-pr.inner-ok-missing:update-item-settled", "observation": { "sender": ["bc87b4b6ed64"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1232,7 +1233,7 @@ "id": "tk-project-row-comments-pr.inner-false-string-error:update-item-settled", "observation": { "sender": ["7b9270764362"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1245,7 +1246,7 @@ "id": "tk-project-row-comments-pr.inner-false-object-error:update-item-settled", "observation": { "sender": ["e07ed1ef7289"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1258,7 +1259,7 @@ "id": "tk-project-row-comments-pr.outer-refused:update-item-settled", "observation": { "sender": ["97094e0009d2"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1271,7 +1272,7 @@ "id": "tk-project-row-comments-pr.outer-refused-no-message:update-item-settled", "observation": { "sender": ["a348d735e20f"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1284,7 +1285,7 @@ "id": "tk-project-row-comments-pr.method-not-found:update-item-settled", "observation": { "sender": ["71fe9d50f237"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1297,7 +1298,7 @@ "id": "tk-project-row-comments-pr.transport-rejection:update-item-settled", "observation": { "sender": ["cff93cd7b1a7"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -1310,7 +1311,7 @@ "id": "tk-project-row-comments-pr.transport-rejection-no-message:update-item-settled", "observation": { "sender": ["983756056f4c"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" 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 3f105d715da..ebfc4c42670 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "52b2cc222d9819121ba99f8f603bc76abe420d731e5853116e802a4db59e2d3e", "platform": "darwin", @@ -315,6 +315,11 @@ "value": "transport failure", "sent": 1 }, + "8441059da147": { + "name": "github.project.workItemDetailsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}", + "sent": 1 + }, "85f150b2df81": { "name": "projectRowDetailError", "value": "", @@ -595,10 +600,6 @@ } } }, - "e27d1a246a98": { - "name": "github.project.workItemDetailsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -664,7 +665,7 @@ "id": "tk-project-row-detail.normal:mounted", "observation": { "sender": ["d1f95449bb04"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -693,7 +694,7 @@ "id": "tk-project-row-detail.result-absent:mounted", "observation": { "sender": ["629ca94bfed3"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -722,7 +723,7 @@ "id": "tk-project-row-detail.result-null:mounted", "observation": { "sender": ["697a14434811"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -751,7 +752,7 @@ "id": "tk-project-row-detail.inner-ok-missing:mounted", "observation": { "sender": ["fe08a0925a32"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -780,7 +781,7 @@ "id": "tk-project-row-detail.inner-false-string-error:mounted", "observation": { "sender": ["b5e6f1e3f366"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -809,7 +810,7 @@ "id": "tk-project-row-detail.inner-false-object-error:mounted", "observation": { "sender": ["ab01782b6daf"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -838,7 +839,7 @@ "id": "tk-project-row-detail.outer-refused:mounted", "observation": { "sender": ["e11a0d677154"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -867,7 +868,7 @@ "id": "tk-project-row-detail.outer-refused-no-message:mounted", "observation": { "sender": ["9cbb2a5c7ddc"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -896,7 +897,7 @@ "id": "tk-project-row-detail.method-not-found:mounted", "observation": { "sender": ["46f64f0cee44"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -925,7 +926,7 @@ "id": "tk-project-row-detail.transport-rejection:mounted", "observation": { "sender": ["2a5f104cc20a"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, @@ -954,7 +955,7 @@ "id": "tk-project-row-detail.transport-rejection-no-message:mounted", "observation": { "sender": ["5a7bbfc7f8af"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, 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 e468a2a795b..f9e45e58cdc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "0fe8c60631cf04d33b34371155f5f80c8426b07b1cbec2fabc5d6d619f2633b8", "platform": "darwin", @@ -553,6 +553,11 @@ }, "sent": 1 }, + "3602df6361c4": { + "name": "github.project.updateItemField#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}", + "sent": 1 + }, "3acce5b08290": { "error": "inner refused", "mutating": false, @@ -652,6 +657,11 @@ } } }, + "3dd9611f0850": { + "name": "github.project.clearItemField#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}", + "sent": 2 + }, "424e9a1ae7ed": { "error": "", "mutating": false, @@ -797,10 +807,6 @@ } } }, - "4bb4179487e7": { - "name": "github.project.updateIssueTypeBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" - }, "5278d0def4dc": { "name": "projectRowDetailError", "value": "Cannot read properties of null (reading 'ok')", @@ -1106,6 +1112,11 @@ } } }, + "60c2e1f55655": { + "name": "github.project.updateIssueTypeBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}", + "sent": 3 + }, "6294f739146e": { "error": "Failed to update project field", "mutating": false, @@ -1703,10 +1714,6 @@ }, "sent": 3 }, - "895e7a6b9398": { - "name": "github.project.updateItemField#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" - }, "8a1d11133692": { "name": "projectRowDetailError", "value": "", @@ -2677,10 +2684,6 @@ } } }, - "dca464e5bca3": { - "name": "github.project.clearItemField#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}" - }, "de29905548eb": { "error": "", "mutating": false, @@ -2969,7 +2972,7 @@ "id": "tk-project-row-fields.prelude:set-field-settled", "observation": { "sender": ["d19660e0ba85"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2982,7 +2985,7 @@ "id": "tk-project-row-fields.prelude:cleanup", "observation": { "sender": ["d19660e0ba85", "759540f23b63"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3004,7 +3007,7 @@ "id": "tk-project-row-fields.normal:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3028,7 +3031,7 @@ "id": "tk-project-row-fields.normal:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3057,7 +3060,7 @@ "id": "tk-project-row-fields.result-absent:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "f71162f2f6ab"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3079,7 +3082,7 @@ "id": "tk-project-row-fields.result-absent:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "f71162f2f6ab", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3106,7 +3109,7 @@ "id": "tk-project-row-fields.result-null:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "c729dad3a433"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3128,7 +3131,7 @@ "id": "tk-project-row-fields.result-null:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "c729dad3a433", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3155,7 +3158,7 @@ "id": "tk-project-row-fields.inner-ok-missing:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "d7d194b8694f"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3179,7 +3182,7 @@ "id": "tk-project-row-fields.inner-ok-missing:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "d7d194b8694f", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3208,7 +3211,7 @@ "id": "tk-project-row-fields.inner-false-string-error:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "e14ea8ebe65d"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3230,7 +3233,7 @@ "id": "tk-project-row-fields.inner-false-string-error:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "e14ea8ebe65d", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3257,7 +3260,7 @@ "id": "tk-project-row-fields.inner-false-object-error:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "17d68b64c995"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3279,7 +3282,7 @@ "id": "tk-project-row-fields.inner-false-object-error:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "17d68b64c995", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3306,7 +3309,7 @@ "id": "tk-project-row-fields.outer-refused:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "7aa05181323a"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3328,7 +3331,7 @@ "id": "tk-project-row-fields.outer-refused:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "7aa05181323a", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3355,7 +3358,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "31dba010fada"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3377,7 +3380,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "31dba010fada", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3404,7 +3407,7 @@ "id": "tk-project-row-fields.method-not-found:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "cdb1e0ec3294"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3426,7 +3429,7 @@ "id": "tk-project-row-fields.method-not-found:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "cdb1e0ec3294", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3453,7 +3456,7 @@ "id": "tk-project-row-fields.transport-rejection:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "1c2300267a50"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3475,7 +3478,7 @@ "id": "tk-project-row-fields.transport-rejection:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "1c2300267a50", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3502,7 +3505,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "7da1fa6feb18"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3524,7 +3527,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "7da1fa6feb18", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", 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 e61f389201b..0254059fd25 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "8ad021e101d8ef17ed47472a5fbfbeaebb2690a4040c89a0e9ee133e69e4fecd", "platform": "darwin", @@ -257,6 +257,16 @@ }, "sent": 1 }, + "3602df6361c4": { + "name": "github.project.updateItemField#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}", + "sent": 1 + }, + "3dd9611f0850": { + "name": "github.project.clearItemField#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}", + "sent": 2 + }, "410042a82391": { "name": "github.project.updateIssueTypeBySlug#1", "args": [ @@ -499,10 +509,6 @@ } } }, - "4bb4179487e7": { - "name": "github.project.updateIssueTypeBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" - }, "4f9f6d6a111c": { "error": "Unknown method", "mutating": false, @@ -844,6 +850,11 @@ } } }, + "60c2e1f55655": { + "name": "github.project.updateIssueTypeBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}", + "sent": 3 + }, "63352559e8ae": { "name": "github.project.updateIssueTypeBySlug#1", "args": [ @@ -1251,10 +1262,6 @@ }, "sent": 3 }, - "895e7a6b9398": { - "name": "github.project.updateItemField#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" - }, "9138850642c5": { "name": "projectRowDetailError", "value": "outer refused", @@ -1540,10 +1547,6 @@ "value": "Unknown method", "sent": 3 }, - "dca464e5bca3": { - "name": "github.project.clearItemField#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}" - }, "de29905548eb": { "error": "", "mutating": false, @@ -1867,7 +1870,7 @@ "id": "tk-project-row-fields.prelude:set-field-settled", "observation": { "sender": ["d19660e0ba85"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -1880,7 +1883,7 @@ "id": "tk-project-row-fields.prelude:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -1904,7 +1907,7 @@ "id": "tk-project-row-fields.prelude:cleanup", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "ad112425d74f"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -1932,7 +1935,7 @@ "id": "tk-project-row-fields.normal:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -1961,7 +1964,7 @@ "id": "tk-project-row-fields.result-absent:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "63352559e8ae"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -1989,7 +1992,7 @@ "id": "tk-project-row-fields.result-null:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "6a1a1849278e"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2017,7 +2020,7 @@ "id": "tk-project-row-fields.inner-ok-missing:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "410042a82391"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2046,7 +2049,7 @@ "id": "tk-project-row-fields.inner-false-string-error:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "1cac1b5d748f"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2074,7 +2077,7 @@ "id": "tk-project-row-fields.inner-false-object-error:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "f692cb94d5e5"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2102,7 +2105,7 @@ "id": "tk-project-row-fields.outer-refused:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "e44d4ff4fd2c"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2130,7 +2133,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "f4712f15d814"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2158,7 +2161,7 @@ "id": "tk-project-row-fields.method-not-found:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "aa3d456d5986"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2186,7 +2189,7 @@ "id": "tk-project-row-fields.transport-rejection:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "4134e8c61d66"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2214,7 +2217,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "41896a7a7f79"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", 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 129852a83b5..cc0f14f5879 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "4d33ce12f3f35bea8a98fec2c0378e73caf7fbfb93085545e890b082a392cd60", "platform": "darwin", @@ -488,6 +488,11 @@ }, "sent": 1 }, + "3602df6361c4": { + "name": "github.project.updateItemField#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}", + "sent": 1 + }, "3c5f3f30f302": { "name": "github.project.updateItemField#1", "args": [ @@ -531,6 +536,11 @@ } } }, + "3dd9611f0850": { + "name": "github.project.clearItemField#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}", + "sent": 2 + }, "424e9a1ae7ed": { "error": "", "mutating": false, @@ -759,10 +769,6 @@ } } }, - "4bb4179487e7": { - "name": "github.project.updateIssueTypeBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" - }, "4c09a53c8150": { "name": "projectRowDetailError", "value": "Cannot read properties of undefined (reading 'ok')", @@ -1150,6 +1156,11 @@ } } }, + "60c2e1f55655": { + "name": "github.project.updateIssueTypeBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}", + "sent": 3 + }, "643348172820": { "name": "github.project.updateItemField#1", "args": [ @@ -1594,10 +1605,6 @@ "value": "", "sent": 1 }, - "895e7a6b9398": { - "name": "github.project.updateItemField#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" - }, "8a3a29ab638a": { "name": "projectRowDetailError", "value": "Failed to update project field", @@ -2183,10 +2190,6 @@ } } }, - "dca464e5bca3": { - "name": "github.project.clearItemField#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}" - }, "de29905548eb": { "error": "", "mutating": false, @@ -2425,7 +2428,7 @@ "id": "tk-project-row-fields.normal:set-field-settled", "observation": { "sender": ["d19660e0ba85"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2438,7 +2441,7 @@ "id": "tk-project-row-fields.normal:clear-field-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2462,7 +2465,7 @@ "id": "tk-project-row-fields.normal:issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2491,7 +2494,7 @@ "id": "tk-project-row-fields.result-absent:set-field-settled", "observation": { "sender": ["9911f70b3a99"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2504,7 +2507,7 @@ "id": "tk-project-row-fields.result-absent:clear-field-settled", "observation": { "sender": ["9911f70b3a99", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2527,7 +2530,7 @@ "id": "tk-project-row-fields.result-absent:issue-type-settled", "observation": { "sender": ["9911f70b3a99", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2555,7 +2558,7 @@ "id": "tk-project-row-fields.result-null:set-field-settled", "observation": { "sender": ["69e0f833e426"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2568,7 +2571,7 @@ "id": "tk-project-row-fields.result-null:clear-field-settled", "observation": { "sender": ["69e0f833e426", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2591,7 +2594,7 @@ "id": "tk-project-row-fields.result-null:issue-type-settled", "observation": { "sender": ["69e0f833e426", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2619,7 +2622,7 @@ "id": "tk-project-row-fields.inner-ok-missing:set-field-settled", "observation": { "sender": ["d0b8df2afede"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2632,7 +2635,7 @@ "id": "tk-project-row-fields.inner-ok-missing:clear-field-settled", "observation": { "sender": ["d0b8df2afede", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2656,7 +2659,7 @@ "id": "tk-project-row-fields.inner-ok-missing:issue-type-settled", "observation": { "sender": ["d0b8df2afede", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2685,7 +2688,7 @@ "id": "tk-project-row-fields.inner-false-string-error:set-field-settled", "observation": { "sender": ["5547ae3de041"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2698,7 +2701,7 @@ "id": "tk-project-row-fields.inner-false-string-error:clear-field-settled", "observation": { "sender": ["5547ae3de041", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2721,7 +2724,7 @@ "id": "tk-project-row-fields.inner-false-string-error:issue-type-settled", "observation": { "sender": ["5547ae3de041", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2749,7 +2752,7 @@ "id": "tk-project-row-fields.inner-false-object-error:set-field-settled", "observation": { "sender": ["3c5f3f30f302"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2762,7 +2765,7 @@ "id": "tk-project-row-fields.inner-false-object-error:clear-field-settled", "observation": { "sender": ["3c5f3f30f302", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2785,7 +2788,7 @@ "id": "tk-project-row-fields.inner-false-object-error:issue-type-settled", "observation": { "sender": ["3c5f3f30f302", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2813,7 +2816,7 @@ "id": "tk-project-row-fields.outer-refused:set-field-settled", "observation": { "sender": ["d3d3d8af379c"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2826,7 +2829,7 @@ "id": "tk-project-row-fields.outer-refused:clear-field-settled", "observation": { "sender": ["d3d3d8af379c", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2849,7 +2852,7 @@ "id": "tk-project-row-fields.outer-refused:issue-type-settled", "observation": { "sender": ["d3d3d8af379c", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2877,7 +2880,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:set-field-settled", "observation": { "sender": ["c06c70888019"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2890,7 +2893,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:clear-field-settled", "observation": { "sender": ["c06c70888019", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2913,7 +2916,7 @@ "id": "tk-project-row-fields.outer-refused-no-message:issue-type-settled", "observation": { "sender": ["c06c70888019", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2941,7 +2944,7 @@ "id": "tk-project-row-fields.method-not-found:set-field-settled", "observation": { "sender": ["e60a1b71cf8a"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -2954,7 +2957,7 @@ "id": "tk-project-row-fields.method-not-found:clear-field-settled", "observation": { "sender": ["e60a1b71cf8a", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2977,7 +2980,7 @@ "id": "tk-project-row-fields.method-not-found:issue-type-settled", "observation": { "sender": ["e60a1b71cf8a", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3005,7 +3008,7 @@ "id": "tk-project-row-fields.transport-rejection:set-field-settled", "observation": { "sender": ["a0bf6b16f0f6"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -3018,7 +3021,7 @@ "id": "tk-project-row-fields.transport-rejection:clear-field-settled", "observation": { "sender": ["a0bf6b16f0f6", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3041,7 +3044,7 @@ "id": "tk-project-row-fields.transport-rejection:issue-type-settled", "observation": { "sender": ["a0bf6b16f0f6", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3069,7 +3072,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:set-field-settled", "observation": { "sender": ["643348172820"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -3082,7 +3085,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:clear-field-settled", "observation": { "sender": ["643348172820", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3105,7 +3108,7 @@ "id": "tk-project-row-fields.transport-rejection-no-message:issue-type-settled", "observation": { "sender": ["643348172820", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", 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 a9bfa40b388..25a7990f4ed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "0cec6c7e6322135772132c15af4f5cec7ddc667ba3476ad871ed92625293036f", "platform": "darwin", @@ -107,10 +107,6 @@ } } }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "06eb2ab576a1": { "name": "projectRowDetailError", "value": "[object Object]", @@ -329,10 +325,6 @@ "value": "", "sent": 4 }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -345,10 +337,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "359e5860abb8": { "name": "github.mergePR#1", "args": [ @@ -552,10 +540,6 @@ "itemType": "PULL_REQUEST" } }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "523d69c87953": { "name": "github.addPRReviewComment#1", "args": [ @@ -636,6 +620,11 @@ "itemType": "PULL_REQUEST" } }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "674a78fb6dfb": { "name": "projectRowDetailError", "value": "transport failure", @@ -809,6 +798,11 @@ } } }, + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, "97a226118637": { "contents": { "src/index.ts": { @@ -992,9 +986,10 @@ } } }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 }, "c22bc4151f3c": { "name": "actionItem", @@ -1240,6 +1235,11 @@ } } }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -1297,6 +1297,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -1349,7 +1354,7 @@ "id": "tk-project-row-files-merge.prelude:expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1368,7 +1373,7 @@ "id": "tk-project-row-files-merge.prelude:cleanup", "observation": { "sender": ["cb3d443fc9be", "7583b52fa89a"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1392,7 +1397,7 @@ "id": "tk-project-row-files-merge.normal:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1417,7 +1422,7 @@ "id": "tk-project-row-files-merge.normal:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1448,7 +1453,7 @@ "id": "tk-project-row-files-merge.normal:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1491,11 +1496,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1537,7 +1542,7 @@ "id": "tk-project-row-files-merge.result-absent:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "1cd93d62cbf1"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1561,7 +1566,7 @@ "id": "tk-project-row-files-merge.result-absent:merge-settled", "observation": { "sender": ["cb3d443fc9be", "1cd93d62cbf1", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1591,7 +1596,7 @@ "id": "tk-project-row-files-merge.result-absent:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "1cd93d62cbf1", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1633,11 +1638,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1678,7 +1683,7 @@ "id": "tk-project-row-files-merge.result-null:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "523d69c87953"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1702,7 +1707,7 @@ "id": "tk-project-row-files-merge.result-null:merge-settled", "observation": { "sender": ["cb3d443fc9be", "523d69c87953", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1732,7 +1737,7 @@ "id": "tk-project-row-files-merge.result-null:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "523d69c87953", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1774,11 +1779,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1819,7 +1824,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "8aa4781c9f62"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1844,7 +1849,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["cb3d443fc9be", "8aa4781c9f62", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1875,7 +1880,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "8aa4781c9f62", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1918,11 +1923,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1964,7 +1969,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "dc1b4dd901b7"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1988,7 +1993,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["cb3d443fc9be", "dc1b4dd901b7", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2018,7 +2023,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "dc1b4dd901b7", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2060,11 +2065,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2105,7 +2110,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "3c2e1eec734d"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2129,7 +2134,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["cb3d443fc9be", "3c2e1eec734d", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2159,7 +2164,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "3c2e1eec734d", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2201,11 +2206,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2246,7 +2251,7 @@ "id": "tk-project-row-files-merge.outer-refused:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "983f236234aa"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2270,7 +2275,7 @@ "id": "tk-project-row-files-merge.outer-refused:merge-settled", "observation": { "sender": ["cb3d443fc9be", "983f236234aa", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2300,7 +2305,7 @@ "id": "tk-project-row-files-merge.outer-refused:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "983f236234aa", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2342,11 +2347,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2387,7 +2392,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "e8f51e29a7d9"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2411,7 +2416,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["cb3d443fc9be", "e8f51e29a7d9", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2441,7 +2446,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "e8f51e29a7d9", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2483,11 +2488,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2528,7 +2533,7 @@ "id": "tk-project-row-files-merge.method-not-found:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "b54d23ad8fa5"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2552,7 +2557,7 @@ "id": "tk-project-row-files-merge.method-not-found:merge-settled", "observation": { "sender": ["cb3d443fc9be", "b54d23ad8fa5", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2582,7 +2587,7 @@ "id": "tk-project-row-files-merge.method-not-found:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "b54d23ad8fa5", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2624,11 +2629,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2669,7 +2674,7 @@ "id": "tk-project-row-files-merge.transport-rejection:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "06d1e3906e8b"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2693,7 +2698,7 @@ "id": "tk-project-row-files-merge.transport-rejection:merge-settled", "observation": { "sender": ["cb3d443fc9be", "06d1e3906e8b", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2723,7 +2728,7 @@ "id": "tk-project-row-files-merge.transport-rejection:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "06d1e3906e8b", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2765,11 +2770,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2810,7 +2815,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "acad7a1dbf23"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2834,7 +2839,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["cb3d443fc9be", "acad7a1dbf23", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2864,7 +2869,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "acad7a1dbf23", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2906,11 +2911,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 6161abb40f0..9cc4c2f6b7a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "754d93c552864ab693a5fd2776ba917a1c0f155f6bf8fb2873eafe9b97fd02b0", "platform": "darwin", @@ -66,10 +66,6 @@ }, "sent": 1 }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "0735075cd3b2": { "contents": { "src/index.ts": { @@ -268,10 +264,6 @@ "value": "", "sent": 4 }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -284,10 +276,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "2bcb83a8835c": { "name": "github.mergePR#1", "args": [ @@ -563,10 +551,6 @@ "value": "[object Object]", "sent": 3 }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "5251c5a46aa5": { "name": "github.mergePR#1", "args": [ @@ -640,6 +624,11 @@ "itemType": "PULL_REQUEST" } }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "64fa126f1c85": { "name": "github.mergePR#1", "args": [ @@ -809,6 +798,11 @@ "value": "outer refused", "sent": 3 }, + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, "965aaa80409b": { "name": "github.mergePR#1", "args": [ @@ -939,9 +933,10 @@ "itemType": "PULL_REQUEST" } }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 }, "c22bc4151f3c": { "name": "actionItem", @@ -1153,6 +1148,11 @@ "value": "", "sent": 3 }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -1176,6 +1176,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -1264,7 +1269,7 @@ "id": "tk-project-row-files-merge.prelude:expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1283,7 +1288,7 @@ "id": "tk-project-row-files-merge.prelude:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1308,7 +1313,7 @@ "id": "tk-project-row-files-merge.prelude:cleanup", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "a2f430756265"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1338,7 +1343,7 @@ "id": "tk-project-row-files-merge.normal:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1369,7 +1374,7 @@ "id": "tk-project-row-files-merge.normal:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1412,11 +1417,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1458,7 +1463,7 @@ "id": "tk-project-row-files-merge.result-absent:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "401d2f559a6e"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1488,7 +1493,7 @@ "id": "tk-project-row-files-merge.result-absent:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "401d2f559a6e", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1530,11 +1535,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1575,7 +1580,7 @@ "id": "tk-project-row-files-merge.result-null:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "64fa126f1c85"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1605,7 +1610,7 @@ "id": "tk-project-row-files-merge.result-null:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "64fa126f1c85", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1647,11 +1652,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1692,7 +1697,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "79d7b1bb5ebd"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1723,7 +1728,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "79d7b1bb5ebd", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1766,11 +1771,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1812,7 +1817,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "0f72c1f3a2e3"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1842,7 +1847,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "0f72c1f3a2e3", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1884,11 +1889,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1929,7 +1934,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "2bf9a40128ec"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1959,7 +1964,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "2bf9a40128ec", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2001,11 +2006,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2046,7 +2051,7 @@ "id": "tk-project-row-files-merge.outer-refused:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "f547e50c8503"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2076,7 +2081,7 @@ "id": "tk-project-row-files-merge.outer-refused:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "f547e50c8503", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2118,11 +2123,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2163,7 +2168,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "1676273b982e"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2193,7 +2198,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "1676273b982e", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2235,11 +2240,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2280,7 +2285,7 @@ "id": "tk-project-row-files-merge.method-not-found:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "5251c5a46aa5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2310,7 +2315,7 @@ "id": "tk-project-row-files-merge.method-not-found:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "5251c5a46aa5", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2352,11 +2357,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2397,7 +2402,7 @@ "id": "tk-project-row-files-merge.transport-rejection:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "2bcb83a8835c"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2427,7 +2432,7 @@ "id": "tk-project-row-files-merge.transport-rejection:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "2bcb83a8835c", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2469,11 +2474,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2514,7 +2519,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "965aaa80409b"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2544,7 +2549,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "965aaa80409b", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2586,11 +2591,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 cd8bc688a66..1da974aff2c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "d8838276fb40a8ccb2dbedc269b970f85c1c800466b9813ac06f409ea44ffaff", "platform": "darwin", @@ -78,10 +78,6 @@ }, "sent": 1 }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -299,10 +295,6 @@ } } }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -359,10 +351,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "359e5860abb8": { "name": "github.mergePR#1", "args": [ @@ -650,10 +638,6 @@ "itemType": "PULL_REQUEST" } }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "5467502970f1": { "name": "mutatingStatus", "value": false, @@ -796,6 +780,11 @@ } } }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "688948cddf49": { "contents": {}, "error": "", @@ -1000,6 +989,11 @@ "value": "", "sent": 2 }, + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, "9d1e84daf78b": { "contents": {}, "error": "", @@ -1135,6 +1129,11 @@ "itemType": "PULL_REQUEST" } }, + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 + }, "be2bf5177055": { "contents": { "src/index.ts": { @@ -1161,10 +1160,6 @@ "itemType": "PULL_REQUEST" } }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" - }, "c22bc4151f3c": { "name": "actionItem", "value": { @@ -1338,6 +1333,11 @@ "value": "", "sent": 3 }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -1351,6 +1351,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -1452,7 +1457,7 @@ "id": "tk-project-row-files-merge.normal:expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1471,7 +1476,7 @@ "id": "tk-project-row-files-merge.normal:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1496,7 +1501,7 @@ "id": "tk-project-row-files-merge.normal:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1527,7 +1532,7 @@ "id": "tk-project-row-files-merge.normal:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1570,11 +1575,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1616,7 +1621,7 @@ "id": "tk-project-row-files-merge.result-absent:expand-settled", "observation": { "sender": ["5823f67a2c34"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1635,7 +1640,7 @@ "id": "tk-project-row-files-merge.result-absent:file-comment-settled", "observation": { "sender": ["5823f67a2c34", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1660,7 +1665,7 @@ "id": "tk-project-row-files-merge.result-absent:merge-settled", "observation": { "sender": ["5823f67a2c34", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1691,7 +1696,7 @@ "id": "tk-project-row-files-merge.result-absent:issue-state-settled", "observation": { "sender": ["5823f67a2c34", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1734,11 +1739,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1780,7 +1785,7 @@ "id": "tk-project-row-files-merge.result-null:expand-settled", "observation": { "sender": ["ae5da2018f44"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1799,7 +1804,7 @@ "id": "tk-project-row-files-merge.result-null:file-comment-settled", "observation": { "sender": ["ae5da2018f44", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1824,7 +1829,7 @@ "id": "tk-project-row-files-merge.result-null:merge-settled", "observation": { "sender": ["ae5da2018f44", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1855,7 +1860,7 @@ "id": "tk-project-row-files-merge.result-null:issue-state-settled", "observation": { "sender": ["ae5da2018f44", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1898,11 +1903,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1944,7 +1949,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:expand-settled", "observation": { "sender": ["23256a6371e3"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1963,7 +1968,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:file-comment-settled", "observation": { "sender": ["23256a6371e3", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1988,7 +1993,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:merge-settled", "observation": { "sender": ["23256a6371e3", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2019,7 +2024,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:issue-state-settled", "observation": { "sender": ["23256a6371e3", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2062,11 +2067,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2108,7 +2113,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:expand-settled", "observation": { "sender": ["3626bec692e0"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2127,7 +2132,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:file-comment-settled", "observation": { "sender": ["3626bec692e0", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2152,7 +2157,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:merge-settled", "observation": { "sender": ["3626bec692e0", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2183,7 +2188,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:issue-state-settled", "observation": { "sender": ["3626bec692e0", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2226,11 +2231,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2272,7 +2277,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:expand-settled", "observation": { "sender": ["80d305d2ab51"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2291,7 +2296,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:file-comment-settled", "observation": { "sender": ["80d305d2ab51", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2316,7 +2321,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:merge-settled", "observation": { "sender": ["80d305d2ab51", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2347,7 +2352,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:issue-state-settled", "observation": { "sender": ["80d305d2ab51", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2390,11 +2395,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2436,7 +2441,7 @@ "id": "tk-project-row-files-merge.outer-refused:expand-settled", "observation": { "sender": ["59f6eb4c6450"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2455,7 +2460,7 @@ "id": "tk-project-row-files-merge.outer-refused:file-comment-settled", "observation": { "sender": ["59f6eb4c6450", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2480,7 +2485,7 @@ "id": "tk-project-row-files-merge.outer-refused:merge-settled", "observation": { "sender": ["59f6eb4c6450", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2511,7 +2516,7 @@ "id": "tk-project-row-files-merge.outer-refused:issue-state-settled", "observation": { "sender": ["59f6eb4c6450", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2554,11 +2559,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2600,7 +2605,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:expand-settled", "observation": { "sender": ["5da70090d778"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2619,7 +2624,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:file-comment-settled", "observation": { "sender": ["5da70090d778", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2644,7 +2649,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:merge-settled", "observation": { "sender": ["5da70090d778", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2675,7 +2680,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:issue-state-settled", "observation": { "sender": ["5da70090d778", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2718,11 +2723,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2764,7 +2769,7 @@ "id": "tk-project-row-files-merge.method-not-found:expand-settled", "observation": { "sender": ["45c48181b1af"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2783,7 +2788,7 @@ "id": "tk-project-row-files-merge.method-not-found:file-comment-settled", "observation": { "sender": ["45c48181b1af", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2808,7 +2813,7 @@ "id": "tk-project-row-files-merge.method-not-found:merge-settled", "observation": { "sender": ["45c48181b1af", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2839,7 +2844,7 @@ "id": "tk-project-row-files-merge.method-not-found:issue-state-settled", "observation": { "sender": ["45c48181b1af", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2882,11 +2887,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2928,7 +2933,7 @@ "id": "tk-project-row-files-merge.transport-rejection:expand-settled", "observation": { "sender": ["27fdd77feed1"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -2947,7 +2952,7 @@ "id": "tk-project-row-files-merge.transport-rejection:file-comment-settled", "observation": { "sender": ["27fdd77feed1", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2972,7 +2977,7 @@ "id": "tk-project-row-files-merge.transport-rejection:merge-settled", "observation": { "sender": ["27fdd77feed1", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -3003,7 +3008,7 @@ "id": "tk-project-row-files-merge.transport-rejection:issue-state-settled", "observation": { "sender": ["27fdd77feed1", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -3046,11 +3051,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -3092,7 +3097,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:expand-settled", "observation": { "sender": ["14db520a3d36"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -3111,7 +3116,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:file-comment-settled", "observation": { "sender": ["14db520a3d36", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -3136,7 +3141,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:merge-settled", "observation": { "sender": ["14db520a3d36", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -3167,7 +3172,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:issue-state-settled", "observation": { "sender": ["14db520a3d36", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -3210,11 +3215,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 c08d0193e51..8f9c44ffb33 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "785dad70a0e382a6cc2b030cec2077a1e816e84ba60b082f60c9a96ec56b47c5", "platform": "darwin", @@ -66,10 +66,6 @@ }, "sent": 1 }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -170,10 +166,6 @@ "value": "", "sent": 4 }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -186,10 +178,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "359e5860abb8": { "name": "github.mergePR#1", "args": [ @@ -342,10 +330,6 @@ "value": "Connection closed", "sent": 4 }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "5467502970f1": { "name": "mutatingStatus", "value": false, @@ -390,6 +374,11 @@ "value": "Unknown method", "sent": 4 }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "6ee59968996b": { "name": "github.updateIssue#1", "args": [ @@ -506,6 +495,11 @@ "value": "Cannot read properties of undefined (reading 'ok')", "sent": 4 }, + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, "96e6092073a3": { "name": "github.updateIssue#1", "args": [ @@ -656,9 +650,10 @@ } } }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 }, "c22bc4151f3c": { "name": "actionItem", @@ -871,6 +866,11 @@ "value": "", "sent": 3 }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -931,6 +931,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -1010,7 +1015,7 @@ "id": "tk-project-row-files-merge.prelude:expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1029,7 +1034,7 @@ "id": "tk-project-row-files-merge.prelude:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1054,7 +1059,7 @@ "id": "tk-project-row-files-merge.prelude:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1085,7 +1090,7 @@ "id": "tk-project-row-files-merge.prelude:cleanup", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "a4f2970b0b80"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1121,7 +1126,7 @@ "id": "tk-project-row-files-merge.normal:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1164,11 +1169,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1210,7 +1215,7 @@ "id": "tk-project-row-files-merge.result-absent:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "574e384ff29d"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1253,11 +1258,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1299,7 +1304,7 @@ "id": "tk-project-row-files-merge.result-null:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "f6b15e92940a"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1342,11 +1347,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1388,7 +1393,7 @@ "id": "tk-project-row-files-merge.inner-ok-missing:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "e8927dceb988"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1431,11 +1436,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1477,7 +1482,7 @@ "id": "tk-project-row-files-merge.inner-false-string-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "8aa55e932cab"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1520,11 +1525,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1566,7 +1571,7 @@ "id": "tk-project-row-files-merge.inner-false-object-error:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "96e6092073a3"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1609,11 +1614,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1655,7 +1660,7 @@ "id": "tk-project-row-files-merge.outer-refused:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "6ee59968996b"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1698,11 +1703,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1744,7 +1749,7 @@ "id": "tk-project-row-files-merge.outer-refused-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "19ba7281c684"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1787,11 +1792,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1833,7 +1838,7 @@ "id": "tk-project-row-files-merge.method-not-found:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "c49440be2f91"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1876,11 +1881,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1922,7 +1927,7 @@ "id": "tk-project-row-files-merge.transport-rejection:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "a9cdda0486ea"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1965,11 +1970,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -2011,7 +2016,7 @@ "id": "tk-project-row-files-merge.transport-rejection-no-message:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "b1aaaf697117"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -2054,11 +2059,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 4704e43daef..676781c38ec 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "8d31245ea6869184de082cf9ef3af8d6e0806ab48b6f159e5076f786745c4413", "platform": "darwin", @@ -66,10 +66,6 @@ }, "sent": 1 }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -197,10 +193,6 @@ "value": "", "sent": 4 }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -213,10 +205,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "2dcc3610aa80": { "name": "error", "value": "Cannot read properties of null (reading 'ok')", @@ -464,10 +452,6 @@ "itemType": "PULL_REQUEST" } }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "4dc5f6b0c764": { "name": "github.updatePRState#1", "args": [ @@ -548,6 +532,11 @@ } } }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "6a8206273d9c": { "name": "github.updatePRState#1", "args": [ @@ -692,6 +681,11 @@ } } }, + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, "9a4ad458f55c": { "name": "github.updatePRState#1", "args": [ @@ -730,9 +724,10 @@ } } }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 }, "c0bf26bdb1b1": { "name": "github.updatePRState#1", @@ -950,6 +945,11 @@ "value": "", "sent": 3 }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -968,6 +968,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -1015,7 +1020,7 @@ "id": "tk-project-row-files-merge.prelude:expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -1034,7 +1039,7 @@ "id": "tk-project-row-files-merge.prelude:file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1059,7 +1064,7 @@ "id": "tk-project-row-files-merge.prelude:merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1090,7 +1095,7 @@ "id": "tk-project-row-files-merge.prelude:issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -1133,11 +1138,11 @@ "3825598c02f7" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1186,11 +1191,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1239,11 +1244,11 @@ "8e0d841c499e" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1292,11 +1297,11 @@ "6203f9c80a3e" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1345,11 +1350,11 @@ "718ebcf73f73" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1398,11 +1403,11 @@ "9a4ad458f55c" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1451,11 +1456,11 @@ "34718313adf4" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1504,11 +1509,11 @@ "6a8206273d9c" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1557,11 +1562,11 @@ "c0bf26bdb1b1" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1610,11 +1615,11 @@ "4dc5f6b0c764" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1663,11 +1668,11 @@ "100ba187880b" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", @@ -1716,11 +1721,11 @@ "13526638734c" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 66c47084934..5564aec2d8b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "2303fc902e5a6cf6a43db58ef2938538a7b770d1509cc22a9811f4c83051aea1", "platform": "darwin", @@ -23,6 +23,11 @@ "value": false, "sent": 3 }, + "0a6de48086bd": { + "name": "github.project.listLabelsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, "193e408831dc": { "name": "projectAssignableUsersError", "value": "Unknown method", @@ -409,10 +414,6 @@ } } }, - "84c3fb2868bd": { - "name": "github.project.listIssueTypesBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "898de671c728": { "name": "github.project.listAssignableUsersBySlug#1", "args": [ @@ -532,9 +533,10 @@ } } }, - "9a8068985c26": { - "name": "github.project.listAssignableUsersBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" + "97d5d1b2d5a0": { + "name": "github.project.listIssueTypesBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 }, "9b3320d7d510": { "labels": ["bug"], @@ -549,6 +551,11 @@ "users": [], "usersError": "" }, + "a6bac73470d9": { + "name": "github.project.listAssignableUsersBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}", + "sent": 3 + }, "a9da2a563a6c": { "name": "projectLabelsLoading", "value": false, @@ -628,10 +635,6 @@ "value": "", "sent": 3 }, - "da36de1a5410": { - "name": "github.project.listLabelsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "de5d251f09d0": { "name": "projectAssignableUsersError", "value": "Failed to load assignees", @@ -767,7 +770,7 @@ "id": "tk-project-row-metadata-load.normal:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -795,7 +798,7 @@ "id": "tk-project-row-metadata-load.result-absent:mounted", "observation": { "sender": ["3f5d8df504de", "45c516d96c02", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -823,7 +826,7 @@ "id": "tk-project-row-metadata-load.result-null:mounted", "observation": { "sender": ["3f5d8df504de", "4300c57e763f", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -851,7 +854,7 @@ "id": "tk-project-row-metadata-load.inner-ok-missing:mounted", "observation": { "sender": ["3f5d8df504de", "f86f58d75c2a", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -879,7 +882,7 @@ "id": "tk-project-row-metadata-load.inner-false-string-error:mounted", "observation": { "sender": ["3f5d8df504de", "739399640862", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -907,7 +910,7 @@ "id": "tk-project-row-metadata-load.inner-false-object-error:mounted", "observation": { "sender": ["3f5d8df504de", "422b5b394c6c", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -935,7 +938,7 @@ "id": "tk-project-row-metadata-load.outer-refused:mounted", "observation": { "sender": ["3f5d8df504de", "56df060067e5", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -963,7 +966,7 @@ "id": "tk-project-row-metadata-load.outer-refused-no-message:mounted", "observation": { "sender": ["3f5d8df504de", "7e5e42c91283", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -991,7 +994,7 @@ "id": "tk-project-row-metadata-load.method-not-found:mounted", "observation": { "sender": ["3f5d8df504de", "76f67a78fe7b", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1019,7 +1022,7 @@ "id": "tk-project-row-metadata-load.transport-rejection:mounted", "observation": { "sender": ["3f5d8df504de", "898de671c728", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1047,7 +1050,7 @@ "id": "tk-project-row-metadata-load.transport-rejection-no-message:mounted", "observation": { "sender": ["3f5d8df504de", "9264d848b194", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, 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 ae420231413..b0d8d4697de 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "8b75854487566ca6da98d391b6822c81c99e61011fc094458ae038905c1c9287", "platform": "darwin", @@ -23,6 +23,11 @@ "value": false, "sent": 3 }, + "0a6de48086bd": { + "name": "github.project.listLabelsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, "10e6f0eb4832": { "name": "github.project.listIssueTypesBySlug#1", "args": [ @@ -419,10 +424,6 @@ "value": "Cannot read properties of null (reading 'ok')", "sent": 3 }, - "84c3fb2868bd": { - "name": "github.project.listIssueTypesBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "85dea4f0ec45": { "labels": ["bug"], "labelsError": "", @@ -495,9 +496,10 @@ } } }, - "9a8068985c26": { - "name": "github.project.listAssignableUsersBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" + "97d5d1b2d5a0": { + "name": "github.project.listIssueTypesBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 }, "a5fc70778afe": { "labels": ["bug"], @@ -512,6 +514,11 @@ ], "usersError": "" }, + "a6bac73470d9": { + "name": "github.project.listAssignableUsersBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}", + "sent": 3 + }, "a9da2a563a6c": { "name": "projectLabelsLoading", "value": false, @@ -614,10 +621,6 @@ ], "usersError": "" }, - "da36de1a5410": { - "name": "github.project.listLabelsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "e3813cfb8529": { "name": "github.project.listIssueTypesBySlug#1", "args": [ @@ -757,7 +760,7 @@ "id": "tk-project-row-metadata-load.normal:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -785,7 +788,7 @@ "id": "tk-project-row-metadata-load.result-absent:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "10e6f0eb4832"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -813,7 +816,7 @@ "id": "tk-project-row-metadata-load.result-null:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "e3813cfb8529"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -841,7 +844,7 @@ "id": "tk-project-row-metadata-load.inner-ok-missing:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "1273b9cdf496"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -869,7 +872,7 @@ "id": "tk-project-row-metadata-load.inner-false-string-error:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "6d0473328c78"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -897,7 +900,7 @@ "id": "tk-project-row-metadata-load.inner-false-object-error:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "2654bf3eaeb5"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -925,7 +928,7 @@ "id": "tk-project-row-metadata-load.outer-refused:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "ce078ca67d81"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -953,7 +956,7 @@ "id": "tk-project-row-metadata-load.outer-refused-no-message:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "e3e945349a67"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -981,7 +984,7 @@ "id": "tk-project-row-metadata-load.method-not-found:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "470cb6d8e135"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1009,7 +1012,7 @@ "id": "tk-project-row-metadata-load.transport-rejection:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "61b9b973f3c5"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1037,7 +1040,7 @@ "id": "tk-project-row-metadata-load.transport-rejection-no-message:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "67c6703593b1"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, 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 a006b7c088b..b8a3eced6d7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "7c948e76afb331e4038298215181adc97cd533c4f79e205e183c08e8a2db20fc", "platform": "darwin", @@ -18,6 +18,11 @@ "value": false, "sent": 3 }, + "0a6de48086bd": { + "name": "github.project.listLabelsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, "0ef05fd70152": { "name": "github.project.listLabelsBySlug#1", "args": [ @@ -414,10 +419,6 @@ ], "usersError": "" }, - "84c3fb2868bd": { - "name": "github.project.listIssueTypesBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "8f395e09a24b": { "name": "projectAvailableLabels", "value": [], @@ -518,9 +519,15 @@ } } }, - "9a8068985c26": { + "97d5d1b2d5a0": { + "name": "github.project.listIssueTypesBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, + "a6bac73470d9": { "name": "github.project.listAssignableUsersBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}", + "sent": 3 }, "a7f75837a806": { "name": "github.project.listLabelsBySlug#1", @@ -638,10 +645,6 @@ ], "usersError": "" }, - "da36de1a5410": { - "name": "github.project.listLabelsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "dba8d8f1c7df": { "labels": [], "labelsError": "Cannot read properties of undefined (reading 'ok')", @@ -797,7 +800,7 @@ "id": "tk-project-row-metadata-load.normal:mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -825,7 +828,7 @@ "id": "tk-project-row-metadata-load.result-absent:mounted", "observation": { "sender": ["a7f75837a806", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -853,7 +856,7 @@ "id": "tk-project-row-metadata-load.result-null:mounted", "observation": { "sender": ["52e20d57bbfa", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -881,7 +884,7 @@ "id": "tk-project-row-metadata-load.inner-ok-missing:mounted", "observation": { "sender": ["3a740cb021bb", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -909,7 +912,7 @@ "id": "tk-project-row-metadata-load.inner-false-string-error:mounted", "observation": { "sender": ["93fd155afdbe", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -937,7 +940,7 @@ "id": "tk-project-row-metadata-load.inner-false-object-error:mounted", "observation": { "sender": ["0ef05fd70152", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -965,7 +968,7 @@ "id": "tk-project-row-metadata-load.outer-refused:mounted", "observation": { "sender": ["19e6a8232bfe", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -993,7 +996,7 @@ "id": "tk-project-row-metadata-load.outer-refused-no-message:mounted", "observation": { "sender": ["c2c98ef22b43", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1021,7 +1024,7 @@ "id": "tk-project-row-metadata-load.method-not-found:mounted", "observation": { "sender": ["e493dc6bdc13", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1049,7 +1052,7 @@ "id": "tk-project-row-metadata-load.transport-rejection:mounted", "observation": { "sender": ["3bee39e3449b", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1077,7 +1080,7 @@ "id": "tk-project-row-metadata-load.transport-rejection-no-message:mounted", "observation": { "sender": ["33456346b818", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, 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 22a8e104a36..5ce34bad50b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "20e9631df87e40e64d35cee0c0e06b922fe53bd93e3d9e4078633b85a5278b7e", "platform": "darwin", @@ -282,6 +282,11 @@ "mutating": false, "refreshSeq": 0 }, + "23b7a2047b2c": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 4 + }, "267aadba5179": { "name": "github.prChecks#1", "args": [ @@ -445,10 +450,6 @@ "mutating": false, "refreshSeq": 0 }, - "2eee910f375e": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" - }, "347fa6adc9f3": { "name": "projectRowDetailError", "value": "", @@ -541,10 +542,6 @@ "value": "Unknown method", "sent": 2 }, - "4b9b887ee27f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "5cdba004ba6c": { "detail": { "assignees": ["octocat"], @@ -801,6 +798,11 @@ "value": true, "sent": 3 }, + "78b2174d020d": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "78e4c95a24b3": { "name": "github.prChecks#1", "args": [ @@ -1150,10 +1152,6 @@ }, "sent": 4 }, - "98fec6b761cc": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" - }, "9f7761a3afec": { "detail": { "assignees": ["octocat"], @@ -1215,6 +1213,11 @@ "mutating": false, "refreshSeq": 1 }, + "9f8e0346d638": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "a96d9b0de727": { "name": "github.prChecks#1", "args": [ @@ -1667,9 +1670,10 @@ "mutating": false, "refreshSeq": 0 }, - "dc5439b12876": { + "e931ac403da8": { "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -1697,7 +1701,7 @@ "id": "tk-project-row-review-checks.prelude:reviewers-settled", "observation": { "sender": ["8bb4bae45cc1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1716,7 +1720,7 @@ "id": "tk-project-row-review-checks.prelude:cleanup", "observation": { "sender": ["8bb4bae45cc1", "3c5cb4768846"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1740,7 +1744,7 @@ "id": "tk-project-row-review-checks.normal:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1764,7 +1768,7 @@ "id": "tk-project-row-review-checks.normal:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1793,7 +1797,7 @@ "id": "tk-project-row-review-checks.normal:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1827,7 +1831,7 @@ "id": "tk-project-row-review-checks.result-absent:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "4365c86f6a70"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1851,7 +1855,7 @@ "id": "tk-project-row-review-checks.result-absent:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "4365c86f6a70", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1880,7 +1884,7 @@ "id": "tk-project-row-review-checks.result-absent:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "4365c86f6a70", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1914,7 +1918,7 @@ "id": "tk-project-row-review-checks.result-null:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "d543cbf9ae9e"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1938,7 +1942,7 @@ "id": "tk-project-row-review-checks.result-null:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "d543cbf9ae9e", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1967,7 +1971,7 @@ "id": "tk-project-row-review-checks.result-null:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "d543cbf9ae9e", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2001,7 +2005,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "267aadba5179"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2025,7 +2029,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "267aadba5179", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2054,7 +2058,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "267aadba5179", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2088,7 +2092,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "78e4c95a24b3"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2112,7 +2116,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "78e4c95a24b3", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2141,7 +2145,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "78e4c95a24b3", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2175,7 +2179,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "065cd72ecfab"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2199,7 +2203,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "065cd72ecfab", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2228,7 +2232,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "065cd72ecfab", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2262,7 +2266,7 @@ "id": "tk-project-row-review-checks.outer-refused:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "a96d9b0de727"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2286,7 +2290,7 @@ "id": "tk-project-row-review-checks.outer-refused:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "a96d9b0de727", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2315,7 +2319,7 @@ "id": "tk-project-row-review-checks.outer-refused:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "a96d9b0de727", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2349,7 +2353,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "b02a5c30b3c1"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2373,7 +2377,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "b02a5c30b3c1", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2402,7 +2406,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "b02a5c30b3c1", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2436,7 +2440,7 @@ "id": "tk-project-row-review-checks.method-not-found:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "126adb332144"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2460,7 +2464,7 @@ "id": "tk-project-row-review-checks.method-not-found:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "126adb332144", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2489,7 +2493,7 @@ "id": "tk-project-row-review-checks.method-not-found:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "126adb332144", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2523,7 +2527,7 @@ "id": "tk-project-row-review-checks.transport-rejection:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "b418bb46de91"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2547,7 +2551,7 @@ "id": "tk-project-row-review-checks.transport-rejection:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "b418bb46de91", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2576,7 +2580,7 @@ "id": "tk-project-row-review-checks.transport-rejection:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "b418bb46de91", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2610,7 +2614,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "025965054a76"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2634,7 +2638,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "025965054a76", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2663,7 +2667,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "025965054a76", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 e66b6c2e4a9..14de783a2d4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "2d947b63fb35dad9bbe201061cb51d0b3c5a5e6f3e8018eeda2ec1f962952809", "platform": "darwin", @@ -433,6 +433,11 @@ "mutating": false, "refreshSeq": 0 }, + "23b7a2047b2c": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 4 + }, "253a401313b2": { "detail": { "assignees": ["octocat"], @@ -552,10 +557,6 @@ "mutating": false, "refreshSeq": 0 }, - "2eee910f375e": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" - }, "347fa6adc9f3": { "name": "projectRowDetailError", "value": "", @@ -619,10 +620,6 @@ "mutating": false, "refreshSeq": 1 }, - "4b9b887ee27f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "4c09a53c8150": { "name": "projectRowDetailError", "value": "Cannot read properties of undefined (reading 'ok')", @@ -859,6 +856,11 @@ "value": true, "sent": 3 }, + "78b2174d020d": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "78c4e6dc05ef": { "name": "github.requestPRReviewers#1", "args": [ @@ -1292,10 +1294,6 @@ }, "sent": 4 }, - "98fec6b761cc": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" - }, "9b280ff80b44": { "name": "github.requestPRReviewers#1", "args": [ @@ -1336,6 +1334,11 @@ } } }, + "9f8e0346d638": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "a2c3811d26b3": { "detail": { "assignees": ["octocat"], @@ -1739,10 +1742,6 @@ "mutating": false, "refreshSeq": 0 }, - "dc5439b12876": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" - }, "dfafb40d73d4": { "detail": { "assignees": ["octocat"], @@ -1794,6 +1793,11 @@ "mutating": false, "refreshSeq": 0 }, + "e931ac403da8": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1866,7 +1870,7 @@ "id": "tk-project-row-review-checks.normal:reviewers-settled", "observation": { "sender": ["8bb4bae45cc1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1885,7 +1889,7 @@ "id": "tk-project-row-review-checks.normal:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1909,7 +1913,7 @@ "id": "tk-project-row-review-checks.normal:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1938,7 +1942,7 @@ "id": "tk-project-row-review-checks.normal:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1972,7 +1976,7 @@ "id": "tk-project-row-review-checks.result-absent:reviewers-settled", "observation": { "sender": ["8a4f69f488e2"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1985,7 +1989,7 @@ "id": "tk-project-row-review-checks.result-absent:checks-settled", "observation": { "sender": ["8a4f69f488e2", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2008,7 +2012,7 @@ "id": "tk-project-row-review-checks.result-absent:rerun-settled", "observation": { "sender": ["8a4f69f488e2", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2036,7 +2040,7 @@ "id": "tk-project-row-review-checks.result-absent:viewed-settled", "observation": { "sender": ["8a4f69f488e2", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2069,7 +2073,7 @@ "id": "tk-project-row-review-checks.result-null:reviewers-settled", "observation": { "sender": ["9b280ff80b44"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2082,7 +2086,7 @@ "id": "tk-project-row-review-checks.result-null:checks-settled", "observation": { "sender": ["9b280ff80b44", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2105,7 +2109,7 @@ "id": "tk-project-row-review-checks.result-null:rerun-settled", "observation": { "sender": ["9b280ff80b44", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2133,7 +2137,7 @@ "id": "tk-project-row-review-checks.result-null:viewed-settled", "observation": { "sender": ["9b280ff80b44", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2166,7 +2170,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:reviewers-settled", "observation": { "sender": ["0a57c2f7f62b"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2185,7 +2189,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:checks-settled", "observation": { "sender": ["0a57c2f7f62b", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2209,7 +2213,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:rerun-settled", "observation": { "sender": ["0a57c2f7f62b", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2238,7 +2242,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:viewed-settled", "observation": { "sender": ["0a57c2f7f62b", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2272,7 +2276,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:reviewers-settled", "observation": { "sender": ["fd1710c7e153"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2285,7 +2289,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:checks-settled", "observation": { "sender": ["fd1710c7e153", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2308,7 +2312,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:rerun-settled", "observation": { "sender": ["fd1710c7e153", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2336,7 +2340,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:viewed-settled", "observation": { "sender": ["fd1710c7e153", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2369,7 +2373,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:reviewers-settled", "observation": { "sender": ["8ac3b49df2ca"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2382,7 +2386,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:checks-settled", "observation": { "sender": ["8ac3b49df2ca", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2405,7 +2409,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:rerun-settled", "observation": { "sender": ["8ac3b49df2ca", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2433,7 +2437,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:viewed-settled", "observation": { "sender": ["8ac3b49df2ca", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2466,7 +2470,7 @@ "id": "tk-project-row-review-checks.outer-refused:reviewers-settled", "observation": { "sender": ["c1658bc8761a"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2479,7 +2483,7 @@ "id": "tk-project-row-review-checks.outer-refused:checks-settled", "observation": { "sender": ["c1658bc8761a", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2502,7 +2506,7 @@ "id": "tk-project-row-review-checks.outer-refused:rerun-settled", "observation": { "sender": ["c1658bc8761a", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2530,7 +2534,7 @@ "id": "tk-project-row-review-checks.outer-refused:viewed-settled", "observation": { "sender": ["c1658bc8761a", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2563,7 +2567,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:reviewers-settled", "observation": { "sender": ["78c4e6dc05ef"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2576,7 +2580,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:checks-settled", "observation": { "sender": ["78c4e6dc05ef", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2599,7 +2603,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:rerun-settled", "observation": { "sender": ["78c4e6dc05ef", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2627,7 +2631,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:viewed-settled", "observation": { "sender": ["78c4e6dc05ef", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2660,7 +2664,7 @@ "id": "tk-project-row-review-checks.method-not-found:reviewers-settled", "observation": { "sender": ["69de7f3a82c1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2673,7 +2677,7 @@ "id": "tk-project-row-review-checks.method-not-found:checks-settled", "observation": { "sender": ["69de7f3a82c1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2696,7 +2700,7 @@ "id": "tk-project-row-review-checks.method-not-found:rerun-settled", "observation": { "sender": ["69de7f3a82c1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2724,7 +2728,7 @@ "id": "tk-project-row-review-checks.method-not-found:viewed-settled", "observation": { "sender": ["69de7f3a82c1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2757,7 +2761,7 @@ "id": "tk-project-row-review-checks.transport-rejection:reviewers-settled", "observation": { "sender": ["2115fb7ac9fb"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2770,7 +2774,7 @@ "id": "tk-project-row-review-checks.transport-rejection:checks-settled", "observation": { "sender": ["2115fb7ac9fb", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2793,7 +2797,7 @@ "id": "tk-project-row-review-checks.transport-rejection:rerun-settled", "observation": { "sender": ["2115fb7ac9fb", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2821,7 +2825,7 @@ "id": "tk-project-row-review-checks.transport-rejection:viewed-settled", "observation": { "sender": ["2115fb7ac9fb", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2854,7 +2858,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:reviewers-settled", "observation": { "sender": ["219bed761793"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -2867,7 +2871,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:checks-settled", "observation": { "sender": ["219bed761793", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2890,7 +2894,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:rerun-settled", "observation": { "sender": ["219bed761793", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2918,7 +2922,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["219bed761793", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 f09a6e8a8b2..8af68dda021 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "ca6b0d81b19811806ce332a776361a40e526a73bef90cfa3df05a764e2ee83b6", "platform": "darwin", @@ -250,6 +250,11 @@ "mutating": false, "refreshSeq": 0 }, + "23b7a2047b2c": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 4 + }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -311,10 +316,6 @@ "mutating": false, "refreshSeq": 0 }, - "2eee910f375e": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" - }, "316daba13a9c": { "detail": { "assignees": ["octocat"], @@ -555,10 +556,6 @@ } } }, - "4b9b887ee27f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "4be4f71a6ab7": { "detail": { "assignees": ["octocat"], @@ -885,6 +882,11 @@ "value": true, "sent": 3 }, + "78b2174d020d": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "7941a2b950be": { "name": "github.prChecks#1", "args": [ @@ -1273,9 +1275,10 @@ }, "sent": 4 }, - "98fec6b761cc": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" + "9f8e0346d638": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}", + "sent": 1 }, "b9377f5f763b": { "detail": { @@ -1578,10 +1581,6 @@ "mutating": false, "refreshSeq": 0 }, - "dc5439b12876": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" - }, "e32b4c3c9b04": { "detail": { "assignees": ["octocat"], @@ -1723,6 +1722,11 @@ "value": "Cannot read properties of undefined (reading 'ok')", "sent": 3 }, + "e931ac403da8": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 3 + }, "eb612a2e1a87": { "name": "projectRowDetailError", "value": "Cannot read properties of null (reading 'ok')", @@ -1838,7 +1842,7 @@ "id": "tk-project-row-review-checks.prelude:reviewers-settled", "observation": { "sender": ["8bb4bae45cc1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1857,7 +1861,7 @@ "id": "tk-project-row-review-checks.prelude:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1881,7 +1885,7 @@ "id": "tk-project-row-review-checks.prelude:cleanup", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "4684eb8b7156"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1910,7 +1914,7 @@ "id": "tk-project-row-review-checks.normal:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1939,7 +1943,7 @@ "id": "tk-project-row-review-checks.normal:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1973,7 +1977,7 @@ "id": "tk-project-row-review-checks.result-absent:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "ffae5011e8b3"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2002,7 +2006,7 @@ "id": "tk-project-row-review-checks.result-absent:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "ffae5011e8b3", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2036,7 +2040,7 @@ "id": "tk-project-row-review-checks.result-null:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "cf5e20449a3b"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2065,7 +2069,7 @@ "id": "tk-project-row-review-checks.result-null:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "cf5e20449a3b", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2099,7 +2103,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "f0988a613161"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2128,7 +2132,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "f0988a613161", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2162,7 +2166,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "867da7ac1013"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2191,7 +2195,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "867da7ac1013", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2225,7 +2229,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "0e9e7de0aff5"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2254,7 +2258,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "0e9e7de0aff5", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2288,7 +2292,7 @@ "id": "tk-project-row-review-checks.outer-refused:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "1edba0a1a262"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2317,7 +2321,7 @@ "id": "tk-project-row-review-checks.outer-refused:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "1edba0a1a262", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2351,7 +2355,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "4b8f240addf4"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2380,7 +2384,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "4b8f240addf4", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2414,7 +2418,7 @@ "id": "tk-project-row-review-checks.method-not-found:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "371b50f433c2"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2443,7 +2447,7 @@ "id": "tk-project-row-review-checks.method-not-found:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "371b50f433c2", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2477,7 +2481,7 @@ "id": "tk-project-row-review-checks.transport-rejection:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "427bd9508150"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2506,7 +2510,7 @@ "id": "tk-project-row-review-checks.transport-rejection:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "427bd9508150", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2540,7 +2544,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "8aad67679b45"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2569,7 +2573,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "8aad67679b45", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 d2b45554aea..7af7d5e8289 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "bd58d88e0534366e281869ee79eb75fe65b418d02523d815d8d0d58799edc31b", "platform": "darwin", @@ -140,6 +140,11 @@ "mutating": false, "refreshSeq": 0 }, + "23b7a2047b2c": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 4 + }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -201,10 +206,6 @@ "mutating": false, "refreshSeq": 0 }, - "2eee910f375e": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" - }, "347fa6adc9f3": { "name": "projectRowDetailError", "value": "", @@ -258,10 +259,6 @@ "value": "transport failure", "sent": 4 }, - "4b9b887ee27f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "4b9ee3adc5ac": { "name": "github.setPRFileViewed#1", "args": [ @@ -577,6 +574,11 @@ "value": true, "sent": 3 }, + "78b2174d020d": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "7941a2b950be": { "name": "github.prChecks#1", "args": [ @@ -993,10 +995,6 @@ } } }, - "98fec6b761cc": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" - }, "9e2bd15c2270": { "detail": { "assignees": ["octocat"], @@ -1133,6 +1131,11 @@ "mutating": false, "refreshSeq": 1 }, + "9f8e0346d638": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "acc9618c23f3": { "detail": { "assignees": ["octocat"], @@ -1414,10 +1417,6 @@ "value": true, "sent": 1 }, - "dc5439b12876": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" - }, "ddbf3cb813dc": { "detail": { "assignees": ["octocat"], @@ -1491,6 +1490,11 @@ "value": "outer refused", "sent": 4 }, + "e931ac403da8": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1556,7 +1560,7 @@ "id": "tk-project-row-review-checks.prelude:reviewers-settled", "observation": { "sender": ["8bb4bae45cc1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -1575,7 +1579,7 @@ "id": "tk-project-row-review-checks.prelude:checks-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1599,7 +1603,7 @@ "id": "tk-project-row-review-checks.prelude:rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1628,7 +1632,7 @@ "id": "tk-project-row-review-checks.prelude:cleanup", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "ff78e7952ee7"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1662,7 +1666,7 @@ "id": "tk-project-row-review-checks.normal:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1696,7 +1700,7 @@ "id": "tk-project-row-review-checks.result-absent:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "38bdf0f6645e"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1730,7 +1734,7 @@ "id": "tk-project-row-review-checks.result-null:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "98d5e7155129"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1764,7 +1768,7 @@ "id": "tk-project-row-review-checks.inner-ok-missing:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "c744ecbe18a1"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1798,7 +1802,7 @@ "id": "tk-project-row-review-checks.inner-false-string-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "b482257c101c"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1832,7 +1836,7 @@ "id": "tk-project-row-review-checks.inner-false-object-error:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "0084f00f041a"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1866,7 +1870,7 @@ "id": "tk-project-row-review-checks.outer-refused:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "b2c04f2e7d17"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1900,7 +1904,7 @@ "id": "tk-project-row-review-checks.outer-refused-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "b98956c1eea2"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1934,7 +1938,7 @@ "id": "tk-project-row-review-checks.method-not-found:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "4b9ee3adc5ac"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -1968,7 +1972,7 @@ "id": "tk-project-row-review-checks.transport-rejection:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "60688af118fb"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -2002,7 +2006,7 @@ "id": "tk-project-row-review-checks.transport-rejection-no-message:viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "6b21dc8d69c1"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 167d62860ff..3b577de670f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "0f220b97bbb64ef8d347973690e6fab4b305eaaa54c9b7883340415c54e61206", "platform": "darwin", @@ -57,10 +57,6 @@ }, "sent": 1 }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "0f3697bbd111": { "name": "projectMutating", "value": true, @@ -705,6 +701,11 @@ "value": {}, "sent": 4 }, + "8dc2f0b815b9": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 3 + }, "976f63e51ba2": { "name": "projectRowDetailError", "value": "", @@ -1148,9 +1149,10 @@ }, "sent": 3 }, - "cf954aa5f6bf": { + "d018a759f2a7": { "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 }, "d1bb762720d5": { "name": "projectMutating", @@ -1198,6 +1200,11 @@ } } }, + "d49ee0febc71": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 4 + }, "d515951be1e3": { "name": "projectRowDetail", "value": { @@ -1252,10 +1259,6 @@ }, "sent": 4 }, - "d7467bca27a7": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" - }, "d846e6d21f1e": { "detail": { "assignees": ["octocat"], @@ -1356,10 +1359,6 @@ "value": "outer refused", "sent": 4 }, - "e3ad9b260dec": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "e76d5520ec18": { "detail": { "assignees": ["octocat"], @@ -1511,6 +1510,11 @@ } } }, + "f87580087aa8": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}", + "sent": 1 + }, "fa2e7b92e1d5": { "name": "projectMutating", "value": false, @@ -1616,7 +1620,7 @@ "id": "tk-project-row-threads.prelude:delete-comment-settled", "observation": { "sender": ["b94df8ff01a9"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1629,7 +1633,7 @@ "id": "tk-project-row-threads.prelude:thread-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1652,7 +1656,7 @@ "id": "tk-project-row-threads.prelude:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1681,7 +1685,7 @@ "id": "tk-project-row-threads.prelude:cleanup", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "cd0e088a1f9b"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1715,7 +1719,7 @@ "id": "tk-project-row-threads.normal:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1750,7 +1754,7 @@ "id": "tk-project-row-threads.result-absent:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "979e7cec91d8"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1784,7 +1788,7 @@ "id": "tk-project-row-threads.result-null:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "6d3be646bec9"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1818,7 +1822,7 @@ "id": "tk-project-row-threads.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "d1d6434fd325"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1853,7 +1857,7 @@ "id": "tk-project-row-threads.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "f27ce2e53696"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1887,7 +1891,7 @@ "id": "tk-project-row-threads.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "fbe223460865"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1921,7 +1925,7 @@ "id": "tk-project-row-threads.outer-refused:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "bdfb0177e2c1"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1955,7 +1959,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "3616b3bb9bd2"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1989,7 +1993,7 @@ "id": "tk-project-row-threads.method-not-found:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "5e4d75ca8adc"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2023,7 +2027,7 @@ "id": "tk-project-row-threads.transport-rejection:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "cc8e9797ff26"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2057,7 +2061,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "c3f765625de5"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", 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 9e73b4742e5..986b3be5501 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "85160836c5a5c9bae76aff82c834ceb908f9262a90facd6e055c289362664eaa", "platform": "darwin", @@ -96,10 +96,6 @@ }, "sent": 1 }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "0f3697bbd111": { "name": "projectMutating", "value": true, @@ -862,6 +858,11 @@ "value": {}, "sent": 4 }, + "8dc2f0b815b9": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 3 + }, "9138850642c5": { "name": "projectRowDetailError", "value": "outer refused", @@ -1337,15 +1338,21 @@ }, "sent": 3 }, - "cf954aa5f6bf": { + "d018a759f2a7": { "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 }, "d1bb762720d5": { "name": "projectMutating", "value": true, "sent": 1 }, + "d49ee0febc71": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 4 + }, "d515951be1e3": { "name": "projectRowDetail", "value": { @@ -1453,10 +1460,6 @@ "value": "transport failure", "sent": 3 }, - "d7467bca27a7": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" - }, "d856c0886ca0": { "name": "projectRowDetailError", "value": "Unknown method", @@ -1554,10 +1557,6 @@ } } }, - "e3ad9b260dec": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "e76d5520ec18": { "detail": { "assignees": ["octocat"], @@ -1727,6 +1726,11 @@ } } }, + "f87580087aa8": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}", + "sent": 1 + }, "fa2e7b92e1d5": { "name": "projectMutating", "value": false, @@ -1747,7 +1751,7 @@ "id": "tk-project-row-threads.prelude:delete-comment-settled", "observation": { "sender": ["b94df8ff01a9"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1760,7 +1764,7 @@ "id": "tk-project-row-threads.prelude:thread-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1783,7 +1787,7 @@ "id": "tk-project-row-threads.prelude:cleanup", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "14f66e7d5055"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1811,7 +1815,7 @@ "id": "tk-project-row-threads.normal:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1840,7 +1844,7 @@ "id": "tk-project-row-threads.normal:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1875,7 +1879,7 @@ "id": "tk-project-row-threads.result-absent:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "66da313dd708"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1903,7 +1907,7 @@ "id": "tk-project-row-threads.result-absent:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "66da313dd708", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1937,7 +1941,7 @@ "id": "tk-project-row-threads.result-null:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "afc96b1cc014"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1965,7 +1969,7 @@ "id": "tk-project-row-threads.result-null:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "afc96b1cc014", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1999,7 +2003,7 @@ "id": "tk-project-row-threads.inner-ok-missing:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "165bbcc6d7dc"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2028,7 +2032,7 @@ "id": "tk-project-row-threads.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "165bbcc6d7dc", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2063,7 +2067,7 @@ "id": "tk-project-row-threads.inner-false-string-error:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f59816cbb4a7"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2091,7 +2095,7 @@ "id": "tk-project-row-threads.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f59816cbb4a7", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2125,7 +2129,7 @@ "id": "tk-project-row-threads.inner-false-object-error:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "b6e86a35bef1"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2153,7 +2157,7 @@ "id": "tk-project-row-threads.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "b6e86a35bef1", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2187,7 +2191,7 @@ "id": "tk-project-row-threads.outer-refused:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "cd005a64924e"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2215,7 +2219,7 @@ "id": "tk-project-row-threads.outer-refused:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "cd005a64924e", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2249,7 +2253,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "de7e00504f8b"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2277,7 +2281,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "de7e00504f8b", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2311,7 +2315,7 @@ "id": "tk-project-row-threads.method-not-found:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "97cb3dc78363"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2339,7 +2343,7 @@ "id": "tk-project-row-threads.method-not-found:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "97cb3dc78363", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2373,7 +2377,7 @@ "id": "tk-project-row-threads.transport-rejection:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "32874acc8cbf"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2401,7 +2405,7 @@ "id": "tk-project-row-threads.transport-rejection:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "32874acc8cbf", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2435,7 +2439,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "ae08229ffb6c"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2463,7 +2467,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "ae08229ffb6c", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", 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 8a8dd6ca3a2..cfd5a511459 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "5bc59cfd0d951ae5193df5c49ce3618d9536be0bc8f8192a7b03000963c2001b", "platform": "darwin", @@ -94,10 +94,6 @@ } } }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "0e2253940af4": { "name": "projectRowDetail", "value": { @@ -671,6 +667,11 @@ "value": {}, "sent": 4 }, + "8dc2f0b815b9": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 3 + }, "92b802be86b7": { "detail": { "assignees": ["octocat"], @@ -1012,9 +1013,10 @@ }, "sent": 3 }, - "cf954aa5f6bf": { + "d018a759f2a7": { "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 }, "d1bb762720d5": { "name": "projectMutating", @@ -1070,6 +1072,11 @@ "error": "transport failure", "mutating": false }, + "d49ee0febc71": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 4 + }, "d515951be1e3": { "name": "projectRowDetail", "value": { @@ -1188,10 +1195,6 @@ "error": "", "mutating": false }, - "d7467bca27a7": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" - }, "da378b958d73": { "name": "github.project.deleteIssueCommentBySlug#1", "args": [ @@ -1419,10 +1422,6 @@ "error": "inner refused", "mutating": false }, - "e3ad9b260dec": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "e5dc2384d2f9": { "detail": { "assignees": ["octocat"], @@ -1635,6 +1634,11 @@ } } }, + "f87580087aa8": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}", + "sent": 1 + }, "fa2e7b92e1d5": { "name": "projectMutating", "value": false, @@ -1687,7 +1691,7 @@ "id": "tk-project-row-threads.normal:delete-comment-settled", "observation": { "sender": ["b94df8ff01a9"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1700,7 +1704,7 @@ "id": "tk-project-row-threads.normal:thread-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1723,7 +1727,7 @@ "id": "tk-project-row-threads.normal:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1752,7 +1756,7 @@ "id": "tk-project-row-threads.normal:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1787,7 +1791,7 @@ "id": "tk-project-row-threads.result-absent:delete-comment-settled", "observation": { "sender": ["da378b958d73"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1800,7 +1804,7 @@ "id": "tk-project-row-threads.result-absent:thread-settled", "observation": { "sender": ["da378b958d73", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1823,7 +1827,7 @@ "id": "tk-project-row-threads.result-absent:review-reply-settled", "observation": { "sender": ["da378b958d73", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1852,7 +1856,7 @@ "id": "tk-project-row-threads.result-absent:issue-reply-settled", "observation": { "sender": ["da378b958d73", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1887,7 +1891,7 @@ "id": "tk-project-row-threads.result-null:delete-comment-settled", "observation": { "sender": ["326477e41522"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1900,7 +1904,7 @@ "id": "tk-project-row-threads.result-null:thread-settled", "observation": { "sender": ["326477e41522", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1923,7 +1927,7 @@ "id": "tk-project-row-threads.result-null:review-reply-settled", "observation": { "sender": ["326477e41522", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1952,7 +1956,7 @@ "id": "tk-project-row-threads.result-null:issue-reply-settled", "observation": { "sender": ["326477e41522", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1987,7 +1991,7 @@ "id": "tk-project-row-threads.inner-ok-missing:delete-comment-settled", "observation": { "sender": ["77d646fb0b5b"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2000,7 +2004,7 @@ "id": "tk-project-row-threads.inner-ok-missing:thread-settled", "observation": { "sender": ["77d646fb0b5b", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2023,7 +2027,7 @@ "id": "tk-project-row-threads.inner-ok-missing:review-reply-settled", "observation": { "sender": ["77d646fb0b5b", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2052,7 +2056,7 @@ "id": "tk-project-row-threads.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["77d646fb0b5b", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2087,7 +2091,7 @@ "id": "tk-project-row-threads.inner-false-string-error:delete-comment-settled", "observation": { "sender": ["78ef9c03161e"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2100,7 +2104,7 @@ "id": "tk-project-row-threads.inner-false-string-error:thread-settled", "observation": { "sender": ["78ef9c03161e", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2123,7 +2127,7 @@ "id": "tk-project-row-threads.inner-false-string-error:review-reply-settled", "observation": { "sender": ["78ef9c03161e", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2152,7 +2156,7 @@ "id": "tk-project-row-threads.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["78ef9c03161e", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2187,7 +2191,7 @@ "id": "tk-project-row-threads.inner-false-object-error:delete-comment-settled", "observation": { "sender": ["fb3c6772749f"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2200,7 +2204,7 @@ "id": "tk-project-row-threads.inner-false-object-error:thread-settled", "observation": { "sender": ["fb3c6772749f", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2223,7 +2227,7 @@ "id": "tk-project-row-threads.inner-false-object-error:review-reply-settled", "observation": { "sender": ["fb3c6772749f", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2252,7 +2256,7 @@ "id": "tk-project-row-threads.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["fb3c6772749f", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2287,7 +2291,7 @@ "id": "tk-project-row-threads.outer-refused:delete-comment-settled", "observation": { "sender": ["9846d945c878"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2300,7 +2304,7 @@ "id": "tk-project-row-threads.outer-refused:thread-settled", "observation": { "sender": ["9846d945c878", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2323,7 +2327,7 @@ "id": "tk-project-row-threads.outer-refused:review-reply-settled", "observation": { "sender": ["9846d945c878", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2352,7 +2356,7 @@ "id": "tk-project-row-threads.outer-refused:issue-reply-settled", "observation": { "sender": ["9846d945c878", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2387,7 +2391,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:delete-comment-settled", "observation": { "sender": ["cf092130ba77"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2400,7 +2404,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:thread-settled", "observation": { "sender": ["cf092130ba77", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2423,7 +2427,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:review-reply-settled", "observation": { "sender": ["cf092130ba77", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2452,7 +2456,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["cf092130ba77", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2487,7 +2491,7 @@ "id": "tk-project-row-threads.method-not-found:delete-comment-settled", "observation": { "sender": ["03b995b7d1e5"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2500,7 +2504,7 @@ "id": "tk-project-row-threads.method-not-found:thread-settled", "observation": { "sender": ["03b995b7d1e5", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2523,7 +2527,7 @@ "id": "tk-project-row-threads.method-not-found:review-reply-settled", "observation": { "sender": ["03b995b7d1e5", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2552,7 +2556,7 @@ "id": "tk-project-row-threads.method-not-found:issue-reply-settled", "observation": { "sender": ["03b995b7d1e5", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2587,7 +2591,7 @@ "id": "tk-project-row-threads.transport-rejection:delete-comment-settled", "observation": { "sender": ["b6b7b037e348"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2600,7 +2604,7 @@ "id": "tk-project-row-threads.transport-rejection:thread-settled", "observation": { "sender": ["b6b7b037e348", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2623,7 +2627,7 @@ "id": "tk-project-row-threads.transport-rejection:review-reply-settled", "observation": { "sender": ["b6b7b037e348", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2652,7 +2656,7 @@ "id": "tk-project-row-threads.transport-rejection:issue-reply-settled", "observation": { "sender": ["b6b7b037e348", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2687,7 +2691,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:delete-comment-settled", "observation": { "sender": ["dd3a7b9465eb"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -2700,7 +2704,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:thread-settled", "observation": { "sender": ["dd3a7b9465eb", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2723,7 +2727,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:review-reply-settled", "observation": { "sender": ["dd3a7b9465eb", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2752,7 +2756,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["dd3a7b9465eb", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", 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 6fb7e789b32..4b0174fe597 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "0d8c240718b3911464a6fc486114d67cd6f60aa295cd0886ff755b77d5036014", "platform": "darwin", @@ -136,10 +136,6 @@ } } }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "0d3abde11044": { "name": "projectRowDetailError", "value": "Connection closed", @@ -585,6 +581,11 @@ "value": {}, "sent": 4 }, + "8dc2f0b815b9": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 3 + }, "a7e90307fc74": { "name": "projectRowDetail", "value": { @@ -872,15 +873,21 @@ }, "sent": 3 }, - "cf954aa5f6bf": { + "d018a759f2a7": { "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 }, "d1bb762720d5": { "name": "projectMutating", "value": true, "sent": 1 }, + "d49ee0febc71": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 4 + }, "d515951be1e3": { "name": "projectRowDetail", "value": { @@ -935,10 +942,6 @@ }, "sent": 4 }, - "d7467bca27a7": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" - }, "df5e09a21420": { "name": "github.addIssueComment#1", "args": [ @@ -1027,10 +1030,6 @@ } } }, - "e3ad9b260dec": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "e76d5520ec18": { "detail": { "assignees": ["octocat"], @@ -1257,6 +1256,11 @@ } } }, + "f87580087aa8": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}", + "sent": 1 + }, "fa2e7b92e1d5": { "name": "projectMutating", "value": false, @@ -1270,7 +1274,7 @@ "id": "tk-project-row-threads.prelude:delete-comment-settled", "observation": { "sender": ["b94df8ff01a9"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -1283,7 +1287,7 @@ "id": "tk-project-row-threads.prelude:cleanup", "observation": { "sender": ["b94df8ff01a9", "f3fbcd58883a"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1306,7 +1310,7 @@ "id": "tk-project-row-threads.normal:thread-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1329,7 +1333,7 @@ "id": "tk-project-row-threads.normal:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1358,7 +1362,7 @@ "id": "tk-project-row-threads.normal:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1393,7 +1397,7 @@ "id": "tk-project-row-threads.result-absent:thread-settled", "observation": { "sender": ["b94df8ff01a9", "863f823011a7"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1416,7 +1420,7 @@ "id": "tk-project-row-threads.result-absent:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "863f823011a7", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1445,7 +1449,7 @@ "id": "tk-project-row-threads.result-absent:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "863f823011a7", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1480,7 +1484,7 @@ "id": "tk-project-row-threads.result-null:thread-settled", "observation": { "sender": ["b94df8ff01a9", "08c323b47aa3"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1503,7 +1507,7 @@ "id": "tk-project-row-threads.result-null:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "08c323b47aa3", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1532,7 +1536,7 @@ "id": "tk-project-row-threads.result-null:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "08c323b47aa3", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1567,7 +1571,7 @@ "id": "tk-project-row-threads.inner-ok-missing:thread-settled", "observation": { "sender": ["b94df8ff01a9", "c803a3716a6b"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1590,7 +1594,7 @@ "id": "tk-project-row-threads.inner-ok-missing:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "c803a3716a6b", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1619,7 +1623,7 @@ "id": "tk-project-row-threads.inner-ok-missing:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "c803a3716a6b", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1654,7 +1658,7 @@ "id": "tk-project-row-threads.inner-false-string-error:thread-settled", "observation": { "sender": ["b94df8ff01a9", "0e7a55514902"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1677,7 +1681,7 @@ "id": "tk-project-row-threads.inner-false-string-error:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "0e7a55514902", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1706,7 +1710,7 @@ "id": "tk-project-row-threads.inner-false-string-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "0e7a55514902", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1741,7 +1745,7 @@ "id": "tk-project-row-threads.inner-false-object-error:thread-settled", "observation": { "sender": ["b94df8ff01a9", "5aaa87a861a5"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1764,7 +1768,7 @@ "id": "tk-project-row-threads.inner-false-object-error:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "5aaa87a861a5", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1793,7 +1797,7 @@ "id": "tk-project-row-threads.inner-false-object-error:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "5aaa87a861a5", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1828,7 +1832,7 @@ "id": "tk-project-row-threads.outer-refused:thread-settled", "observation": { "sender": ["b94df8ff01a9", "10db8439521b"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1851,7 +1855,7 @@ "id": "tk-project-row-threads.outer-refused:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "10db8439521b", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1880,7 +1884,7 @@ "id": "tk-project-row-threads.outer-refused:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "10db8439521b", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1915,7 +1919,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:thread-settled", "observation": { "sender": ["b94df8ff01a9", "f703a71aa233"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1938,7 +1942,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "f703a71aa233", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -1967,7 +1971,7 @@ "id": "tk-project-row-threads.outer-refused-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "f703a71aa233", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2002,7 +2006,7 @@ "id": "tk-project-row-threads.method-not-found:thread-settled", "observation": { "sender": ["b94df8ff01a9", "dff4138edccd"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2025,7 +2029,7 @@ "id": "tk-project-row-threads.method-not-found:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "dff4138edccd", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2054,7 +2058,7 @@ "id": "tk-project-row-threads.method-not-found:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "dff4138edccd", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2089,7 +2093,7 @@ "id": "tk-project-row-threads.transport-rejection:thread-settled", "observation": { "sender": ["b94df8ff01a9", "1827a49caafc"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2112,7 +2116,7 @@ "id": "tk-project-row-threads.transport-rejection:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1827a49caafc", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2141,7 +2145,7 @@ "id": "tk-project-row-threads.transport-rejection:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1827a49caafc", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2176,7 +2180,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:thread-settled", "observation": { "sender": ["b94df8ff01a9", "f2b357865f42"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2199,7 +2203,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "f2b357865f42", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -2228,7 +2232,7 @@ "id": "tk-project-row-threads.transport-rejection-no-message:issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "f2b357865f42", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", 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 ecf468004ec..02ba6c02ebb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "e9bdad78cf60e3dd931eab8810d011c6e0066f9a336a206f8f9ca62621b21fee", "platform": "darwin", @@ -209,6 +209,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "552cce3107ea": { "name": "linearWorkspaces", "value": [ @@ -419,6 +424,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "a6bfe3e8ec00": { "name": "settings.update#1", "args": [ @@ -490,10 +500,6 @@ } } }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, "bed15481b61b": { "name": "github.countWorkItems#1", "args": [ @@ -526,19 +532,11 @@ } } }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c1c057249f99": { "name": "selectedLinearTeamIds", "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "c413b74dec17": { "name": "github.countWorkItems#1", "args": [ @@ -602,9 +600,10 @@ } } }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "d5fffd95acc6": { "name": "github.countWorkItems#1", @@ -640,10 +639,6 @@ } } }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -652,6 +647,11 @@ "$rpc": "undefined" } }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, "fc9eba64cfa4": { "name": "github.countWorkItems#1", "args": [ @@ -686,6 +686,11 @@ "ok": false } } + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -695,7 +700,7 @@ "id": "tk-provider-load.prelude:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -714,7 +719,7 @@ "id": "tk-provider-load.prelude:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -734,7 +739,7 @@ "id": "tk-provider-load.prelude:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -762,11 +767,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -796,11 +801,11 @@ "c413b74dec17" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -830,11 +835,11 @@ "d5fffd95acc6" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -864,11 +869,11 @@ "5de521b4f498" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -898,11 +903,11 @@ "0b57eb25bc46" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -932,11 +937,11 @@ "3c8fb5a2065b" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -966,11 +971,11 @@ "088609fba40a" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1000,11 +1005,11 @@ "739fba9f78c5" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1034,11 +1039,11 @@ "fc9eba64cfa4" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1068,11 +1073,11 @@ "bed15481b61b" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1102,11 +1107,11 @@ "c604751f65d7" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", 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 c114f9a97ba..0a2ae7ef0ba 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a5704c6849de9a45564c8738076ec8c0307754a5acc2c039880fe436771e68b3", "platform": "darwin", @@ -245,6 +245,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "552cce3107ea": { "name": "linearWorkspaces", "value": [ @@ -477,6 +482,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "a6bfe3e8ec00": { "name": "settings.update#1", "args": [ @@ -548,10 +558,6 @@ } } }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, "bec611c1195e": { "name": "github.listWorkItems#1", "args": [ @@ -588,19 +594,11 @@ } } }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c1c057249f99": { "name": "selectedLinearTeamIds", "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "caa3cbb99bcf": { "name": "github.listWorkItems#1", "args": [ @@ -640,10 +638,6 @@ } } }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" - }, "d377cdb2c1c9": { "name": "github.listWorkItems#1", "args": [ @@ -683,9 +677,10 @@ } } }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "e4b031c4e9d5": { "status": "fulfilled", @@ -744,6 +739,16 @@ } } } + }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -753,7 +758,7 @@ "id": "tk-provider-load.prelude:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -772,7 +777,7 @@ "id": "tk-provider-load.prelude:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -792,7 +797,7 @@ "id": "tk-provider-load.normal:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -820,11 +825,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -847,7 +852,7 @@ "id": "tk-provider-load.result-absent:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "3166b5c6b604"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -875,11 +880,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -902,7 +907,7 @@ "id": "tk-provider-load.result-null:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "78fb47c5b7aa"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -930,11 +935,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -957,7 +962,7 @@ "id": "tk-provider-load.inner-ok-missing:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "f899cea01df9"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -985,11 +990,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1012,7 +1017,7 @@ "id": "tk-provider-load.inner-false-string-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "caa3cbb99bcf"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1040,11 +1045,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1067,7 +1072,7 @@ "id": "tk-provider-load.inner-false-object-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "66292427efc0"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1095,11 +1100,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1122,7 +1127,7 @@ "id": "tk-provider-load.outer-refused:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "01d2e29deceb"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1150,11 +1155,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1177,7 +1182,7 @@ "id": "tk-provider-load.outer-refused-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "d377cdb2c1c9"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1205,11 +1210,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1232,7 +1237,7 @@ "id": "tk-provider-load.method-not-found:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "2aa7f595f31c"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1260,11 +1265,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1287,7 +1292,7 @@ "id": "tk-provider-load.transport-rejection:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "bec611c1195e"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1315,11 +1320,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1342,7 +1347,7 @@ "id": "tk-provider-load.transport-rejection-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "0439d2f2ef88"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1370,11 +1375,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", 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 5403614ef35..1dffe70c390 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "e518040cbd40e3cc8c22e0b70b6de1087386936f75ed2f65f6e7b4fcdc344ba2", "platform": "darwin", @@ -255,6 +255,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "5366d6506b21": { "name": "linear.listTeams#1", "args": [ @@ -586,6 +591,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "93e7019b0698": { "status": "rejected", "startedAt": 0, @@ -708,10 +718,6 @@ } } }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -734,19 +740,11 @@ } ] }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c1c057249f99": { "name": "selectedLinearTeamIds", "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -757,9 +755,10 @@ "isRpcDeliveryUnknown": true } }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "d67c0881cceb": { "name": "linear.listTeams#1", @@ -814,10 +813,6 @@ }, "sent": 2 }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -869,12 +864,22 @@ "isRpcDeliveryUnknown": false } }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, "fccc4f6aae53": { "name": "linearTeams", "value": { "error": "refused" }, "sent": 2 + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -884,7 +889,7 @@ "id": "tk-provider-load.normal:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -903,7 +908,7 @@ "id": "tk-provider-load.normal:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -923,7 +928,7 @@ "id": "tk-provider-load.normal:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -951,11 +956,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -978,7 +983,7 @@ "id": "tk-provider-load.result-absent:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "3195d92ed493"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "93e7019b0698" @@ -991,7 +996,7 @@ "id": "tk-provider-load.result-absent:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "3195d92ed493", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "93e7019b0698", @@ -1005,7 +1010,7 @@ "id": "tk-provider-load.result-absent:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "3195d92ed493", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "93e7019b0698", @@ -1027,11 +1032,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1048,7 +1053,7 @@ "id": "tk-provider-load.result-null:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "86e8543b7327"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "335785e8af30" @@ -1061,7 +1066,7 @@ "id": "tk-provider-load.result-null:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "86e8543b7327", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "335785e8af30", @@ -1075,7 +1080,7 @@ "id": "tk-provider-load.result-null:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "86e8543b7327", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "335785e8af30", @@ -1097,11 +1102,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1118,7 +1123,7 @@ "id": "tk-provider-load.inner-ok-missing:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "ec40cd1ee2d6"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9" @@ -1131,7 +1136,7 @@ "id": "tk-provider-load.inner-ok-missing:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "ec40cd1ee2d6", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1145,7 +1150,7 @@ "id": "tk-provider-load.inner-ok-missing:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "ec40cd1ee2d6", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1167,11 +1172,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1188,7 +1193,7 @@ "id": "tk-provider-load.inner-false-string-error:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "1a92facf7fe2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9" @@ -1201,7 +1206,7 @@ "id": "tk-provider-load.inner-false-string-error:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "1a92facf7fe2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1215,7 +1220,7 @@ "id": "tk-provider-load.inner-false-string-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "1a92facf7fe2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1237,11 +1242,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1258,7 +1263,7 @@ "id": "tk-provider-load.inner-false-object-error:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "83bdb40ba3c7"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9" @@ -1271,7 +1276,7 @@ "id": "tk-provider-load.inner-false-object-error:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "83bdb40ba3c7", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1285,7 +1290,7 @@ "id": "tk-provider-load.inner-false-object-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "83bdb40ba3c7", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "9b27648fc6b9", @@ -1307,11 +1312,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1328,7 +1333,7 @@ "id": "tk-provider-load.outer-refused:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "53b5d5ee1dda"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918" @@ -1341,7 +1346,7 @@ "id": "tk-provider-load.outer-refused:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "53b5d5ee1dda", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918", @@ -1355,7 +1360,7 @@ "id": "tk-provider-load.outer-refused:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "53b5d5ee1dda", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918", @@ -1377,11 +1382,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1398,7 +1403,7 @@ "id": "tk-provider-load.outer-refused-no-message:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "0bf4b379341b"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081" @@ -1411,7 +1416,7 @@ "id": "tk-provider-load.outer-refused-no-message:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "0bf4b379341b", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081", @@ -1425,7 +1430,7 @@ "id": "tk-provider-load.outer-refused-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "0bf4b379341b", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081", @@ -1447,11 +1452,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1468,7 +1473,7 @@ "id": "tk-provider-load.method-not-found:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "78b31c69b43a"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81" @@ -1481,7 +1486,7 @@ "id": "tk-provider-load.method-not-found:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "78b31c69b43a", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81", @@ -1495,7 +1500,7 @@ "id": "tk-provider-load.method-not-found:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "78b31c69b43a", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81", @@ -1517,11 +1522,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1538,7 +1543,7 @@ "id": "tk-provider-load.transport-rejection:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "5366d6506b21"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed" @@ -1551,7 +1556,7 @@ "id": "tk-provider-load.transport-rejection:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "5366d6506b21", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed", @@ -1565,7 +1570,7 @@ "id": "tk-provider-load.transport-rejection:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "5366d6506b21", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed", @@ -1587,11 +1592,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1608,7 +1613,7 @@ "id": "tk-provider-load.transport-rejection-no-message:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "d67c0881cceb"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f" @@ -1621,7 +1626,7 @@ "id": "tk-provider-load.transport-rejection-no-message:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "d67c0881cceb", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f", @@ -1635,7 +1640,7 @@ "id": "tk-provider-load.transport-rejection-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "d67c0881cceb", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f", @@ -1657,11 +1662,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", 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 26bc34d6b87..536fc87f150 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "f02acd2ed6319b8cb674c04b41a1e96c50e53123a8914790acc8af5410d63f98", "platform": "darwin", @@ -27,6 +27,11 @@ }, "workspaces": [] }, + "0683cac72f6d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 2 + }, "0f9c77bd54ee": { "name": "github.countWorkItems#1", "args": [ @@ -127,14 +132,6 @@ } } }, - "1fc96e936096": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, - "30b8910febfb": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -260,6 +257,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "50edb1eae337": { "name": "linear.status#1", "args": [ @@ -544,6 +546,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "92d390fd43e3": { "name": "linear.status#1", "args": [ @@ -577,11 +584,21 @@ } } }, + "963a608dcb63": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 3 + }, "978c959625ec": { "name": "linearConnected", "value": false, "sent": 1 }, + "9a57dee2b9b2": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 4 + }, "a6bfe3e8ec00": { "name": "settings.update#1", "args": [ @@ -668,10 +685,6 @@ "value": [], "sent": 1 }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -689,10 +702,6 @@ }, "sent": 1 }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c172f642b601": { "name": "linear.status#1", "args": [ @@ -732,10 +741,6 @@ "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -746,13 +751,10 @@ "isRpcDeliveryUnknown": true } }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" - }, - "d538188eba86": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "d57b111fe4e9": { "name": "linear.status#1", @@ -788,10 +790,6 @@ } } }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "e27165f1babf": { "name": "github.listWorkItems#1", "args": [ @@ -908,6 +906,16 @@ "ok": false } } + }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -917,7 +925,7 @@ "id": "tk-provider-load.normal:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -936,7 +944,7 @@ "id": "tk-provider-load.normal:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -956,7 +964,7 @@ "id": "tk-provider-load.normal:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -984,11 +992,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1011,7 +1019,7 @@ "id": "tk-provider-load.result-absent:linear-context-settled", "observation": { "sender": ["8832bbbd6cb0"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "545c802fdcb4" @@ -1024,7 +1032,7 @@ "id": "tk-provider-load.result-absent:persist-teams-settled", "observation": { "sender": ["8832bbbd6cb0", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "545c802fdcb4", @@ -1038,7 +1046,7 @@ "id": "tk-provider-load.result-absent:github-page-settled", "observation": { "sender": ["8832bbbd6cb0", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "545c802fdcb4", @@ -1053,7 +1061,7 @@ "id": "tk-provider-load.result-absent:github-count-settled", "observation": { "sender": ["8832bbbd6cb0", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "545c802fdcb4", @@ -1069,7 +1077,7 @@ "id": "tk-provider-load.result-null:linear-context-settled", "observation": { "sender": ["71fb4049425f"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f797d088ff86" @@ -1082,7 +1090,7 @@ "id": "tk-provider-load.result-null:persist-teams-settled", "observation": { "sender": ["71fb4049425f", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f797d088ff86", @@ -1096,7 +1104,7 @@ "id": "tk-provider-load.result-null:github-page-settled", "observation": { "sender": ["71fb4049425f", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f797d088ff86", @@ -1111,7 +1119,7 @@ "id": "tk-provider-load.result-null:github-count-settled", "observation": { "sender": ["71fb4049425f", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f797d088ff86", @@ -1127,7 +1135,7 @@ "id": "tk-provider-load.inner-ok-missing:linear-context-settled", "observation": { "sender": ["92d390fd43e3"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -1146,7 +1154,7 @@ "id": "tk-provider-load.inner-ok-missing:persist-teams-settled", "observation": { "sender": ["92d390fd43e3", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1166,7 +1174,7 @@ "id": "tk-provider-load.inner-ok-missing:github-page-settled", "observation": { "sender": ["92d390fd43e3", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1187,7 +1195,7 @@ "id": "tk-provider-load.inner-ok-missing:github-count-settled", "observation": { "sender": ["92d390fd43e3", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1209,7 +1217,7 @@ "id": "tk-provider-load.inner-false-string-error:linear-context-settled", "observation": { "sender": ["50edb1eae337"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -1228,7 +1236,7 @@ "id": "tk-provider-load.inner-false-string-error:persist-teams-settled", "observation": { "sender": ["50edb1eae337", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1248,7 +1256,7 @@ "id": "tk-provider-load.inner-false-string-error:github-page-settled", "observation": { "sender": ["50edb1eae337", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1269,7 +1277,7 @@ "id": "tk-provider-load.inner-false-string-error:github-count-settled", "observation": { "sender": ["50edb1eae337", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1291,7 +1299,7 @@ "id": "tk-provider-load.inner-false-object-error:linear-context-settled", "observation": { "sender": ["578a67ab5d44"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -1310,7 +1318,7 @@ "id": "tk-provider-load.inner-false-object-error:persist-teams-settled", "observation": { "sender": ["578a67ab5d44", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1330,7 +1338,7 @@ "id": "tk-provider-load.inner-false-object-error:github-page-settled", "observation": { "sender": ["578a67ab5d44", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1351,7 +1359,7 @@ "id": "tk-provider-load.inner-false-object-error:github-count-settled", "observation": { "sender": ["578a67ab5d44", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1373,7 +1381,7 @@ "id": "tk-provider-load.outer-refused:linear-context-settled", "observation": { "sender": ["f7f4c1dee514"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918" @@ -1386,7 +1394,7 @@ "id": "tk-provider-load.outer-refused:persist-teams-settled", "observation": { "sender": ["f7f4c1dee514", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918", @@ -1400,7 +1408,7 @@ "id": "tk-provider-load.outer-refused:github-page-settled", "observation": { "sender": ["f7f4c1dee514", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918", @@ -1415,7 +1423,7 @@ "id": "tk-provider-load.outer-refused:github-count-settled", "observation": { "sender": ["f7f4c1dee514", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "32a7c0ae7918", @@ -1431,7 +1439,7 @@ "id": "tk-provider-load.outer-refused-no-message:linear-context-settled", "observation": { "sender": ["c172f642b601"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081" @@ -1444,7 +1452,7 @@ "id": "tk-provider-load.outer-refused-no-message:persist-teams-settled", "observation": { "sender": ["c172f642b601", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081", @@ -1458,7 +1466,7 @@ "id": "tk-provider-load.outer-refused-no-message:github-page-settled", "observation": { "sender": ["c172f642b601", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081", @@ -1473,7 +1481,7 @@ "id": "tk-provider-load.outer-refused-no-message:github-count-settled", "observation": { "sender": ["c172f642b601", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "f3b516f62081", @@ -1489,7 +1497,7 @@ "id": "tk-provider-load.method-not-found:linear-context-settled", "observation": { "sender": ["d57b111fe4e9"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81" @@ -1502,7 +1510,7 @@ "id": "tk-provider-load.method-not-found:persist-teams-settled", "observation": { "sender": ["d57b111fe4e9", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81", @@ -1516,7 +1524,7 @@ "id": "tk-provider-load.method-not-found:github-page-settled", "observation": { "sender": ["d57b111fe4e9", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81", @@ -1531,7 +1539,7 @@ "id": "tk-provider-load.method-not-found:github-count-settled", "observation": { "sender": ["d57b111fe4e9", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "b948e8307e81", @@ -1547,7 +1555,7 @@ "id": "tk-provider-load.transport-rejection:linear-context-settled", "observation": { "sender": ["158449a16852"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed" @@ -1560,7 +1568,7 @@ "id": "tk-provider-load.transport-rejection:persist-teams-settled", "observation": { "sender": ["158449a16852", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed", @@ -1574,7 +1582,7 @@ "id": "tk-provider-load.transport-rejection:github-page-settled", "observation": { "sender": ["158449a16852", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed", @@ -1589,7 +1597,7 @@ "id": "tk-provider-load.transport-rejection:github-count-settled", "observation": { "sender": ["158449a16852", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "a947768bc0ed", @@ -1605,7 +1613,7 @@ "id": "tk-provider-load.transport-rejection-no-message:linear-context-settled", "observation": { "sender": ["4620b5cc7ae9"], - "payloads": ["e19509ebde55"], + "payloads": ["4d0c1292156f"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f" @@ -1618,7 +1626,7 @@ "id": "tk-provider-load.transport-rejection-no-message:persist-teams-settled", "observation": { "sender": ["4620b5cc7ae9", "388e74bd02c8"], - "payloads": ["e19509ebde55", "1fc96e936096"], + "payloads": ["4d0c1292156f", "0683cac72f6d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f", @@ -1632,7 +1640,7 @@ "id": "tk-provider-load.transport-rejection-no-message:github-page-settled", "observation": { "sender": ["4620b5cc7ae9", "388e74bd02c8", "e27165f1babf"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f", @@ -1647,7 +1655,7 @@ "id": "tk-provider-load.transport-rejection-no-message:github-count-settled", "observation": { "sender": ["4620b5cc7ae9", "388e74bd02c8", "e27165f1babf", "14b751028813"], - "payloads": ["e19509ebde55", "1fc96e936096", "d538188eba86", "30b8910febfb"], + "payloads": ["4d0c1292156f", "0683cac72f6d", "963a608dcb63", "9a57dee2b9b2"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "c7584e82c72f", 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 1230026632f..c14d3a1d4ef 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "2b3006bfe1e7f3040b86ccc698e58ae19ae1aa11389aee2ec2a8f2dfdb0270f4", "platform": "darwin", @@ -230,6 +230,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "552cce3107ea": { "name": "linearWorkspaces", "value": [ @@ -371,6 +376,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "a4eafb8182c6": { "name": "settings.update#1", "args": [ @@ -473,10 +483,6 @@ } } }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, "b8c3d8a82464": { "name": "settings.update#1", "args": [ @@ -511,19 +517,11 @@ } } }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c1c057249f99": { "name": "selectedLinearTeamIds", "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, "cddf8f2121df": { "name": "settings.update#1", "args": [ @@ -554,9 +552,10 @@ } } }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "dc2afe927f03": { "name": "settings.update#1", @@ -628,10 +627,6 @@ } } }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -670,6 +665,16 @@ "isRpcDeliveryUnknown": true } } + }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -679,7 +684,7 @@ "id": "tk-provider-load.prelude:linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -698,7 +703,7 @@ "id": "tk-provider-load.normal:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -718,7 +723,7 @@ "id": "tk-provider-load.normal:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -746,11 +751,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -773,7 +778,7 @@ "id": "tk-provider-load.result-absent:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "cddf8f2121df"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -793,7 +798,7 @@ "id": "tk-provider-load.result-absent:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "cddf8f2121df", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -821,11 +826,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -848,7 +853,7 @@ "id": "tk-provider-load.result-null:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "1063fa5ae613"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -868,7 +873,7 @@ "id": "tk-provider-load.result-null:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "1063fa5ae613", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -896,11 +901,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -923,7 +928,7 @@ "id": "tk-provider-load.inner-ok-missing:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "470fb30cb7ce"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -943,7 +948,7 @@ "id": "tk-provider-load.inner-ok-missing:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "470fb30cb7ce", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -971,11 +976,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -998,7 +1003,7 @@ "id": "tk-provider-load.inner-false-string-error:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "b8c3d8a82464"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1018,7 +1023,7 @@ "id": "tk-provider-load.inner-false-string-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "b8c3d8a82464", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1046,11 +1051,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1073,7 +1078,7 @@ "id": "tk-provider-load.inner-false-object-error:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "e0541755540c"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1093,7 +1098,7 @@ "id": "tk-provider-load.inner-false-object-error:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "e0541755540c", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1121,11 +1126,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1148,7 +1153,7 @@ "id": "tk-provider-load.outer-refused:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "3382ae217088"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1168,7 +1173,7 @@ "id": "tk-provider-load.outer-refused:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "3382ae217088", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1196,11 +1201,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1223,7 +1228,7 @@ "id": "tk-provider-load.outer-refused-no-message:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "dc2afe927f03"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1243,7 +1248,7 @@ "id": "tk-provider-load.outer-refused-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "dc2afe927f03", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1271,11 +1276,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1298,7 +1303,7 @@ "id": "tk-provider-load.method-not-found:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "012ba9c9e5d6"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1318,7 +1323,7 @@ "id": "tk-provider-load.method-not-found:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "012ba9c9e5d6", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1346,11 +1351,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1373,7 +1378,7 @@ "id": "tk-provider-load.transport-rejection:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "f53dbb92bca4"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1393,7 +1398,7 @@ "id": "tk-provider-load.transport-rejection:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "f53dbb92bca4", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1421,11 +1426,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", @@ -1448,7 +1453,7 @@ "id": "tk-provider-load.transport-rejection-no-message:persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a4eafb8182c6"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1468,7 +1473,7 @@ "id": "tk-provider-load.transport-rejection-no-message:github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a4eafb8182c6", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -1496,11 +1501,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", 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 a798129970e..93d1d9ff3da 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8", "scenarioSha256": "6373b83783b1a9b061bede3bba7aa3b573c3a50b897102a094df93f926856fdc", "platform": "darwin", @@ -262,6 +262,11 @@ "repoListStatus": "error", "repos": [] }, + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 + }, "63dfbb6942f2": { "status": "rejected", "startedAt": 0, @@ -272,10 +277,6 @@ "isRpcDeliveryUnknown": false } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6e5c6593dad8": { "name": "repo.list#1", "args": [ @@ -613,7 +614,7 @@ "id": "tasks-route-repo-list.prelude:repos-pending", "observation": { "sender": ["26accd69bc48"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "9270aeb7d9c6" @@ -626,7 +627,7 @@ "id": "tasks-route-repo-list.normal:repos-loaded", "observation": { "sender": ["49bee46155dd"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "fcd8faa86ca8" @@ -639,7 +640,7 @@ "id": "tasks-route-repo-list.result-absent:repos-loaded", "observation": { "sender": ["2ebe4d776f9b"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "2381a3fe154e" @@ -652,7 +653,7 @@ "id": "tasks-route-repo-list.result-null:repos-loaded", "observation": { "sender": ["38e790fd9e9c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "63dfbb6942f2" @@ -665,7 +666,7 @@ "id": "tasks-route-repo-list.inner-ok-missing:repos-loaded", "observation": { "sender": ["06b63e0d9986"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "eb79a9b3682a" @@ -678,7 +679,7 @@ "id": "tasks-route-repo-list.inner-false-string-error:repos-loaded", "observation": { "sender": ["f96e83d33565"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "eb79a9b3682a" @@ -691,7 +692,7 @@ "id": "tasks-route-repo-list.inner-false-object-error:repos-loaded", "observation": { "sender": ["9d3fa0db2665"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "eb79a9b3682a" @@ -704,7 +705,7 @@ "id": "tasks-route-repo-list.outer-refused:repos-loaded", "observation": { "sender": ["b9f0f1e94cd9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "32a7c0ae7918" @@ -717,7 +718,7 @@ "id": "tasks-route-repo-list.outer-refused-no-message:repos-loaded", "observation": { "sender": ["06fc8e7b85d5"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "f3b516f62081" @@ -730,7 +731,7 @@ "id": "tasks-route-repo-list.method-not-found:repos-loaded", "observation": { "sender": ["e341bd05e614"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "b948e8307e81" @@ -743,7 +744,7 @@ "id": "tasks-route-repo-list.transport-rejection:repos-loaded", "observation": { "sender": ["6e5c6593dad8"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "a947768bc0ed" @@ -756,7 +757,7 @@ "id": "tasks-route-repo-list.transport-rejection-no-message:repos-loaded", "observation": { "sender": ["cc1facdf008c"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "c7584e82c72f" 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 798f62629f6..a8a87c5a029 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "ea5c32c4dbb67aae1ebaf809a28104d52d189e5153d9b28285f4d8a6d78753ea", "platform": "darwin", @@ -157,6 +157,11 @@ } ] }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -228,10 +233,6 @@ } } }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "41d2452d4ebe": { "github": [ { @@ -572,9 +573,24 @@ } ] }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, "96555ad1314a": { "github": [] }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "a4ee5d16b4f6": { "status": "fulfilled", "startedAt": 0, @@ -656,10 +672,6 @@ } ] }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -720,6 +732,11 @@ "isRpcDeliveryUnknown": true } }, + "c9256f29d706": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 + }, "ce28e5229996": { "name": "github.listWorkItems#1", "args": [ @@ -756,18 +773,6 @@ } } }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" - }, "ef416ca3ea2c": { "name": "github.listWorkItems#1", "args": [ @@ -983,7 +988,7 @@ "id": "tw-smart-search-all-providers.normal:github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -995,7 +1000,7 @@ "id": "tw-smart-search-all-providers.normal:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -1008,7 +1013,7 @@ "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1022,7 +1027,7 @@ "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1044,11 +1049,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1065,7 +1070,7 @@ "id": "tw-smart-search-all-providers.result-absent:github-items", "observation": { "sender": ["f8f245caedb5"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "f51f34589c7a" }, @@ -1077,7 +1082,7 @@ "id": "tw-smart-search-all-providers.result-absent:gitlab-items", "observation": { "sender": ["f8f245caedb5", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "f51f34589c7a", "gitlab": "6e2d75e3bbd7" @@ -1090,7 +1095,7 @@ "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { "sender": ["f8f245caedb5", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "f51f34589c7a", "gitlab": "6e2d75e3bbd7", @@ -1104,7 +1109,7 @@ "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { "sender": ["f8f245caedb5", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "f51f34589c7a", "gitlab": "6e2d75e3bbd7", @@ -1126,11 +1131,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "f51f34589c7a", @@ -1147,7 +1152,7 @@ "id": "tw-smart-search-all-providers.result-null:github-items", "observation": { "sender": ["ef416ca3ea2c"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "155f61ed496f" }, @@ -1159,7 +1164,7 @@ "id": "tw-smart-search-all-providers.result-null:gitlab-items", "observation": { "sender": ["ef416ca3ea2c", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "155f61ed496f", "gitlab": "6e2d75e3bbd7" @@ -1172,7 +1177,7 @@ "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { "sender": ["ef416ca3ea2c", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "155f61ed496f", "gitlab": "6e2d75e3bbd7", @@ -1186,7 +1191,7 @@ "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { "sender": ["ef416ca3ea2c", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "155f61ed496f", "gitlab": "6e2d75e3bbd7", @@ -1208,11 +1213,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "155f61ed496f", @@ -1229,7 +1234,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:github-items", "observation": { "sender": ["f7877799c609"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "25716369cd8f" }, @@ -1241,7 +1246,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:gitlab-items", "observation": { "sender": ["f7877799c609", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7" @@ -1254,7 +1259,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { "sender": ["f7877799c609", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1268,7 +1273,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { "sender": ["f7877799c609", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1290,11 +1295,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "25716369cd8f", @@ -1311,7 +1316,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:github-items", "observation": { "sender": ["13833f2512ec"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "25716369cd8f" }, @@ -1323,7 +1328,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:gitlab-items", "observation": { "sender": ["13833f2512ec", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7" @@ -1336,7 +1341,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { "sender": ["13833f2512ec", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1350,7 +1355,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { "sender": ["13833f2512ec", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1372,11 +1377,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "25716369cd8f", @@ -1393,7 +1398,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:github-items", "observation": { "sender": ["61210ae02f8d"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "25716369cd8f" }, @@ -1405,7 +1410,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:gitlab-items", "observation": { "sender": ["61210ae02f8d", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7" @@ -1418,7 +1423,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { "sender": ["61210ae02f8d", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1432,7 +1437,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { "sender": ["61210ae02f8d", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "25716369cd8f", "gitlab": "6e2d75e3bbd7", @@ -1454,11 +1459,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "25716369cd8f", @@ -1475,7 +1480,7 @@ "id": "tw-smart-search-all-providers.outer-refused:github-items", "observation": { "sender": ["50263a3726f9"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "32a7c0ae7918" }, @@ -1487,7 +1492,7 @@ "id": "tw-smart-search-all-providers.outer-refused:gitlab-items", "observation": { "sender": ["50263a3726f9", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "32a7c0ae7918", "gitlab": "6e2d75e3bbd7" @@ -1500,7 +1505,7 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { "sender": ["50263a3726f9", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "32a7c0ae7918", "gitlab": "6e2d75e3bbd7", @@ -1514,7 +1519,7 @@ "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { "sender": ["50263a3726f9", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "32a7c0ae7918", "gitlab": "6e2d75e3bbd7", @@ -1536,11 +1541,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "32a7c0ae7918", @@ -1557,7 +1562,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:github-items", "observation": { "sender": ["ce28e5229996"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "f3b516f62081" }, @@ -1569,7 +1574,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:gitlab-items", "observation": { "sender": ["ce28e5229996", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "f3b516f62081", "gitlab": "6e2d75e3bbd7" @@ -1582,7 +1587,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { "sender": ["ce28e5229996", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "f3b516f62081", "gitlab": "6e2d75e3bbd7", @@ -1596,7 +1601,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { "sender": ["ce28e5229996", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "f3b516f62081", "gitlab": "6e2d75e3bbd7", @@ -1618,11 +1623,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "f3b516f62081", @@ -1639,7 +1644,7 @@ "id": "tw-smart-search-all-providers.method-not-found:github-items", "observation": { "sender": ["80cc566cdd55"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "b948e8307e81" }, @@ -1651,7 +1656,7 @@ "id": "tw-smart-search-all-providers.method-not-found:gitlab-items", "observation": { "sender": ["80cc566cdd55", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "b948e8307e81", "gitlab": "6e2d75e3bbd7" @@ -1664,7 +1669,7 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { "sender": ["80cc566cdd55", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "b948e8307e81", "gitlab": "6e2d75e3bbd7", @@ -1678,7 +1683,7 @@ "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { "sender": ["80cc566cdd55", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "b948e8307e81", "gitlab": "6e2d75e3bbd7", @@ -1700,11 +1705,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "b948e8307e81", @@ -1721,7 +1726,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:github-items", "observation": { "sender": ["37c4b6aa154e"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "a947768bc0ed" }, @@ -1733,7 +1738,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:gitlab-items", "observation": { "sender": ["37c4b6aa154e", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "a947768bc0ed", "gitlab": "6e2d75e3bbd7" @@ -1746,7 +1751,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { "sender": ["37c4b6aa154e", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "a947768bc0ed", "gitlab": "6e2d75e3bbd7", @@ -1760,7 +1765,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { "sender": ["37c4b6aa154e", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "a947768bc0ed", "gitlab": "6e2d75e3bbd7", @@ -1782,11 +1787,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "a947768bc0ed", @@ -1803,7 +1808,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:github-items", "observation": { "sender": ["42f4c910f308"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "c7584e82c72f" }, @@ -1815,7 +1820,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:gitlab-items", "observation": { "sender": ["42f4c910f308", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "c7584e82c72f", "gitlab": "6e2d75e3bbd7" @@ -1828,7 +1833,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { "sender": ["42f4c910f308", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "c7584e82c72f", "gitlab": "6e2d75e3bbd7", @@ -1842,7 +1847,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { "sender": ["42f4c910f308", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "c7584e82c72f", "gitlab": "6e2d75e3bbd7", @@ -1864,11 +1869,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "c7584e82c72f", 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 af3e02713fd..8f44dea0578 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "541a282829d3aa5d6b66eeba06e783368f397178ff0d2bdf3e87bccdc62b690f", "platform": "darwin", @@ -83,6 +83,11 @@ } ] }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -161,10 +166,6 @@ } } }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "41d2452d4ebe": { "github": [ { @@ -503,6 +504,11 @@ } } }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, "94d9f7a1e105": { "name": "gitlab.listWorkItems#1", "args": [ @@ -540,6 +546,16 @@ } } }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "9f9af59ae576": { "branches": [ { @@ -675,10 +691,6 @@ } } }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -740,6 +752,11 @@ "isRpcDeliveryUnknown": true } }, + "c9256f29d706": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 + }, "e2325a86e69b": { "name": "gitlab.listWorkItems#1", "args": [ @@ -778,18 +795,6 @@ } } }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" - }, "f01419051ddf": { "name": "gitlab.listWorkItems#1", "args": [ @@ -990,7 +995,7 @@ "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -1002,7 +1007,7 @@ "id": "tw-smart-search-all-providers.normal:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -1015,7 +1020,7 @@ "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1029,7 +1034,7 @@ "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1051,11 +1056,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1072,7 +1077,7 @@ "id": "tw-smart-search-all-providers.result-absent:gitlab-items", "observation": { "sender": ["5bce68072dc3", "b236fc09fef7"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "be85b10635d4" @@ -1085,7 +1090,7 @@ "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { "sender": ["5bce68072dc3", "b236fc09fef7", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "be85b10635d4", @@ -1099,7 +1104,7 @@ "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { "sender": ["5bce68072dc3", "b236fc09fef7", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "be85b10635d4", @@ -1121,11 +1126,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1142,7 +1147,7 @@ "id": "tw-smart-search-all-providers.result-null:gitlab-items", "observation": { "sender": ["5bce68072dc3", "76fa023e535f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "a25ac3f73d46" @@ -1155,7 +1160,7 @@ "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { "sender": ["5bce68072dc3", "76fa023e535f", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "a25ac3f73d46", @@ -1169,7 +1174,7 @@ "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { "sender": ["5bce68072dc3", "76fa023e535f", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "a25ac3f73d46", @@ -1191,11 +1196,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1212,7 +1217,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:gitlab-items", "observation": { "sender": ["5bce68072dc3", "94d9f7a1e105"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f" @@ -1225,7 +1230,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { "sender": ["5bce68072dc3", "94d9f7a1e105", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1239,7 +1244,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { "sender": ["5bce68072dc3", "94d9f7a1e105", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1261,11 +1266,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1282,7 +1287,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:gitlab-items", "observation": { "sender": ["5bce68072dc3", "8eb709e28997"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f" @@ -1295,7 +1300,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { "sender": ["5bce68072dc3", "8eb709e28997", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1309,7 +1314,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "8eb709e28997", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1331,11 +1336,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1352,7 +1357,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:gitlab-items", "observation": { "sender": ["5bce68072dc3", "3698dc9e21e5"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f" @@ -1365,7 +1370,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { "sender": ["5bce68072dc3", "3698dc9e21e5", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1379,7 +1384,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "3698dc9e21e5", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "25716369cd8f", @@ -1401,11 +1406,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1422,7 +1427,7 @@ "id": "tw-smart-search-all-providers.outer-refused:gitlab-items", "observation": { "sender": ["5bce68072dc3", "fb884a9370b1"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "32a7c0ae7918" @@ -1435,7 +1440,7 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { "sender": ["5bce68072dc3", "fb884a9370b1", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "32a7c0ae7918", @@ -1449,7 +1454,7 @@ "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { "sender": ["5bce68072dc3", "fb884a9370b1", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "32a7c0ae7918", @@ -1471,11 +1476,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1492,7 +1497,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:gitlab-items", "observation": { "sender": ["5bce68072dc3", "5b5689593188"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "f3b516f62081" @@ -1505,7 +1510,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { "sender": ["5bce68072dc3", "5b5689593188", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "f3b516f62081", @@ -1519,7 +1524,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "5b5689593188", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "f3b516f62081", @@ -1541,11 +1546,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1562,7 +1567,7 @@ "id": "tw-smart-search-all-providers.method-not-found:gitlab-items", "observation": { "sender": ["5bce68072dc3", "e2325a86e69b"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "b948e8307e81" @@ -1575,7 +1580,7 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { "sender": ["5bce68072dc3", "e2325a86e69b", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "b948e8307e81", @@ -1589,7 +1594,7 @@ "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { "sender": ["5bce68072dc3", "e2325a86e69b", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "b948e8307e81", @@ -1611,11 +1616,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1632,7 +1637,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:gitlab-items", "observation": { "sender": ["5bce68072dc3", "67ba0246dbf8"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "a947768bc0ed" @@ -1645,7 +1650,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { "sender": ["5bce68072dc3", "67ba0246dbf8", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "a947768bc0ed", @@ -1659,7 +1664,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { "sender": ["5bce68072dc3", "67ba0246dbf8", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "a947768bc0ed", @@ -1681,11 +1686,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1702,7 +1707,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f01419051ddf"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "c7584e82c72f" @@ -1715,7 +1720,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { "sender": ["5bce68072dc3", "f01419051ddf", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "c7584e82c72f", @@ -1729,7 +1734,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "f01419051ddf", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "c7584e82c72f", @@ -1751,11 +1756,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", 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 50f2e6791dd..928c9bf2d76 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "767044526344237daee0a3f981a10615fbb9ebc3f45c2f6f41f9b8b16d362082", "platform": "darwin", @@ -102,6 +102,11 @@ } ] }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -140,10 +145,6 @@ } ] }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "3c5eceeb8463": { "name": "linear.listIssues#1", "args": [ @@ -331,6 +332,16 @@ } } }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, "957cc0c5ead6": { "status": "rejected", "startedAt": 0, @@ -341,6 +352,11 @@ "isRpcDeliveryUnknown": false } }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "a4ee5d16b4f6": { "status": "fulfilled", "startedAt": 0, @@ -485,10 +501,6 @@ } } }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -540,6 +552,11 @@ "isRpcDeliveryUnknown": true } }, + "c9256f29d706": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 + }, "d7c2c3caeb26": { "name": "linear.listIssues#1", "args": [ @@ -578,14 +595,6 @@ } } }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "ec10770e2214": { "name": "linear.listIssues#1", "args": [ @@ -623,10 +632,6 @@ } } }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" - }, "f32ad26605d0": { "name": "gitlab.listWorkItems#1", "args": [ @@ -837,7 +842,7 @@ "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -849,7 +854,7 @@ "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -862,7 +867,7 @@ "id": "tw-smart-search-all-providers.prelude:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -876,7 +881,7 @@ "id": "tw-smart-search-all-providers.prelude:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -898,11 +903,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -926,11 +931,11 @@ "f3a7d3f5dc3c" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -954,11 +959,11 @@ "7a91e9a2c1bb" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -982,11 +987,11 @@ "ec10770e2214" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1010,11 +1015,11 @@ "f7b4f4fa8d5a" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1038,11 +1043,11 @@ "b68d510a9e89" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1066,11 +1071,11 @@ "3c5eceeb8463" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1094,11 +1099,11 @@ "adb630f7c310" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1122,11 +1127,11 @@ "d7c2c3caeb26" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1150,11 +1155,11 @@ "f64e4725150b" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1178,11 +1183,11 @@ "090ea9e6ac63" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", 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 1851e4ce4db..923f7fd86fd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "40a8ea6a916d4266bd80148e40fd817bbe80cefa02465b88d37c42cebed44f22", "platform": "darwin", @@ -135,6 +135,11 @@ } } }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -209,10 +214,6 @@ } ] }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "41d2452d4ebe": { "github": [ { @@ -430,6 +431,16 @@ } } }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, "957cc0c5ead6": { "status": "rejected", "startedAt": 0, @@ -473,6 +484,11 @@ } } }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "a4ee5d16b4f6": { "status": "fulfilled", "startedAt": 0, @@ -575,10 +591,6 @@ } } }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -692,17 +704,10 @@ } } }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { + "c9256f29d706": { "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 }, "f32ad26605d0": { "name": "gitlab.listWorkItems#1", @@ -843,7 +848,7 @@ "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -855,7 +860,7 @@ "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -868,7 +873,7 @@ "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -882,7 +887,7 @@ "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -904,11 +909,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -925,7 +930,7 @@ "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "5a41c0588421"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -939,7 +944,7 @@ "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "5a41c0588421", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -961,11 +966,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -982,7 +987,7 @@ "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "78f8899bda05"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -996,7 +1001,7 @@ "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "78f8899bda05", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1018,11 +1023,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1039,7 +1044,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "27fa02820da8"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1053,7 +1058,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "27fa02820da8", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1075,11 +1080,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1096,7 +1101,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "c770655d7a45"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1110,7 +1115,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "c770655d7a45", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1132,11 +1137,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1153,7 +1158,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "619f7466012f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1167,7 +1172,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "619f7466012f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1189,11 +1194,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1210,7 +1215,7 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "3351dd9fcc16"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1224,7 +1229,7 @@ "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "3351dd9fcc16", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1246,11 +1251,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1267,7 +1272,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "fb4807630e1d"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1281,7 +1286,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "fb4807630e1d", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1303,11 +1308,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1324,7 +1329,7 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "b4185f815a19"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1338,7 +1343,7 @@ "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "b4185f815a19", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1360,11 +1365,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1381,7 +1386,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "99e5be0a1b11"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1395,7 +1400,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "99e5be0a1b11", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1417,11 +1422,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1438,7 +1443,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "0914e9c666b1"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1452,7 +1457,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "0914e9c666b1", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1474,11 +1479,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", 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 62b8ef91c5a..11df5b13615 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "aa06630cd902fd5dde5181bddd38f5478ae5b48044a3105b090728158aa9a621", "platform": "darwin", @@ -95,6 +95,11 @@ } ] }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -133,10 +138,6 @@ } ] }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "3842f5bcd677": { "name": "repo.searchRefs#1", "args": [ @@ -459,6 +460,21 @@ } ] }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "a4263a13d324": { "branches": [], "github": [ @@ -618,10 +634,6 @@ } } }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -683,6 +695,11 @@ "isRpcDeliveryUnknown": true } }, + "c9256f29d706": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 + }, "d1572a7d1ddb": { "github": [ { @@ -773,18 +790,6 @@ } } }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" - }, "f32ad26605d0": { "name": "gitlab.listWorkItems#1", "args": [ @@ -898,7 +903,7 @@ "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -910,7 +915,7 @@ "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -923,7 +928,7 @@ "id": "tw-smart-search-all-providers.prelude:linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -937,7 +942,7 @@ "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -959,11 +964,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -980,7 +985,7 @@ "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "5ff512429b6c"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1002,11 +1007,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1023,7 +1028,7 @@ "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "553cf244460a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1045,11 +1050,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1066,7 +1071,7 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "b2d9361f1d3d"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1088,11 +1093,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1109,7 +1114,7 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "b721d1733537"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1131,11 +1136,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1152,7 +1157,7 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "3842f5bcd677"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1174,11 +1179,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1195,7 +1200,7 @@ "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "59e25358865a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1217,11 +1222,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1238,7 +1243,7 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "d4061d056a75"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1260,11 +1265,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1281,7 +1286,7 @@ "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "5d85e47efa46"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1303,11 +1308,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1324,7 +1329,7 @@ "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "39576819ef3f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1346,11 +1351,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", @@ -1367,7 +1372,7 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "e6d2fd7367d3"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -1389,11 +1394,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", 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 2d02aa0aa17..ac2c7ff6c69 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "014040846f649f3c6ca1175b610ed1b51bae3001e7de103549d7ee1a511a2506", "platform": "darwin", @@ -121,10 +121,6 @@ } } }, - "1561684e8ae9": { - "name": "github.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" - }, "198ac889ae28": { "name": "error", "value": "transport failure", @@ -260,6 +256,11 @@ "value": "", "sent": 1 }, + "6add5b7ef51f": { + "name": "repo.update#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}", + "sent": 2 + }, "781721955405": { "name": "showCreateTask", "value": false, @@ -384,6 +385,11 @@ "value": "Unknown method", "sent": 1 }, + "b91134109e2b": { + "name": "github.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}", + "sent": 1 + }, "c0c0f9a6037e": { "name": "createTitle", "value": "", @@ -397,10 +403,6 @@ "$rpc": "null" } }, - "c41296ee02f7": { - "name": "repo.update#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}" - }, "c4f585980acf": { "name": "error", "value": "inner refused", @@ -657,7 +659,7 @@ "id": "tk-create-github.normal:create-settled", "observation": { "sender": ["06e1643ed0af"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -678,7 +680,7 @@ "id": "tk-create-github.normal:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -701,7 +703,7 @@ "id": "tk-create-github.result-absent:create-settled", "observation": { "sender": ["5a343b47b8b2"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -714,7 +716,7 @@ "id": "tk-create-github.result-absent:issue-source-settled", "observation": { "sender": ["5a343b47b8b2", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -734,7 +736,7 @@ "id": "tk-create-github.result-null:create-settled", "observation": { "sender": ["14be26876a89"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -747,7 +749,7 @@ "id": "tk-create-github.result-null:issue-source-settled", "observation": { "sender": ["14be26876a89", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -767,7 +769,7 @@ "id": "tk-create-github.inner-ok-missing:create-settled", "observation": { "sender": ["ed6dd7582b18"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -787,7 +789,7 @@ "id": "tk-create-github.inner-ok-missing:issue-source-settled", "observation": { "sender": ["ed6dd7582b18", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -809,7 +811,7 @@ "id": "tk-create-github.inner-false-string-error:create-settled", "observation": { "sender": ["04fee07f8d96"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -822,7 +824,7 @@ "id": "tk-create-github.inner-false-string-error:issue-source-settled", "observation": { "sender": ["04fee07f8d96", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -842,7 +844,7 @@ "id": "tk-create-github.inner-false-object-error:create-settled", "observation": { "sender": ["cccb7ee799b9"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -855,7 +857,7 @@ "id": "tk-create-github.inner-false-object-error:issue-source-settled", "observation": { "sender": ["cccb7ee799b9", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -875,7 +877,7 @@ "id": "tk-create-github.outer-refused:create-settled", "observation": { "sender": ["19bc740e746a"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -888,7 +890,7 @@ "id": "tk-create-github.outer-refused:issue-source-settled", "observation": { "sender": ["19bc740e746a", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -908,7 +910,7 @@ "id": "tk-create-github.outer-refused-no-message:create-settled", "observation": { "sender": ["f66dd3cc48cf"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -921,7 +923,7 @@ "id": "tk-create-github.outer-refused-no-message:issue-source-settled", "observation": { "sender": ["f66dd3cc48cf", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -941,7 +943,7 @@ "id": "tk-create-github.method-not-found:create-settled", "observation": { "sender": ["d6c61589920d"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -954,7 +956,7 @@ "id": "tk-create-github.method-not-found:issue-source-settled", "observation": { "sender": ["d6c61589920d", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -974,7 +976,7 @@ "id": "tk-create-github.transport-rejection:create-settled", "observation": { "sender": ["dc838deee187"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -987,7 +989,7 @@ "id": "tk-create-github.transport-rejection:issue-source-settled", "observation": { "sender": ["dc838deee187", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -1007,7 +1009,7 @@ "id": "tk-create-github.transport-rejection-no-message:create-settled", "observation": { "sender": ["907da244f26c"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -1020,7 +1022,7 @@ "id": "tk-create-github.transport-rejection-no-message:issue-source-settled", "observation": { "sender": ["907da244f26c", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", 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 9461d24979d..2db85c8aa33 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "9efe74e5a1b0d92f674e6044edfd534693c15b0a153bcb2c0e283a6cd53fa61b", "platform": "darwin", @@ -91,10 +91,6 @@ } } }, - "1561684e8ae9": { - "name": "github.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" - }, "46bbfadb0481": { "name": "creatingTask", "value": true, @@ -177,6 +173,11 @@ } } }, + "6add5b7ef51f": { + "name": "repo.update#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}", + "sent": 2 + }, "781721955405": { "name": "showCreateTask", "value": false, @@ -475,15 +476,16 @@ "value": "", "sent": 2 }, + "b91134109e2b": { + "name": "github.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}", + "sent": 1 + }, "c0c0f9a6037e": { "name": "createTitle", "value": "", "sent": 1 }, - "c41296ee02f7": { - "name": "repo.update#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}" - }, "c7d97f6f2602": { "composer": false, "creating": false, @@ -703,7 +705,7 @@ "id": "tk-create-github.prelude:create-settled", "observation": { "sender": ["06e1643ed0af"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -724,7 +726,7 @@ "id": "tk-create-github.prelude:cleanup", "observation": { "sender": ["06e1643ed0af", "686238f6a684"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -748,7 +750,7 @@ "id": "tk-create-github.normal:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -771,7 +773,7 @@ "id": "tk-create-github.result-absent:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "ce7357abb281"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -794,7 +796,7 @@ "id": "tk-create-github.result-null:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "8690f0cd8ed3"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -817,7 +819,7 @@ "id": "tk-create-github.inner-ok-missing:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "0916041d412c"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -840,7 +842,7 @@ "id": "tk-create-github.inner-false-string-error:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "e9b75be275af"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -863,7 +865,7 @@ "id": "tk-create-github.inner-false-object-error:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "a795619b2c90"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -886,7 +888,7 @@ "id": "tk-create-github.outer-refused:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "80dc3e1dd1b7"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -910,7 +912,7 @@ "id": "tk-create-github.outer-refused-no-message:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "9546ab40f414"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -934,7 +936,7 @@ "id": "tk-create-github.method-not-found:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "96a2fa7faef4"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -958,7 +960,7 @@ "id": "tk-create-github.transport-rejection:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "7e23e14f7a3d"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", @@ -982,7 +984,7 @@ "id": "tk-create-github.transport-rejection-no-message:issue-source-settled", "observation": { "sender": ["06e1643ed0af", "d7dccc1f4a58"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", 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 4d7c147ca23..1528e660355 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "217a3da50a54c4cbe19a68835ecfa038eae5b350430f0b8fd0a616bb5bdfe32d", "platform": "darwin", @@ -509,6 +509,11 @@ "$rpc": "undefined" } }, + "ebd58d2ca60f": { + "name": "gitlab.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}", + "sent": 1 + }, "f3a202ca5b7c": { "name": "gitlab.createIssue#1", "args": [ @@ -582,10 +587,6 @@ }, "sent": 1 }, - "f5bc6cfd470a": { - "name": "gitlab.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" - }, "f791567b212f": { "name": "error", "value": "outer refused", @@ -617,7 +618,7 @@ "id": "tk-create-gitlab.normal:create-settled", "observation": { "sender": ["c9c89070b638"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -638,7 +639,7 @@ "id": "tk-create-gitlab.result-absent:create-settled", "observation": { "sender": ["4ba7d57a0081"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -651,7 +652,7 @@ "id": "tk-create-gitlab.result-null:create-settled", "observation": { "sender": ["30a7797f8856"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -664,7 +665,7 @@ "id": "tk-create-gitlab.inner-ok-missing:create-settled", "observation": { "sender": ["76d47cfabc48"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -684,7 +685,7 @@ "id": "tk-create-gitlab.inner-false-string-error:create-settled", "observation": { "sender": ["18a89f207b7d"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -697,7 +698,7 @@ "id": "tk-create-gitlab.inner-false-object-error:create-settled", "observation": { "sender": ["f3a202ca5b7c"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -710,7 +711,7 @@ "id": "tk-create-gitlab.outer-refused:create-settled", "observation": { "sender": ["d269cd8bfe58"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -723,7 +724,7 @@ "id": "tk-create-gitlab.outer-refused-no-message:create-settled", "observation": { "sender": ["113a07954bbf"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -736,7 +737,7 @@ "id": "tk-create-gitlab.method-not-found:create-settled", "observation": { "sender": ["be19567941b0"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -749,7 +750,7 @@ "id": "tk-create-gitlab.transport-rejection:create-settled", "observation": { "sender": ["024ef69854e4"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -762,7 +763,7 @@ "id": "tk-create-gitlab.transport-rejection-no-message:create-settled", "observation": { "sender": ["0d4bd84d9af8"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" 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 63063d4f1e9..edb4c4d14a8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "cb4c10cc6401e5b68340bd1fa09381c973348b6e0c7ffef563cde92080c57a15", "platform": "darwin", @@ -316,10 +316,6 @@ } } }, - "6105e77e3945": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A new task\",\"description\":\"a body\",\"workspaceId\":\"linear-workspace\"}}" - }, "61b2cb7e4313": { "composer": false, "creating": false, @@ -416,6 +412,11 @@ } } }, + "b06990400bdd": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A new task\",\"description\":\"a body\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 1 + }, "b53c339a3854": { "name": "error", "value": "Unknown method", @@ -649,7 +650,7 @@ "id": "tk-create-linear.normal:create-settled", "observation": { "sender": ["11915dfdb24a"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -670,7 +671,7 @@ "id": "tk-create-linear.result-absent:create-settled", "observation": { "sender": ["a85b3f376be7"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -683,7 +684,7 @@ "id": "tk-create-linear.result-null:create-settled", "observation": { "sender": ["cba26069f155"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -696,7 +697,7 @@ "id": "tk-create-linear.inner-ok-missing:create-settled", "observation": { "sender": ["d9c763f911ff"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -709,7 +710,7 @@ "id": "tk-create-linear.inner-false-string-error:create-settled", "observation": { "sender": ["563438e5621b"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -722,7 +723,7 @@ "id": "tk-create-linear.inner-false-object-error:create-settled", "observation": { "sender": ["5d540849ade8"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -735,7 +736,7 @@ "id": "tk-create-linear.outer-refused:create-settled", "observation": { "sender": ["4ed047d2b01f"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -748,7 +749,7 @@ "id": "tk-create-linear.outer-refused-no-message:create-settled", "observation": { "sender": ["05ff43854493"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -761,7 +762,7 @@ "id": "tk-create-linear.method-not-found:create-settled", "observation": { "sender": ["5d4c402302e6"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -774,7 +775,7 @@ "id": "tk-create-linear.transport-rejection:create-settled", "observation": { "sender": ["c35f2a9a380e"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -787,7 +788,7 @@ "id": "tk-create-linear.transport-rejection-no-message:create-settled", "observation": { "sender": ["15105be3c6cd"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" 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 bccb3745591..9440a2f83fa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "038221907a57f5bb25338f9b07a744dbac3ea0a7ea2ba43281f171912f45a586", "platform": "darwin", @@ -33,10 +33,6 @@ "value": "transport failure", "sent": 1 }, - "1aa0fd318b4d": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50}}" - }, "1e54d4dce85b": { "error": "", "items": [], @@ -247,6 +243,11 @@ "loading": false, "refreshing": false }, + "60eb8439c985": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50}}", + "sent": 1 + }, "6376c568d60e": { "name": "items", "value": [ @@ -637,7 +638,7 @@ "id": "tk-list-gitlab-items.normal:load-settled", "observation": { "sender": ["d619074f1bad"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -657,7 +658,7 @@ "id": "tk-list-gitlab-items.result-absent:load-settled", "observation": { "sender": ["e05aac477495"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -677,7 +678,7 @@ "id": "tk-list-gitlab-items.result-null:load-settled", "observation": { "sender": ["419cb453985c"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -697,7 +698,7 @@ "id": "tk-list-gitlab-items.inner-ok-missing:load-settled", "observation": { "sender": ["ea8f8e0b6ecc"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -717,7 +718,7 @@ "id": "tk-list-gitlab-items.inner-false-string-error:load-settled", "observation": { "sender": ["1e5ed7e432ac"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -737,7 +738,7 @@ "id": "tk-list-gitlab-items.inner-false-object-error:load-settled", "observation": { "sender": ["8f49ffb9283f"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -757,7 +758,7 @@ "id": "tk-list-gitlab-items.outer-refused:load-settled", "observation": { "sender": ["4e5498a4504d"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -777,7 +778,7 @@ "id": "tk-list-gitlab-items.outer-refused-no-message:load-settled", "observation": { "sender": ["7004b7a6500d"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -797,7 +798,7 @@ "id": "tk-list-gitlab-items.method-not-found:load-settled", "observation": { "sender": ["de063770d896"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -817,7 +818,7 @@ "id": "tk-list-gitlab-items.transport-rejection:load-settled", "observation": { "sender": ["a1227cfc5f6f"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -837,7 +838,7 @@ "id": "tk-list-gitlab-items.transport-rejection-no-message:load-settled", "observation": { "sender": ["2b983fcbc38d"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" 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 b8e0496e43c..1bd92a4ae28 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "8b0b64a6a0ef6e1cc6baa28e632fd3394a6c8b825f0835daa9634fa41c8685aa", "platform": "darwin", @@ -290,10 +290,6 @@ } } }, - "7dc14a940033": { - "name": "gitlab.todos#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.todos\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "820944a2683d": { "error": "outer refused", "items": [], @@ -349,6 +345,11 @@ "value": "Unknown method", "sent": 1 }, + "c8fb3fcb3f03": { + "name": "gitlab.todos#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.todos\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "d42aae748963": { "name": "error", "value": "Cannot read properties of undefined (reading 'replace')", @@ -498,7 +499,7 @@ "id": "tk-list-gitlab-todos.normal:load-settled", "observation": { "sender": ["18d425aa3cf4"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -518,7 +519,7 @@ "id": "tk-list-gitlab-todos.result-absent:load-settled", "observation": { "sender": ["d906463f9ef4"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -537,7 +538,7 @@ "id": "tk-list-gitlab-todos.result-null:load-settled", "observation": { "sender": ["7568bcd9554a"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -556,7 +557,7 @@ "id": "tk-list-gitlab-todos.inner-ok-missing:load-settled", "observation": { "sender": ["2208436ca985"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -576,7 +577,7 @@ "id": "tk-list-gitlab-todos.inner-false-string-error:load-settled", "observation": { "sender": ["a83ece45b46c"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -596,7 +597,7 @@ "id": "tk-list-gitlab-todos.inner-false-object-error:load-settled", "observation": { "sender": ["6b4fc5bbf611"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -616,7 +617,7 @@ "id": "tk-list-gitlab-todos.outer-refused:load-settled", "observation": { "sender": ["69875bf5c56e"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -636,7 +637,7 @@ "id": "tk-list-gitlab-todos.outer-refused-no-message:load-settled", "observation": { "sender": ["f3c9c0f2af33"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -656,7 +657,7 @@ "id": "tk-list-gitlab-todos.method-not-found:load-settled", "observation": { "sender": ["5c350e5e01df"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -676,7 +677,7 @@ "id": "tk-list-gitlab-todos.transport-rejection:load-settled", "observation": { "sender": ["dec499c359f8"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -696,7 +697,7 @@ "id": "tk-list-gitlab-todos.transport-rejection-no-message:load-settled", "observation": { "sender": ["4f3df06d0fe2"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" 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 5f23e7da3a2..712c4bc4e1c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "39ef28af17e4d3774b42bba1555606770667bc9010692fb1a4492413a940c0a0", "platform": "darwin", @@ -221,6 +221,11 @@ "loading": false, "refreshing": false }, + "2fa05a58f1ae": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 1 + }, "3edde845aed1": { "error": "", "items": [ @@ -385,10 +390,6 @@ } } }, - "5b8a2e3e390d": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "6143a28f5226": { "name": "loading", "value": true, @@ -530,10 +531,6 @@ } } }, - "8780e3ee6661": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "92c28468d7be": { "name": "refreshing", "value": false, @@ -585,6 +582,11 @@ "value": "Unknown method", "sent": 1 }, + "b83b4bb2ab33": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "c18939a47320": { "name": "linear.listIssues#1", "args": [ @@ -736,7 +738,7 @@ "id": "tk-list-linear.normal:load-settled", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -755,7 +757,7 @@ "id": "tk-list-linear.normal:set-query-done", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -775,7 +777,7 @@ "id": "tk-list-linear.normal:load-settled", "observation": { "sender": ["86aeb72f48eb", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -801,7 +803,7 @@ "id": "tk-list-linear.result-absent:load-settled", "observation": { "sender": ["43741bb75841"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -821,7 +823,7 @@ "id": "tk-list-linear.result-absent:set-query-done", "observation": { "sender": ["43741bb75841"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -842,7 +844,7 @@ "id": "tk-list-linear.result-absent:load-settled", "observation": { "sender": ["43741bb75841", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -869,7 +871,7 @@ "id": "tk-list-linear.result-null:load-settled", "observation": { "sender": ["0eeb8394ee6b"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -889,7 +891,7 @@ "id": "tk-list-linear.result-null:set-query-done", "observation": { "sender": ["0eeb8394ee6b"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -910,7 +912,7 @@ "id": "tk-list-linear.result-null:load-settled", "observation": { "sender": ["0eeb8394ee6b", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -937,7 +939,7 @@ "id": "tk-list-linear.inner-ok-missing:load-settled", "observation": { "sender": ["558093fad68c"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -957,7 +959,7 @@ "id": "tk-list-linear.inner-ok-missing:set-query-done", "observation": { "sender": ["558093fad68c"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -978,7 +980,7 @@ "id": "tk-list-linear.inner-ok-missing:load-settled", "observation": { "sender": ["558093fad68c", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1005,7 +1007,7 @@ "id": "tk-list-linear.inner-false-string-error:load-settled", "observation": { "sender": ["08bef4b19381"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1025,7 +1027,7 @@ "id": "tk-list-linear.inner-false-string-error:set-query-done", "observation": { "sender": ["08bef4b19381"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1046,7 +1048,7 @@ "id": "tk-list-linear.inner-false-string-error:load-settled", "observation": { "sender": ["08bef4b19381", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1073,7 +1075,7 @@ "id": "tk-list-linear.inner-false-object-error:load-settled", "observation": { "sender": ["c18939a47320"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1093,7 +1095,7 @@ "id": "tk-list-linear.inner-false-object-error:set-query-done", "observation": { "sender": ["c18939a47320"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1114,7 +1116,7 @@ "id": "tk-list-linear.inner-false-object-error:load-settled", "observation": { "sender": ["c18939a47320", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1141,7 +1143,7 @@ "id": "tk-list-linear.outer-refused:load-settled", "observation": { "sender": ["1baae818a7fc"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1161,7 +1163,7 @@ "id": "tk-list-linear.outer-refused:set-query-done", "observation": { "sender": ["1baae818a7fc"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1182,7 +1184,7 @@ "id": "tk-list-linear.outer-refused:load-settled", "observation": { "sender": ["1baae818a7fc", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1209,7 +1211,7 @@ "id": "tk-list-linear.outer-refused-no-message:load-settled", "observation": { "sender": ["1e90b9de179e"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1229,7 +1231,7 @@ "id": "tk-list-linear.outer-refused-no-message:set-query-done", "observation": { "sender": ["1e90b9de179e"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1250,7 +1252,7 @@ "id": "tk-list-linear.outer-refused-no-message:load-settled", "observation": { "sender": ["1e90b9de179e", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1277,7 +1279,7 @@ "id": "tk-list-linear.method-not-found:load-settled", "observation": { "sender": ["d38da15695fc"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1297,7 +1299,7 @@ "id": "tk-list-linear.method-not-found:set-query-done", "observation": { "sender": ["d38da15695fc"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1318,7 +1320,7 @@ "id": "tk-list-linear.method-not-found:load-settled", "observation": { "sender": ["d38da15695fc", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1345,7 +1347,7 @@ "id": "tk-list-linear.transport-rejection:load-settled", "observation": { "sender": ["6aef1122a560"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1365,7 +1367,7 @@ "id": "tk-list-linear.transport-rejection:set-query-done", "observation": { "sender": ["6aef1122a560"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1386,7 +1388,7 @@ "id": "tk-list-linear.transport-rejection:load-settled", "observation": { "sender": ["6aef1122a560", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1413,7 +1415,7 @@ "id": "tk-list-linear.transport-rejection-no-message:load-settled", "observation": { "sender": ["0702970f0d11"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -1433,7 +1435,7 @@ "id": "tk-list-linear.transport-rejection-no-message:set-query-done", "observation": { "sender": ["0702970f0d11"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1454,7 +1456,7 @@ "id": "tk-list-linear.transport-rejection-no-message:load-settled", "observation": { "sender": ["0702970f0d11", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", 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 6fb9f908890..20ee88dfa92 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "c589700af145f58c37292dafb891b3b7d50302fd4ec044155c044ccd48f79c74", "platform": "darwin", @@ -214,6 +214,11 @@ "loading": false, "refreshing": false }, + "2fa05a58f1ae": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 1 + }, "3133fa990514": { "name": "items", "value": [], @@ -321,10 +326,6 @@ } } }, - "5b8a2e3e390d": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "5c2874ad80bc": { "name": "error", "value": "transport failure", @@ -438,10 +439,6 @@ } } }, - "8780e3ee6661": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "8fc99972bdd2": { "name": "linear.searchIssues#1", "args": [ @@ -703,6 +700,11 @@ "value": "", "sent": 2 }, + "b83b4bb2ab33": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "be487c948252": { "name": "error", "value": "Unexpected Linear tasks response", @@ -815,7 +817,7 @@ "id": "tk-list-linear.prelude:load-settled", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -834,7 +836,7 @@ "id": "tk-list-linear.prelude:set-query-done", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -854,7 +856,7 @@ "id": "tk-list-linear.prelude:cleanup", "observation": { "sender": ["86aeb72f48eb", "0d2639e26cc5"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -881,7 +883,7 @@ "id": "tk-list-linear.normal:load-settled", "observation": { "sender": ["86aeb72f48eb", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -907,7 +909,7 @@ "id": "tk-list-linear.result-absent:load-settled", "observation": { "sender": ["86aeb72f48eb", "a45f546835a8"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -934,7 +936,7 @@ "id": "tk-list-linear.result-null:load-settled", "observation": { "sender": ["86aeb72f48eb", "e04d208486e7"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -961,7 +963,7 @@ "id": "tk-list-linear.inner-ok-missing:load-settled", "observation": { "sender": ["86aeb72f48eb", "8fc99972bdd2"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -988,7 +990,7 @@ "id": "tk-list-linear.inner-false-string-error:load-settled", "observation": { "sender": ["86aeb72f48eb", "0f4daa370be3"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1015,7 +1017,7 @@ "id": "tk-list-linear.inner-false-object-error:load-settled", "observation": { "sender": ["86aeb72f48eb", "ad3c905e6ecc"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1042,7 +1044,7 @@ "id": "tk-list-linear.outer-refused:load-settled", "observation": { "sender": ["86aeb72f48eb", "2c8d737b5665"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1069,7 +1071,7 @@ "id": "tk-list-linear.outer-refused-no-message:load-settled", "observation": { "sender": ["86aeb72f48eb", "14b2c61abd6c"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1096,7 +1098,7 @@ "id": "tk-list-linear.method-not-found:load-settled", "observation": { "sender": ["86aeb72f48eb", "94a885e6f790"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1123,7 +1125,7 @@ "id": "tk-list-linear.transport-rejection:load-settled", "observation": { "sender": ["86aeb72f48eb", "99e5be0a1b11"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -1150,7 +1152,7 @@ "id": "tk-list-linear.transport-rejection-no-message:load-settled", "observation": { "sender": ["86aeb72f48eb", "0914e9c666b1"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", 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 de5e7bc7271..a25fda4e3eb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "9e91d46870cd69279cc7d8ebfd317ab8b13136ccff9662876c7601a3a83ecafe", "platform": "darwin", @@ -143,19 +143,11 @@ } } }, - "46027e62015d": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" - }, "469b68abd6bf": { "name": "workspaceBaseBranchError", "value": "Cannot read properties of null (reading 'refDetails')", "sent": 2 }, - "4cedb91a2f7a": { - "name": "repo.sparsePresets#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "52925a303ed6": { "name": "repo.searchRefs#1", "args": [ @@ -480,6 +472,11 @@ } } }, + "bc245469b086": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}", + "sent": 2 + }, "bd26306458d2": { "name": "repo.searchRefs#1", "args": [ @@ -573,6 +570,11 @@ } } }, + "c9ed58434d0b": { + "name": "repo.sparsePresets#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "ca6dda44e51a": { "name": "workspaceBaseBranchError", "value": "outer refused", @@ -670,7 +672,7 @@ "id": "tw-workspace-source-presets.prelude:presets-loaded", "observation": { "sender": ["c8d4d05367d6"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -693,7 +695,7 @@ "id": "tw-workspace-source-presets.normal:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -721,7 +723,7 @@ "id": "tw-workspace-source-presets.result-absent:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "846e910f6579"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -750,7 +752,7 @@ "id": "tw-workspace-source-presets.result-null:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "28f23529596e"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -779,7 +781,7 @@ "id": "tw-workspace-source-presets.inner-ok-missing:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "5485811c08ca"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -807,7 +809,7 @@ "id": "tw-workspace-source-presets.inner-false-string-error:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "f6f9a9765c0c"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -835,7 +837,7 @@ "id": "tw-workspace-source-presets.inner-false-object-error:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "94cafc85a34d"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -863,7 +865,7 @@ "id": "tw-workspace-source-presets.outer-refused:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "bb1a94f8cb3f"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -892,7 +894,7 @@ "id": "tw-workspace-source-presets.outer-refused-no-message:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "7444e76d58f7"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -921,7 +923,7 @@ "id": "tw-workspace-source-presets.method-not-found:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "bd26306458d2"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -950,7 +952,7 @@ "id": "tw-workspace-source-presets.transport-rejection:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "5b0e628f442c"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -979,7 +981,7 @@ "id": "tw-workspace-source-presets.transport-rejection-no-message:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "52925a303ed6"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" 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 a413ac2bba2..0c12e170b0f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "2d4a681bffbc5ff9d3040ea0d6bb2603ee940c3c497269d0b63caca564fb25e1", "platform": "darwin", @@ -145,14 +145,6 @@ } } }, - "46027e62015d": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" - }, - "4cedb91a2f7a": { - "name": "repo.sparsePresets#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "513bb01f2f25": { "branchError": "", "branches": [ @@ -541,6 +533,11 @@ "presetsError": "", "presetsLoaded": true }, + "bc245469b086": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}", + "sent": 2 + }, "bf004df2bf3d": { "branchError": "", "branches": [ @@ -620,6 +617,11 @@ "presetsError": "Cannot read properties of null (reading 'presets')", "presetsLoaded": false }, + "c9ed58434d0b": { + "name": "repo.sparsePresets#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "ce4aab89eed0": { "branchError": "", "branches": [], @@ -723,7 +725,7 @@ "id": "tw-workspace-source-presets.normal:presets-loaded", "observation": { "sender": ["c8d4d05367d6"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -746,7 +748,7 @@ "id": "tw-workspace-source-presets.normal:branches-loaded", "observation": { "sender": ["c8d4d05367d6", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -774,7 +776,7 @@ "id": "tw-workspace-source-presets.result-absent:presets-loaded", "observation": { "sender": ["981cb584cfe3"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -798,7 +800,7 @@ "id": "tw-workspace-source-presets.result-absent:branches-loaded", "observation": { "sender": ["981cb584cfe3", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -827,7 +829,7 @@ "id": "tw-workspace-source-presets.result-null:presets-loaded", "observation": { "sender": ["a18f0cdbc6fe"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -851,7 +853,7 @@ "id": "tw-workspace-source-presets.result-null:branches-loaded", "observation": { "sender": ["a18f0cdbc6fe", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -880,7 +882,7 @@ "id": "tw-workspace-source-presets.inner-ok-missing:presets-loaded", "observation": { "sender": ["3dcbacca6ef0"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -903,7 +905,7 @@ "id": "tw-workspace-source-presets.inner-ok-missing:branches-loaded", "observation": { "sender": ["3dcbacca6ef0", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -931,7 +933,7 @@ "id": "tw-workspace-source-presets.inner-false-string-error:presets-loaded", "observation": { "sender": ["982d70c476ea"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -954,7 +956,7 @@ "id": "tw-workspace-source-presets.inner-false-string-error:branches-loaded", "observation": { "sender": ["982d70c476ea", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -982,7 +984,7 @@ "id": "tw-workspace-source-presets.inner-false-object-error:presets-loaded", "observation": { "sender": ["8b4d034d6e9e"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1005,7 +1007,7 @@ "id": "tw-workspace-source-presets.inner-false-object-error:branches-loaded", "observation": { "sender": ["8b4d034d6e9e", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -1033,7 +1035,7 @@ "id": "tw-workspace-source-presets.outer-refused:presets-loaded", "observation": { "sender": ["5cc2ef1617e8"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1057,7 +1059,7 @@ "id": "tw-workspace-source-presets.outer-refused:branches-loaded", "observation": { "sender": ["5cc2ef1617e8", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -1086,7 +1088,7 @@ "id": "tw-workspace-source-presets.outer-refused-no-message:presets-loaded", "observation": { "sender": ["db27fad68ce2"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1110,7 +1112,7 @@ "id": "tw-workspace-source-presets.outer-refused-no-message:branches-loaded", "observation": { "sender": ["db27fad68ce2", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -1139,7 +1141,7 @@ "id": "tw-workspace-source-presets.method-not-found:presets-loaded", "observation": { "sender": ["83043f6bd49a"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1163,7 +1165,7 @@ "id": "tw-workspace-source-presets.method-not-found:branches-loaded", "observation": { "sender": ["83043f6bd49a", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -1192,7 +1194,7 @@ "id": "tw-workspace-source-presets.transport-rejection:presets-loaded", "observation": { "sender": ["96f5a578e45b"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1216,7 +1218,7 @@ "id": "tw-workspace-source-presets.transport-rejection:branches-loaded", "observation": { "sender": ["96f5a578e45b", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" @@ -1245,7 +1247,7 @@ "id": "tw-workspace-source-presets.transport-rejection-no-message:presets-loaded", "observation": { "sender": ["2d69fe330484"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1269,7 +1271,7 @@ "id": "tw-workspace-source-presets.transport-rejection-no-message:branches-loaded", "observation": { "sender": ["2d69fe330484", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" 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 a9e53efc568..00b13fe3072 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3d4637406e2d658b72f73153f0a5e176cb8b143593b72bce0cdf979bc6e4cbdd", "platform": "darwin", @@ -18,6 +18,16 @@ "value": "Failed to save sparse preset.", "sent": 2 }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 + }, + "15dd622cbe08": { + "name": "repo.saveSparsePreset#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}", + "sent": 2 + }, "1923ab7dba76": { "name": "repo.saveSparsePreset#1", "args": [ @@ -700,14 +710,6 @@ "name": "workspaceSparsePresetsError", "value": "transport failure", "sent": 2 - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, - "fd758406cc2c": { - "name": "repo.saveSparsePreset#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}" } }, "recording": { @@ -717,7 +719,7 @@ "id": "tw-workspace-sparse-saved.prelude:ssh-state-read", "observation": { "sender": ["89aa7a3bd619"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -729,7 +731,7 @@ "id": "tw-workspace-sparse-saved.prelude:cleanup", "observation": { "sender": ["89aa7a3bd619", "4d66e995ff47"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -748,7 +750,7 @@ "id": "tw-workspace-sparse-saved.normal:preset-saved", "observation": { "sender": ["89aa7a3bd619", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -770,7 +772,7 @@ "id": "tw-workspace-sparse-saved.result-absent:preset-saved", "observation": { "sender": ["89aa7a3bd619", "95295c6eaa8d"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -789,7 +791,7 @@ "id": "tw-workspace-sparse-saved.result-null:preset-saved", "observation": { "sender": ["89aa7a3bd619", "d14de7ce4d84"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -808,7 +810,7 @@ "id": "tw-workspace-sparse-saved.inner-ok-missing:preset-saved", "observation": { "sender": ["89aa7a3bd619", "92b857799ffd"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -827,7 +829,7 @@ "id": "tw-workspace-sparse-saved.inner-false-string-error:preset-saved", "observation": { "sender": ["89aa7a3bd619", "bd0266b23771"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -846,7 +848,7 @@ "id": "tw-workspace-sparse-saved.inner-false-object-error:preset-saved", "observation": { "sender": ["89aa7a3bd619", "c5a3f70f9b02"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -865,7 +867,7 @@ "id": "tw-workspace-sparse-saved.outer-refused:preset-saved", "observation": { "sender": ["89aa7a3bd619", "1923ab7dba76"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -884,7 +886,7 @@ "id": "tw-workspace-sparse-saved.outer-refused-no-message:preset-saved", "observation": { "sender": ["89aa7a3bd619", "990a149dc1be"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -903,7 +905,7 @@ "id": "tw-workspace-sparse-saved.method-not-found:preset-saved", "observation": { "sender": ["89aa7a3bd619", "74c1230400a6"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -922,7 +924,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection:preset-saved", "observation": { "sender": ["89aa7a3bd619", "f4d4ba362712"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -941,7 +943,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection-no-message:preset-saved", "observation": { "sender": ["89aa7a3bd619", "23e798f4b47c"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" 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 b84d2daadda..e3040b1a68f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3453024581230908d1e0e9335f5310e7b4ae03faf50d93654b9ff28c464fb95f", "platform": "darwin", @@ -89,6 +89,11 @@ } } }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 + }, "14db652edf02": { "name": "ssh.getState#1", "args": [ @@ -119,6 +124,11 @@ } } }, + "15dd622cbe08": { + "name": "repo.saveSparsePreset#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}", + "sent": 2 + }, "1db4236fbf9f": { "name": "workspaceSshState", "value": { @@ -755,14 +765,6 @@ "targetId": "ssh-1" } }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, - "fd758406cc2c": { - "name": "repo.saveSparsePreset#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}" - }, "ff6c3161dcc7": { "name": "ssh.getState#1", "args": [ @@ -805,7 +807,7 @@ "id": "tw-workspace-sparse-saved.normal:ssh-state-read", "observation": { "sender": ["89aa7a3bd619"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -817,7 +819,7 @@ "id": "tw-workspace-sparse-saved.normal:preset-saved", "observation": { "sender": ["89aa7a3bd619", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -839,7 +841,7 @@ "id": "tw-workspace-sparse-saved.result-absent:ssh-state-read", "observation": { "sender": ["14db652edf02"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -851,7 +853,7 @@ "id": "tw-workspace-sparse-saved.result-absent:preset-saved", "observation": { "sender": ["14db652edf02", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -873,7 +875,7 @@ "id": "tw-workspace-sparse-saved.result-null:ssh-state-read", "observation": { "sender": ["0eabd872f405"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -885,7 +887,7 @@ "id": "tw-workspace-sparse-saved.result-null:preset-saved", "observation": { "sender": ["0eabd872f405", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -907,7 +909,7 @@ "id": "tw-workspace-sparse-saved.inner-ok-missing:ssh-state-read", "observation": { "sender": ["0a16839c6f87"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -919,7 +921,7 @@ "id": "tw-workspace-sparse-saved.inner-ok-missing:preset-saved", "observation": { "sender": ["0a16839c6f87", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -941,7 +943,7 @@ "id": "tw-workspace-sparse-saved.inner-false-string-error:ssh-state-read", "observation": { "sender": ["b09dd4915f43"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -953,7 +955,7 @@ "id": "tw-workspace-sparse-saved.inner-false-string-error:preset-saved", "observation": { "sender": ["b09dd4915f43", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -975,7 +977,7 @@ "id": "tw-workspace-sparse-saved.inner-false-object-error:ssh-state-read", "observation": { "sender": ["e18278fce524"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -987,7 +989,7 @@ "id": "tw-workspace-sparse-saved.inner-false-object-error:preset-saved", "observation": { "sender": ["e18278fce524", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -1009,7 +1011,7 @@ "id": "tw-workspace-sparse-saved.outer-refused:ssh-state-read", "observation": { "sender": ["d0fad8f739ca"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1021,7 +1023,7 @@ "id": "tw-workspace-sparse-saved.outer-refused:preset-saved", "observation": { "sender": ["d0fad8f739ca", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -1043,7 +1045,7 @@ "id": "tw-workspace-sparse-saved.outer-refused-no-message:ssh-state-read", "observation": { "sender": ["ff6c3161dcc7"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1055,7 +1057,7 @@ "id": "tw-workspace-sparse-saved.outer-refused-no-message:preset-saved", "observation": { "sender": ["ff6c3161dcc7", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -1077,7 +1079,7 @@ "id": "tw-workspace-sparse-saved.method-not-found:ssh-state-read", "observation": { "sender": ["b705ba88a562"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1089,7 +1091,7 @@ "id": "tw-workspace-sparse-saved.method-not-found:preset-saved", "observation": { "sender": ["b705ba88a562", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -1111,7 +1113,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection:ssh-state-read", "observation": { "sender": ["2d910059043a"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1123,7 +1125,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection:preset-saved", "observation": { "sender": ["2d910059043a", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" @@ -1145,7 +1147,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection-no-message:ssh-state-read", "observation": { "sender": ["f36f17f8d448"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1157,7 +1159,7 @@ "id": "tw-workspace-sparse-saved.transport-rejection-no-message:preset-saved", "observation": { "sender": ["f36f17f8d448", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" 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 e722d14d0c0..530bec924bd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "28f7ba289c188bfc121ef7b969133711189e887fbfc7b37c8a5401ea7f30b56a", "platform": "darwin", @@ -311,6 +311,11 @@ "value": [], "sent": 1 }, + "c56f76942e16": { + "name": "preflight.detectAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}", + "sent": 1 + }, "cb93b17470e8": { "name": "preflight.detectAgents#1", "args": [ @@ -342,10 +347,6 @@ } } }, - "cf32edc950ac": { - "name": "preflight.detectAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" - }, "d00f9527d4f2": { "name": "workspaceDetectedAgentIds", "value": ["codex", "claude"], @@ -439,7 +440,7 @@ "id": "tw-workspace-ssh-local-agents.normal:local-agents-detected", "observation": { "sender": ["cb93b17470e8"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -451,7 +452,7 @@ "id": "tw-workspace-ssh-local-agents.result-absent:local-agents-detected", "observation": { "sender": ["6e5fcf24648d"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -463,7 +464,7 @@ "id": "tw-workspace-ssh-local-agents.result-null:local-agents-detected", "observation": { "sender": ["1317fc33bdbe"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -475,7 +476,7 @@ "id": "tw-workspace-ssh-local-agents.inner-ok-missing:local-agents-detected", "observation": { "sender": ["327b46fb8bef"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -487,7 +488,7 @@ "id": "tw-workspace-ssh-local-agents.inner-false-string-error:local-agents-detected", "observation": { "sender": ["0846bea730cf"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -499,7 +500,7 @@ "id": "tw-workspace-ssh-local-agents.inner-false-object-error:local-agents-detected", "observation": { "sender": ["00d70c40c34c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -511,7 +512,7 @@ "id": "tw-workspace-ssh-local-agents.outer-refused:local-agents-detected", "observation": { "sender": ["fb640b2bca4c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -523,7 +524,7 @@ "id": "tw-workspace-ssh-local-agents.outer-refused-no-message:local-agents-detected", "observation": { "sender": ["163b91b6fe9c"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -535,7 +536,7 @@ "id": "tw-workspace-ssh-local-agents.method-not-found:local-agents-detected", "observation": { "sender": ["87d7d24a30d2"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -547,7 +548,7 @@ "id": "tw-workspace-ssh-local-agents.transport-rejection:local-agents-detected", "observation": { "sender": ["fbb9eef78275"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, @@ -559,7 +560,7 @@ "id": "tw-workspace-ssh-local-agents.transport-rejection-no-message:local-agents-detected", "observation": { "sender": ["70d128c20ae4"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, 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 46dcd2041f0..b10a848351a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "35771ab92d0d4ff44a1dd6e5f1e5d3137570a2e013bddea5ca77ecac7989ed53", "platform": "darwin", @@ -251,10 +251,6 @@ }, "sent": 2 }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -277,6 +273,11 @@ "targetId": "ssh-1" } }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "71225024ccf5": { "agent": "claude", "connecting": false, @@ -353,10 +354,6 @@ "targetId": "ssh-1" } }, - "7c9498659f58": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "80a4af19f556": { "name": "repo.hooks#1", "args": [ @@ -550,6 +547,11 @@ "value": [], "sent": 1 }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "c5eeac27af29": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -596,6 +598,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -604,10 +611,6 @@ "$rpc": "undefined" } }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "fd04a7852302": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -650,7 +653,7 @@ "id": "tw-workspace-ssh-connected.normal:agents-detected", "observation": { "sender": ["17e35b25d15d"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -662,7 +665,7 @@ "id": "tw-workspace-ssh-connected.normal:connected", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -684,7 +687,7 @@ "id": "tw-workspace-ssh-connected.normal:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -707,7 +710,7 @@ "id": "tw-workspace-ssh-connected.result-absent:agents-detected", "observation": { "sender": ["90dce4861972"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -719,7 +722,7 @@ "id": "tw-workspace-ssh-connected.result-absent:connected", "observation": { "sender": ["90dce4861972", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -741,7 +744,7 @@ "id": "tw-workspace-ssh-connected.result-absent:setup-prompted", "observation": { "sender": ["90dce4861972", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -764,7 +767,7 @@ "id": "tw-workspace-ssh-connected.result-null:agents-detected", "observation": { "sender": ["02a3532637b4"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -776,7 +779,7 @@ "id": "tw-workspace-ssh-connected.result-null:connected", "observation": { "sender": ["02a3532637b4", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -798,7 +801,7 @@ "id": "tw-workspace-ssh-connected.result-null:setup-prompted", "observation": { "sender": ["02a3532637b4", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -821,7 +824,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:agents-detected", "observation": { "sender": ["227c671c491b"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -833,7 +836,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:connected", "observation": { "sender": ["227c671c491b", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -855,7 +858,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:setup-prompted", "observation": { "sender": ["227c671c491b", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -878,7 +881,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:agents-detected", "observation": { "sender": ["fd04a7852302"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -890,7 +893,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:connected", "observation": { "sender": ["fd04a7852302", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -912,7 +915,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:setup-prompted", "observation": { "sender": ["fd04a7852302", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -935,7 +938,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:agents-detected", "observation": { "sender": ["162a699815c1"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -947,7 +950,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:connected", "observation": { "sender": ["162a699815c1", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -969,7 +972,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:setup-prompted", "observation": { "sender": ["162a699815c1", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -992,7 +995,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:agents-detected", "observation": { "sender": ["c5eeac27af29"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1004,7 +1007,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:connected", "observation": { "sender": ["c5eeac27af29", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1026,7 +1029,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:setup-prompted", "observation": { "sender": ["c5eeac27af29", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1049,7 +1052,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:agents-detected", "observation": { "sender": ["19b6093097ff"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1061,7 +1064,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:connected", "observation": { "sender": ["19b6093097ff", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1083,7 +1086,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:setup-prompted", "observation": { "sender": ["19b6093097ff", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1106,7 +1109,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:agents-detected", "observation": { "sender": ["860046b4ce30"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1118,7 +1121,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:connected", "observation": { "sender": ["860046b4ce30", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1140,7 +1143,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:setup-prompted", "observation": { "sender": ["860046b4ce30", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1163,7 +1166,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:agents-detected", "observation": { "sender": ["07d4c9b0eaf2"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1175,7 +1178,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:connected", "observation": { "sender": ["07d4c9b0eaf2", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1197,7 +1200,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:setup-prompted", "observation": { "sender": ["07d4c9b0eaf2", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1220,7 +1223,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:agents-detected", "observation": { "sender": ["95dee1165f95"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -1232,7 +1235,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:connected", "observation": { "sender": ["95dee1165f95", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1254,7 +1257,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:setup-prompted", "observation": { "sender": ["95dee1165f95", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", 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 c84b09bb145..ef2770f2505 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "39451d3c811068754f91ac243fe1208f4ce742df53261314345d8209ba761e94", "platform": "darwin", @@ -202,10 +202,6 @@ } } }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -271,6 +267,11 @@ "isRpcDeliveryUnknown": false } }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "70a84db3f870": { "name": "repo.hooks#1", "args": [ @@ -384,10 +385,6 @@ } } }, - "7c9498659f58": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "7e1d82e5b5ed": { "agent": "claude", "connecting": false, @@ -571,6 +568,11 @@ "isRpcDeliveryUnknown": false } }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -593,6 +595,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -601,10 +608,6 @@ "$rpc": "undefined" } }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "f21c4f69fe5a": { "status": "rejected", "startedAt": 0, @@ -696,7 +699,7 @@ "id": "tw-workspace-ssh-connected.prelude:agents-detected", "observation": { "sender": ["17e35b25d15d"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -708,7 +711,7 @@ "id": "tw-workspace-ssh-connected.prelude:connected", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -730,7 +733,7 @@ "id": "tw-workspace-ssh-connected.normal:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -753,7 +756,7 @@ "id": "tw-workspace-ssh-connected.result-absent:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "f7b1983b91e9"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -776,7 +779,7 @@ "id": "tw-workspace-ssh-connected.result-null:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "ff43290f6836"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -799,7 +802,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "5278c299d57a"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -822,7 +825,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "02800add9d11"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -845,7 +848,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "8c3bb432df5b"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -868,7 +871,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "7c7a826833e0"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -891,7 +894,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "1fcb0efb54e8"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -914,7 +917,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "70a84db3f870"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -937,7 +940,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "941b6aeb0d6f"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -960,7 +963,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "33cfd55c1890"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", 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 14870e3b31a..08aefdd0b47 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "5cc1773d06d49d2616da72f2790753322edda6d67e12b5e41116971d34787391", "platform": "darwin", @@ -180,10 +180,6 @@ }, "sent": 2 }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "42fb94e15a80": { "agent": "claude", "connecting": false, @@ -384,6 +380,11 @@ "targetId": "ssh-1" } }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "71d817ffdd81": { "name": "ssh.connect#1", "args": [ @@ -429,10 +430,6 @@ "value": false, "sent": 0 }, - "7c9498659f58": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "80a4af19f556": { "name": "repo.hooks#1", "args": [ @@ -662,6 +659,11 @@ } } }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "c5608f9dd27c": { "name": "ssh.connect#1", "args": [ @@ -785,6 +787,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "e17430747d93": { "agent": "claude", "connecting": false, @@ -894,10 +901,6 @@ "status": "error", "targetId": "ssh-1" } - }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -907,7 +910,7 @@ "id": "tw-workspace-ssh-connected.prelude:agents-detected", "observation": { "sender": ["17e35b25d15d"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -919,7 +922,7 @@ "id": "tw-workspace-ssh-connected.prelude:cleanup", "observation": { "sender": ["17e35b25d15d", "654de1224bc2"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -941,7 +944,7 @@ "id": "tw-workspace-ssh-connected.normal:connected", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -963,7 +966,7 @@ "id": "tw-workspace-ssh-connected.normal:setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -986,7 +989,7 @@ "id": "tw-workspace-ssh-connected.result-absent:connected", "observation": { "sender": ["17e35b25d15d", "50b0f369719b"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1008,7 +1011,7 @@ "id": "tw-workspace-ssh-connected.result-absent:setup-prompted", "observation": { "sender": ["17e35b25d15d", "50b0f369719b", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1031,7 +1034,7 @@ "id": "tw-workspace-ssh-connected.result-null:connected", "observation": { "sender": ["17e35b25d15d", "09c18a29abf3"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1053,7 +1056,7 @@ "id": "tw-workspace-ssh-connected.result-null:setup-prompted", "observation": { "sender": ["17e35b25d15d", "09c18a29abf3", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1076,7 +1079,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:connected", "observation": { "sender": ["17e35b25d15d", "11181309201b"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1098,7 +1101,7 @@ "id": "tw-workspace-ssh-connected.inner-ok-missing:setup-prompted", "observation": { "sender": ["17e35b25d15d", "11181309201b", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1121,7 +1124,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:connected", "observation": { "sender": ["17e35b25d15d", "c81e3c5c4429"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1143,7 +1146,7 @@ "id": "tw-workspace-ssh-connected.inner-false-string-error:setup-prompted", "observation": { "sender": ["17e35b25d15d", "c81e3c5c4429", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1166,7 +1169,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:connected", "observation": { "sender": ["17e35b25d15d", "e62fd21eb764"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1188,7 +1191,7 @@ "id": "tw-workspace-ssh-connected.inner-false-object-error:setup-prompted", "observation": { "sender": ["17e35b25d15d", "e62fd21eb764", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1211,7 +1214,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:connected", "observation": { "sender": ["17e35b25d15d", "e29464ad65fd"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1233,7 +1236,7 @@ "id": "tw-workspace-ssh-connected.outer-refused:setup-prompted", "observation": { "sender": ["17e35b25d15d", "e29464ad65fd", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1256,7 +1259,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:connected", "observation": { "sender": ["17e35b25d15d", "aad86573b0be"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1278,7 +1281,7 @@ "id": "tw-workspace-ssh-connected.outer-refused-no-message:setup-prompted", "observation": { "sender": ["17e35b25d15d", "aad86573b0be", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1301,7 +1304,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:connected", "observation": { "sender": ["17e35b25d15d", "8a5755fd3ffa"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1323,7 +1326,7 @@ "id": "tw-workspace-ssh-connected.method-not-found:setup-prompted", "observation": { "sender": ["17e35b25d15d", "8a5755fd3ffa", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1346,7 +1349,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:connected", "observation": { "sender": ["17e35b25d15d", "c5608f9dd27c"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1368,7 +1371,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection:setup-prompted", "observation": { "sender": ["17e35b25d15d", "c5608f9dd27c", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", @@ -1391,7 +1394,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:connected", "observation": { "sender": ["17e35b25d15d", "671db70f932a"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -1413,7 +1416,7 @@ "id": "tw-workspace-ssh-connected.transport-rejection-no-message:setup-prompted", "observation": { "sender": ["17e35b25d15d", "671db70f932a", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", 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 47b80537f86..24cd96f4058 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "15b5694a63d54aeb4f4d9a861729e7e3b42ce06b15af6784fcb1afab744ed18b", "platform": "darwin", @@ -299,10 +299,6 @@ } } }, - "77094de33a4f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[0n\",\"enter\":false,\"inputKind\":\"query-reply\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "7c12e14c2dd9": { "name": "terminal.send#1", "args": [ @@ -474,6 +470,11 @@ } } }, + "a766e4175d1c": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[0n\",\"enter\":false,\"inputKind\":\"query-reply\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "f043bb99cc1d": { "accepted": false } @@ -485,7 +486,7 @@ "id": "terminal-query-reply-accepted.normal:accepted", "observation": { "sender": ["4ed60727a7ff"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "84e5ca07cb7a" }, @@ -497,7 +498,7 @@ "id": "terminal-query-reply-accepted.result-absent:accepted", "observation": { "sender": ["88cfdbfbe02c"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -509,7 +510,7 @@ "id": "terminal-query-reply-accepted.result-null:accepted", "observation": { "sender": ["22ecc0da8593"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -521,7 +522,7 @@ "id": "terminal-query-reply-accepted.inner-ok-missing:accepted", "observation": { "sender": ["62a266491834"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -533,7 +534,7 @@ "id": "terminal-query-reply-accepted.inner-false-string-error:accepted", "observation": { "sender": ["9b8953212260"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -545,7 +546,7 @@ "id": "terminal-query-reply-accepted.inner-false-object-error:accepted", "observation": { "sender": ["954da0737971"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -557,7 +558,7 @@ "id": "terminal-query-reply-accepted.outer-refused:accepted", "observation": { "sender": ["672329e62a64"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -569,7 +570,7 @@ "id": "terminal-query-reply-accepted.outer-refused-no-message:accepted", "observation": { "sender": ["3290e88f844f"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -581,7 +582,7 @@ "id": "terminal-query-reply-accepted.method-not-found:accepted", "observation": { "sender": ["5871998f69af"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -593,7 +594,7 @@ "id": "terminal-query-reply-accepted.transport-rejection:accepted", "observation": { "sender": ["13a2535cdcfb"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, @@ -605,7 +606,7 @@ "id": "terminal-query-reply-accepted.transport-rejection-no-message:accepted", "observation": { "sender": ["7c12e14c2dd9"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "7ed3d39f0607" }, 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 4330e3bcb5e..d7809bd476a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "68c039f74da08523d67d8d5b0a178c1d12507ec88d25891cd1377cd3fb40205c", "platform": "darwin", @@ -46,6 +46,11 @@ } } }, + "03f8dcaf51c7": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "093b7147f9b0": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -81,17 +86,9 @@ } } }, - "0a0137383ed3": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "11a49f853eb8": { "accepted": true }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "34a453846d11": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -317,6 +314,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "bca437e23d8a": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -464,7 +466,7 @@ "id": "terminal-raw-input-reported.normal:reported", "observation": { "sender": ["4dbb5ea36ed2", "093b7147f9b0"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -476,7 +478,7 @@ "id": "terminal-raw-input-reported.result-absent:reported", "observation": { "sender": ["4dbb5ea36ed2", "bca437e23d8a"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -488,7 +490,7 @@ "id": "terminal-raw-input-reported.result-null:reported", "observation": { "sender": ["4dbb5ea36ed2", "d642e739823d"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -500,7 +502,7 @@ "id": "terminal-raw-input-reported.inner-ok-missing:reported", "observation": { "sender": ["4dbb5ea36ed2", "6aad8cc2e655"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -512,7 +514,7 @@ "id": "terminal-raw-input-reported.inner-false-string-error:reported", "observation": { "sender": ["4dbb5ea36ed2", "cb9a9683ab1e"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -524,7 +526,7 @@ "id": "terminal-raw-input-reported.inner-false-object-error:reported", "observation": { "sender": ["4dbb5ea36ed2", "34a453846d11"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -536,7 +538,7 @@ "id": "terminal-raw-input-reported.outer-refused:reported", "observation": { "sender": ["4dbb5ea36ed2", "84777d7d765a"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -548,7 +550,7 @@ "id": "terminal-raw-input-reported.outer-refused-no-message:reported", "observation": { "sender": ["4dbb5ea36ed2", "dc19ad107e96"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -560,7 +562,7 @@ "id": "terminal-raw-input-reported.method-not-found:reported", "observation": { "sender": ["4dbb5ea36ed2", "ad01b4d8b4de"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -572,7 +574,7 @@ "id": "terminal-raw-input-reported.transport-rejection:reported", "observation": { "sender": ["4dbb5ea36ed2", "0203262b5432"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -584,7 +586,7 @@ "id": "terminal-raw-input-reported.transport-rejection-no-message:reported", "observation": { "sender": ["4dbb5ea36ed2", "4f58026b7877"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, 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 0b3cccce848..0599bda4ff6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "19d55a77e9c2f64f062070c9985f756e0ba72f3ccc3c884a80843fe888f42a47", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "03f8dcaf51c7": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "093b7147f9b0": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -48,10 +53,6 @@ } } }, - "0a0137383ed3": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "0f86dd69448c": { "name": "terminal.send#1", "args": [ @@ -95,10 +96,6 @@ "11a49f853eb8": { "accepted": true }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "2638782fdff1": { "name": "terminal.send#1", "args": [ @@ -423,6 +420,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "d156eef40d6a": { "name": "terminal.send#1", "args": [ @@ -513,7 +515,7 @@ "id": "terminal-raw-input-reported.normal:reported", "observation": { "sender": ["4dbb5ea36ed2", "093b7147f9b0"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, @@ -525,7 +527,7 @@ "id": "terminal-raw-input-reported.result-absent:reported", "observation": { "sender": ["6f81ca41dbcf"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -537,7 +539,7 @@ "id": "terminal-raw-input-reported.result-null:reported", "observation": { "sender": ["80e6ae38e612"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -549,7 +551,7 @@ "id": "terminal-raw-input-reported.inner-ok-missing:reported", "observation": { "sender": ["a944d85eac60"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -561,7 +563,7 @@ "id": "terminal-raw-input-reported.inner-false-string-error:reported", "observation": { "sender": ["2638782fdff1"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -573,7 +575,7 @@ "id": "terminal-raw-input-reported.inner-false-object-error:reported", "observation": { "sender": ["de23a95594f0"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -585,7 +587,7 @@ "id": "terminal-raw-input-reported.outer-refused:reported", "observation": { "sender": ["7b6ba38169d9"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -597,7 +599,7 @@ "id": "terminal-raw-input-reported.outer-refused-no-message:reported", "observation": { "sender": ["0f86dd69448c"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -609,7 +611,7 @@ "id": "terminal-raw-input-reported.method-not-found:reported", "observation": { "sender": ["6d223e9c6727"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -621,7 +623,7 @@ "id": "terminal-raw-input-reported.transport-rejection:reported", "observation": { "sender": ["d156eef40d6a"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, @@ -633,7 +635,7 @@ "id": "terminal-raw-input-reported.transport-rejection-no-message:reported", "observation": { "sender": ["8e79300038ac"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, 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 b0b7b546c98..a3a008bc4bf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "6913de3f553b47a7e6663e21b0b93e97df26405c210db876f0b9593bd38936be", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002261d201ea": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "0203262b5432": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -85,6 +81,11 @@ } } }, + "077fe24856b3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 + }, "119211148b44": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -189,6 +190,11 @@ } } }, + "488e1b567bfb": { + "name": "orchestration.workerTerminalUserInput#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "48f55b70e1c2": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -331,10 +337,6 @@ } } }, - "797d27f8307a": { - "name": "orchestration.workerTerminalUserInput#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "880e2feac97b": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -458,7 +460,7 @@ "id": "terminal-takeover-report-retried.normal:reported-on-retry", "observation": { "sender": ["14ce070cad1b"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -470,7 +472,7 @@ "id": "terminal-takeover-report-retried.result-absent:reported-on-retry", "observation": { "sender": ["45e7c7d3167f"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -482,7 +484,7 @@ "id": "terminal-takeover-report-retried.result-null:reported-on-retry", "observation": { "sender": ["022b9ce8ac66"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -494,7 +496,7 @@ "id": "terminal-takeover-report-retried.inner-ok-missing:reported-on-retry", "observation": { "sender": ["48f55b70e1c2"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -506,7 +508,7 @@ "id": "terminal-takeover-report-retried.inner-false-string-error:reported-on-retry", "observation": { "sender": ["119211148b44"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -518,7 +520,7 @@ "id": "terminal-takeover-report-retried.inner-false-object-error:reported-on-retry", "observation": { "sender": ["6c2d0a45ffab"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, @@ -530,7 +532,7 @@ "id": "terminal-takeover-report-retried.outer-refused:reported-on-retry", "observation": { "sender": ["789b4e1c4a4e", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -542,7 +544,7 @@ "id": "terminal-takeover-report-retried.outer-refused-no-message:reported-on-retry", "observation": { "sender": ["cd393aacf981", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -554,7 +556,7 @@ "id": "terminal-takeover-report-retried.method-not-found:reported-on-retry", "observation": { "sender": ["880e2feac97b", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -566,7 +568,7 @@ "id": "terminal-takeover-report-retried.transport-rejection:reported-on-retry", "observation": { "sender": ["0203262b5432", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -578,7 +580,7 @@ "id": "terminal-takeover-report-retried.transport-rejection-no-message:reported-on-retry", "observation": { "sender": ["4f58026b7877", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, 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 f84dc64c13d..0c516d4a5b5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "da13ec556c0f672371a8cd2aabd4dcc68001c0f9aa47015dfa4b5937355c4c2c", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002261d201ea": { + "077fe24856b3": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 }, "0e475418cc7e": { "name": "orchestration.workerTerminalUserInput#2", @@ -54,6 +55,11 @@ } }, "44136fa355b3": {}, + "488e1b567bfb": { + "name": "orchestration.workerTerminalUserInput#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "63d1194a49c6": { "name": "orchestration.workerTerminalUserInput#2", "args": [ @@ -87,10 +93,6 @@ } } }, - "797d27f8307a": { - "name": "orchestration.workerTerminalUserInput#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "7b2f86f125fc": { "name": "orchestration.workerTerminalUserInput#2", "args": [ @@ -459,7 +461,7 @@ "id": "terminal-takeover-report-retried.normal:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -471,7 +473,7 @@ "id": "terminal-takeover-report-retried.result-absent:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "db85d298e01e"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -483,7 +485,7 @@ "id": "terminal-takeover-report-retried.result-null:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "fe12b8e22d0c"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -495,7 +497,7 @@ "id": "terminal-takeover-report-retried.inner-ok-missing:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "d3aafbe91b9c"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -507,7 +509,7 @@ "id": "terminal-takeover-report-retried.inner-false-string-error:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "7b2f86f125fc"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -519,7 +521,7 @@ "id": "terminal-takeover-report-retried.inner-false-object-error:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "869f520d1465"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -531,7 +533,7 @@ "id": "terminal-takeover-report-retried.outer-refused:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "7d714b619f7a"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -543,7 +545,7 @@ "id": "terminal-takeover-report-retried.outer-refused-no-message:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "ede5c5529f4c"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -555,7 +557,7 @@ "id": "terminal-takeover-report-retried.method-not-found:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "0e475418cc7e"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -567,7 +569,7 @@ "id": "terminal-takeover-report-retried.transport-rejection:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "ebe47458b1bb"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, @@ -579,7 +581,7 @@ "id": "terminal-takeover-report-retried.transport-rejection-no-message:reported-on-retry", "observation": { "sender": ["f3349fb58cad", "63d1194a49c6"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, 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 6d612966432..3aa51575bb1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "bde05ca916393d7f5ccd48686cf13a52fb2dfa599ea874b084c58bd59adb7e7f", "platform": "darwin", @@ -279,10 +279,6 @@ } } }, - "9c584ebc4a0f": { - "name": "terminal.updateViewport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}" - }, "a056a0c8d9d3": { "name": "terminal.updateViewport#1", "args": [ @@ -463,6 +459,11 @@ } } }, + "ca5578df10d1": { + "name": "terminal.updateViewport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}", + "sent": 1 + }, "e578c2bcde04": { "name": "terminal.updateViewport#1", "args": [ @@ -521,7 +522,7 @@ "id": "terminal-viewport-refit-applied.normal:reflowed", "observation": { "sender": ["121036dfcf5a"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -534,7 +535,7 @@ "id": "terminal-viewport-refit-applied.result-absent:reflowed", "observation": { "sender": ["43ede4e0a03a"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -547,7 +548,7 @@ "id": "terminal-viewport-refit-applied.result-null:reflowed", "observation": { "sender": ["a1305ea259dd"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -560,7 +561,7 @@ "id": "terminal-viewport-refit-applied.inner-ok-missing:reflowed", "observation": { "sender": ["ba81b169e3b7"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -573,7 +574,7 @@ "id": "terminal-viewport-refit-applied.inner-false-string-error:reflowed", "observation": { "sender": ["1c67fe61e3e6"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -586,7 +587,7 @@ "id": "terminal-viewport-refit-applied.inner-false-object-error:reflowed", "observation": { "sender": ["90e3c020eef5"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -599,7 +600,7 @@ "id": "terminal-viewport-refit-applied.outer-refused:reflowed", "observation": { "sender": ["e578c2bcde04"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -612,7 +613,7 @@ "id": "terminal-viewport-refit-applied.outer-refused-no-message:reflowed", "observation": { "sender": ["c0619ddc2d8f"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -625,7 +626,7 @@ "id": "terminal-viewport-refit-applied.method-not-found:reflowed", "observation": { "sender": ["a056a0c8d9d3"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -638,7 +639,7 @@ "id": "terminal-viewport-refit-applied.transport-rejection:reflowed", "observation": { "sender": ["43d05571e0f1"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" @@ -651,7 +652,7 @@ "id": "terminal-viewport-refit-applied.transport-rejection-no-message:reflowed", "observation": { "sender": ["3f6a9fc794e0"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" 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 a3da69c46db..60ab920d31e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "874b1a120443ee679e2f4b3974762fd84fc929e93a2117b20bbb0cf373316616", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -148,6 +144,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "88200d49083c": { "name": "status.get#1", "args": [ @@ -405,7 +406,7 @@ "id": "transport-capability-probe-publishes.normal:capabilities-published", "observation": { "sender": ["b4584cf1e1a9"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -417,7 +418,7 @@ "id": "transport-capability-probe-publishes.result-absent:capabilities-published", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -429,7 +430,7 @@ "id": "transport-capability-probe-publishes.result-null:capabilities-published", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -441,7 +442,7 @@ "id": "transport-capability-probe-publishes.inner-ok-missing:capabilities-published", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -453,7 +454,7 @@ "id": "transport-capability-probe-publishes.inner-false-string-error:capabilities-published", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -465,7 +466,7 @@ "id": "transport-capability-probe-publishes.inner-false-object-error:capabilities-published", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -477,7 +478,7 @@ "id": "transport-capability-probe-publishes.outer-refused:capabilities-published", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -489,7 +490,7 @@ "id": "transport-capability-probe-publishes.outer-refused-no-message:capabilities-published", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -501,7 +502,7 @@ "id": "transport-capability-probe-publishes.method-not-found:capabilities-published", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -513,7 +514,7 @@ "id": "transport-capability-probe-publishes.transport-rejection:capabilities-published", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -525,7 +526,7 @@ "id": "transport-capability-probe-publishes.transport-rejection-no-message:capabilities-published", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, 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 8a960fa1753..ce4ac23dc32 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "d6be62e5eb2737d75634c053098d06a4bb175c64ff915cec6ead79922492a068", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -168,6 +164,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "88200d49083c": { "name": "status.get#1", "args": [ @@ -434,7 +435,7 @@ "id": "transport-host-status-gates-ready.normal:gates-proven", "observation": { "sender": ["eed0ae8cfbd7"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -446,7 +447,7 @@ "id": "transport-host-status-gates-ready.result-absent:gates-proven", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -458,7 +459,7 @@ "id": "transport-host-status-gates-ready.result-null:gates-proven", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -470,7 +471,7 @@ "id": "transport-host-status-gates-ready.inner-ok-missing:gates-proven", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -482,7 +483,7 @@ "id": "transport-host-status-gates-ready.inner-false-string-error:gates-proven", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -494,7 +495,7 @@ "id": "transport-host-status-gates-ready.inner-false-object-error:gates-proven", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -506,7 +507,7 @@ "id": "transport-host-status-gates-ready.outer-refused:gates-proven", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -518,7 +519,7 @@ "id": "transport-host-status-gates-ready.outer-refused-no-message:gates-proven", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -530,7 +531,7 @@ "id": "transport-host-status-gates-ready.method-not-found:gates-proven", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -542,7 +543,7 @@ "id": "transport-host-status-gates-ready.transport-rejection:gates-proven", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -554,7 +555,7 @@ "id": "transport-host-status-gates-ready.transport-rejection-no-message:gates-proven", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 88c34903f51..6fbd07a3e22 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "1d032c86e7cc12efa3d5044339cb990bd258d830119d0e7b61d1b995b4df29a3", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -187,6 +183,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "7d3dd7f9381b": { "name": "status.get#1", "args": [ @@ -362,9 +363,10 @@ "value": "direct", "sent": 2 }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "c71b2f8a6993": { "name": "status.get#1", @@ -439,7 +441,7 @@ "id": "transport-pairing-race-relay-completes-first.normal:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -451,7 +453,7 @@ "id": "transport-pairing-race-relay-completes-first.result-absent:relay-wins-when-it-completes-first", "observation": { "sender": ["7d3dd7f9381b", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -463,7 +465,7 @@ "id": "transport-pairing-race-relay-completes-first.result-null:relay-wins-when-it-completes-first", "observation": { "sender": ["88200d49083c", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -475,7 +477,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-ok-missing:relay-wins-when-it-completes-first", "observation": { "sender": ["4451bb95a76e", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -487,7 +489,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-false-string-error:relay-wins-when-it-completes-first", "observation": { "sender": ["944bf432f199", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -499,7 +501,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-false-object-error:relay-wins-when-it-completes-first", "observation": { "sender": ["89236e432861", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -511,7 +513,7 @@ "id": "transport-pairing-race-relay-completes-first.outer-refused:relay-wins-when-it-completes-first", "observation": { "sender": ["16cd464bf664", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -523,7 +525,7 @@ "id": "transport-pairing-race-relay-completes-first.outer-refused-no-message:relay-wins-when-it-completes-first", "observation": { "sender": ["9cdf3c107e7b", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -535,7 +537,7 @@ "id": "transport-pairing-race-relay-completes-first.method-not-found:relay-wins-when-it-completes-first", "observation": { "sender": ["c71b2f8a6993", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -547,7 +549,7 @@ "id": "transport-pairing-race-relay-completes-first.transport-rejection:relay-wins-when-it-completes-first", "observation": { "sender": ["de87f6266897", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -559,7 +561,7 @@ "id": "transport-pairing-race-relay-completes-first.transport-rejection-no-message:relay-wins-when-it-completes-first", "observation": { "sender": ["2698c9770ad3", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, 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 442f56c694b..44295100182 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "048ee6d7848e0e4b8d6463ff9dc4124bfd478114ab87f6b52ff82a1dfd6ebc04", "platform": "darwin", @@ -108,10 +108,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "218c5005ac65": { "name": "status.get#2", "args": [ @@ -218,6 +214,11 @@ "settledAt": 0, "value": "relay" }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "87a315fe2862": { "name": "status.get#2", "args": [ @@ -302,6 +303,11 @@ "value": "direct", "sent": 2 }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b8e45ac26312": { "name": "status.get#2", "args": [ @@ -369,10 +375,6 @@ } } }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "d433a326314e": { "name": "candidate-closed", "value": "relay", @@ -453,7 +455,7 @@ "id": "transport-pairing-race-relay-completes-first.normal:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -465,7 +467,7 @@ "id": "transport-pairing-race-relay-completes-first.result-absent:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "e9d16781a690"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -477,7 +479,7 @@ "id": "transport-pairing-race-relay-completes-first.result-null:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "03b8b5bae048"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -489,7 +491,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-ok-missing:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "bf57ada87e10"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -501,7 +503,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-false-string-error:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "218c5005ac65"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -513,7 +515,7 @@ "id": "transport-pairing-race-relay-completes-first.inner-false-object-error:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "a10980da78f2"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, @@ -525,7 +527,7 @@ "id": "transport-pairing-race-relay-completes-first.outer-refused:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "b8e45ac26312"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, @@ -537,7 +539,7 @@ "id": "transport-pairing-race-relay-completes-first.outer-refused-no-message:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "87a315fe2862"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, @@ -549,7 +551,7 @@ "id": "transport-pairing-race-relay-completes-first.method-not-found:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "f699294abe81"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, @@ -561,7 +563,7 @@ "id": "transport-pairing-race-relay-completes-first.transport-rejection:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "18c1e8ee98a9"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, @@ -573,7 +575,7 @@ "id": "transport-pairing-race-relay-completes-first.transport-rejection-no-message:relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "1ca2b2b151f0"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, 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 0b0efde1d41..7c23208c701 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "95ca47f382997c412da974e564a46b1ae0c20d6e0f3ca14258d33c8d8b51a160", "platform": "darwin", @@ -325,10 +325,6 @@ } } }, - "a87f1f91dc98": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"afterSnapshotId\":null,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -525,6 +521,11 @@ "isRpcDeliveryUnknown": true } }, + "c97fe566ef74": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"afterSnapshotId\":null,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 1 + }, "f5d207eddd1d": { "name": "worktree.ps#1", "args": [ @@ -600,7 +601,7 @@ "id": "worktree-catalog-snapshot.prelude:catalog-pending", "observation": { "sender": ["f97b6b46b1d5"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "9270aeb7d9c6" }, @@ -612,7 +613,7 @@ "id": "worktree-catalog-snapshot.normal:settled", "observation": { "sender": ["227f9e3de4fa"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "9948855e8b8d" }, @@ -624,7 +625,7 @@ "id": "worktree-catalog-snapshot.result-absent:settled", "observation": { "sender": ["ad584cc963bb"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "3ef9b57ea9ad" }, @@ -636,7 +637,7 @@ "id": "worktree-catalog-snapshot.result-null:settled", "observation": { "sender": ["b670d230caf2"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "3ef9b57ea9ad" }, @@ -648,7 +649,7 @@ "id": "worktree-catalog-snapshot.inner-ok-missing:settled", "observation": { "sender": ["4262ba495b1b"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "3ef9b57ea9ad" }, @@ -660,7 +661,7 @@ "id": "worktree-catalog-snapshot.inner-false-string-error:settled", "observation": { "sender": ["5a288976750e"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "3ef9b57ea9ad" }, @@ -672,7 +673,7 @@ "id": "worktree-catalog-snapshot.inner-false-object-error:settled", "observation": { "sender": ["f5d207eddd1d"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "3ef9b57ea9ad" }, @@ -684,7 +685,7 @@ "id": "worktree-catalog-snapshot.outer-refused:settled", "observation": { "sender": ["b14360b67647"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "0d9bf2f46a5e" }, @@ -696,7 +697,7 @@ "id": "worktree-catalog-snapshot.outer-refused-no-message:settled", "observation": { "sender": ["a0fab6bf1fb0"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "0d9bf2f46a5e" }, @@ -708,7 +709,7 @@ "id": "worktree-catalog-snapshot.method-not-found:settled", "observation": { "sender": ["5d54bccfc557"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "8e2c2fbe7e94" }, @@ -720,7 +721,7 @@ "id": "worktree-catalog-snapshot.transport-rejection:settled", "observation": { "sender": ["b1ae1170d95b"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "a947768bc0ed" }, @@ -732,7 +733,7 @@ "id": "worktree-catalog-snapshot.transport-rejection-no-message:settled", "observation": { "sender": ["08dde29706df"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "c7584e82c72f" }, 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 408e6de4d59..d5603b0d2f6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "e93a36ef900de27e1a566cdb2389ba4f900a330eadbb476b9bfb1ef05707b352", "platform": "darwin", @@ -191,10 +191,6 @@ "3f946ad0279c": { "outcome": "uncreated" }, - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "489c189aebca": { "name": "worktree.create#1", "args": [ @@ -506,6 +502,11 @@ } } }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 + }, "df162b95f465": { "outcome": { "name": "kestrel", @@ -520,7 +521,7 @@ "id": "tw-create-retry-created.normal:created", "observation": { "sender": ["489c189aebca"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "b32227fdb10b" }, @@ -532,7 +533,7 @@ "id": "tw-create-retry-created.result-absent:created", "observation": { "sender": ["cf574d8c995b"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "2588fd63a157" }, @@ -544,7 +545,7 @@ "id": "tw-create-retry-created.result-null:created", "observation": { "sender": ["0938d32a2ec2"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "b5447f4dd931" }, @@ -556,7 +557,7 @@ "id": "tw-create-retry-created.inner-ok-missing:created", "observation": { "sender": ["6bf7db287168"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "199931225ca2" }, @@ -568,7 +569,7 @@ "id": "tw-create-retry-created.inner-false-string-error:created", "observation": { "sender": ["96a4c62e654d"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "199931225ca2" }, @@ -580,7 +581,7 @@ "id": "tw-create-retry-created.inner-false-object-error:created", "observation": { "sender": ["2e78a1dad2ea"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "199931225ca2" }, @@ -592,7 +593,7 @@ "id": "tw-create-retry-created.outer-refused:created", "observation": { "sender": ["c8b7b7e4da75"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "7665e4eb5ce2" }, @@ -604,7 +605,7 @@ "id": "tw-create-retry-created.outer-refused-no-message:created", "observation": { "sender": ["b6ebedadd49b"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "240b0b1c72b2" }, @@ -616,7 +617,7 @@ "id": "tw-create-retry-created.method-not-found:created", "observation": { "sender": ["151fd59f40cd"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "7fbbbeb1902c" }, @@ -628,7 +629,7 @@ "id": "tw-create-retry-created.transport-rejection:created", "observation": { "sender": ["292579caa07d"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "a947768bc0ed" }, @@ -640,7 +641,7 @@ "id": "tw-create-retry-created.transport-rejection-no-message:created", "observation": { "sender": ["8cf7217b02de"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "c7584e82c72f" }, 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 5d94adf50cb..9f369060112 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "fa0e28a167a5fba6fe7ffebb9f4ad28dd413d601c07116a24a7781d156f54beb", "platform": "darwin", @@ -177,10 +177,6 @@ } } }, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "4fa9e403a3c8": { "name": "worktree.ps#1", "args": [ @@ -429,6 +425,11 @@ "startedAt": 0 } }, + "c72cb878ff2a": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 1 + }, "d0ec31ab66d5": { "host-1": { "activeCount": 0, @@ -523,7 +524,7 @@ "id": "worktree-home-catalog.prelude:catalog-pending", "observation": { "sender": ["bc1a8e138f82"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "9270aeb7d9c6" }, @@ -535,7 +536,7 @@ "id": "worktree-home-catalog.normal:settled", "observation": { "sender": ["2e82f8bbb1f1"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -547,7 +548,7 @@ "id": "worktree-home-catalog.result-absent:settled", "observation": { "sender": ["6ed6d686b491"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -559,7 +560,7 @@ "id": "worktree-home-catalog.result-null:settled", "observation": { "sender": ["430d32843438"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -571,7 +572,7 @@ "id": "worktree-home-catalog.inner-ok-missing:settled", "observation": { "sender": ["e904502f2359"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -583,7 +584,7 @@ "id": "worktree-home-catalog.inner-false-string-error:settled", "observation": { "sender": ["f2257f595504"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -595,7 +596,7 @@ "id": "worktree-home-catalog.inner-false-object-error:settled", "observation": { "sender": ["481a5e96b319"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -607,7 +608,7 @@ "id": "worktree-home-catalog.outer-refused:settled", "observation": { "sender": ["993fb2bd3f3e"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -619,7 +620,7 @@ "id": "worktree-home-catalog.outer-refused-no-message:settled", "observation": { "sender": ["97177805ceb8"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -631,7 +632,7 @@ "id": "worktree-home-catalog.method-not-found:settled", "observation": { "sender": ["111018d23b6c"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -643,7 +644,7 @@ "id": "worktree-home-catalog.transport-rejection:settled", "observation": { "sender": ["4fa9e403a3c8"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, @@ -655,7 +656,7 @@ "id": "worktree-home-catalog.transport-rejection-no-message:settled", "observation": { "sender": ["9f1a49cd671e"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, 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 4be21c2d95a..76b932e0ed6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "a84f8a5acfd428eb77b5c02a3de0fa8b780c666db31bbe574ecf76cdf84adeb2", "platform": "darwin", @@ -48,10 +48,6 @@ } } }, - "0e24d2a37a0d": { - "name": "worktree.resolvePrBase#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" - }, "156f5e61efd3": { "name": "worktree.resolveMrBase#1", "args": [ @@ -357,9 +353,10 @@ "compareBaseRef": "origin/main" } }, - "69afcaf1cb72": { + "65f985665d42": { "name": "worktree.resolveMrBase#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}", + "sent": 2 }, "7214459608bf": { "status": "rejected", @@ -403,6 +400,11 @@ } } }, + "95d2391d09f2": { + "name": "worktree.resolvePrBase#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}", + "sent": 1 + }, "96b186d42430": { "name": "worktree.resolveMrBase#1", "args": [ @@ -583,7 +585,7 @@ "id": "tw-hosted-base-resolved.prelude:pr-base-resolved", "observation": { "sender": ["4febe923ceea"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "5428de0f5130" }, @@ -595,7 +597,7 @@ "id": "tw-hosted-base-resolved.normal:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "fd552ecb03da" @@ -608,7 +610,7 @@ "id": "tw-hosted-base-resolved.result-absent:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "93bb7cfeae89"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "ae5862eb7a20" @@ -621,7 +623,7 @@ "id": "tw-hosted-base-resolved.result-null:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "336e99424dd0"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "7214459608bf" @@ -634,7 +636,7 @@ "id": "tw-hosted-base-resolved.inner-ok-missing:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "08ecbab921e6"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "2aaea8ee523e" @@ -647,7 +649,7 @@ "id": "tw-hosted-base-resolved.inner-false-string-error:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "96b186d42430"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "d05b2d417b9c" @@ -660,7 +662,7 @@ "id": "tw-hosted-base-resolved.inner-false-object-error:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "156f5e61efd3"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "2c7f810cc819" @@ -673,7 +675,7 @@ "id": "tw-hosted-base-resolved.outer-refused:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "201cea1f9864"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "32a7c0ae7918" @@ -686,7 +688,7 @@ "id": "tw-hosted-base-resolved.outer-refused-no-message:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "382c27f806f2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "f3b516f62081" @@ -699,7 +701,7 @@ "id": "tw-hosted-base-resolved.method-not-found:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "17ae65496a72"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "b948e8307e81" @@ -712,7 +714,7 @@ "id": "tw-hosted-base-resolved.transport-rejection:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "bd721565327b"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "a947768bc0ed" @@ -725,7 +727,7 @@ "id": "tw-hosted-base-resolved.transport-rejection-no-message:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "22f024eeb07c"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "c7584e82c72f" 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 bc0997b797a..c95e64b7263 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "45783a7cbb44b04dbbd6bfd6735799bb4c75e503f43f1821cf8640d11f7464ad", "platform": "darwin", @@ -19,10 +19,6 @@ }, "prBase": "unresolved" }, - "0e24d2a37a0d": { - "name": "worktree.resolvePrBase#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" - }, "236529aa012d": { "mrBase": "unresolved", "prBase": { @@ -324,9 +320,10 @@ } } }, - "69afcaf1cb72": { + "65f985665d42": { "name": "worktree.resolveMrBase#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}", + "sent": 2 }, "7214459608bf": { "status": "rejected", @@ -338,6 +335,11 @@ "isRpcDeliveryUnknown": false } }, + "95d2391d09f2": { + "name": "worktree.resolvePrBase#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}", + "sent": 1 + }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -593,7 +595,7 @@ "id": "tw-hosted-base-resolved.normal:pr-base-resolved", "observation": { "sender": ["4febe923ceea"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "5428de0f5130" }, @@ -605,7 +607,7 @@ "id": "tw-hosted-base-resolved.normal:mr-base-resolved", "observation": { "sender": ["4febe923ceea", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "fd552ecb03da" @@ -618,7 +620,7 @@ "id": "tw-hosted-base-resolved.result-absent:pr-base-resolved", "observation": { "sender": ["60f898896e1a"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "ae5862eb7a20" }, @@ -630,7 +632,7 @@ "id": "tw-hosted-base-resolved.result-absent:mr-base-resolved", "observation": { "sender": ["60f898896e1a", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "ae5862eb7a20", "mr": "fd552ecb03da" @@ -643,7 +645,7 @@ "id": "tw-hosted-base-resolved.result-null:pr-base-resolved", "observation": { "sender": ["f4bbce06e9b6"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "7214459608bf" }, @@ -655,7 +657,7 @@ "id": "tw-hosted-base-resolved.result-null:mr-base-resolved", "observation": { "sender": ["f4bbce06e9b6", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "7214459608bf", "mr": "fd552ecb03da" @@ -668,7 +670,7 @@ "id": "tw-hosted-base-resolved.inner-ok-missing:pr-base-resolved", "observation": { "sender": ["658dfb6d27f2"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "2aaea8ee523e" }, @@ -680,7 +682,7 @@ "id": "tw-hosted-base-resolved.inner-ok-missing:mr-base-resolved", "observation": { "sender": ["658dfb6d27f2", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "2aaea8ee523e", "mr": "fd552ecb03da" @@ -693,7 +695,7 @@ "id": "tw-hosted-base-resolved.inner-false-string-error:pr-base-resolved", "observation": { "sender": ["62d33be71d4d"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "d05b2d417b9c" }, @@ -705,7 +707,7 @@ "id": "tw-hosted-base-resolved.inner-false-string-error:mr-base-resolved", "observation": { "sender": ["62d33be71d4d", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "d05b2d417b9c", "mr": "fd552ecb03da" @@ -718,7 +720,7 @@ "id": "tw-hosted-base-resolved.inner-false-object-error:pr-base-resolved", "observation": { "sender": ["5ce5558cd2f1"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "2c7f810cc819" }, @@ -730,7 +732,7 @@ "id": "tw-hosted-base-resolved.inner-false-object-error:mr-base-resolved", "observation": { "sender": ["5ce5558cd2f1", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "2c7f810cc819", "mr": "fd552ecb03da" @@ -743,7 +745,7 @@ "id": "tw-hosted-base-resolved.outer-refused:pr-base-resolved", "observation": { "sender": ["f19c03489128"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "32a7c0ae7918" }, @@ -755,7 +757,7 @@ "id": "tw-hosted-base-resolved.outer-refused:mr-base-resolved", "observation": { "sender": ["f19c03489128", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "32a7c0ae7918", "mr": "fd552ecb03da" @@ -768,7 +770,7 @@ "id": "tw-hosted-base-resolved.outer-refused-no-message:pr-base-resolved", "observation": { "sender": ["e3d0229e3cdb"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "f3b516f62081" }, @@ -780,7 +782,7 @@ "id": "tw-hosted-base-resolved.outer-refused-no-message:mr-base-resolved", "observation": { "sender": ["e3d0229e3cdb", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "f3b516f62081", "mr": "fd552ecb03da" @@ -793,7 +795,7 @@ "id": "tw-hosted-base-resolved.method-not-found:pr-base-resolved", "observation": { "sender": ["28b232b6369b"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "b948e8307e81" }, @@ -805,7 +807,7 @@ "id": "tw-hosted-base-resolved.method-not-found:mr-base-resolved", "observation": { "sender": ["28b232b6369b", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "b948e8307e81", "mr": "fd552ecb03da" @@ -818,7 +820,7 @@ "id": "tw-hosted-base-resolved.transport-rejection:pr-base-resolved", "observation": { "sender": ["d778e31ef5f7"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "a947768bc0ed" }, @@ -830,7 +832,7 @@ "id": "tw-hosted-base-resolved.transport-rejection:mr-base-resolved", "observation": { "sender": ["d778e31ef5f7", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "a947768bc0ed", "mr": "fd552ecb03da" @@ -843,7 +845,7 @@ "id": "tw-hosted-base-resolved.transport-rejection-no-message:pr-base-resolved", "observation": { "sender": ["388eebbe7dca"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "c7584e82c72f" }, @@ -855,7 +857,7 @@ "id": "tw-hosted-base-resolved.transport-rejection-no-message:mr-base-resolved", "observation": { "sender": ["388eebbe7dca", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "c7584e82c72f", "mr": "fd552ecb03da" 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 68c042b313e..f5750eeaba8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "d321d6c17e67ae90f6ceefb775495ff765a86a35423ed33a212e71ec5e9e94aa", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "00ae68859cc4": { + "name": "worktree.listRetiredNames#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.listRetiredNames\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "02fe07399476": { "name": "worktree.listRetiredNames#1", "args": [ @@ -277,10 +282,6 @@ "names": ["marlin", "orca"] } }, - "ba7d8283433b": { - "name": "worktree.listRetiredNames#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.listRetiredNames\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "be9540321e8c": { "name": "worktree.listRetiredNames#1", "args": [ @@ -438,7 +439,7 @@ "id": "worktree-retired-names.prelude:names-pending", "observation": { "sender": ["569633c0c5c5"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -450,7 +451,7 @@ "id": "worktree-retired-names.normal:settled", "observation": { "sender": ["5e2e60e145d8"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -462,7 +463,7 @@ "id": "worktree-retired-names.result-absent:settled", "observation": { "sender": ["62049c27970e"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -474,7 +475,7 @@ "id": "worktree-retired-names.result-null:settled", "observation": { "sender": ["097832ba0321"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -486,7 +487,7 @@ "id": "worktree-retired-names.inner-ok-missing:settled", "observation": { "sender": ["0c1342cbe912"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -498,7 +499,7 @@ "id": "worktree-retired-names.inner-false-string-error:settled", "observation": { "sender": ["2b135054eb20"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -510,7 +511,7 @@ "id": "worktree-retired-names.inner-false-object-error:settled", "observation": { "sender": ["dfdfe583f72c"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -522,7 +523,7 @@ "id": "worktree-retired-names.outer-refused:settled", "observation": { "sender": ["65d2ebb48892"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -534,7 +535,7 @@ "id": "worktree-retired-names.outer-refused-no-message:settled", "observation": { "sender": ["be9540321e8c"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -546,7 +547,7 @@ "id": "worktree-retired-names.method-not-found:settled", "observation": { "sender": ["e30ddb3bb2da"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -558,7 +559,7 @@ "id": "worktree-retired-names.transport-rejection:settled", "observation": { "sender": ["ea14357ab74a"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -570,7 +571,7 @@ "id": "worktree-retired-names.transport-rejection-no-message:settled", "observation": { "sender": ["02fe07399476"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, 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 4b34a8bb756..1dad271af14 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "2fc093ec505bfac04a4ff0adab991baeba985253486dbe9e3ec9884b8d5f0920", "platform": "darwin", @@ -307,6 +307,11 @@ "ok": false } }, + "ab2ee9c092a5": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":12}}", + "sent": 1 + }, "b91c2f7fddc7": { "name": "worktree.set#1", "args": [ @@ -406,10 +411,6 @@ } } }, - "c7ae0a3a6e6e": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":12}}" - }, "c8de0688e42c": { "linkedPR": "unread", "outcome": { @@ -527,7 +528,7 @@ "id": "sc-pr-link-set.prelude:pending", "observation": { "sender": ["2c746c8732cd"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "9270aeb7d9c6" }, @@ -539,7 +540,7 @@ "id": "sc-pr-link-set.normal:settled", "observation": { "sender": ["86441203344c"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -551,7 +552,7 @@ "id": "sc-pr-link-set.result-absent:settled", "observation": { "sender": ["319aa77fad74"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -563,7 +564,7 @@ "id": "sc-pr-link-set.result-null:settled", "observation": { "sender": ["3beb771c862a"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -575,7 +576,7 @@ "id": "sc-pr-link-set.inner-ok-missing:settled", "observation": { "sender": ["e04a0178bf7f"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -587,7 +588,7 @@ "id": "sc-pr-link-set.inner-false-string-error:settled", "observation": { "sender": ["898327d6d921"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -599,7 +600,7 @@ "id": "sc-pr-link-set.inner-false-object-error:settled", "observation": { "sender": ["45e5fb9620bf"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, @@ -611,7 +612,7 @@ "id": "sc-pr-link-set.outer-refused:settled", "observation": { "sender": ["c49c62e3c88e"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "1b2778bf67a2" }, @@ -623,7 +624,7 @@ "id": "sc-pr-link-set.outer-refused-no-message:settled", "observation": { "sender": ["35cef38d4b19"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "a42570f300ad" }, @@ -635,7 +636,7 @@ "id": "sc-pr-link-set.method-not-found:settled", "observation": { "sender": ["d10cb6e1e0b5"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fa93ca01f266" }, @@ -647,7 +648,7 @@ "id": "sc-pr-link-set.transport-rejection:settled", "observation": { "sender": ["b91c2f7fddc7"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "a197c20578aa" }, @@ -659,7 +660,7 @@ "id": "sc-pr-link-set.transport-rejection-no-message:settled", "observation": { "sender": ["c5cfd8d3e2ed"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fb4429083480" }, 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 fd18e7c0e0b..18355353547 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f70c6b1753377b5a502bf7d1e69dc95617f24c42137471320eb393567efbe735", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2698c9770ad3": { "name": "status.get#1", "args": [ @@ -193,6 +189,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "86f7fa8089fe": { "status": "fulfilled", "startedAt": 0, @@ -438,7 +439,7 @@ "id": "tw-capabilities-advertised.normal:probed", "observation": { "sender": ["5242fad3532f"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "b33d34bddc4e" }, @@ -450,7 +451,7 @@ "id": "tw-capabilities-advertised.result-absent:probed", "observation": { "sender": ["7d3dd7f9381b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -462,7 +463,7 @@ "id": "tw-capabilities-advertised.result-null:probed", "observation": { "sender": ["88200d49083c"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -474,7 +475,7 @@ "id": "tw-capabilities-advertised.inner-ok-missing:probed", "observation": { "sender": ["4451bb95a76e"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -486,7 +487,7 @@ "id": "tw-capabilities-advertised.inner-false-string-error:probed", "observation": { "sender": ["944bf432f199"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -498,7 +499,7 @@ "id": "tw-capabilities-advertised.inner-false-object-error:probed", "observation": { "sender": ["89236e432861"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -510,7 +511,7 @@ "id": "tw-capabilities-advertised.outer-refused:probed", "observation": { "sender": ["16cd464bf664"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -522,7 +523,7 @@ "id": "tw-capabilities-advertised.outer-refused-no-message:probed", "observation": { "sender": ["9cdf3c107e7b"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -534,7 +535,7 @@ "id": "tw-capabilities-advertised.method-not-found:probed", "observation": { "sender": ["c71b2f8a6993"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -546,7 +547,7 @@ "id": "tw-capabilities-advertised.transport-rejection:probed", "observation": { "sender": ["de87f6266897"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, @@ -558,7 +559,7 @@ "id": "tw-capabilities-advertised.transport-rejection-no-message:probed", "observation": { "sender": ["2698c9770ad3"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "86f7fa8089fe" }, 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 2f47bffb8a4..8dc0435ec01 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "8487fd14ed779708415b264e2b80b26b0d5094e379a04f4f32c2cd75ec469182", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0f68ccbfb8e9": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}" - }, "229c35d1a4ba": { "trust": "unapproved" }, @@ -233,6 +229,11 @@ } } }, + "99f419f3b772": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}", + "sent": 1 + }, "9deb505f7915": { "name": "ui.set#1", "args": [ @@ -541,7 +542,7 @@ "id": "tw-setup-hook-trust-approved.normal:approved", "observation": { "sender": ["6f009f61d89f"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -553,7 +554,7 @@ "id": "tw-setup-hook-trust-approved.result-absent:approved", "observation": { "sender": ["e9c010ad58d3"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -565,7 +566,7 @@ "id": "tw-setup-hook-trust-approved.result-null:approved", "observation": { "sender": ["9deb505f7915"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -577,7 +578,7 @@ "id": "tw-setup-hook-trust-approved.inner-ok-missing:approved", "observation": { "sender": ["ac7d2d4aa85c"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -589,7 +590,7 @@ "id": "tw-setup-hook-trust-approved.inner-false-string-error:approved", "observation": { "sender": ["d1113bd291a2"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -601,7 +602,7 @@ "id": "tw-setup-hook-trust-approved.inner-false-object-error:approved", "observation": { "sender": ["2905cce95e1c"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, @@ -613,7 +614,7 @@ "id": "tw-setup-hook-trust-approved.outer-refused:approved", "observation": { "sender": ["e3e6506e1ed0"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "32a7c0ae7918" }, @@ -625,7 +626,7 @@ "id": "tw-setup-hook-trust-approved.outer-refused-no-message:approved", "observation": { "sender": ["32af950a57cc"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "f3b516f62081" }, @@ -637,7 +638,7 @@ "id": "tw-setup-hook-trust-approved.method-not-found:approved", "observation": { "sender": ["255cdc090b8a"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "b948e8307e81" }, @@ -649,7 +650,7 @@ "id": "tw-setup-hook-trust-approved.transport-rejection:approved", "observation": { "sender": ["29fc0c5de3b0"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a947768bc0ed" }, @@ -661,7 +662,7 @@ "id": "tw-setup-hook-trust-approved.transport-rejection-no-message:approved", "observation": { "sender": ["abd752b10f76"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "c7584e82c72f" }, 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 e4c3806f3ca..092ce3d8f2a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "a330bd18a22c002ac04d0fa043561740c5cea627516bbf965fc1bd52533c2e35", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "213d2dbb9be4": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 }, "47a22f9d0047": { "failure": { @@ -113,9 +114,10 @@ "settledAt": 0, "value": true }, - "b83e56a4ec7e": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -125,7 +127,7 @@ "id": "pasted", "observation": { "sender": ["52ae659a3d36", "518651fd2840"], - "payloads": ["242d9ae1137d", "b83e56a4ec7e"], + "payloads": ["df3ce4768fd3", "213d2dbb9be4"], "settlements": { "one": "84e5ca07cb7a" }, 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 bb1a0ce8b94..ec1ec22fbe8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "77fd03130dc2faf4d17b018c6c3314076a02b5fe9c531921ffb1a43e8a150d2f", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "4e7e5e8e5767": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 }, "52ae659a3d36": { "name": "terminal.send#1", @@ -113,9 +114,10 @@ }, "pasted": false }, - "ee5ea32bdaf0": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -125,7 +127,7 @@ "id": "stopped", "observation": { "sender": ["52ae659a3d36", "748c76b444c4"], - "payloads": ["242d9ae1137d", "ee5ea32bdaf0"], + "payloads": ["df3ce4768fd3", "4e7e5e8e5767"], "settlements": { "two": "7ed3d39f0607" }, 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 0e51e9dbaca..327a54efb89 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "ebf9397271bfd5462403e60748f5bd505d554eba5f74ce79a8c40550e9719dcc", "platform": "darwin", @@ -13,16 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "47a22f9d0047": { "failure": { "$rpc": "null" }, "pasted": true }, + "4e7e5e8e5767": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "52ae659a3d36": { "name": "terminal.send#1", "args": [ @@ -71,9 +72,10 @@ "settledAt": 0, "value": true }, - "ee5ea32bdaf0": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "ff84951eb090": { "name": "terminal.send#2", @@ -125,7 +127,7 @@ "id": "pasted", "observation": { "sender": ["52ae659a3d36", "ff84951eb090"], - "payloads": ["242d9ae1137d", "ee5ea32bdaf0"], + "payloads": ["df3ce4768fd3", "4e7e5e8e5767"], "settlements": { "trailing": "84e5ca07cb7a" }, 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 b6d224d2aae..da2f7f3c913 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "b6595de485ed071674051ce0d2b44a604ec21d2614b646d8917a9130a58a48cf", "platform": "darwin", @@ -13,14 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "15497aafcc27": { - "name": "terminal.send#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/b.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "2787a9ee5adc": { "name": "terminal.send#3", "args": [ @@ -69,6 +61,11 @@ }, "pasted": true }, + "4e7e5e8e5767": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "52ae659a3d36": { "name": "terminal.send#1", "args": [ @@ -117,9 +114,15 @@ "settledAt": 0, "value": true }, - "ee5ea32bdaf0": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/a.png\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "cfec2653aad4": { + "name": "terminal.send#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~/tmp/b.png\\u001b[201~ \",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 + }, + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "ff84951eb090": { "name": "terminal.send#2", @@ -171,7 +174,7 @@ "id": "pasted-both", "observation": { "sender": ["52ae659a3d36", "ff84951eb090", "2787a9ee5adc"], - "payloads": ["242d9ae1137d", "ee5ea32bdaf0", "15497aafcc27"], + "payloads": ["df3ce4768fd3", "4e7e5e8e5767", "cfec2653aad4"], "settlements": { "two": "84e5ca07cb7a" }, 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 a41739846b5..92a881480cf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 46804c6c0db..9ed6a6fbedd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "181b02243b1ecf98364473ee0b3f4c82a6037b5f5bae33703ab4f611cc050db4", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" + "06a34ec0f0d7": { + "name": "clipboard.startImageUpload#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 4 }, "5a2c5dc0b29f": { "name": "clipboard.commitImageUpload#1", @@ -53,6 +54,11 @@ "value": {}, "sent": 0 }, + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "765ab192e1a5": { "status": "rejected", "startedAt": 0, @@ -97,18 +103,15 @@ } } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "b2b1a4389f58": { "failure": "Image is too large", "uploaded": "unuploaded" }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "b8a4b7e04786": { "name": "clipboard.startImageUpload#2", "args": [ @@ -144,6 +147,11 @@ } } }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 + }, "f0a3d28c980b": { "name": "image-uploaded", "value": { @@ -187,10 +195,6 @@ } } } - }, - "f7c8687f65d7": { - "name": "clipboard.startImageUpload#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" } }, "recording": { @@ -200,7 +204,7 @@ "id": "partial", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "5a2c5dc0b29f", "b8a4b7e04786"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e", "f7c8687f65d7"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515", "06a34ec0f0d7"], "settlements": { "two": "765ab192e1a5" }, 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 23863c8a3e3..1154652074d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "d7dca3742c4086f9ced0ba4b2f6c32ee9fa9272a5a955e8623fdc9cdb4c71528", "platform": "darwin", @@ -22,10 +22,6 @@ }, "sent": 3 }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5a2c5dc0b29f": { "name": "clipboard.commitImageUpload#1", "args": [ @@ -74,6 +70,11 @@ "value": {}, "sent": 0 }, + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 + }, "7e48c58139e5": { "name": "clipboard.startImageUpload#1", "args": [ @@ -108,9 +109,10 @@ } } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 }, "9a61808dee44": { "status": "fulfilled", @@ -124,9 +126,10 @@ } ] }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 }, "f1a3d38271bc": { "name": "clipboard.appendImageUploadChunk#1", @@ -171,7 +174,7 @@ "id": "uploaded", "observation": { "sender": ["7e48c58139e5", "f1a3d38271bc", "5a2c5dc0b29f"], - "payloads": ["520b3fe0fb07", "b69a955ea891", "972fbf8b960e"], + "payloads": ["8dfd1f053efc", "72c805fadcfb", "e9a3deaf4515"], "settlements": { "normal": "9a61808dee44" }, 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 a6a4a15da84..e9c767a117e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "09fd9bf97a4da7313e24f8c333b66c7c1af927bbea0a6d9fef9803856a608c78", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5f71b4d3d25c": { "name": "upload-start", "value": {}, @@ -32,6 +28,11 @@ "isRpcDeliveryUnknown": false } }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "b2b1a4389f58": { "failure": "Image is too large", "uploaded": "unuploaded" @@ -79,7 +80,7 @@ "id": "refused", "observation": { "sender": ["ec6fd7f06461"], - "payloads": ["520b3fe0fb07"], + "payloads": ["8dfd1f053efc"], "settlements": { "normal": "765ab192e1a5" }, 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 d1ccfa4ca13..d9a2726edff 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "16779b663f4faec8cbccdb42efd7b568a2912845b161f8a4827754687eb4235c", "scenarioSha256": "db0397f8f6ae28de0cc7afd91552ee9416d7f7054a76a42aac02f480c6f363d5", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "06a34ec0f0d7": { + "name": "clipboard.startImageUpload#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 4 + }, "10af51833249": { "name": "clipboard.startImageUpload#2", "args": [ @@ -95,10 +100,6 @@ } ] }, - "520b3fe0fb07": { - "name": "clipboard.startImageUpload#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" - }, "5a2c5dc0b29f": { "name": "clipboard.commitImageUpload#1", "args": [ @@ -135,9 +136,10 @@ "value": {}, "sent": 0 }, - "7e266c7cadbb": { - "name": "clipboard.commitImageUpload#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}" + "72c805fadcfb": { + "name": "clipboard.appendImageUploadChunk#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 2 }, "7e48c58139e5": { "name": "clipboard.startImageUpload#1", @@ -173,10 +175,6 @@ } } }, - "8990f369e5a4": { - "name": "clipboard.appendImageUploadChunk#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" - }, "8d51e9899739": { "failure": { "$rpc": "null" @@ -194,6 +192,11 @@ } ] }, + "8dfd1f053efc": { + "name": "clipboard.startImageUpload#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}", + "sent": 1 + }, "8ea238c571c4": { "name": "clipboard.appendImageUploadChunk#2", "args": [ @@ -229,10 +232,6 @@ } } }, - "972fbf8b960e": { - "name": "clipboard.commitImageUpload#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}" - }, "a9cb5eed1060": { "name": "image-uploaded", "value": { @@ -242,9 +241,20 @@ }, "sent": 6 }, - "b69a955ea891": { - "name": "clipboard.appendImageUploadChunk#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-1\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}" + "bb4685cb888a": { + "name": "clipboard.appendImageUploadChunk#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.appendImageUploadChunk\",\"params\":{\"uploadId\":\"upload-2\",\"offset\":0,\"contentBase64\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}}", + "sent": 5 + }, + "de368fa74c87": { + "name": "clipboard.commitImageUpload#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-2\"}}", + "sent": 6 + }, + "e9a3deaf4515": { + "name": "clipboard.commitImageUpload#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.commitImageUpload\",\"params\":{\"uploadId\":\"upload-1\"}}", + "sent": 3 }, "f0a3d28c980b": { "name": "image-uploaded", @@ -289,10 +299,6 @@ } } } - }, - "f7c8687f65d7": { - "name": "clipboard.startImageUpload#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"clipboard.startImageUpload\",\"params\":{\"expectedBase64Length\":32,\"connectionId\":\"connection-1\"}}" } }, "recording": { @@ -310,12 +316,12 @@ "2c9004a8efb6" ], "payloads": [ - "520b3fe0fb07", - "b69a955ea891", - "972fbf8b960e", - "f7c8687f65d7", - "8990f369e5a4", - "7e266c7cadbb" + "8dfd1f053efc", + "72c805fadcfb", + "e9a3deaf4515", + "06a34ec0f0d7", + "bb4685cb888a", + "de368fa74c87" ], "settlements": { "two": "4a3413975ca6" 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 238367cb37a..6e093d44625 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "46d80cfd496b06ce42ff1ed985e513bbf49b5188bc1128c6d01a74675741935a", "platform": "darwin", @@ -53,9 +53,10 @@ } } }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "dcf89ce6b4ca": { "readable": true, @@ -77,7 +78,7 @@ "id": "readable", "observation": { "sender": ["0f1ed2b7a695"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/native-chat-readability-refused.json b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json index fa5ae53a678..32ac44fc26f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "08a9ab4f180f2d6bb44d2a23f87be0443e8dfdde15f966458270a1bb6f131e0b", "platform": "darwin", @@ -17,6 +17,11 @@ "readable": false, "worktreeId": "repo-1::/w" }, + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 + }, "67f6f11ff64a": { "name": "repo.list#1", "args": [ @@ -51,10 +56,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -71,7 +72,7 @@ "id": "unreadable", "observation": { "sender": ["67f6f11ff64a"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, 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 3d78957d5db..848a4e5b601 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "0c6afb12dce2c402dfd7ac24eb4a306e09fcacc78415ecb47b5320b2fe8102b5", "platform": "darwin", @@ -17,9 +17,10 @@ "readable": false, "worktreeId": "repo-1::/w" }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "bae1ab4f96f9": { "name": "repo.list#1", @@ -75,7 +76,7 @@ "id": "unreadable", "observation": { "sender": ["bae1ab4f96f9"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, 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 c069bcab30f..9f2c9c2b039 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 3c11dfc97da..53810c2328a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "57b60064eca4526e5d533de5862e7e86ba69b6722cd04692228bdc768486cd76", "platform": "darwin", @@ -58,9 +58,10 @@ "0aa1124bf746": { "settled": "settled" }, - "9c0980cfe789": { + "71ba996139a2": { "name": "settings.mutateNativeChatSessionOptions#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -78,7 +79,7 @@ "id": "refusal-swallowed", "observation": { "sender": ["087f0393107f"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, 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 cc30bc773da..e4a1f713c11 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "a180b7ae1f84bc69d7819c7c17b1e2915cb380e8ea8543d68fe6777feb90d0bd", "platform": "darwin", @@ -16,6 +16,11 @@ "0aa1124bf746": { "settled": "settled" }, + "71ba996139a2": { + "name": "settings.mutateNativeChatSessionOptions#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}", + "sent": 1 + }, "738c95d85c66": { "name": "settings.mutateNativeChatSessionOptions#1", "args": [ @@ -57,10 +62,6 @@ } } }, - "9c0980cfe789": { - "name": "settings.mutateNativeChatSessionOptions#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.mutateNativeChatSessionOptions\",\"params\":{\"type\":\"apply-picks\",\"agent\":\"claude\",\"picks\":[{\"modelId\":\"opus\",\"optionId\":\"model\",\"value\":\"opus\"}]}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -77,7 +78,7 @@ "id": "written", "observation": { "sender": ["738c95d85c66"], - "payloads": ["9c0980cfe789"], + "payloads": ["71ba996139a2"], "settlements": { "pick": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json index 1c171854dfa..47c8fce9a71 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "a72f08c12c244912912be34deb3ec12bada6b74f1bc29c0034b347dcba9ddb10", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "1d3e6369460d": { "name": "terminal.send#1", @@ -62,9 +59,10 @@ } } }, - "538133eba781": { + "4dfb46310986": { "name": "terminal.send#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 }, "60fbbfd9bd11": { "name": "cancel-pending", @@ -147,6 +145,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "debf84af8d66": { "errors": [] }, @@ -166,7 +169,7 @@ "id": "first-accepted", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2"], - "payloads": ["1a91fe5e4856", "191580ba859d"], + "payloads": ["1ce75e48864f", "b139ed2905d3"], "settlements": { "stop": "eb79a9b3682a" }, @@ -178,7 +181,7 @@ "id": "settled", "observation": { "sender": ["1d3e6369460d", "960f67ee14e2", "86ab67d60a77"], - "payloads": ["1a91fe5e4856", "191580ba859d", "538133eba781"], + "payloads": ["1ce75e48864f", "b139ed2905d3", "4dfb46310986"], "settlements": { "stop": "eb79a9b3682a" }, 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 4a87f4beadc..eb26a2af250 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "a7419d4b3e00d49ebdac7db4fa97ad9d3af9516201f9102beed0376b181e74a5", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "161bbe9b0076": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "492369cdce20": { "name": "terminal.send#1", @@ -118,6 +115,11 @@ "value": { "$rpc": "undefined" } + }, + "f6d9dea0749b": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 } }, "recording": { @@ -127,7 +129,7 @@ "id": "reported", "observation": { "sender": ["492369cdce20", "63cd34a91124"], - "payloads": ["1a91fe5e4856", "161bbe9b0076"], + "payloads": ["1ce75e48864f", "f6d9dea0749b"], "settlements": { "stop": "eb79a9b3682a" }, 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 c8e6defdca0..3c4af8dd166 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "977ee5602e3a612d537686d17d15312f8b0e775df8800b27bb0d42b8642b4675", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "161bbe9b0076": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "1a91fe5e4856": { + "1ce75e48864f": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "60fbbfd9bd11": { "name": "cancel-pending", @@ -110,6 +107,11 @@ "value": { "$rpc": "undefined" } + }, + "f6d9dea0749b": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 } }, "recording": { @@ -119,7 +121,7 @@ "id": "unconfirmed", "observation": { "sender": ["a60dea16497c", "c7ad8e4bd48f"], - "payloads": ["1a91fe5e4856", "161bbe9b0076"], + "payloads": ["1ce75e48864f", "f6d9dea0749b"], "settlements": { "stop": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/native-chat-write-accepted.json b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json index 1e1729cf0cc..b5e7295ca97 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "3e8804f21d32370bb0bc48c4ea3d182748d48dc19d73de1b50005f18368566ba", "platform": "darwin", @@ -13,17 +13,9 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "46771288e046": { "body": "accepted" }, - "6bb5bb25e4d4": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "7291a73df186": { "status": "fulfilled", "startedAt": 0, @@ -65,6 +57,11 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "c7c300e28254": { "name": "terminal.send#1", "args": [ @@ -106,6 +103,11 @@ } } } + }, + "f61b028e9602": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -115,7 +117,7 @@ "id": "accepted", "observation": { "sender": ["c7c300e28254", "960f67ee14e2"], - "payloads": ["6bb5bb25e4d4", "191580ba859d"], + "payloads": ["f61b028e9602", "b139ed2905d3"], "settlements": { "body": "7291a73df186" }, 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 9f9ba736e32..1cd43bfc902 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "b8265928eefc167de59c64dc62ebe40635007a5f73c87ec8b6eb5e0f6dc0ce00", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "52ae659a3d36": { "name": "terminal.send#1", "args": [ @@ -65,6 +61,11 @@ "settledAt": 0, "value": true }, + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "e8cd309e2293": { "clear": true } @@ -76,7 +77,7 @@ "id": "cleared", "observation": { "sender": ["52ae659a3d36"], - "payloads": ["242d9ae1137d"], + "payloads": ["df3ce4768fd3"], "settlements": { "clear": "84e5ca07cb7a" }, 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 800e1289536..0d5c945ffa6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "22f7711ed82a4d56f1886a746838e3eb85c555c9069694ba3aa958e121cc1ee9", "platform": "darwin", @@ -16,10 +16,6 @@ "44d966fae591": { "body": "unknown" }, - "6bb5bb25e4d4": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "ed1d171deda5": { "status": "fulfilled", "startedAt": 0, @@ -63,6 +59,11 @@ "isRpcDeliveryUnknown": true } } + }, + "f61b028e9602": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -72,7 +73,7 @@ "id": "unknown", "observation": { "sender": ["f1e77c2f84bd"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "ed1d171deda5" }, diff --git a/mobile/rpc-foundation/goldens/native-chat-write-rejected.json b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json index 13ffdf7ed83..de31d6ac645 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "7e05773966a18123aaae297aed9ac44bd841713de88c8a1fa30c31b324118f6f", "platform": "darwin", @@ -16,10 +16,6 @@ "19f53fb21e4e": { "body": "rejected" }, - "6bb5bb25e4d4": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "8b7ac879220d": { "name": "terminal.send#1", "args": [ @@ -67,6 +63,11 @@ "startedAt": 0, "settledAt": 0, "value": "rejected" + }, + "f61b028e9602": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"hello\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -76,7 +77,7 @@ "id": "rejected", "observation": { "sender": ["8b7ac879220d"], - "payloads": ["6bb5bb25e4d4"], + "payloads": ["f61b028e9602"], "settlements": { "body": "9bd3ea1ff2bb" }, 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 a5855dd0954..4329ab24b18 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "a89ff803859c60e5645126de8b0f423807c435dcd856fe8825721f71f3b5bec5", "platform": "darwin", @@ -13,28 +13,12 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "1c80024cfa2c": { "status": "fulfilled", "startedAt": 0, "settledAt": 48, "value": "accepted" }, - "242d9ae1137d": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "3a5d777418c3": { - "name": "terminal.send#4", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\r\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "3d0cd6be0408": { - "name": "terminal.send#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"o\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "52ae659a3d36": { "name": "terminal.send#1", "args": [ @@ -77,6 +61,11 @@ } } }, + "66c88ab02520": { + "name": "terminal.send#3", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"k\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 4 + }, "6cdf69ee833e": { "name": "terminal.send#3", "args": [ @@ -119,6 +108,11 @@ } } }, + "7058e378fab6": { + "name": "terminal.send#4", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\r\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 5 + }, "960f67ee14e2": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -196,13 +190,14 @@ } } }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "bf797abab699": { "command": "accepted" }, - "ce10d21caab1": { - "name": "terminal.send#3", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"k\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "cffc885c4847": { "name": "terminal.send#4", "args": [ @@ -244,6 +239,16 @@ } } } + }, + "df3ce4768fd3": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, + "e5ae2e16817a": { + "name": "terminal.send#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"o\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 3 } }, "recording": { @@ -260,11 +265,11 @@ "cffc885c4847" ], "payloads": [ - "242d9ae1137d", - "191580ba859d", - "3d0cd6be0408", - "ce10d21caab1", - "3a5d777418c3" + "df3ce4768fd3", + "b139ed2905d3", + "e5ae2e16817a", + "66c88ab02520", + "7058e378fab6" ], "settlements": { "command": "1c80024cfa2c" diff --git a/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json index 5587aa85b05..428c00c0855 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "64c1772f0f95a3c43fbb14398a8804b2b4784f7f18874e4fd79767ae634c7faa", "scenarioSha256": "41ac47445191a24de5e48877478bdab6fd9c030f48024ea43e053de7b6b68bb5", "platform": "darwin", @@ -92,9 +92,10 @@ "$rpc": "null" } }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "eac6e56c2d2c": { "crash": { @@ -120,7 +121,7 @@ "id": "loading", "observation": { "sender": ["26accd69bc48"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, @@ -132,7 +133,7 @@ "id": "selected", "observation": { "sender": ["288dd3529eaf"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json index 16eaf3d3d2f..70c5f093063 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f5d4dd00cd768a4f8048fccf26851d6bb103f57c43ba75e4e3598e5076ed13b9", "scenarioSha256": "e19c4ff95d568edbb5c0d6058eb17843be31bdfd528825985963f8ece8cbc652", "platform": "darwin", @@ -110,10 +110,6 @@ "startedAt": 0 } }, - "adcb4be58b77": { - "name": "notifications.testPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}" - }, "d86c08a509c4": { "crash": { "$rpc": "null" @@ -139,6 +135,11 @@ "value": { "$rpc": "undefined" } + }, + "f9579518a4a0": { + "name": "notifications.testPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.testPush\",\"params\":null}", + "sent": 1 } }, "recording": { @@ -160,7 +161,7 @@ "id": "sending", "observation": { "sender": ["9d82b982e2bd"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" @@ -173,7 +174,7 @@ "id": "accepted", "observation": { "sender": ["519501f39af2"], - "payloads": ["adcb4be58b77"], + "payloads": ["f9579518a4a0"], "settlements": { "mount": "eb79a9b3682a", "press": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json index 9ef5b49de04..1008eecd409 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "ac2b214ece34dc25aef2b73d020e04343f81cd48b3d243508be92cfdba01eb45", "platform": "darwin", @@ -62,9 +62,10 @@ "settledAt": 0, "value": false }, - "95f8386a206f": { + "e45f138ab181": { "name": "notifications.registerPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}", + "sent": 1 } }, "recording": { @@ -74,7 +75,7 @@ "id": "not-registered", "observation": { "sender": ["50a69e8e4ac9"], - "payloads": ["95f8386a206f"], + "payloads": ["e45f138ab181"], "settlements": { "register": "7ed3d39f0607" }, diff --git a/mobile/rpc-foundation/goldens/notifications-push-registered.json b/mobile/rpc-foundation/goldens/notifications-push-registered.json index 8594aeea70a..f879a47617a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "2e3d939dc162dbc5a38d8a7207111688204a825fd70348721917b3016e1c9470", "scenarioSha256": "90f49e430518bfc6e662da1d0c55b0084f30ab54dabdd15293b1f8ad9d2fa592", "platform": "darwin", @@ -19,13 +19,10 @@ "settledAt": 0, "value": true }, - "95f8386a206f": { - "name": "notifications.registerPush#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}" - }, - "acb7d3830175": { + "aff6f3c3c1c1": { "name": "notifications.unregisterPush#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.unregisterPush\",\"params\":null}", + "sent": 2 }, "b39a27f847f4": { "name": "notifications.unregisterPush#1", @@ -104,6 +101,11 @@ "deec5cecd49f": { "register": true, "unregister": true + }, + "e45f138ab181": { + "name": "notifications.registerPush#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.registerPush\",\"params\":{\"platform\":\"ios\",\"token\":\"apns-token-1\",\"filter\":{\"onlyWhenDesktopAway\":true,\"sound\":true}}}", + "sent": 1 } }, "recording": { @@ -113,7 +115,7 @@ "id": "settled", "observation": { "sender": ["d30fd4b61f0c", "b39a27f847f4"], - "payloads": ["95f8386a206f", "acb7d3830175"], + "payloads": ["e45f138ab181", "aff6f3c3c1c1"], "settlements": { "register": "84e5ca07cb7a", "unregister": "84e5ca07cb7a" 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 1583cf0f4a0..899286d305d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "e4fb7aa3b071c1207f206adcc0f31e92b6bb98a80f86a0772e48b5cebcab24ff", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", @@ -23,14 +28,6 @@ "value": "relay-host-0001x", "sent": 4 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "1f4d3b93dbcb": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -102,6 +99,11 @@ } } }, + "402b39e9424c": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-l99UBPM71AZiC1ghz2glnA\"}}", + "sent": 4 + }, "477b001b0374": { "name": "candidate-closed", "value": "direct", @@ -112,10 +114,6 @@ "value": "pair-fixture-1", "sent": 4 }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" - }, "56266d1e7340": { "name": "pairing.getEndpoints#1", "args": [ @@ -169,6 +167,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "6b9f1bf73e55": { "name": "bundle-written", "value": { @@ -214,15 +217,16 @@ "savedHost": "relay-host-0001x", "timedOut": false }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ca7cb1785a59": { "name": "candidate-closed", "value": "relay", @@ -249,7 +253,7 @@ "id": "paired-over-direct", "observation": { "sender": ["26f802fad080", "6cb74a535419", "3c9308d9b7be", "56266d1e7340"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894", "1f4d3b93dbcb"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a", "402b39e9424c"], "settlements": { "pair": "d1b2eddf66f4" }, 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 94d19065741..3df02ad215a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "5696ea2a62bb3f24902305f8bac0c4ae8f1e505f359db76fd69aabe353adae86", "platform": "darwin", @@ -13,15 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0b5064a35c5a": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}", + "sent": 3 + }, "0b595cd54ac3": { "name": "journal-saved", "value": "pair-fixture-1", "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -70,9 +71,10 @@ "value": "relay", "sent": 3 }, - "53412dd89894": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-l99UBPM71AZiC1ghz2glnA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\"}}" + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "6cb74a535419": { "name": "status.get#2", @@ -147,15 +149,16 @@ } } }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "b96f13a39e18": { "name": "journal-updated", "value": "pair-fixture-1", "sent": 2 }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "d1b2eddf66f4": { "status": "fulfilled", "startedAt": 0, @@ -182,7 +185,7 @@ "id": "direct-host-saved", "observation": { "sender": ["26f802fad080", "6cb74a535419", "afe249bdfa5f"], - "payloads": ["1e5b32902af7", "c0c86e67c300", "53412dd89894"], + "payloads": ["63ab1563ba51", "b33a14df0df6", "0b5064a35c5a"], "settlements": { "pair": "d1b2eddf66f4" }, 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 e4001d6c09b..6ac0572ee2d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "9ab72231bf97fbe7eed232019c56568a9411433835eae424628af62c7c6a10c1", "platform": "darwin", @@ -18,9 +18,10 @@ "value": "pair-fixture-1", "sent": 0 }, - "1e5b32902af7": { + "63ab1563ba51": { "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "86d361a0bf7c": { "outcome": "unpaired", @@ -38,6 +39,11 @@ "value": "direct", "sent": 2 }, + "b33a14df0df6": { + "name": "status.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "ba9fd57319d3": { "name": "status.get#1", "args": [ @@ -63,10 +69,6 @@ "startedAt": 0 } }, - "c0c86e67c300": { - "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "ccefc12fda27": { "outcome": "unpaired", "savedHost": { @@ -112,7 +114,7 @@ "id": "racing", "observation": { "sender": ["ba9fd57319d3", "f6c99f740e75"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "pair": "9270aeb7d9c6" }, @@ -124,7 +126,7 @@ "id": "timed-out", "observation": { "sender": ["ba9fd57319d3", "f6c99f740e75"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "pair": "9270aeb7d9c6" }, diff --git a/mobile/rpc-foundation/goldens/pr-branch-identity.json b/mobile/rpc-foundation/goldens/pr-branch-identity.json index 04de9e0a412..061a9864053 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d1b208a7bee947a603949fdc1f0d145e8c5576926f89f3e32330585f3a115290", "platform": "darwin", @@ -76,13 +76,15 @@ "startedAt": 0 } }, - "3179b4e89c80": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "2c98f3579e7e": { + "name": "git.branchCompare#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}", + "sent": 4 }, - "317a243394fa": { + "2dfe41567b29": { "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "3ec8052ccdb3": { "name": "worktree.show#1", @@ -120,10 +122,6 @@ } } }, - "3fa5df34c660": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}" - }, "3feccf790548": { "name": "git.status#1", "args": [ @@ -230,6 +228,11 @@ "status": "pending", "startedAt": 0 }, + "9c58eb1d4d91": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 3 + }, "b8b93d3f8005": { "name": "git.status#1", "args": [ @@ -280,9 +283,10 @@ "startedAt": 0 } }, - "da6855b5e2bf": { - "name": "git.branchCompare#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.branchCompare\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"baseRef\":\"origin/main\"}}" + "edfc4ab3b60b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo-9::/w\"}}", + "sent": 3 }, "f0e28a4b20aa": { "identity": { @@ -388,7 +392,7 @@ "id": "pending", "observation": { "sender": ["b8b93d3f8005", "c70359272e10", "26accd69bc48"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91"], "settlements": { "identity": "9270aeb7d9c6" }, @@ -400,7 +404,7 @@ "id": "identity", "observation": { "sender": ["3feccf790548", "3ec8052ccdb3", "2432ad799433", "64ad9a7ea2cd"], - "payloads": ["317a243394fa", "3fa5df34c660", "3179b4e89c80", "da6855b5e2bf"], + "payloads": ["2dfe41567b29", "edfc4ab3b60b", "9c58eb1d4d91", "2c98f3579e7e"], "settlements": { "identity": "ffc37850babd" }, diff --git a/mobile/rpc-foundation/goldens/pr-branch-repo-context.json b/mobile/rpc-foundation/goldens/pr-branch-repo-context.json index 5252085d440..61b86fd3141 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "bd715681a856254e0c374b504cece07e5df4c9a75fa2b97c35498df12210fbab", "platform": "darwin", @@ -62,9 +62,10 @@ "isGithubRepo": true } }, - "eb6a2b2f507e": { + "f2282e0dfeff": { "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 } }, "recording": { @@ -74,7 +75,7 @@ "id": "repo-context", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-context": "79c69a644fe2" }, diff --git a/mobile/rpc-foundation/goldens/pr-comment-mutation.json b/mobile/rpc-foundation/goldens/pr-comment-mutation.json index d35b7040158..be32c3a1b2c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "73cc5da2649b9687bb0d8247fa4ecf3c085746cf398515e8d2b40be2ed0da688", "platform": "darwin", @@ -28,9 +28,15 @@ } }, "44136fa355b3": {}, - "478fd4bcbb87": { + "5708d54f0f07": { "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"body\":\"recorded comment\",\"type\":\"pr\"}}", + "sent": 2 + }, + "6aa18d3e13ab": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "720507281e9c": { "reply": { @@ -76,10 +82,6 @@ } } }, - "8108c9f604fb": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}" - }, "a03244774599": { "reply": { "ok": true @@ -123,10 +125,6 @@ } } }, - "af688481a64e": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}" - }, "b72d1b08ed71": { "name": "github.addPRReviewCommentReply#1", "args": [ @@ -169,6 +167,16 @@ } } }, + "c40fec826b4d": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}", + "sent": 4 + }, + "c676e676ae9d": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"commentId\":55,\"body\":\"recorded reply\",\"threadId\":\"thread-1\",\"path\":\"src/app.ts\",\"line\":3}}", + "sent": 1 + }, "c809528f892d": { "name": "github.addIssueComment#1", "args": [ @@ -208,6 +216,11 @@ } } }, + "c9b1ffba7154": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55}}", + "sent": 5 + }, "cb0ebf3e3df2": { "name": "github.project.updateIssueCommentBySlug#1", "args": [ @@ -266,14 +279,6 @@ "ok": true } }, - "d9b62b144917": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, - "e8277b2fbe2f": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"commentId\":55,\"body\":\"edited\"}}" - }, "fbc958e4d46e": { "status": "fulfilled", "startedAt": 0, @@ -300,7 +305,7 @@ "id": "reply", "observation": { "sender": ["b72d1b08ed71"], - "payloads": ["8108c9f604fb"], + "payloads": ["c676e676ae9d"], "settlements": { "reply": "fbc958e4d46e" }, @@ -312,7 +317,7 @@ "id": "root-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d"], - "payloads": ["8108c9f604fb", "478fd4bcbb87"], + "payloads": ["c676e676ae9d", "5708d54f0f07"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e" @@ -325,7 +330,7 @@ "id": "resolve-thread", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -339,7 +344,7 @@ "id": "edit-comment", "observation": { "sender": ["b72d1b08ed71", "c809528f892d", "7d998237c7b0", "cb0ebf3e3df2"], - "payloads": ["8108c9f604fb", "478fd4bcbb87", "d9b62b144917", "e8277b2fbe2f"], + "payloads": ["c676e676ae9d", "5708d54f0f07", "6aa18d3e13ab", "c40fec826b4d"], "settlements": { "reply": "fbc958e4d46e", "root-comment": "fbc958e4d46e", @@ -361,11 +366,11 @@ "a09b7d2d7c5a" ], "payloads": [ - "8108c9f604fb", - "478fd4bcbb87", - "d9b62b144917", - "e8277b2fbe2f", - "af688481a64e" + "c676e676ae9d", + "5708d54f0f07", + "6aa18d3e13ab", + "c40fec826b4d", + "c9b1ffba7154" ], "settlements": { "reply": "fbc958e4d46e", diff --git a/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json b/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json index 9436a1d960a..c019808fa54 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "f425131d29fee8826c00a550fb537d0bd1a37bbaf3b33992984d5e04a990a512", "platform": "darwin", @@ -22,6 +22,11 @@ "ok": false } }, + "35ba72e2b9cd": { + "name": "github.resolveReviewThread#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 + }, "5603f79b1c06": { "resolve-thread": { "error": "Failed to update review thread.", @@ -60,6 +65,11 @@ } } }, + "9ab4446a2d2c": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 1 + }, "9b791087c56d": { "name": "github.resolveReviewThread#1", "args": [ @@ -92,14 +102,6 @@ "result": false } } - }, - "aa66cdc0c8db": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" - }, - "ac8f4045a561": { - "name": "github.resolveReviewThread#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-9\",\"threadId\":\"thread-1\",\"resolve\":true}}" } }, "recording": { @@ -109,7 +111,7 @@ "id": "explicit-false", "observation": { "sender": ["9b791087c56d"], - "payloads": ["aa66cdc0c8db"], + "payloads": ["9ab4446a2d2c"], "settlements": { "explicit-false": "1165af07b50f" }, @@ -121,7 +123,7 @@ "id": "absent-result", "observation": { "sender": ["9b791087c56d", "70d79a65b986"], - "payloads": ["aa66cdc0c8db", "ac8f4045a561"], + "payloads": ["9ab4446a2d2c", "35ba72e2b9cd"], "settlements": { "explicit-false": "1165af07b50f", "absent-result": "1165af07b50f" 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 9246be5b1f7..404dda081f8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "70a94f45dbf7d58d9024c1cc4c94edd98fa48cd5ccffe8f2b7c53fa3e55d18d3", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "06af128d666d": { "name": "github.updatePRState#1", "args": [ @@ -149,14 +145,6 @@ } } }, - "3ee6b36340d7": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" - }, - "551aaea772ad": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "5b819e88a0c1": { "close": { "error": "Branch is protected", @@ -189,9 +177,20 @@ "ok": false } }, - "c2df352b7a94": { + "9e1f3da56de1": { "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 2 + }, + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 + }, + "d8bf37552be5": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 4 }, "f2d0a4251252": { "status": "fulfilled", @@ -250,6 +249,11 @@ "ok": false } }, + "fba4f98f0770": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 3 + }, "fbc958e4d46e": { "status": "fulfilled", "startedAt": 0, @@ -266,7 +270,7 @@ "id": "string-error", "observation": { "sender": ["13ee6ced5768"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "string-error": "f8ef6dd619cb" }, @@ -278,7 +282,7 @@ "id": "object-error", "observation": { "sender": ["13ee6ced5768", "06af128d666d"], - "payloads": ["0550d42a40c4", "c2df352b7a94"], + "payloads": ["ba8452129ec1", "9e1f3da56de1"], "settlements": { "string-error": "f8ef6dd619cb", "object-error": "f2d0a4251252" @@ -291,7 +295,7 @@ "id": "unstructured", "observation": { "sender": ["13ee6ced5768", "06af128d666d", "32fa5cd01884"], - "payloads": ["0550d42a40c4", "c2df352b7a94", "3ee6b36340d7"], + "payloads": ["ba8452129ec1", "9e1f3da56de1", "fba4f98f0770"], "settlements": { "string-error": "f8ef6dd619cb", "object-error": "f2d0a4251252", @@ -305,7 +309,7 @@ "id": "empty-object-error", "observation": { "sender": ["13ee6ced5768", "06af128d666d", "32fa5cd01884", "f3a534fa6403"], - "payloads": ["0550d42a40c4", "c2df352b7a94", "3ee6b36340d7", "551aaea772ad"], + "payloads": ["ba8452129ec1", "9e1f3da56de1", "fba4f98f0770", "d8bf37552be5"], "settlements": { "string-error": "f8ef6dd619cb", "object-error": "f2d0a4251252", diff --git a/mobile/rpc-foundation/goldens/pr-mutation-status.json b/mobile/rpc-foundation/goldens/pr-mutation-status.json index 3f1814a290a..bd1566c5b68 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "e9291209234bacab12201f4c13bb592e06bd405215389e19f0754c23e79eb197", "platform": "darwin", @@ -24,10 +24,6 @@ "ok": true } }, - "0550d42a40c4": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "0e14bd119328": { "merge": { "ok": true @@ -41,10 +37,6 @@ "ok": true } }, - "247c152db16d": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}" - }, "258eb619fcbb": { "auto-merge": { "ok": true @@ -95,6 +87,11 @@ } } }, + "7ac1c9a0499c": { + "name": "github.removePRReviewers#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 5 + }, "84790920ad91": { "name": "github.updatePRState#1", "args": [ @@ -132,6 +129,16 @@ } } }, + "84e87c0ff2a1": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"failedOnly\":true,\"headSha\":\"head-sha-1\"}}", + "sent": 6 + }, + "904c5b458065": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 3 + }, "9305632adf32": { "name": "github.setPRAutoMerge#1", "args": [ @@ -219,17 +226,15 @@ "ok": true } }, - "b303193775ad": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" + "ad425b477607": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 4 }, - "b9123a0fc952": { - "name": "github.removePRReviewers#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.removePRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, - "bdcf1daddf4e": { - "name": "github.setPRAutoMerge#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}" + "ba8452129ec1": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 1 }, "ccf2be5c9d44": { "name": "github.mergePR#1", @@ -266,6 +271,11 @@ } } }, + "cf156f33a1f2": { + "name": "github.setPRAutoMerge#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRAutoMerge\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"enabled\":true}}", + "sent": 2 + }, "d026cfa35ea0": { "auto-merge": { "ok": true @@ -322,10 +332,6 @@ } } }, - "f44b3cd07d00": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "fbc958e4d46e": { "status": "fulfilled", "startedAt": 0, @@ -352,7 +358,7 @@ "id": "merge", "observation": { "sender": ["ccf2be5c9d44"], - "payloads": ["0550d42a40c4"], + "payloads": ["ba8452129ec1"], "settlements": { "merge": "fbc958e4d46e" }, @@ -364,7 +370,7 @@ "id": "auto-merge", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e"], + "payloads": ["ba8452129ec1", "cf156f33a1f2"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e" @@ -377,7 +383,7 @@ "id": "close", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -391,7 +397,7 @@ "id": "request-reviewers", "observation": { "sender": ["ccf2be5c9d44", "9305632adf32", "84790920ad91", "63c7b86ce0f8"], - "payloads": ["0550d42a40c4", "bdcf1daddf4e", "b303193775ad", "f44b3cd07d00"], + "payloads": ["ba8452129ec1", "cf156f33a1f2", "904c5b458065", "ad425b477607"], "settlements": { "merge": "fbc958e4d46e", "auto-merge": "fbc958e4d46e", @@ -413,11 +419,11 @@ "97b08057c152" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c" ], "settlements": { "merge": "fbc958e4d46e", @@ -442,12 +448,12 @@ "e53c2e2f9a43" ], "payloads": [ - "0550d42a40c4", - "bdcf1daddf4e", - "b303193775ad", - "f44b3cd07d00", - "b9123a0fc952", - "247c152db16d" + "ba8452129ec1", + "cf156f33a1f2", + "904c5b458065", + "ad425b477607", + "7ac1c9a0499c", + "84e87c0ff2a1" ], "settlements": { "merge": "fbc958e4d46e", diff --git a/mobile/rpc-foundation/goldens/pr-read-fork-routing.json b/mobile/rpc-foundation/goldens/pr-read-fork-routing.json index 43cb9474f84..6c7761f6476 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "ba21f7fc3966cb1e3c1e59d6e8a8b184fa0559bf3037365391ce23e364befd7f", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "1628217f6c86": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"prRepo\":{\"owner\":\"fork-owner\",\"repo\":\"fork-repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha-1\"}}", + "sent": 1 + }, "1c88fe396b45": { "status": "fulfilled", "startedAt": 0, @@ -88,6 +93,11 @@ } } }, + "41ffb0b7ab72": { + "name": "github.prChecks#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12}}", + "sent": 3 + }, "4b1b59229060": { "name": "github.prChecks#1", "args": [ @@ -133,13 +143,10 @@ } } }, - "76a886c59ea8": { + "4d9630d13e9a": { "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null,\"prRepo\":{\"owner\":\"fork-owner\",\"repo\":\"fork-repo\",\"host\":\"github.enterprise.test\"}}}" - }, - "76f58b97e8c8": { - "name": "github.prChecks#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null,\"prRepo\":{\"owner\":\"fork-owner\",\"repo\":\"fork-repo\",\"host\":\"github.enterprise.test\"}}}", + "sent": 2 }, "79b747202f2f": { "check-details": { @@ -278,10 +285,6 @@ } ] } - }, - "e8fac4788c30": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"prRepo\":{\"owner\":\"fork-owner\",\"repo\":\"fork-repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha-1\"}}" } }, "recording": { @@ -291,7 +294,7 @@ "id": "fork-checks", "observation": { "sender": ["4b1b59229060"], - "payloads": ["e8fac4788c30"], + "payloads": ["1628217f6c86"], "settlements": { "fork-checks": "e23eb2e4b033" }, @@ -303,7 +306,7 @@ "id": "fork-check-details", "observation": { "sender": ["4b1b59229060", "aa5e45571cbb"], - "payloads": ["e8fac4788c30", "76a886c59ea8"], + "payloads": ["1628217f6c86", "4d9630d13e9a"], "settlements": { "fork-checks": "e23eb2e4b033", "fork-check-details": "1c88fe396b45" @@ -316,7 +319,7 @@ "id": "no-head-sha", "observation": { "sender": ["4b1b59229060", "aa5e45571cbb", "41d8d2be435b"], - "payloads": ["e8fac4788c30", "76a886c59ea8", "76f58b97e8c8"], + "payloads": ["1628217f6c86", "4d9630d13e9a", "41ffb0b7ab72"], "settlements": { "fork-checks": "e23eb2e4b033", "fork-check-details": "1c88fe396b45", diff --git a/mobile/rpc-foundation/goldens/pr-read-surface.json b/mobile/rpc-foundation/goldens/pr-read-surface.json index 79c9f69edb8..fe76a268a32 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "4246e7ffa62e85aac489c561171a6468f862b7f18eefac9926b65073616b6d35", "platform": "darwin", @@ -91,6 +91,11 @@ } } }, + "207e61d5e813": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 + }, "2638b3063bb1": { "name": "github.repoSlug#1", "args": [ @@ -126,13 +131,10 @@ } } }, - "3879f5d02dc5": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, - "3b464a1ac1ab": { + "384abd5851d2": { "name": "github.prChecks#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}" + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"headSha\":\"head-sha-1\"}}", + "sent": 5 }, "41113a109089": { "repo-slug": { @@ -145,6 +147,11 @@ } }, "44136fa355b3": {}, + "499ca7b4c13a": { + "name": "github.prCheckDetails#1", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}", + "sent": 6 + }, "4a081d46fc88": { "name": "github.prChecks#1", "args": [ @@ -251,6 +258,11 @@ } } }, + "4c91dcea8967": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}", + "sent": 4 + }, "50f04028e403": { "check-details": { "ok": true, @@ -515,10 +527,6 @@ } } }, - "8cbb79ec0c39": { - "name": "hostedReview.forBranch#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}" - }, "9353f049138c": { "name": "github.prCheckDetails#1", "args": [ @@ -872,9 +880,10 @@ } } }, - "ba1b866ad599": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-9\",\"number\":12,\"type\":\"pr\"}}" + "ba3f7a2212a2": { + "name": "hostedReview.forBranch#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.forBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedGitHubPR\":12,\"active\":true}}", + "sent": 2 }, "c9cb3ce714a0": { "name": "github.prForBranch#1", @@ -922,10 +931,6 @@ } } }, - "d08ed4a769f3": { - "name": "github.prCheckDetails#1", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"github.prCheckDetails\",\"params\":{\"repo\":\"id:repo-9\",\"checkRunId\":7,\"checkName\":\"build\",\"url\":null}}" - }, "d89e7b8ce2a0": { "status": "fulfilled", "startedAt": 0, @@ -961,14 +966,6 @@ ] } }, - "e323dec040c2": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, - "eb6a2b2f507e": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}" - }, "efcf99a657b9": { "name": "github.listAssignableUsers#1", "args": [ @@ -1155,6 +1152,11 @@ } } }, + "f2282e0dfeff": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 1 + }, "f2563d0882ec": { "status": "fulfilled", "startedAt": 0, @@ -1194,6 +1196,11 @@ } } }, + "f6aef41b070e": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-9\"}}", + "sent": 7 + }, "fd7cf23591a3": { "hosted-review": { "ok": true, @@ -1345,7 +1352,7 @@ "id": "repo-slug", "observation": { "sender": ["2638b3063bb1"], - "payloads": ["eb6a2b2f507e"], + "payloads": ["f2282e0dfeff"], "settlements": { "repo-slug": "d89e7b8ce2a0" }, @@ -1357,7 +1364,7 @@ "id": "hosted-review", "observation": { "sender": ["2638b3063bb1", "1bdfee368839"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7" @@ -1370,7 +1377,7 @@ "id": "pr-for-branch", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -1384,7 +1391,7 @@ "id": "work-item", "observation": { "sender": ["2638b3063bb1", "1bdfee368839", "c9cb3ce714a0", "59ec56b0e49c"], - "payloads": ["eb6a2b2f507e", "8cbb79ec0c39", "e323dec040c2", "ba1b866ad599"], + "payloads": ["f2282e0dfeff", "ba3f7a2212a2", "207e61d5e813", "4c91dcea8967"], "settlements": { "repo-slug": "d89e7b8ce2a0", "hosted-review": "b0b5c628b5c7", @@ -1406,11 +1413,11 @@ "4a081d46fc88" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -1435,12 +1442,12 @@ "9353f049138c" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a" ], "settlements": { "repo-slug": "d89e7b8ce2a0", @@ -1467,13 +1474,13 @@ "efcf99a657b9" ], "payloads": [ - "eb6a2b2f507e", - "8cbb79ec0c39", - "e323dec040c2", - "ba1b866ad599", - "3b464a1ac1ab", - "d08ed4a769f3", - "3879f5d02dc5" + "f2282e0dfeff", + "ba3f7a2212a2", + "207e61d5e813", + "4c91dcea8967", + "384abd5851d2", + "499ca7b4c13a", + "f6aef41b070e" ], "settlements": { "repo-slug": "d89e7b8ce2a0", diff --git a/mobile/rpc-foundation/goldens/pr-read-upstream-error.json b/mobile/rpc-foundation/goldens/pr-read-upstream-error.json index cfc51d1f248..9b38432aff5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "b2445b299e18664b698d659c5041860b8a253314687666ae467aab441ab07235", "platform": "darwin", @@ -33,9 +33,15 @@ "ok": false } }, - "85e0e5ca36ba": { - "name": "github.prForBranch#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" + "35eb8ce186f2": { + "name": "github.prForBranch#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 1 + }, + "47a1e5a3aa01": { + "name": "github.prForBranch#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 3 }, "8a06535cb136": { "name": "github.prForBranch#2", @@ -89,9 +95,10 @@ } } }, - "93d80e74f837": { - "name": "github.prForBranch#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" + "a3f868623d30": { + "name": "github.prForBranch#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}", + "sent": 2 }, "a976d414bc11": { "status": "fulfilled", @@ -139,10 +146,6 @@ } } }, - "e43c980a94c5": { - "name": "github.prForBranch#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prForBranch\",\"params\":{\"repo\":\"id:repo-9\",\"branch\":\"feature\",\"linkedPRNumber\":null}}" - }, "f1de1849a48d": { "name": "github.prForBranch#1", "args": [ @@ -199,7 +202,7 @@ "id": "upstream", "observation": { "sender": ["f1de1849a48d"], - "payloads": ["e43c980a94c5"], + "payloads": ["35eb8ce186f2"], "settlements": { "upstream": "fe9c1046b91d" }, @@ -211,7 +214,7 @@ "id": "malformed", "observation": { "sender": ["f1de1849a48d", "8a06535cb136"], - "payloads": ["e43c980a94c5", "85e0e5ca36ba"], + "payloads": ["35eb8ce186f2", "a3f868623d30"], "settlements": { "upstream": "fe9c1046b91d", "malformed": "a976d414bc11" @@ -224,7 +227,7 @@ "id": "no-pr", "observation": { "sender": ["f1de1849a48d", "8a06535cb136", "ab4b72242bb7"], - "payloads": ["e43c980a94c5", "85e0e5ca36ba", "93d80e74f837"], + "payloads": ["35eb8ce186f2", "a3f868623d30", "47a1e5a3aa01"], "settlements": { "upstream": "fe9c1046b91d", "malformed": "a976d414bc11", diff --git a/mobile/rpc-foundation/goldens/pr-title-mutation.json b/mobile/rpc-foundation/goldens/pr-title-mutation.json index 325ca2e5ddf..2ceb6cfafe5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "071e745453795d18d683aaab63e810783e3cee4927b47425c20a3d915397d0dd", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2a122cfe29f9": { + "3235254d283e": { "name": "github.updatePRTitle#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}", + "sent": 1 }, "578bc8950993": { "title": { @@ -71,7 +72,7 @@ "id": "title", "observation": { "sender": ["96fcd9b9c31e"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "title": "fbc958e4d46e" }, diff --git a/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json b/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json index 447c8d9ada2..8da0e3f0286 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "669260c675021b37252dc5023a7a78e4e90536c2f35d9a5da3e53778e6a0cf52", "platform": "darwin", @@ -19,13 +19,10 @@ "ok": false } }, - "2a122cfe29f9": { + "3235254d283e": { "name": "github.updatePRTitle#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}" - }, - "41c5cf93e77f": { - "name": "github.updatePRTitle#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}", + "sent": 1 }, "5ff779cd8c84": { "title": { @@ -51,6 +48,11 @@ "ok": false } }, + "8aa220b4e884": { + "name": "github.updatePRTitle#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRTitle\",\"params\":{\"repo\":\"id:repo-9\",\"prNumber\":12,\"title\":\"Recorded title\"}}", + "sent": 2 + }, "91e54f9a137c": { "name": "github.updatePRTitle#1", "args": [ @@ -128,7 +130,7 @@ "id": "explicit-false", "observation": { "sender": ["91e54f9a137c"], - "payloads": ["2a122cfe29f9"], + "payloads": ["3235254d283e"], "settlements": { "explicit-false": "6e9fb05124f5" }, @@ -140,7 +142,7 @@ "id": "refused", "observation": { "sender": ["91e54f9a137c", "ccb426fd8467"], - "payloads": ["2a122cfe29f9", "41c5cf93e77f"], + "payloads": ["3235254d283e", "8aa220b4e884"], "settlements": { "explicit-false": "6e9fb05124f5", "refused": "73a201bf0d92" diff --git a/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json b/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json index c8b0137d713..0ff3cc4a8d5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "58ad4e4d5b0200c44f329236e10fd81918a1cc36b33b22cba24662c79dd61b4e", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "39a17efe1de6": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "681fc4d59b92": { "status": "rejected", "startedAt": 0, @@ -63,10 +68,6 @@ }, "a4273b38df83": { "launched": "unlaunched" - }, - "d3b1c8acd1dd": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" } }, "recording": { @@ -76,7 +77,7 @@ "id": "invalid", "observation": { "sender": ["80e637504768"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "681fc4d59b92" }, diff --git a/mobile/rpc-foundation/goldens/pr-triage-launch.json b/mobile/rpc-foundation/goldens/pr-triage-launch.json index 9f7526798e1..6a35065abf5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "8bb2ff4e899ee873289fed7c1ef12e7f9dba91949125b1f0e4336d378ceb071e", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "39a17efe1de6": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "43aa948e3918": { "name": "terminal.send#1", "args": [ @@ -85,6 +90,11 @@ "startedAt": 0 } }, + "c286eacee37b": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}", + "sent": 2 + }, "d0f04fba35ce": { "name": "session.tabs.createTerminal#1", "args": [ @@ -126,10 +136,6 @@ } } }, - "d3b1c8acd1dd": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -138,10 +144,6 @@ "$rpc": "undefined" } }, - "f3199cb6db52": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}" - }, "fe1fe746e77a": { "launched": "sent" } @@ -153,7 +155,7 @@ "id": "pending", "observation": { "sender": ["b5eced0566fb"], - "payloads": ["d3b1c8acd1dd"], + "payloads": ["39a17efe1de6"], "settlements": { "launch": "9270aeb7d9c6" }, @@ -165,7 +167,7 @@ "id": "launched", "observation": { "sender": ["d0f04fba35ce", "43aa948e3918"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/pr-triage-send-locked.json b/mobile/rpc-foundation/goldens/pr-triage-send-locked.json index dd79cc4458a..271a1bbd29c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "d80bc346e84bc35e6dce70643dcd3af3ea9e5a7f8a1f2b7a9e92c71c0c30d4c9", "platform": "darwin", @@ -23,6 +23,11 @@ "isRpcDeliveryUnknown": false } }, + "39a17efe1de6": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 + }, "a4273b38df83": { "launched": "unlaunched" }, @@ -63,6 +68,11 @@ } } }, + "c286eacee37b": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}", + "sent": 2 + }, "d0f04fba35ce": { "name": "session.tabs.createTerminal#1", "args": [ @@ -103,14 +113,6 @@ } } } - }, - "d3b1c8acd1dd": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:repo-9::/w\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, - "f3199cb6db52": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"term-1\",\"text\":\"Fix the failing checks\",\"enter\":true}}" } }, "recording": { @@ -120,7 +122,7 @@ "id": "locked", "observation": { "sender": ["d0f04fba35ce", "aec093de35d6"], - "payloads": ["d3b1c8acd1dd", "f3199cb6db52"], + "payloads": ["39a17efe1de6", "c286eacee37b"], "settlements": { "launch": "0f026fafa7e1" }, 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 60ee75557d1..35147d7ef0c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "819fa73c7700b4d526da91c37558a6498008d745d1debcc26e6bb757550ebf99", "platform": "darwin", @@ -98,9 +98,10 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", @@ -150,10 +151,6 @@ "isRpcDeliveryUnknown": false } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -192,9 +189,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -204,7 +207,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -216,7 +219,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "68155c1eb584", "943484d45f2e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b5553341aa32" }, 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 9809627a2bf..53bc43d263a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "500396d72abd2f73d11ef066bca3f88798c8cbdaef09fa7c1c8d1fbaf0b3b85a", "platform": "darwin", @@ -74,9 +74,10 @@ } }, "44136fa355b3": {}, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "924e33dd1165": { "name": "settings.get#1", @@ -149,10 +150,6 @@ } } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -191,9 +188,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -203,7 +206,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -215,7 +218,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "924e33dd1165", "943484d45f2e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "373710a63329" }, 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 1d5a26b3621..214124c0ddb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "daf68df8840ea6872521d823cc17e1e5de3f3a74a8855465fcf40cc276e9c2ce", "platform": "darwin", @@ -98,10 +98,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "7d14967a1151": { "status": "rejected", "startedAt": 0, @@ -112,6 +108,11 @@ "isRpcDeliveryUnknown": true } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "8da6b504bc95": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -147,10 +148,6 @@ "status": "pending", "startedAt": 0 }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -189,9 +186,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -201,7 +204,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -213,7 +216,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "68155c1eb584", "8da6b504bc95"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "7d14967a1151" }, 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 40baaa8b052..0b17b2b50f3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "61e36caf6b3bb01c3ad0db282b7f0fbc0f300d40184f9cf3d7e4e3a3194a4f2a", "platform": "darwin", @@ -105,9 +105,10 @@ "isRpcDeliveryUnknown": true } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", @@ -147,10 +148,6 @@ } } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -189,9 +186,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -201,7 +204,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -213,7 +216,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "10aeb294c268", "943484d45f2e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "618234017ab2" }, diff --git a/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json b/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json index 8d37b59990c..144a4c5ea1d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "595a3eb2994d0596b9fcd0707b175b4e978625053dfbc5c541b0350c0cbfb524", "scenarioSha256": "318fab8c1efb1786bbdaea7f13b769952c1ce463bc5504dca6a9f545e905b7c9", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "8bc1cd9d9993": { + "name": "notifications.getMissedSince#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -95,10 +100,6 @@ } } }, - "afd5e55d2004": { - "name": "notifications.getMissedSince#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"notifications.getMissedSince\",\"params\":{\"lastSeenSeq\":9007199254740991,\"deliveredPushes\":[{\"notificationId\":\"note-1\",\"notificationEpoch\":\"epoch-1\",\"notificationSeq\":7}]}}" - }, "bcdd9c902f5e": { "name": "device-store.setItem", "value": { @@ -133,7 +134,7 @@ "id": "requested", "observation": { "sender": ["9aba86eb07e4"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "9270aeb7d9c6" }, @@ -145,7 +146,7 @@ "id": "reconciled", "observation": { "sender": ["ac56c3fc846f"], - "payloads": ["afd5e55d2004"], + "payloads": ["8bc1cd9d9993"], "settlements": { "catchup": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/quick-commands-load-refused.json b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json index efa787404df..e8c1c0c6ad0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "42573387533f75122f626ce6ec81c1e61fe54cde5df416154bb7cba132f53309", "platform": "darwin", @@ -20,6 +20,11 @@ "persisted": [], "ready": false }, + "a832f000ad89": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}", + "sent": 1 + }, "ae75d9a09c8f": { "name": "settings.getTerminalQuickCommands#1", "args": [ @@ -54,10 +59,6 @@ } } }, - "e1663c7c38e3": { - "name": "settings.getTerminalQuickCommands#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -74,7 +75,7 @@ "id": "errored", "observation": { "sender": ["ae75d9a09c8f"], - "payloads": ["e1663c7c38e3"], + "payloads": ["a832f000ad89"], "settlements": { "mount": "eb79a9b3682a" }, 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 bb8ba71f581..cb91f3d34d7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "a621156bbb662c78a0baa356b60d0af41d10a7bd14e54f23be0581a59377cec3", "platform": "darwin", @@ -19,6 +19,11 @@ "settledAt": 0, "value": false }, + "a832f000ad89": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}", + "sent": 1 + }, "b0069ba7e0a2": { "name": "settings.updateTerminalQuickCommands#1", "args": [ @@ -100,13 +105,10 @@ } } }, - "e1663c7c38e3": { - "name": "settings.getTerminalQuickCommands#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" - }, - "e3cf3d452fcf": { + "e6aede33fdf3": { "name": "settings.updateTerminalQuickCommands#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}", + "sent": 2 }, "e9c308be6dea": { "commands": [], @@ -131,7 +133,7 @@ "id": "saved", "observation": { "sender": ["d766ce9ee125", "b0069ba7e0a2"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" 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 a4580390dbf..90806018e35 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "72517336e451e1e078135103073c1821e8af27c0702f6dc83b9a686fe7ff8c04", "platform": "darwin", @@ -68,6 +68,11 @@ "persisted": [false], "ready": true }, + "a832f000ad89": { + "name": "settings.getTerminalQuickCommands#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}", + "sent": 1 + }, "d766ce9ee125": { "name": "settings.getTerminalQuickCommands#1", "args": [ @@ -101,13 +106,10 @@ } } }, - "e1663c7c38e3": { - "name": "settings.getTerminalQuickCommands#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.getTerminalQuickCommands\"}" - }, - "e3cf3d452fcf": { + "e6aede33fdf3": { "name": "settings.updateTerminalQuickCommands#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.updateTerminalQuickCommands\",\"params\":{\"mutation\":{\"type\":\"upsert\",\"command\":{\"id\":\"qc-1\",\"label\":\"build\",\"command\":\"pnpm build\",\"appendEnter\":true}}}}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -125,7 +127,7 @@ "id": "rolled-back", "observation": { "sender": ["d766ce9ee125", "07d2b92da065"], - "payloads": ["e1663c7c38e3", "e3cf3d452fcf"], + "payloads": ["a832f000ad89", "e6aede33fdf3"], "settlements": { "mount": "eb79a9b3682a", "persist": "7ed3d39f0607" diff --git a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json index 1c9e4374447..3cea79791bb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "a92bccd183127829b6dfd85add28e42370d54990f63214940b1c584f7fde56a9", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "002b5db3666b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 3 + }, "157eaa06961f": { "name": "pairing.getEndpoints#2", "args": [ @@ -66,15 +71,16 @@ } } }, - "1d7fdb67d4da": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" - }, "4683b84a57a2": { "name": "host-saved", "value": "host-1", "sent": 3 }, + "4a4993ef4038": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}", + "sent": 2 + }, "590b3311b0c4": { "status": "fulfilled", "startedAt": 0, @@ -122,9 +128,10 @@ } } }, - "7583d8b57ef8": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 }, "7d023da12fdb": { "name": "journal-cleared", @@ -227,10 +234,6 @@ } } } - }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" } }, "recording": { @@ -240,7 +243,7 @@ "id": "direct-upgrade-committed", "observation": { "sender": ["ba95b28e3a94", "a3865c87e54b", "157eaa06961f"], - "payloads": ["beafd16aeb22", "1d7fdb67d4da", "7583d8b57ef8"], + "payloads": ["723e3af65fac", "4a4993ef4038", "002b5db3666b"], "settlements": { "upgrade": "590b3311b0c4" }, 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 7c5d4f41f00..f2865abeb08 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "7d5cad367e76767b039fc5ebc15837930f02c5e1bed33ae7ca4695bae56287bd", "platform": "darwin", @@ -53,15 +53,16 @@ }, "outcome": "declined" }, + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 + }, "8ea887e0fc46": { "name": "journal-cleared", "value": "upgrade", "sent": 1 }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "ee20a1dc39e7": { "status": "fulfilled", "startedAt": 0, @@ -78,7 +79,7 @@ "id": "upgrade-declined", "observation": { "sender": ["55af89989a85"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "upgrade": "ee20a1dc39e7" }, 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 3786dcd5a39..37613020e07 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "8dc3fd27c5720276608ca8743990e4f57d94eab84f620e9aa42702a4686fd5a9", "platform": "darwin", @@ -18,9 +18,10 @@ "value": "host-1", "sent": 4 }, - "247b92f9351d": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}" + "2e0a00540206": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}", + "sent": 1 }, "50f1b63c9e0d": { "name": "pairing.getEndpoints#1", @@ -129,10 +130,6 @@ } } }, - "748cf6b7a942": { - "name": "pairing.getEndpoints#3", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "7a3e4e5413b5": { "outcome": "recovered", "winner": { @@ -177,6 +174,11 @@ } } }, + "8ba03f7fcc7b": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 2 + }, "9bb91a6d0ca7": { "name": "pairing.getEndpoints#2", "args": [ @@ -223,9 +225,10 @@ } } }, - "b6e709c11a41": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}" + "b1003d00d1be": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"install-fixture-1\",\"newResumeTokenHash\":\"7ehR_WuQWkxwOFJdkHfI5jEg4DeVYWImtDuip60LHK4\"}}", + "sent": 3 }, "bcb071e85da1": { "name": "journal-cleared", @@ -253,9 +256,10 @@ "settledAt": 0, "value": "recovered" }, - "f98de3f4f0c2": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" + "f4a3f7deb30c": { + "name": "pairing.getEndpoints#3", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 4 } }, "recording": { @@ -265,7 +269,7 @@ "id": "recovered-through-invite", "observation": { "sender": ["50f1b63c9e0d", "9bb91a6d0ca7", "8a13a5758a69", "6f09228b201f"], - "payloads": ["b6e709c11a41", "f98de3f4f0c2", "247b92f9351d", "748cf6b7a942"], + "payloads": ["2e0a00540206", "8ba03f7fcc7b", "b1003d00d1be", "f4a3f7deb30c"], "settlements": { "recover": "f0723ea3ab16" }, 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 3272f1b35c2..e5fd14c7638 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "7e54c3af4b8b8e6eac007267fb96620283b735491883c505401c79656d920ca6", "platform": "darwin", @@ -18,6 +18,11 @@ "value": "host-1", "sent": 1 }, + "2e0a00540206": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}", + "sent": 1 + }, "6873c5ee509e": { "name": "journal-cleared", "value": "recovery", @@ -29,10 +34,6 @@ "$rpc": "null" } }, - "b6e709c11a41": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\",\"resumeConfirmReqId\":\"confirm-fixture-1\"}}" - }, "be67e12f6925": { "name": "candidate-closed", "value": "relay", @@ -118,7 +119,7 @@ "id": "recovered-on-resume", "observation": { "sender": ["c5d6533ca9ce"], - "payloads": ["b6e709c11a41"], + "payloads": ["2e0a00540206"], "settlements": { "recover": "f0723ea3ab16" }, 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 8886b7a7a49..90c00e3b9b8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "c786fb19f9593ee60238e42813561edf6f5e976fcf217dff8de977a333fe8451", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0acd5ee5dc7c": { - "name": "pairing.getEndpoints#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, "0f448fcd9d34": { "name": "pairing.getEndpoints#2", "args": [ @@ -70,14 +66,6 @@ } } }, - "4877d080e309": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}" - }, - "675a60981a5e": { - "name": "pairing.provisionRelay#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}" - }, "8336e309abb8": { "name": "pairing.getEndpoints#1", "args": [ @@ -135,6 +123,11 @@ }, "sent": 0 }, + "923a7c4f532d": { + "name": "pairing.provisionRelay#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.provisionRelay\",\"params\":{\"reqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\",\"newResumeTokenHash\":\"yrnYzw4B0YZ_R6Tcm4arO3oysaG7lsPjvyp4uWmdBtU\",\"expectedCurrentHash\":\"r_9byaBlTZTXS3aLLlWTKwss-nmx4vGRrjKskxWyP30\"}}", + "sent": 2 + }, "9ade8126917f": { "name": "pairing.provisionRelay#1", "args": [ @@ -174,6 +167,16 @@ } } }, + "a69b88101d55": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 1 + }, + "b16bdfbd5633": { + "name": "pairing.getEndpoints#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"rotate-VftjjHf-4Lb1-Sdfryl-LA\"}}", + "sent": 3 + }, "eee85d194a6b": { "name": "bundle-written", "value": { @@ -233,7 +236,7 @@ "id": "credential-rotated", "observation": { "sender": ["8336e309abb8", "9ade8126917f", "0f448fcd9d34"], - "payloads": ["4877d080e309", "675a60981a5e", "0acd5ee5dc7c"], + "payloads": ["a69b88101d55", "923a7c4f532d", "b16bdfbd5633"], "settlements": { "rotate": "f2c843a9b548" }, 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 365e1204f4f..20474cd77a5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "96df784c1d56de3bdd04afe20ab019339c7d9a616528ca2617e2fffe4f0157c8", "platform": "darwin", @@ -21,6 +21,11 @@ "pending": false, "version": 5 }, + "723e3af65fac": { + "name": "pairing.getEndpoints#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}", + "sent": 1 + }, "760bb6245333": { "status": "fulfilled", "startedAt": 0, @@ -65,10 +70,6 @@ }, "sent": 1 }, - "beafd16aeb22": { - "name": "pairing.getEndpoints#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"pairing.getEndpoints\",\"params\":{\"installReqId\":\"install-fixture-1\"}}" - }, "c623ac0f092b": { "name": "pairing.getEndpoints#1", "args": [ @@ -131,7 +132,7 @@ "id": "pending-install-adopted", "observation": { "sender": ["c623ac0f092b"], - "payloads": ["beafd16aeb22"], + "payloads": ["723e3af65fac"], "settlements": { "rotate": "760bb6245333" }, diff --git a/mobile/rpc-foundation/goldens/review-create-terminal-refused.json b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json index 28f787ed025..2b5d74d44a9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "af837de2e273c5f03130b51d6e1a9bff9ff99a4e8d1c9554a53134acb5924c72", "platform": "darwin", @@ -48,10 +48,6 @@ "$rpc": "null" } }, - "58d16e8809a2": { - "name": "session.tabs.createTerminal#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}" - }, "6e913cd7b306": { "status": "rejected", "startedAt": 0, @@ -98,6 +94,11 @@ "ok": false } } + }, + "af416f104f9a": { + "name": "session.tabs.createTerminal#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.createTerminal\",\"params\":{\"worktree\":\"id:workspace-1\",\"activate\":false,\"select\":true,\"navigation\":\"caller\"}}", + "sent": 1 } }, "recording": { @@ -107,7 +108,7 @@ "id": "refused", "observation": { "sender": ["80f030a6d6a9"], - "payloads": ["58d16e8809a2"], + "payloads": ["af416f104f9a"], "settlements": { "create-and-send": "6e913cd7b306" }, diff --git a/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json index 73e1b011889..fc7fb0021cd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "9f1c39e91a97266b0a550d2b2d061592ae050078401ef23177dd2e00db67bf04", "platform": "darwin", @@ -65,6 +65,11 @@ "$rpc": "null" } }, + "44751250aabd": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}", + "sent": 1 + }, "78219a737d4d": { "name": "worktree.set#1", "args": [ @@ -130,10 +135,6 @@ } } }, - "9a5a5e546290": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -150,7 +151,7 @@ "id": "persisted", "observation": { "sender": ["78219a737d4d"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "eb79a9b3682a" }, 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 5d62ffd3e89..19940d0fe41 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "c858cfca59148548146b4c0a775e9518d3ab826ef268ccc9af60b04e52cc9e3d", "platform": "darwin", @@ -79,6 +79,11 @@ } } }, + "44751250aabd": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}", + "sent": 1 + }, "6bdf0d77510f": { "actionError": "Workspace is locked", "busyAction": { @@ -112,10 +117,6 @@ "$rpc": "null" } }, - "9a5a5e546290": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:workspace-1\",\"diffComments\":[{\"side\":\"modified\",\"id\":\"note-1\",\"worktreeId\":\"workspace-1\",\"filePath\":\"src/app.ts\",\"lineNumber\":4,\"body\":\"needs a test\",\"createdAt\":0}],\"mobileDiffReview\":{\"version\":1,\"files\":{\"unstaged:src/app.ts\":{\"key\":\"unstaged:src/app.ts\",\"filePath\":\"src/app.ts\",\"scope\":\"unstaged\",\"lastSeenDiffIdentity\":\"identity-1\",\"reviewedAt\":1767225600000,\"reviewDiffIdentity\":\"identity-1\"}},\"updatedAt\":1767225600000,\"completedAt\":1767225600000}}}" - }, "b914541ed9b0": { "status": "rejected", "startedAt": 0, @@ -134,7 +135,7 @@ "id": "rolled-back", "observation": { "sender": ["29ae38d1c0cf"], - "payloads": ["9a5a5e546290"], + "payloads": ["44751250aabd"], "settlements": { "mark-reviewed": "b914541ed9b0" }, diff --git a/mobile/rpc-foundation/goldens/review-open-in-session.json b/mobile/rpc-foundation/goldens/review-open-in-session.json index 858c02002f5..eece03b5112 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "2f0a6aa8ce100edbce9ccf64c81efe64356fccbdcd2e16f561360e2b11b5700f", "platform": "darwin", @@ -48,10 +48,6 @@ "$rpc": "null" } }, - "47164a430928": { - "name": "files.openDiff#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.openDiff\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\",\"staged\":false}}" - }, "aefdadd223ee": { "name": "files.openDiff#1", "args": [ @@ -95,6 +91,11 @@ "$rpc": "undefined" } }, + "ed424c831c19": { + "name": "files.openDiff#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.openDiff\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\",\"staged\":false}}", + "sent": 1 + }, "f08ae8feb9a9": { "name": "open-session", "value": {}, @@ -108,7 +109,7 @@ "id": "opened", "observation": { "sender": ["aefdadd223ee"], - "payloads": ["47164a430928"], + "payloads": ["ed424c831c19"], "settlements": { "open-in-session": "eb79a9b3682a" }, 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 442333b3045..be54dcc1de2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "7099d7311b2046dde21a2750201718995c0869bc4f17fb7f3ce2b997ce0e6506", "platform": "darwin", @@ -40,10 +40,6 @@ "startedAt": 0 } }, - "09a1d177b71c": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false}}" - }, "0db3b6958ec7": { "status": "fulfilled", "startedAt": 0, @@ -85,6 +81,11 @@ "$rpc": "null" } }, + "50d6ebea71fb": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u0015\",\"enter\":false}}", + "sent": 1 + }, "8e18c9a6a750": { "name": "terminal.send#1", "args": [ @@ -127,9 +128,10 @@ "status": "pending", "startedAt": 0 }, - "c5d2e61b325b": { + "9ec95bd8fce7": { "name": "terminal.send#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"You are reviewing the current worktree. Address the following mobile review notes.\\n\\nFile: src/app.ts\\nLine: 4\\nUser comment: \\\"needs a test\\\"\\n\\nAfter applying fixes:\\n1. Summarize changed files.\\n2. Run relevant tests.\\n3. Tell me if anything remains risky.\",\"enter\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"You are reviewing the current worktree. Address the following mobile review notes.\\n\\nFile: src/app.ts\\nLine: 4\\nUser comment: \\\"needs a test\\\"\\n\\nAfter applying fixes:\\n1. Summarize changed files.\\n2. Run relevant tests.\\n3. Tell me if anything remains risky.\",\"enter\":true}}", + "sent": 2 } }, "recording": { @@ -139,7 +141,7 @@ "id": "healed", "observation": { "sender": ["8e18c9a6a750", "0229bd778610"], - "payloads": ["09a1d177b71c", "c5d2e61b325b"], + "payloads": ["50d6ebea71fb", "9ec95bd8fce7"], "settlements": { "mark-stale": "0db3b6958ec7", "send-notes": "9270aeb7d9c6" diff --git a/mobile/rpc-foundation/goldens/review-stage-file.json b/mobile/rpc-foundation/goldens/review-stage-file.json index bab07ef44ee..ffbf7000ff2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "793e954960d371c6477d4cd3d70a5215c0bd90764684eafdb1e1a2e09790cc86", "platform": "darwin", @@ -48,6 +48,11 @@ "$rpc": "null" } }, + "3594dacbf114": { + "name": "git.stage#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.stage\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}", + "sent": 1 + }, "51406f060db7": { "name": "git.stage#1", "args": [ @@ -87,10 +92,6 @@ "value": {}, "sent": 1 }, - "e1156e5340fe": { - "name": "git.stage#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.stage\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -107,7 +108,7 @@ "id": "staged", "observation": { "sender": ["51406f060db7"], - "payloads": ["e1156e5340fe"], + "payloads": ["3594dacbf114"], "settlements": { "stage": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/review-stage-refused.json b/mobile/rpc-foundation/goldens/review-stage-refused.json index 0f327b1b6e8..dfbf2b415f8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fd443c85a6d2b0c1355e29f6f366e35d330a2033c7ddb90ab6713584ddda2f6f", "scenarioSha256": "46b720fed417d29f79dbde4cc7941579f2d6a2f920bae24234537480079e7de5", "platform": "darwin", @@ -48,6 +48,11 @@ } } }, + "03e8a48af722": { + "name": "git.discard#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.discard\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}", + "sent": 1 + }, "36787858f78b": { "actionError": "Cannot discard during a merge", "busyAction": { @@ -88,10 +93,6 @@ "value": { "$rpc": "undefined" } - }, - "ffc8292df05c": { - "name": "git.discard#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.discard\",\"params\":{\"worktree\":\"id:workspace-1\",\"filePath\":\"src/app.ts\"}}" } }, "recording": { @@ -101,7 +102,7 @@ "id": "refused", "observation": { "sender": ["0038658e2aec"], - "payloads": ["ffc8292df05c"], + "payloads": ["03e8a48af722"], "settlements": { "discard": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-default.json b/mobile/rpc-foundation/goldens/sc-base-ref-default.json index 29faef1a8fb..dbffa6d35c1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "374129def6baa0e06b808c067831820966638d79d7a782e96c1f2f891cc9dc86", "platform": "darwin", @@ -59,6 +59,11 @@ "settledAt": 0, "value": "origin/main" }, + "1e728fd0846c": { + "name": "repo.baseRefDefault#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}", + "sent": 3 + }, "26accd69bc48": { "name": "repo.list#1", "args": [ @@ -84,6 +89,11 @@ "startedAt": 0 } }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "4dce743b400a": { "baseRef": "unresolved" }, @@ -112,10 +122,6 @@ "startedAt": 0 } }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "5f661e5b3de8": { "baseRef": "origin/main" }, @@ -158,6 +164,11 @@ "status": "pending", "startedAt": 0 }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "b46548195c7a": { "name": "repo.baseRefDefault#1", "args": [ @@ -215,14 +226,6 @@ "status": "pending", "startedAt": 0 } - }, - "cd73fe3775d3": { - "name": "repo.baseRefDefault#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}" - }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" } }, "recording": { @@ -232,7 +235,7 @@ "id": "requests-pending", "observation": { "sender": ["535f7698e80e", "26accd69bc48"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -244,7 +247,7 @@ "id": "barrier-settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "c6857d66bf1a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -256,7 +259,7 @@ "id": "settled", "observation": { "sender": ["6396d004a0e7", "089d79f002a1", "b46548195c7a"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "198cce9909ce" }, 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 81c526daa5a..f4ed44410c9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "97a8b8f5b9a7c7467745666becee07f5dfc57fb283d4e80dcbe7941509177598", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 }, "74dda17aff6f": { "status": "fulfilled", @@ -23,6 +24,11 @@ "settledAt": 0, "value": "origin/rel" }, + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 + }, "b2161cb8d5b5": { "name": "worktree.show#1", "args": [ @@ -57,10 +63,6 @@ } } }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "dc11f1ff4a3d": { "baseRef": "origin/rel" }, @@ -110,7 +112,7 @@ "id": "settled", "observation": { "sender": ["b2161cb8d5b5", "f6f2870a1e9d"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "74dda17aff6f" }, diff --git a/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json b/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json index a64f9b1e2c8..895cf086da1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "25a4762d735dfb4979e6ef31b9fdb380941a824a54b45b3d08ddb2cde25c2eb7", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "1e728fd0846c": { + "name": "repo.baseRefDefault#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}", + "sent": 3 + }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 }, "8c0c5002db30": { "name": "repo.baseRefDefault#1", @@ -51,13 +57,10 @@ } } }, - "cd73fe3775d3": { - "name": "repo.baseRefDefault#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.baseRefDefault\",\"params\":{\"repo\":\"id:repo42\"}}" - }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 }, "de82d9737123": { "name": "repo.list#1", @@ -148,7 +151,7 @@ "id": "settled", "observation": { "sender": ["f9af0bcc7ed6", "de82d9737123", "8c0c5002db30"], - "payloads": ["cec763c8abc6", "594101d24d72", "cd73fe3775d3"], + "payloads": ["281aabb80148", "ad49fec56c14", "1e728fd0846c"], "settlements": { "resolve": "ee20a1dc39e7" }, 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 0c6356ca5d3..89c3e912032 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "f3b193f93f6c9de41d11e706ecbd99648eb2ed41ccb7c66cdb80c934e780ed7c", "platform": "darwin", @@ -38,6 +38,11 @@ "startedAt": 0 } }, + "281aabb80148": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "4dce743b400a": { "baseRef": "unresolved" }, @@ -47,10 +52,6 @@ "settledAt": 0, "value": "origin/dev" }, - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "69d1fb735581": { "name": "repo.list#1", "args": [ @@ -88,9 +89,10 @@ "status": "pending", "startedAt": 0 }, - "cec763c8abc6": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 }, "d33da78bedd6": { "name": "worktree.show#1", @@ -138,7 +140,7 @@ "id": "repo-list-outstanding", "observation": { "sender": ["d33da78bedd6", "26accd69bc48"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "9270aeb7d9c6" }, @@ -150,7 +152,7 @@ "id": "settled", "observation": { "sender": ["d33da78bedd6", "69d1fb735581"], - "payloads": ["cec763c8abc6", "594101d24d72"], + "payloads": ["281aabb80148", "ad49fec56c14"], "settlements": { "resolve": "576578948f60" }, 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 d97e966c141..e42df77d058 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "013db25622b180a8333bb1ef27c22a5b1f8e04148201201e5cc3413a10640781", "platform": "darwin", @@ -44,9 +44,10 @@ } } }, - "677c1cb5e628": { + "78c3992823b6": { "name": "git.cancelGenerateCommitMessage#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.cancelGenerateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.cancelGenerateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "a947768bc0ed": { "status": "rejected", @@ -69,7 +70,7 @@ "id": "settled", "observation": { "sender": ["029ea2c16f05"], - "payloads": ["677c1cb5e628"], + "payloads": ["78c3992823b6"], "settlements": { "cancel": "a947768bc0ed" }, diff --git a/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json b/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json index 1e39957186b..89def744792 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "15bf6c17f4b524dfbf5373b2eeed61ee2e659421cf8b6e3cff6c0378c7692cc1", "platform": "darwin", @@ -48,9 +48,10 @@ } } }, - "6e5abe3439c9": { + "6e9e4604fc3a": { "name": "git.cancelGenerateCommitMessage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.cancelGenerateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.cancelGenerateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 }, "71c27de39c72": { "generated": { @@ -103,9 +104,10 @@ } } }, - "a64074c2ba96": { + "c8f48abc0f5d": { "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -123,7 +125,7 @@ "id": "generate-settled", "observation": { "sender": ["0aeb6552c58a"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "9971630c4d20" }, @@ -135,7 +137,7 @@ "id": "cancel-settled", "observation": { "sender": ["0aeb6552c58a", "a30abf951ff2"], - "payloads": ["a64074c2ba96", "6e5abe3439c9"], + "payloads": ["c8f48abc0f5d", "6e9e4604fc3a"], "settlements": { "generate": "9971630c4d20", "cancel": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/sc-commit-message-generated.json b/mobile/rpc-foundation/goldens/sc-commit-message-generated.json index fc26d47cb3a..ea4d8a461d1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "540f05d84d1cbffd566af933c547838c75500bb5d708e8558c21fe8131d724e3", "platform": "darwin", @@ -91,12 +91,13 @@ } } }, - "a64074c2ba96": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "adb40821f3e2": { "generated": "ungenerated" + }, + "c8f48abc0f5d": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 } }, "recording": { @@ -106,7 +107,7 @@ "id": "pending", "observation": { "sender": ["125fbea5f50a"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "9270aeb7d9c6" }, @@ -118,7 +119,7 @@ "id": "settled", "observation": { "sender": ["a09d0ada6684"], - "payloads": ["a64074c2ba96"], + "payloads": ["c8f48abc0f5d"], "settlements": { "generate": "1290c04bc26c" }, diff --git a/mobile/rpc-foundation/goldens/sc-create-existing-review.json b/mobile/rpc-foundation/goldens/sc-create-existing-review.json index 7fd97214a6b..6239b2a56c7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7d6099248aa6a2ef19f2e169ff917af794649d9d64d139aa9ffeea6a41355ddc", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1617f98dc371": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, "2cc2895eb25e": { "status": "fulfilled", "startedAt": 0, @@ -71,9 +67,15 @@ } } }, - "a6c47567c630": { + "e7f043ef834a": { "name": "worktree.set#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":9}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":9}}", + "sent": 2 + }, + "f5dea50053bb": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 1 }, "fc66abdd58c9": { "name": "hostedReview.create#1", @@ -128,7 +130,7 @@ "id": "settled", "observation": { "sender": ["fc66abdd58c9", "9fec416f759d"], - "payloads": ["1617f98dc371", "a6c47567c630"], + "payloads": ["f5dea50053bb", "e7f043ef834a"], "settlements": { "create": "2cc2895eb25e" }, 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 93f23fd81b2..11832c16d54 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "447f9b3d697dbfe21cb7fb6e12d1bf5fa94b023b7e1697bdc2dc82ce7072183f", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "0a191e58baef": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}" - }, "0b80f2766914": { "name": "progress", "value": "generating_commit_message", @@ -134,9 +130,15 @@ "startedAt": 0 } }, - "16f662c17969": { - "name": "git.status#4", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "1913da2f646a": { + "name": "git.bulkStage#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}", + "sent": 2 + }, + "1a22d237c89c": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-11\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Host title\",\"body\":\"Host body\",\"draft\":false}}", + "sent": 11 }, "21c1956cb4f7": { "name": "git.bulkStage#1", @@ -198,10 +200,6 @@ } } }, - "2af3debae21a": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}" - }, "2c3c06911cb2": { "name": "git.status#4", "args": [ @@ -293,10 +291,6 @@ } } }, - "319e2b2ccc22": { - "name": "git.bulkStage#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"git.bulkStage\",\"params\":{\"worktree\":\"id:repo42::/p\",\"filePaths\":[\"src/new.ts\"]}}" - }, "3a3a688f828b": { "name": "progress", "value": "staging", @@ -346,6 +340,11 @@ } } }, + "4880374702d5": { + "name": "git.status#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "4c9c8122480a": { "name": "git.status#3", "args": [ @@ -386,6 +385,11 @@ } } }, + "5b120b8ef19c": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 7 + }, "5b46f52533a0": { "name": "hostedReview.create#1", "args": [ @@ -418,13 +422,10 @@ "startedAt": 0 } }, - "5b5a307c10d7": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "6c97705d0878": { + "name": "git.push#1", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 8 }, "6df8e4961ee3": { "name": "git.generateCommitMessage#1", @@ -468,10 +469,6 @@ "value": "committing", "sent": 4 }, - "7679f4e521d1": { - "name": "git.push#1", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "788869e46db6": { "name": "git.push#1", "args": [ @@ -505,9 +502,10 @@ } } }, - "8302a20e080f": { - "name": "git.status#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "81ecfaf1aaed": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"feat: recorded\"}}", + "sent": 5 }, "8b784bb9dff5": { "status": "fulfilled", @@ -586,6 +584,16 @@ "status": "pending", "startedAt": 0 }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "96e87325a1a6": { + "name": "hostedReview.getCreationEligibility#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 10 + }, "98b13de38dae": { "name": "hostedReview.create#1", "args": [ @@ -793,18 +801,20 @@ "startedAt": 0 } }, - "b87dea84b950": { - "name": "git.generateCommitMessage#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "ba7df43b5b8a": { + "name": "git.status#3", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 6 }, "bbf5b6093f56": { "name": "progress", "value": "creating_review", "sent": 10 }, - "c444aeacec59": { - "name": "git.status#3", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "c310a740f789": { + "name": "git.generateCommitMessage#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"git.generateCommitMessage\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "c51356d4650a": { "name": "git.bulkStage#1", @@ -840,9 +850,15 @@ } } }, - "c997e6a2a82a": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":1,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" + "d61ad98e55af": { + "name": "git.status#4", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 9 + }, + "dbceb3a5fdce": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-12\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 12 }, "de647ad73f93": { "name": "hostedReview.getCreationEligibility#1", @@ -883,10 +899,6 @@ "status": "pending", "startedAt": 0 } - }, - "eab004af0939": { - "name": "hostedReview.getCreationEligibility#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"hasUncommittedChanges\":false,\"hasUpstream\":true,\"ahead\":0,\"behind\":0,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" } }, "recording": { @@ -896,7 +908,7 @@ "id": "initial-status-pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "run": "9270aeb7d9c6" }, @@ -908,7 +920,7 @@ "id": "stage-pending", "observation": { "sender": ["302b94359544", "21c1956cb4f7"], - "payloads": ["5e330d49c396", "319e2b2ccc22"], + "payloads": ["96e616bda11d", "1913da2f646a"], "settlements": { "run": "9270aeb7d9c6" }, @@ -920,7 +932,7 @@ "id": "generate-message-pending", "observation": { "sender": ["302b94359544", "c51356d4650a", "a6f6cd5af9d1", "125fbea5f50a"], - "payloads": ["5e330d49c396", "319e2b2ccc22", "8302a20e080f", "b87dea84b950"], + "payloads": ["96e616bda11d", "1913da2f646a", "4880374702d5", "c310a740f789"], "settlements": { "run": "9270aeb7d9c6" }, @@ -939,11 +951,11 @@ "8ca8f03c0069" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed" ], "settlements": { "run": "9270aeb7d9c6" @@ -965,13 +977,13 @@ "de647ad73f93" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c" ], "settlements": { "run": "9270aeb7d9c6" @@ -994,14 +1006,14 @@ "b7a56d89f615" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878" ], "settlements": { "run": "9270aeb7d9c6" @@ -1027,17 +1039,17 @@ "5b46f52533a0" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c" ], "settlements": { "run": "9270aeb7d9c6" @@ -1070,18 +1082,18 @@ "ac748ef3fb83" ], "payloads": [ - "5e330d49c396", - "319e2b2ccc22", - "8302a20e080f", - "b87dea84b950", - "2af3debae21a", - "c444aeacec59", - "c997e6a2a82a", - "7679f4e521d1", - "16f662c17969", - "eab004af0939", - "0a191e58baef", - "5b5a307c10d7" + "96e616bda11d", + "1913da2f646a", + "4880374702d5", + "c310a740f789", + "81ecfaf1aaed", + "ba7df43b5b8a", + "5b120b8ef19c", + "6c97705d0878", + "d61ad98e55af", + "96e87325a1a6", + "1a22d237c89c", + "dbceb3a5fdce" ], "settlements": { "run": "8b784bb9dff5" 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 cad373c5cc8..0e6c5fed16e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "2deb0435ef63a3e0102e28f2f3f331039486d193d1e1ffdfb53ad86d3ff039f0", "platform": "darwin", @@ -55,10 +55,6 @@ } } }, - "1617f98dc371": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, "3ff86ed23cf9": { "status": "fulfilled", "startedAt": 0, @@ -70,9 +66,10 @@ "url": "https://review.test/5" } }, - "7b353f33f66f": { + "8056b0204a25": { "name": "worktree.set#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 2 }, "91f262b2079b": { "name": "worktree.set#1", @@ -117,6 +114,11 @@ "ok": true, "url": "https://review.test/5" } + }, + "f5dea50053bb": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 1 } }, "recording": { @@ -126,7 +128,7 @@ "id": "settled", "observation": { "sender": ["122ef8a1f0b9", "91f262b2079b"], - "payloads": ["1617f98dc371", "7b353f33f66f"], + "payloads": ["f5dea50053bb", "8056b0204a25"], "settlements": { "create": "3ff86ed23cf9" }, 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 762a409f4e0..bdafe36a1f7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "0f86b3e6059c48cd327c55df2452a9bc6ea85584ffbeacafad496f600c20e06f", "platform": "darwin", @@ -13,17 +13,14 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "06a94a810e5f": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, - "06e930bb7dd8": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}" - }, "3f946ad0279c": { "outcome": "uncreated" }, + "6108ce22d0dc": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 2 + }, "7037e9e29078": { "name": "hostedReview.create#1", "args": [ @@ -105,9 +102,10 @@ "status": "pending", "startedAt": 0 }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "9fca4a23f963": { "outcome": { @@ -210,6 +208,11 @@ "startedAt": 0 } }, + "d0ffc98cfa0e": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"main\",\"linkedPR\":5}}", + "sent": 3 + }, "f9869252c305": { "name": "git.push#1", "args": [ @@ -251,7 +254,7 @@ "id": "push-pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "create": "9270aeb7d9c6" }, @@ -263,7 +266,7 @@ "id": "create-pending", "observation": { "sender": ["f9869252c305", "a1f0c8bb5bcd"], - "payloads": ["95b1f2f379aa", "06a94a810e5f"], + "payloads": ["9f78c498e866", "6108ce22d0dc"], "settlements": { "create": "9270aeb7d9c6" }, @@ -275,7 +278,7 @@ "id": "link-pending", "observation": { "sender": ["f9869252c305", "7037e9e29078", "a942a97a5d17"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "9270aeb7d9c6" }, @@ -287,7 +290,7 @@ "id": "settled", "observation": { "sender": ["f9869252c305", "7037e9e29078", "7c0cf8d696d8"], - "payloads": ["95b1f2f379aa", "06a94a810e5f", "06e930bb7dd8"], + "payloads": ["9f78c498e866", "6108ce22d0dc", "d0ffc98cfa0e"], "settlements": { "create": "a95ae8a9ee57" }, 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 10a72ea1497..82d3eb80d38 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "5008e69a8e396b1deccd98712d92650a630f971cd76a02862a461afb8617b8a4", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1617f98dc371": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, "5b3abe5b6ee3": { "name": "hostedReview.create#1", "args": [ @@ -72,6 +68,11 @@ "error": "Failed to create pull request", "ok": false } + }, + "f5dea50053bb": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 1 } }, "recording": { @@ -81,7 +82,7 @@ "id": "settled", "observation": { "sender": ["5b3abe5b6ee3"], - "payloads": ["1617f98dc371"], + "payloads": ["f5dea50053bb"], "settlements": { "create": "e12183bfd2c3" }, 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 b4a2f9292d8..ac3cf65bcda 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ea71081982a101d0f8624707b59c99de9981e9b1d1bafa25c66d575e3f876ff4", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1617f98dc371": { - "name": "hostedReview.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}" - }, "3c6a5a164e8a": { "outcome": { "error": "", @@ -61,6 +57,11 @@ } } }, + "f5dea50053bb": { + "name": "hostedReview.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.create\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"provider\":\"github\",\"base\":\"main\",\"head\":\"feature\",\"title\":\"Recorded title\",\"body\":\"Recorded body\",\"draft\":false}}", + "sent": 1 + }, "fb4429083480": { "status": "fulfilled", "startedAt": 0, @@ -78,7 +79,7 @@ "id": "settled", "observation": { "sender": ["401c5b683797"], - "payloads": ["1617f98dc371"], + "payloads": ["f5dea50053bb"], "settlements": { "create": "fb4429083480" }, diff --git a/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json b/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json index 94d895d23fa..c641261f517 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "f6a1595073abe11b33973e8865900a1d849f44221961da5c12ea13aa696f6490", "platform": "darwin", @@ -49,6 +49,11 @@ }, "prefill": "unresolved" }, + "349d5045a996": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 1 + }, "485a0942bda3": { "eligibility": "unfetched", "prefill": "unresolved" @@ -112,10 +117,6 @@ "status": "pending", "startedAt": 0 }, - "cc09b6142ccb": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" - }, "e41e491351c2": { "name": "hostedReview.getCreationEligibility#1", "args": [ @@ -160,7 +161,7 @@ "id": "pending", "observation": { "sender": ["e41e491351c2"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "9270aeb7d9c6" }, @@ -172,7 +173,7 @@ "id": "settled", "observation": { "sender": ["899a024357b9"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "fetch": "24bd84c9fb40" }, diff --git a/mobile/rpc-foundation/goldens/sc-history-loaded.json b/mobile/rpc-foundation/goldens/sc-history-loaded.json index ae8273c894c..f0c9ecc1a67 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "83f61085a91458bad529905ecc6fe240c598cddfe44a56dd497b8aed9fb8a7e5", "platform": "darwin", @@ -137,14 +137,15 @@ } ] }, + "7e2ddc2aee54": { + "name": "git.history#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.history\",\"params\":{\"worktree\":\"id:repo42::/p\",\"limit\":50}}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "d2ac5468a6f5": { - "name": "git.history#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.history\",\"params\":{\"worktree\":\"id:repo42::/p\",\"limit\":50}}" - }, "ef169a494b41": { "rows": "unloaded" } @@ -156,7 +157,7 @@ "id": "pending", "observation": { "sender": ["17bc1e177fe1"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "9270aeb7d9c6" }, @@ -168,7 +169,7 @@ "id": "settled", "observation": { "sender": ["6b280ce22422"], - "payloads": ["d2ac5468a6f5"], + "payloads": ["7e2ddc2aee54"], "settlements": { "load": "7d520ecb92ad" }, 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 2ef7fa08552..1a022069d09 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "42b0304b2fdce08b7ff52ec979dd9f199f368e5e4ef0b5370acc417909b592b3", "platform": "darwin", @@ -55,6 +55,11 @@ } } }, + "9ab87e99c0fd": { + "name": "worktree.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"origin/release\",\"linkedGitLabMR\":12}}", + "sent": 1 + }, "9da958eddaa9": { "name": "worktree.set#1", "args": [ @@ -90,13 +95,10 @@ } } }, - "c2ccaf58540c": { - "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"baseRef\":\"origin/release\",\"linkedGitLabMR\":12}}" - }, - "e3b095dbc61d": { + "adaa7ca831ee": { "name": "worktree.set#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":null}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":null}}", + "sent": 2 }, "fbc958e4d46e": { "status": "fulfilled", @@ -114,7 +116,7 @@ "id": "settled", "observation": { "sender": ["9da958eddaa9", "1a42edf0b52f"], - "payloads": ["c2ccaf58540c", "e3b095dbc61d"], + "payloads": ["9ab87e99c0fd", "adaa7ca831ee"], "settlements": { "link-review": "fbc958e4d46e", "unlink": "fbc958e4d46e" diff --git a/mobile/rpc-foundation/goldens/sc-pr-link-read.json b/mobile/rpc-foundation/goldens/sc-pr-link-read.json index 67464e628d0..e667845db2d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "4520bd54a55eabfe6ec64a4b2f824f095f98b2fffd1bf22fe4f9ec7f63cbfa3f", "platform": "darwin", @@ -17,6 +17,11 @@ "linkedPR": 7, "outcome": "unlinked" }, + "28845c128141": { + "name": "worktree.show#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, "6f0c2307a94d": { "status": "fulfilled", "startedAt": 0, @@ -29,9 +34,10 @@ }, "outcome": "unlinked" }, - "cec763c8abc6": { + "db5df797b7c0": { "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "e29f6962cb3e": { "name": "worktree.show#2", @@ -66,10 +72,6 @@ } } }, - "e499e48f3fce": { - "name": "worktree.show#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "ee20a1dc39e7": { "status": "fulfilled", "startedAt": 0, @@ -121,7 +123,7 @@ "id": "read-settled", "observation": { "sender": ["f2580933d0e2"], - "payloads": ["cec763c8abc6"], + "payloads": ["db5df797b7c0"], "settlements": { "read": "6f0c2307a94d" }, @@ -133,7 +135,7 @@ "id": "null-result-settled", "observation": { "sender": ["f2580933d0e2", "e29f6962cb3e"], - "payloads": ["cec763c8abc6", "e499e48f3fce"], + "payloads": ["db5df797b7c0", "28845c128141"], "settlements": { "read": "6f0c2307a94d", "read-again": "ee20a1dc39e7" diff --git a/mobile/rpc-foundation/goldens/sc-pr-link-set.json b/mobile/rpc-foundation/goldens/sc-pr-link-set.json index d070bec7e1f..f7ed0c21a82 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "b65bad4f8c0ae0b686f6c3db93bd43ffa072ae426f978f1a86ad8008fb24fa24", "platform": "darwin", @@ -87,9 +87,10 @@ "status": "pending", "startedAt": 0 }, - "c7ae0a3a6e6e": { + "ab2ee9c092a5": { "name": "worktree.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":12}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.set\",\"params\":{\"worktree\":\"id:repo42::/p\",\"linkedPR\":12}}", + "sent": 1 }, "fbc958e4d46e": { "status": "fulfilled", @@ -107,7 +108,7 @@ "id": "pending", "observation": { "sender": ["2c746c8732cd"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "9270aeb7d9c6" }, @@ -119,7 +120,7 @@ "id": "settled", "observation": { "sender": ["86441203344c"], - "payloads": ["c7ae0a3a6e6e"], + "payloads": ["ab2ee9c092a5"], "settlements": { "link": "fbc958e4d46e" }, 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 07c143a51f9..10030d06258 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "9de96287a4dfa6cf5c9a8b683cc696fdc2cd387f86f231e22ee3f100a2e778e3", "platform": "darwin", @@ -77,6 +77,11 @@ "title": "Recorded title" } }, + "349d5045a996": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 1 + }, "77a5a5f8b111": { "eligibility": "unfetched", "prefill": { @@ -93,10 +98,6 @@ "reviewLookupOutcome": "unavailable", "title": "Recorded title" } - }, - "cc09b6142ccb": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" } }, "recording": { @@ -106,7 +107,7 @@ "id": "settled", "observation": { "sender": ["0710fc7e2b71"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "prefill": "2f56274e5397" }, 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 31c8545fbb9..e28c31f3d3b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "adbdfcc3895cc04d830900de518e689c9e63f6f75569127e1fde24488658e8a0", "platform": "darwin", @@ -32,6 +32,11 @@ "title": "Recorded title" } }, + "349d5045a996": { + "name": "hostedReview.getCreationEligibility#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}", + "sent": 1 + }, "77a5a5f8b111": { "eligibility": "unfetched", "prefill": { @@ -90,10 +95,6 @@ "isRpcDeliveryUnknown": true } } - }, - "cc09b6142ccb": { - "name": "hostedReview.getCreationEligibility#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"hostedReview.getCreationEligibility\",\"params\":{\"repo\":\"id:repo42\",\"worktree\":\"id:repo42::/p\",\"branch\":\"feature\",\"base\":null,\"linkedGitHubPR\":null,\"linkedGitLabMR\":null}}" } }, "recording": { @@ -103,7 +104,7 @@ "id": "settled", "observation": { "sender": ["7fb1231fd64d"], - "payloads": ["cc09b6142ccb"], + "payloads": ["349d5045a996"], "settlements": { "prefill": "2f56274e5397" }, 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 f9e1e4c0281..81476f557c8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "ec2847b4af357d8564d8e0a9a1072713c1afd7ff86ba69e9c83c056a6841ee39", "platform": "darwin", @@ -67,9 +67,10 @@ "value": "force_pushing", "sent": 0 }, - "ef6c20bf075b": { + "7e7e568336cc": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"forceWithLease\":true}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"forceWithLease\":true}}", + "sent": 1 } }, "recording": { @@ -79,7 +80,7 @@ "id": "settled", "observation": { "sender": ["3d5bc718d103"], - "payloads": ["ef6c20bf075b"], + "payloads": ["7e7e568336cc"], "settlements": { "apply": "00e8a3bac22f" }, diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json index 9560a315b88..c0eed9908b5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "6cf6ebd20adc4cc76a12d3424863ee9db2b24f36593664a1f4e0e05de9a53d39", "platform": "darwin", @@ -28,10 +28,6 @@ "ran": true } }, - "387442f96b16": { - "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"publish\":true}}" - }, "8e30f48c04a4": { "name": "progress", "value": "publishing", @@ -70,6 +66,11 @@ } } } + }, + "e54e0fa0a251": { + "name": "git.push#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\",\"publish\":true}}", + "sent": 1 } }, "recording": { @@ -79,7 +80,7 @@ "id": "settled", "observation": { "sender": ["b12e1ce5068c"], - "payloads": ["387442f96b16"], + "payloads": ["e54e0fa0a251"], "settlements": { "apply": "00e8a3bac22f" }, diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json index f5bece53447..d5a641804b0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "e6e8197a541cd73e5811a1f28b0dbfc414a4d34c1ae6929fc1bbae1213820674", "platform": "darwin", @@ -37,9 +37,10 @@ "status": "pending", "startedAt": 0 }, - "95b1f2f379aa": { + "9f78c498e866": { "name": "git.push#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.push\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 }, "b7a56d89f615": { "name": "git.push#1", @@ -110,7 +111,7 @@ "id": "pending", "observation": { "sender": ["b7a56d89f615"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "9270aeb7d9c6" }, @@ -122,7 +123,7 @@ "id": "settled", "observation": { "sender": ["f9869252c305"], - "payloads": ["95b1f2f379aa"], + "payloads": ["9f78c498e866"], "settlements": { "apply": "00e8a3bac22f" }, diff --git a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json index 67dd17e8c65..782c4eef8ae 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 06c7d1f590f..f96d1beecbe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "00b26cb279b0a934df98d93ba98a4a0c79e302c7690c582e778dc0156ab4f235", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0f9f4df04699": { + "0410be39707b": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "10e4a5c67c9f": { "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:repo42::/p\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 }, "5fbe284a7387": { "name": "session.tabs.activate#1", @@ -150,10 +156,6 @@ "c7a157cde28d": { "result": "unrevealed" }, - "eb116b4d99bb": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "f884811cfa05": { "name": "session.tabs.list#1", "args": [ @@ -187,7 +189,7 @@ "id": "list-pending", "observation": { "sender": ["f884811cfa05"], - "payloads": ["eb116b4d99bb"], + "payloads": ["0410be39707b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -199,7 +201,7 @@ "id": "activate-pending", "observation": { "sender": ["92b5192ed75d", "5fbe284a7387"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -211,7 +213,7 @@ "id": "settled", "observation": { "sender": ["92b5192ed75d", "bb3b4ee6b927"], - "payloads": ["eb116b4d99bb", "0f9f4df04699"], + "payloads": ["0410be39707b", "10e4a5c67c9f"], "settlements": { "reveal": "60ef11dd407d" }, diff --git a/mobile/rpc-foundation/goldens/sc-reveal-timeout.json b/mobile/rpc-foundation/goldens/sc-reveal-timeout.json index 5fa81b6b2b0..e4f8d5f10c4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "fcd61f1ef46c42889827a87876239534b851c425f8ef7a9405ea95b8d07d2363", "platform": "darwin", @@ -13,6 +13,21 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "0410be39707b": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, + "2b8d4c66e21b": { + "name": "session.tabs.list#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 2 + }, + "395d4cbc9901": { + "name": "session.tabs.list#3", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 3 + }, "3dbdccea1da9": { "name": "session.tabs.list#3", "args": [ @@ -50,18 +65,15 @@ } } }, - "421eab74382e": { - "name": "session.tabs.list#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" + "530b981ff4f2": { + "name": "session.tabs.list#4", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 4 }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, - "9ae795d19e6a": { - "name": "session.tabs.list#3", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "a24b101a6ab8": { "name": "session.tabs.list#4", "args": [ @@ -171,14 +183,6 @@ }, "c7a157cde28d": { "result": "unrevealed" - }, - "e1859439e0b8": { - "name": "session.tabs.list#4", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, - "eb116b4d99bb": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" } }, "recording": { @@ -188,7 +192,7 @@ "id": "second-poll-empty", "observation": { "sender": ["bea2cb9fbfb3", "b85e7c9343ce"], - "payloads": ["eb116b4d99bb", "421eab74382e"], + "payloads": ["0410be39707b", "2b8d4c66e21b"], "settlements": { "reveal": "9270aeb7d9c6" }, @@ -200,7 +204,7 @@ "id": "settled", "observation": { "sender": ["bea2cb9fbfb3", "b85e7c9343ce", "3dbdccea1da9", "a24b101a6ab8"], - "payloads": ["eb116b4d99bb", "421eab74382e", "9ae795d19e6a", "e1859439e0b8"], + "payloads": ["0410be39707b", "2b8d4c66e21b", "395d4cbc9901", "530b981ff4f2"], "settlements": { "reveal": "b636d34122fd" }, 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 a300eb0adbd..5b0d5207ab9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "db1fb2a584cd806028b9be861283a63aa4836c83f61558f3d518ddbb7a59498d", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "19cb7a56ca95": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}", + "sent": 1 + }, "88185276c233": { "status": "fulfilled", "startedAt": 0, @@ -29,10 +34,6 @@ }, "status": "unread" }, - "e9c816eee026": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}" - }, "f29b710be334": { "name": "git.commit#1", "args": [ @@ -76,7 +77,7 @@ "id": "settled", "observation": { "sender": ["f29b710be334"], - "payloads": ["e9c816eee026"], + "payloads": ["19cb7a56ca95"], "settlements": { "commit": "88185276c233" }, 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 4429dedba76..195dba4b243 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "dba1676583dc832ef059285a6bd4c3eefe6be0230e42100cb9d7a125755d136b", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "19cb7a56ca95": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}", + "sent": 1 + }, "45f289a0f3ae": { "committed": { "error": "Commit failed", @@ -63,10 +68,6 @@ "ok": false } } - }, - "e9c816eee026": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}" } }, "recording": { @@ -76,7 +77,7 @@ "id": "settled", "observation": { "sender": ["a130dfa9b176"], - "payloads": ["e9c816eee026"], + "payloads": ["19cb7a56ca95"], "settlements": { "commit": "9dac5d637ed4" }, diff --git a/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json b/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json index 842ea1acd48..1b872dd60fa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "de079de9cc21bfb40da6e1431273b10c3e2a5b5402b91b2b8a85c8d7ac41bc97", "platform": "darwin", @@ -45,6 +45,11 @@ } } }, + "19cb7a56ca95": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}", + "sent": 1 + }, "465d78c22406": { "status": "fulfilled", "startedAt": 0, @@ -60,10 +65,6 @@ "ok": false }, "status": "unread" - }, - "e9c816eee026": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}" } }, "recording": { @@ -73,7 +74,7 @@ "id": "settled", "observation": { "sender": ["01bab795ab1e"], - "payloads": ["e9c816eee026"], + "payloads": ["19cb7a56ca95"], "settlements": { "commit": "465d78c22406" }, diff --git a/mobile/rpc-foundation/goldens/sc-review-commit.json b/mobile/rpc-foundation/goldens/sc-review-commit.json index c4cd8ac6031..f8fff87190f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "a29d518b2d075e8e4811404e0fcbf8948fbfe53a3aefbf0948cb2f2e622e8cbb", "platform": "darwin", @@ -19,6 +19,11 @@ }, "status": "unread" }, + "19cb7a56ca95": { + "name": "git.commit#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}", + "sent": 1 + }, "3553e2d27023": { "name": "git.commit#1", "args": [ @@ -54,10 +59,6 @@ } } }, - "e9c816eee026": { - "name": "git.commit#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.commit\",\"params\":{\"worktree\":\"id:repo42::/p\",\"message\":\"recorded message\"}}" - }, "fbc958e4d46e": { "status": "fulfilled", "startedAt": 0, @@ -74,7 +75,7 @@ "id": "settled", "observation": { "sender": ["3553e2d27023"], - "payloads": ["e9c816eee026"], + "payloads": ["19cb7a56ca95"], "settlements": { "commit": "fbc958e4d46e" }, 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 c7fa7e6e6bb..aca33c03143 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "37ba7780ca9525ab313c0a9c781ce5bb26344e63af9272c32ae889621f383b2b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "6cfd467eb392": { "name": "git.status#1", "args": [ @@ -60,6 +56,11 @@ } } }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, "da676cfabd9b": { "status": "fulfilled", "startedAt": 0, @@ -79,7 +80,7 @@ "id": "settled", "observation": { "sender": ["6cfd467eb392"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "da676cfabd9b" }, diff --git a/mobile/rpc-foundation/goldens/sc-review-status-normalized.json b/mobile/rpc-foundation/goldens/sc-review-status-normalized.json index fd6c7f4b3e6..1bcd696cb7d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "93193acd57d6f00abc8e6c22ec3a8f1ca6ce7c5808d906d0aa7c11e41dab4635", "platform": "darwin", @@ -89,10 +89,6 @@ } } }, - "5e330d49c396": { - "name": "git.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -170,6 +166,11 @@ } } }, + "96e616bda11d": { + "name": "git.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"git.status\",\"params\":{\"worktree\":\"id:repo42::/p\"}}", + "sent": 1 + }, "ac07554f62ad": { "committed": "uncommitted", "status": "unread" @@ -257,7 +258,7 @@ "id": "pending", "observation": { "sender": ["0278e0f0d6cf"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "9270aeb7d9c6" }, @@ -269,7 +270,7 @@ "id": "settled", "observation": { "sender": ["302b94359544"], - "payloads": ["5e330d49c396"], + "payloads": ["96e616bda11d"], "settlements": { "status": "c7ee072b3a0f" }, diff --git a/mobile/rpc-foundation/goldens/schedules-b3.json b/mobile/rpc-foundation/goldens/schedules-b3.json index dc720d90730..dc1e41c320a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "b59fb599dd3a5fbc79bb8602dcec4b1c51a392c662efab7efc8324fc718ce8de", "platform": "darwin", @@ -162,6 +162,11 @@ "$rpc": "null" } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "49b0ba2659b8": { "name": "linear.issueComments#1", "args": [ @@ -295,6 +300,11 @@ } } }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "760b8f2ae31c": { "name": "detailError", "value": "Request timed out: linear.getIssue", @@ -338,10 +348,6 @@ "$rpc": "null" } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "c5688e7e3b01": { "name": "linear.issueComments#1", "args": [ @@ -465,10 +471,6 @@ "value": "linear.getIssue#1 rejected", "sent": 2 }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -523,7 +525,7 @@ "id": "b3.forward:sibling-pending", "observation": { "sender": ["034a83431f03", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -535,7 +537,7 @@ "id": "b3.forward:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -553,7 +555,7 @@ "id": "b3.reverse:sibling-pending", "observation": { "sender": ["fc4ce176400a", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -571,7 +573,7 @@ "id": "b3.reverse:settled", "observation": { "sender": ["034a83431f03", "4e7c4654b51d"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -589,7 +591,7 @@ "id": "b3.both-reject-forward:sibling-pending", "observation": { "sender": ["cc1d7d1a2a81", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -607,7 +609,7 @@ "id": "b3.both-reject-forward:settled", "observation": { "sender": ["cc1d7d1a2a81", "c5688e7e3b01"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -625,7 +627,7 @@ "id": "b3.both-reject-reverse:sibling-pending", "observation": { "sender": ["fc4ce176400a", "c5688e7e3b01"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -643,7 +645,7 @@ "id": "b3.both-reject-reverse:settled", "observation": { "sender": ["cc1d7d1a2a81", "c5688e7e3b01"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -661,7 +663,7 @@ "id": "b3.reject-peer-pending:sibling-pending", "observation": { "sender": ["cc1d7d1a2a81", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -679,7 +681,7 @@ "id": "b3.reject-peer-pending:settled", "observation": { "sender": ["cc1d7d1a2a81", "3cb9a384ce0e"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -697,7 +699,7 @@ "id": "b3.timeout:settled", "observation": { "sender": ["210ccd4fdd98", "49b0ba2659b8"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, @@ -715,7 +717,7 @@ "id": "b3.disconnect:settled", "observation": { "sender": ["538ca4176a52", "58b60616b373"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "disconnect": "eb79a9b3682a" @@ -734,7 +736,7 @@ "id": "b3.client-cutover:settled", "observation": { "sender": ["d0761d28e078", "38c4607fc51a"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a", "cutover": "eb79a9b3682a" 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 9a5eaeb236b..680402939d6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "fbd311a377672a9335521c30734880eea1b04bab0aff367854c1deebcf66b105", "platform": "darwin", @@ -75,10 +75,6 @@ } } }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "349f2cb31004": { "name": "preflight.check#1", "args": [ @@ -181,11 +177,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -236,6 +233,11 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -278,10 +280,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -551,6 +549,11 @@ } } }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 + }, "f2c5b522b90a": { "name": "settings.get#1", "args": [ @@ -590,7 +593,7 @@ "id": "settings-home-providers-fulfilled.forward:sibling-pending", "observation": { "sender": ["7dadf370725c", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -602,7 +605,7 @@ "id": "settings-home-providers-fulfilled.forward:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -614,7 +617,7 @@ "id": "settings-home-providers-fulfilled.reverse:sibling-pending", "observation": { "sender": ["da2c3b49481f", "349f2cb31004", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -626,7 +629,7 @@ "id": "settings-home-providers-fulfilled.reverse:settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -638,7 +641,7 @@ "id": "settings-home-providers-fulfilled.both-reject-forward:sibling-pending", "observation": { "sender": ["f2c5b522b90a", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -650,7 +653,7 @@ "id": "settings-home-providers-fulfilled.both-reject-forward:settled", "observation": { "sender": ["f2c5b522b90a", "39bd7fcad0c4", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -662,7 +665,7 @@ "id": "settings-home-providers-fulfilled.both-reject-reverse:sibling-pending", "observation": { "sender": ["da2c3b49481f", "39bd7fcad0c4", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -674,7 +677,7 @@ "id": "settings-home-providers-fulfilled.both-reject-reverse:settled", "observation": { "sender": ["f2c5b522b90a", "39bd7fcad0c4", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -686,7 +689,7 @@ "id": "settings-home-providers-fulfilled.reject-peer-pending:sibling-pending", "observation": { "sender": ["f2c5b522b90a", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -698,7 +701,7 @@ "id": "settings-home-providers-fulfilled.reject-peer-pending:settled", "observation": { "sender": ["f2c5b522b90a", "66bc794cca63", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -710,7 +713,7 @@ "id": "settings-home-providers-fulfilled.timeout:settled", "observation": { "sender": ["a670b07e746e", "c66ef8a30d8e", "1081ce76cc68"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -722,7 +725,7 @@ "id": "settings-home-providers-fulfilled.disconnect:settled", "observation": { "sender": ["b19b64f388f3", "1bd19e364296", "a6413e8380e3"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a", "disconnect": "eb79a9b3682a" @@ -735,7 +738,7 @@ "id": "settings-home-providers-fulfilled.client-cutover:settled", "observation": { "sender": ["35e8371ce4fb", "e9ec9196aad8", "ed19b8675a80"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a", "cutover": "eb79a9b3682a" 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 6eaa7a55fc7..b28d83c0553 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "2726d71130f623e3ad02c168c13269979ca6f84703bf1c5aaf36bd4432dfb516", "platform": "darwin", @@ -173,10 +173,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6d0209806267": { "status": "rejected", "startedAt": 0, @@ -238,6 +234,11 @@ "isRpcDeliveryUnknown": true } }, + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -319,10 +320,6 @@ } ] }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -423,6 +420,11 @@ } } }, + "d0694611a403": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, "d0ea965edca4": { "name": "preflight.detectRemoteAgents#1", "args": [ @@ -484,10 +486,6 @@ "isRpcDeliveryUnknown": true } }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -520,6 +518,11 @@ "status": "pending", "startedAt": 0 } + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -529,7 +532,7 @@ "id": "settings-new-tab-ssh.forward:sibling-pending", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "f03117831a8e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "9270aeb7d9c6" }, @@ -541,7 +544,7 @@ "id": "settings-new-tab-ssh.forward:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, @@ -553,7 +556,7 @@ "id": "settings-new-tab-ssh.reverse:sibling-pending", "observation": { "sender": ["bae1ab4f96f9", "090c88478661", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "9270aeb7d9c6" }, @@ -565,7 +568,7 @@ "id": "settings-new-tab-ssh.reverse:settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, @@ -577,7 +580,7 @@ "id": "settings-new-tab-ssh.both-reject-forward:sibling-pending", "observation": { "sender": ["bae1ab4f96f9", "d041d5155ed5", "f03117831a8e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "7e9a4c0e6082" }, @@ -589,7 +592,7 @@ "id": "settings-new-tab-ssh.both-reject-forward:settled", "observation": { "sender": ["bae1ab4f96f9", "d041d5155ed5", "430eff79721f"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "7e9a4c0e6082" }, @@ -601,7 +604,7 @@ "id": "settings-new-tab-ssh.both-reject-reverse:sibling-pending", "observation": { "sender": ["bae1ab4f96f9", "090c88478661", "430eff79721f"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "e465a7e0746d" }, @@ -613,7 +616,7 @@ "id": "settings-new-tab-ssh.both-reject-reverse:settled", "observation": { "sender": ["bae1ab4f96f9", "d041d5155ed5", "430eff79721f"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "e465a7e0746d" }, @@ -625,7 +628,7 @@ "id": "settings-new-tab-ssh.reject-peer-pending:sibling-pending", "observation": { "sender": ["bae1ab4f96f9", "d041d5155ed5", "f03117831a8e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "7e9a4c0e6082" }, @@ -637,7 +640,7 @@ "id": "settings-new-tab-ssh.reject-peer-pending:settled", "observation": { "sender": ["bae1ab4f96f9", "d041d5155ed5", "f03117831a8e"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "7e9a4c0e6082" }, @@ -649,7 +652,7 @@ "id": "settings-new-tab-ssh.timeout:settled", "observation": { "sender": ["bae1ab4f96f9", "7fc945a92540", "c9c9e154c7a4"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "8277c8a13a15" }, @@ -661,7 +664,7 @@ "id": "settings-new-tab-ssh.disconnect:settled", "observation": { "sender": ["bae1ab4f96f9", "af6903aed166", "27b09a2898b9"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "6d0209806267", "disconnect": "eb79a9b3682a" @@ -674,7 +677,7 @@ "id": "settings-new-tab-ssh.client-cutover:settled", "observation": { "sender": ["bae1ab4f96f9", "06eff8247d02", "d0ea965edca4"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "d58a51553d50", "cutover": "eb79a9b3682a" 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 a8e154ace3b..57d4650ca82 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "664eba1468e229f9ac2dced262e7ad896ead01688dff4c570f397c3f8594efd7", "platform": "darwin", @@ -243,13 +243,10 @@ } } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -266,9 +263,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7f85f28c922e": { "name": "host.platform#1", @@ -544,6 +542,11 @@ } } }, + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 + }, "c7f150c7a054": { "status": "fulfilled", "startedAt": 0, @@ -583,10 +586,6 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -640,6 +639,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -649,7 +653,7 @@ "id": "settings-repo-metadata-fulfilled.forward:sibling-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -662,7 +666,7 @@ "id": "settings-repo-metadata-fulfilled.forward:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -682,7 +686,7 @@ "id": "settings-repo-metadata-fulfilled.reverse:sibling-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -695,7 +699,7 @@ "id": "settings-repo-metadata-fulfilled.reverse:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -715,7 +719,7 @@ "id": "settings-repo-metadata-fulfilled.both-reject-forward:sibling-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -728,7 +732,7 @@ "id": "settings-repo-metadata-fulfilled.both-reject-forward:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "1ae9065ebcdf"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -748,7 +752,7 @@ "id": "settings-repo-metadata-fulfilled.both-reject-reverse:sibling-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "1ae9065ebcdf"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -761,7 +765,7 @@ "id": "settings-repo-metadata-fulfilled.both-reject-reverse:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "1ae9065ebcdf"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -781,7 +785,7 @@ "id": "settings-repo-metadata-fulfilled.reject-peer-pending:sibling-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -794,7 +798,7 @@ "id": "settings-repo-metadata-fulfilled.reject-peer-pending:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -807,7 +811,7 @@ "id": "settings-repo-metadata-fulfilled.reject-peer-pending:cleanup", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "d041d5155ed5", "9acf4d7a0ba1"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -827,7 +831,7 @@ "id": "settings-repo-metadata-fulfilled.timeout:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "7fc945a92540", "0728e73758d7"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "c7f150c7a054" @@ -847,7 +851,7 @@ "id": "settings-repo-metadata-fulfilled.disconnect:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "af6903aed166", "1e048843e9d3"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a", @@ -868,7 +872,7 @@ "id": "settings-repo-metadata-fulfilled.client-cutover:settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "06eff8247d02", "a7ffdd83bc7d"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a", 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 4f2f9c54120..144bebf38c2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "7bfba3fae1dc33acf40e8a955bbfccf28580b3daee3270dec6a15e6cefd45a84", "platform": "darwin", @@ -80,9 +80,10 @@ } } }, - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -148,10 +149,6 @@ "startedAt": 0 } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -227,10 +224,6 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" - }, "4b6b81dc7f0f": { "name": "settings.get#1", "args": [ @@ -293,6 +286,11 @@ } } }, + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 + }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", "args": [ @@ -357,10 +355,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "6f9cdbcc6cd1": { "name": "worktree.ps#1", "args": [ @@ -481,6 +475,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -530,9 +529,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "eb79a9b3682a": { "status": "fulfilled", @@ -574,6 +574,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -590,11 +595,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -614,11 +619,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -638,11 +643,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -662,11 +667,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -686,11 +691,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -710,11 +715,11 @@ "4f5070e045c9" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "d1d9a1ad6fcf" @@ -734,11 +739,11 @@ "4f5070e045c9" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -758,11 +763,11 @@ "4f5070e045c9" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "d1d9a1ad6fcf" @@ -782,11 +787,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -806,11 +811,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -830,11 +835,11 @@ "06854b6b4cde" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "b5f966ccb50c" @@ -854,11 +859,11 @@ "6b08ce6b4d6b" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "d1d9a1ad6fcf", @@ -879,11 +884,11 @@ "6f9cdbcc6cd1" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "d1d9a1ad6fcf", 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 e4c7fee9388..c18f4aa119c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "02e3ca10296704b5478185e9d3dc0136596a2ee57580d7f9268672568dab4cd4", "platform": "darwin", @@ -113,10 +113,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -207,6 +203,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -287,6 +288,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -505,6 +511,11 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, "7fc945a92540": { "name": "settings.get#1", "args": [ @@ -536,6 +547,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -592,6 +608,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "990d36ffab6d": { "name": "error", "value": "RPC interrupted by connection migration", @@ -751,10 +772,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "ae1d901c204f": { "name": "linear.status#1", "args": [ @@ -1107,10 +1124,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -1123,10 +1136,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1135,10 +1144,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -1169,11 +1174,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1234,11 +1239,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1318,11 +1323,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1383,11 +1388,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1467,11 +1472,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1534,11 +1539,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1601,11 +1606,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1668,11 +1673,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1735,11 +1740,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1802,11 +1807,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1869,11 +1874,11 @@ "ba4739591371" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1936,11 +1941,11 @@ "ae1d901c204f" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", @@ -2004,11 +2009,11 @@ "cdeb94d60934" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a", 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 1f7546ebe96..ed236a25cfb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "eb980fc027ca0200212ba6ad3bf9a1ab3460936a7bb4b04353a9462eecd287a1", "platform": "darwin", @@ -74,10 +74,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -114,6 +110,11 @@ }, "trust": {} }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, "3a834cb85dd8": { "providers": ["github"], "settings": { @@ -121,10 +122,6 @@ }, "trust": {} }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "47d40c6fb90c": { "name": "preflight.check#1", "args": [ @@ -194,6 +191,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -316,6 +318,11 @@ } } }, + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 + }, "70c65c0f7a8e": { "name": "ui.get#1", "args": [ @@ -347,10 +354,6 @@ } } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "789980530ae3": { "name": "linear.status#1", "args": [ @@ -415,6 +418,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -454,10 +462,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "a1b99265507f": { "name": "ui.get#1", "args": [ @@ -764,7 +768,7 @@ "id": "settings-workspace-context-fulfilled.forward:sibling-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "822040616fbb", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -776,7 +780,7 @@ "id": "settings-workspace-context-fulfilled.forward:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -788,7 +792,7 @@ "id": "settings-workspace-context-fulfilled.reverse:sibling-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -800,7 +804,7 @@ "id": "settings-workspace-context-fulfilled.reverse:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -812,7 +816,7 @@ "id": "settings-workspace-context-fulfilled.both-reject-forward:sibling-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "d041d5155ed5", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -824,7 +828,7 @@ "id": "settings-workspace-context-fulfilled.both-reject-forward:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "d041d5155ed5", "d42b1a5610cf"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -836,7 +840,7 @@ "id": "settings-workspace-context-fulfilled.both-reject-reverse:sibling-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "d42b1a5610cf"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -848,7 +852,7 @@ "id": "settings-workspace-context-fulfilled.both-reject-reverse:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "d041d5155ed5", "d42b1a5610cf"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -860,7 +864,7 @@ "id": "settings-workspace-context-fulfilled.reject-peer-pending:sibling-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "d041d5155ed5", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -872,7 +876,7 @@ "id": "settings-workspace-context-fulfilled.reject-peer-pending:settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "d041d5155ed5", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -884,7 +888,7 @@ "id": "settings-workspace-context-fulfilled.timeout:settled", "observation": { "sender": ["baafd23158c8", "ba4739591371", "7fc945a92540", "70c65c0f7a8e"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -896,7 +900,7 @@ "id": "settings-workspace-context-fulfilled.disconnect:settled", "observation": { "sender": ["586159bf259e", "ae1d901c204f", "af6903aed166", "68aa55411b15"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "disconnect": "eb79a9b3682a" @@ -909,7 +913,7 @@ "id": "settings-workspace-context-fulfilled.client-cutover:settled", "observation": { "sender": ["47d40c6fb90c", "cdeb94d60934", "06eff8247d02", "a1b99265507f"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a", "cutover": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/session-create-browser-refused.json b/mobile/rpc-foundation/goldens/session-create-browser-refused.json index 6d99b4474b8..372cacd36ae 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "59b5f0aac2f8c1aab5fc3a457fb69e1a2f46cc88c617c25e638175acb7f7c0cb", "platform": "darwin", @@ -19,9 +19,10 @@ "settledAt": 0, "value": false }, - "bb05a6069ebb": { + "b0f36384bc0f": { "name": "browser.tabCreate#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}", + "sent": 1 }, "c0b693ccb37f": { "name": "toast", @@ -82,7 +83,7 @@ "id": "refused", "observation": { "sender": ["e9f47954fab6"], - "payloads": ["bb05a6069ebb"], + "payloads": ["b0f36384bc0f"], "settlements": { "browser": "7ed3d39f0607" }, diff --git a/mobile/rpc-foundation/goldens/session-create-browser-tab.json b/mobile/rpc-foundation/goldens/session-create-browser-tab.json index 983036cba95..cfdfa32185c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "36dbd24dc3d24be8c14217ced1963d10ef8264438729dd146cbff79d9fbdf279", "platform": "darwin", @@ -54,9 +54,10 @@ "settledAt": 0, "value": true }, - "bb05a6069ebb": { + "b0f36384bc0f": { "name": "browser.tabCreate#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"browser.tabCreate\",\"params\":{\"worktree\":\"id:workspace-1\",\"url\":\"https://example.com/\",\"activate\":true}}", + "sent": 1 }, "c859631e4bcf": { "name": "fetch-pending-browser-tabs", @@ -82,7 +83,7 @@ "id": "created", "observation": { "sender": ["07d997e5200c"], - "payloads": ["bb05a6069ebb"], + "payloads": ["b0f36384bc0f"], "settlements": { "browser": "84e5ca07cb7a" }, 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 dff7ca081cf..9068d2cf52f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "be8d4b4be07b0ee5988471b26813d7d0d2a97fbd789b52e7ce00dd09a2e9d75c", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "13a89fc89dab": { - "name": "files.createFile#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\",\"expectedExecutionHostId\":\"local\"}}" - }, "1516e9dc6c00": { "name": "files.createFile#2", "args": [ @@ -88,13 +84,15 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 }, - "28f2fcd8bdba": { - "name": "files.open#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\"}}" + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 }, "8bdc2aec524d": { "name": "worktree.show#1", @@ -131,10 +129,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -181,9 +175,15 @@ "$rpc": "null" } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + "dcd615a3a7f2": { + "name": "files.open#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\"}}", + "sent": 5 + }, + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 }, "e841975c6b30": { "name": "files.open#1", @@ -219,6 +219,11 @@ } } }, + "e8811eba48a4": { + "name": "files.createFile#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled-2.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 4 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -242,11 +247,11 @@ "e841975c6b30" ], "payloads": [ - "1e5b32902af7", - "9199aee60486", - "e344f453f8a0", - "13a89fc89dab", - "28f2fcd8bdba" + "852980e2efc0", + "e7e6fb5e264b", + "4c5f889d4eb7", + "e8811eba48a4", + "dcd615a3a7f2" ], "settlements": { "markdown": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/session-create-markdown-note.json b/mobile/rpc-foundation/goldens/session-create-markdown-note.json index 1812eb87528..3596bf45e16 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "4118eea1175cba0f15174072f5715f9054ded09a4cb0c359fc4ee41ad00e9440", "platform": "darwin", @@ -18,14 +18,6 @@ "value": {}, "sent": 4 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, - "37cca55d53d5": { - "name": "files.open#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}" - }, "4267c22fd1f9": { "name": "files.createFile#1", "args": [ @@ -61,6 +53,16 @@ } } }, + "4c5f889d4eb7": { + "name": "files.createFile#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}", + "sent": 3 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "8bdc2aec524d": { "name": "worktree.show#1", "args": [ @@ -96,10 +98,6 @@ } } }, - "9199aee60486": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "a56852d6836b": { "name": "status.get#1", "args": [ @@ -133,6 +131,11 @@ } } }, + "ca3214963232": { + "name": "files.open#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"files.open\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\"}}", + "sent": 4 + }, "d38c135a5752": { "name": "files.open#1", "args": [ @@ -175,9 +178,10 @@ "$rpc": "null" } }, - "e344f453f8a0": { - "name": "files.createFile#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"files.createFile\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"untitled.md\",\"expectedExecutionHostId\":\"local\"}}" + "e7e6fb5e264b": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -195,7 +199,7 @@ "id": "created", "observation": { "sender": ["a56852d6836b", "8bdc2aec524d", "4267c22fd1f9", "d38c135a5752"], - "payloads": ["1e5b32902af7", "9199aee60486", "e344f453f8a0", "37cca55d53d5"], + "payloads": ["852980e2efc0", "e7e6fb5e264b", "4c5f889d4eb7", "ca3214963232"], "settlements": { "markdown": "eb79a9b3682a" }, 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 d7ca9412661..813986a4593 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "5ab16800f82813778078e84739e0ac72886c145d20789dedcea9428ee31b9182", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "03647b94e7bf": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "432aeb4f1709": { "busy": false, "diffComments": [], @@ -24,6 +20,11 @@ "$rpc": "null" } }, + "b348c9f55bf6": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 + }, "db47451011c5": { "name": "worktree.show#1", "args": [ @@ -74,7 +75,7 @@ "id": "unchanged", "observation": { "sender": ["db47451011c5"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json index c0188400d1a..c065921c953 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "795286ff495a243059a3eb55ccbbc9b4adfdd2034258f91f9182e83c7492fa60", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "03647b94e7bf": { - "name": "worktree.show#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "aca7af380492": { "name": "worktree.show#1", "args": [ @@ -61,6 +57,11 @@ } } }, + "b348c9f55bf6": { + "name": "worktree.show#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.show\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 + }, "e28b1ad79121": { "busy": false, "diffComments": [ @@ -116,7 +117,7 @@ "id": "loaded", "observation": { "sender": ["aca7af380492"], - "payloads": ["03647b94e7bf"], + "payloads": ["b348c9f55bf6"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-file-tab-read.json b/mobile/rpc-foundation/goldens/session-file-tab-read.json index f495f71dab0..b82865c5e25 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "82c1d8e87e0a87c1c1a6dba7bd4f61e08f77fe0ae1b3758d1b5543bd9719a53f", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "06d27c3812c2": { + "48601b0d7226": { "name": "files.read#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"src/app.ts\"}}", + "sent": 1 }, "5ea03f95e781": { "file": { @@ -81,7 +82,7 @@ "id": "read", "observation": { "sender": ["d2e653f33d26"], - "payloads": ["06d27c3812c2"], + "payloads": ["48601b0d7226"], "settlements": { "file": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json index 0b2a58f2881..d3c80f51706 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "76bccdabb78dc3f16b36987f6b7cefbe41e08167fe39612620e27ad476089f93", "platform": "darwin", @@ -64,10 +64,6 @@ } } }, - "be35c536a20e": { - "name": "markdown.saveTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -75,6 +71,11 @@ "value": { "$rpc": "undefined" } + }, + "f7fe2c70c07e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}", + "sent": 1 } }, "recording": { @@ -84,7 +85,7 @@ "id": "conflicted", "observation": { "sender": ["0d00673cd931"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-markdown-saved.json b/mobile/rpc-foundation/goldens/session-markdown-saved.json index 24b6ea34896..2936259eb93 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "42334358b5e5966001639653b553f15033f6e201d785107871fe056536f0a5e2", "scenarioSha256": "a2b5b73b2455f9efc48361e4b96ab1d3ecc3d136459403c9c3678104604cd774", "platform": "darwin", @@ -70,10 +70,6 @@ } } }, - "be35c536a20e": { - "name": "markdown.saveTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -81,6 +77,11 @@ "value": { "$rpc": "undefined" } + }, + "f7fe2c70c07e": { + "name": "markdown.saveTab#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.saveTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\",\"baseVersion\":\"v1\",\"content\":\"# b\"}}", + "sent": 1 } }, "recording": { @@ -90,7 +91,7 @@ "id": "saved", "observation": { "sender": ["a06e17cbe383"], - "payloads": ["be35c536a20e"], + "payloads": ["f7fe2c70c07e"], "settlements": { "save": "eb79a9b3682a" }, 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 3322f260336..d11a8b880b8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "f46cef9d1c6a5ed6d8b6f1d180cdf5c666f52e043b70feb07e5fccee885ceeda", "platform": "darwin", @@ -49,6 +49,11 @@ } } }, + "781e10561184": { + "name": "files.read#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}", + "sent": 2 + }, "82537e84c006": { "name": "markdown.readTab#1", "args": [ @@ -84,9 +89,10 @@ } } }, - "b084676e5f8f": { + "af5666510c34": { "name": "markdown.readTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}", + "sent": 1 }, "c6cea5310098": { "file": {}, @@ -110,10 +116,6 @@ "value": { "$rpc": "undefined" } - }, - "ff6e4cc603b2": { - "name": "files.read#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"files.read\",\"params\":{\"worktree\":\"id:workspace-1\",\"relativePath\":\"docs/readme.md\"}}" } }, "recording": { @@ -123,7 +125,7 @@ "id": "fell-back", "observation": { "sender": ["82537e84c006", "10a4d64eaaba"], - "payloads": ["b084676e5f8f", "ff6e4cc603b2"], + "payloads": ["af5666510c34", "781e10561184"], "settlements": { "markdown": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-read.json b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json index 7cab7cea919..ae55f7a19c1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "f88c39d410655b229aa740b45ccdaa10186f41f7c6cbff9fed6eaee3f0a55844", "platform": "darwin", @@ -50,9 +50,10 @@ } } }, - "b084676e5f8f": { + "af5666510c34": { "name": "markdown.readTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}", + "sent": 1 }, "d4cf305b17f8": { "file": {}, @@ -87,7 +88,7 @@ "id": "read", "observation": { "sender": ["38b08634cae3"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json index c3a4f1eceba..ec691a189ca 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "63227f28110e90acac78058baa875b1bc7f8895b5033e47016a2ffa9f42f66ce", "platform": "darwin", @@ -57,9 +57,10 @@ } } }, - "b084676e5f8f": { + "af5666510c34": { "name": "markdown.readTab#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"markdown.readTab\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-md\"}}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -77,7 +78,7 @@ "id": "errored", "observation": { "sender": ["287a8e550afb"], - "payloads": ["b084676e5f8f"], + "payloads": ["af5666510c34"], "settlements": { "markdown": "eb79a9b3682a" }, 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 0f4025efcb0..98acf6e61bf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "72a972996461cc58bda2b1c11dbb4ecdbdecd5ff2f977c3d61e40d635f63c1b9", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0442e34fbb3f": { + "11b4a1934825": { "name": "terminal.focus#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}", + "sent": 1 }, "4e4394afbcef": { "activate": { @@ -70,6 +71,11 @@ } } }, + "7cd4f4dc7a60": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 2 + }, "84d74a6de2ca": { "status": "fulfilled", "startedAt": 0, @@ -82,10 +88,6 @@ } } }, - "c9c16f3b6d6f": { - "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" - }, "e495a9a84cf0": { "name": "session.tabs.activate#1", "args": [ @@ -143,7 +145,7 @@ "id": "activated", "observation": { "sender": ["7118e8aeaaae", "e495a9a84cf0"], - "payloads": ["0442e34fbb3f", "c9c16f3b6d6f"], + "payloads": ["11b4a1934825", "7cd4f4dc7a60"], "settlements": { "focus": "ecc5d1639f16", "activate": "84d74a6de2ca" diff --git a/mobile/rpc-foundation/goldens/session-tab-activation-refused.json b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json index 56fd71d507c..8c0f1449a7e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "e5049c9ee2aef93194adf1b9540c1eb4b085e6f975648c5ed605718d19fc6afa", "platform": "darwin", @@ -51,10 +51,6 @@ } } }, - "28eff5fc7100": { - "name": "session.tabs.activate#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}" - }, "7a0a4e34e537": { "status": "fulfilled", "startedAt": 0, @@ -80,6 +76,11 @@ "failure": { "$rpc": "null" } + }, + "ff61d2f9964f": { + "name": "session.tabs.activate#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.activate\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"notifyClients\":false,\"navigation\":\"caller\",\"intent\":\"user\"}}", + "sent": 1 } }, "recording": { @@ -89,7 +90,7 @@ "id": "refused", "observation": { "sender": ["21ff36a206dc"], - "payloads": ["28eff5fc7100"], + "payloads": ["ff61d2f9964f"], "settlements": { "activate": "7a0a4e34e537" }, 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 e322e27d467..569269c1048 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "44e25e8624c6d7f072c5f7aa3c706df29d0e751bb59b3fb58bec003233f7e5e3", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0442e34fbb3f": { + "11b4a1934825": { "name": "terminal.focus#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.focus\",\"params\":{\"terminal\":\"terminal-1\",\"navigation\":\"host\"}}", + "sent": 1 }, "6b74a7e08acf": { "status": "rejected", @@ -70,7 +71,7 @@ "id": "errored", "observation": { "sender": ["cbd74f978cf1"], - "payloads": ["0442e34fbb3f"], + "payloads": ["11b4a1934825"], "settlements": { "focus": "6b74a7e08acf" }, 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 ad125b58074..51e285d8866 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "1b3da0207aef65f4b2348aed334284259170c640e767fb354b9e95f3c1369445", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2d697fe0c9bf": { - "name": "terminal.close#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "3e15def58214": { "activeHandle": "terminal-1", "sessionTabs": [ @@ -36,6 +32,11 @@ } ] }, + "af3f27d99348": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 + }, "ca6a54b1b350": { "name": "terminal.close#1", "args": [ @@ -86,7 +87,7 @@ "id": "kept", "observation": { "sender": ["ca6a54b1b350"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, 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 5611480c6c8..cdbc2e0f166 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "fe83a7d50d08f874d863eb8872bcb24d974c1dc46571a93d3f9184f8feba63a4", "platform": "darwin", @@ -61,6 +61,11 @@ } ] }, + "6b12924233e1": { + "name": "session.tabs.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.close\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"reason\":\"user\"}}", + "sent": 1 + }, "a1c0c7168922": { "name": "unsubscribe-terminal", "value": { @@ -75,10 +80,6 @@ }, "sent": 1 }, - "cc794cc20e4c": { - "name": "session.tabs.close#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.close\",\"params\":{\"worktree\":\"id:workspace-1\",\"tabId\":\"tab-1\",\"reason\":\"user\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -95,7 +96,7 @@ "id": "closed", "observation": { "sender": ["375042b2eaa9"], - "payloads": ["cc794cc20e4c"], + "payloads": ["6b12924233e1"], "settlements": { "close-tab": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-tab-close-terminal.json b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json index 2958b938ed1..4267f0dd135 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "194b010d00fdeca85418870fd053ac500c38cae02e98c4bfc544b8fea78bbcb8", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2d697fe0c9bf": { - "name": "terminal.close#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "7e31b0a0202e": { "name": "terminal.close#1", "args": [ @@ -57,6 +53,11 @@ }, "sent": 1 }, + "af3f27d99348": { + "name": "terminal.close#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.close\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 + }, "c965e2e20176": { "name": "clear-live-input", "value": { @@ -95,7 +96,7 @@ "id": "closed", "observation": { "sender": ["7e31b0a0202e"], - "payloads": ["2d697fe0c9bf"], + "payloads": ["af3f27d99348"], "settlements": { "close-terminal": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-tab-rename.json b/mobile/rpc-foundation/goldens/session-tab-rename.json index 88aced43f41..38c348f1167 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "9e877af8539e5425f65edd6b3ff8af73e719aae2033980411a8e8a3b508dcd9e", "platform": "darwin", @@ -32,15 +32,16 @@ } ] }, + "5a5a35e0f4ab": { + "name": "terminal.rename#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.rename\",\"params\":{\"terminal\":\"terminal-1\",\"title\":\"build\"}}", + "sent": 1 + }, "5d179ad4af0c": { "name": "fetch-terminals", "value": {}, "sent": 1 }, - "89e4126272a3": { - "name": "terminal.rename#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.rename\",\"params\":{\"terminal\":\"terminal-1\",\"title\":\"build\"}}" - }, "986504944223": { "name": "terminal.rename#1", "args": [ @@ -91,7 +92,7 @@ "id": "renamed", "observation": { "sender": ["986504944223"], - "payloads": ["89e4126272a3"], + "payloads": ["5a5a35e0f4ab"], "settlements": { "rename": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-errored.json b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json index 327cb9d79b4..fcc0e5ca517 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "4f55a21a5c42ff8d96ccb1b16de235f91f9f7e38fe90de7191c36c8c16cc4e43", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "1ee5cdadc74e": { + "name": "session.tabs.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 + }, "2f0306c93cc8": { "name": "session.tabs.list#1", "args": [ @@ -44,10 +49,6 @@ } } }, - "30425281a407": { - "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" - }, "49a2260ea0e7": { "accepted": "unapplied", "applicationRevision": 0 @@ -84,7 +85,7 @@ "id": "errored", "observation": { "sender": ["2f0306c93cc8"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json index b344018438a..021117b3108 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "29bee268df8e92fb1e3fd59291262c8d2d04a1b7e9fe40f6ed8dd181b0df828a", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "30425281a407": { + "1ee5cdadc74e": { "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 }, "5a7cc7a45078": { "name": "fetch-started", @@ -103,7 +104,7 @@ "id": "reconciled", "observation": { "sender": ["d46815b7ac09"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/session-tabs-health-refused.json b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json index ac368885e3e..0b2afdb8248 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "101e8ce865088891800680db0e3df787b5f15ceb05ace9840931c384d9732d1c", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "30425281a407": { + "1ee5cdadc74e": { "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 }, "49a2260ea0e7": { "accepted": "unapplied", @@ -90,7 +91,7 @@ "id": "refused", "observation": { "sender": ["98c25056240e"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a" 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 6bd2c7e61d9..bd9830f419e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "5381b6ade796596ac362d4ed64349266e65fe8fd2b4fc778a54315d4b6fda3da", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "30425281a407": { + "1ee5cdadc74e": { "name": "session.tabs.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"session.tabs.list\",\"params\":{\"worktree\":\"id:workspace-1\"}}", + "sent": 1 }, "59faf5cb6372": { "accepted": "unapplied", @@ -91,7 +92,7 @@ "id": "dropped", "observation": { "sender": ["d46815b7ac09"], - "payloads": ["30425281a407"], + "payloads": ["1ee5cdadc74e"], "settlements": { "activate": "84e5ca07cb7a", "reconcile": "eb79a9b3682a", 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 cd693749839..658c4934418 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "d0f5ecc9c8fcb10193f481648215a54460ce5a54a8fbd2ded3921a9599fefc0a", "platform": "darwin", @@ -43,10 +43,6 @@ } ] }, - "5eea50c700fd": { - "name": "terminal.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" - }, "84e5ca07cb7a": { "status": "fulfilled", "startedAt": 0, @@ -95,6 +91,11 @@ } } } + }, + "c08af175e65b": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}", + "sent": 1 } }, "recording": { @@ -104,7 +105,7 @@ "id": "deduped", "observation": { "sender": ["8bdb2a48d7ae"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "84e5ca07cb7a" }, 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 bd37a2ccefb..f9124ff603e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "5c2b3237a14f9df9357ab458b2e21f2df8e68ad6bf6dc5670c0ace7eeb567e80", "platform": "darwin", @@ -47,10 +47,6 @@ } } }, - "5eea50c700fd": { - "name": "terminal.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" - }, "6aa9d70c1c82": { "known": [], "terminals": [] @@ -60,6 +56,11 @@ "startedAt": 0, "settledAt": 0, "value": true + }, + "c08af175e65b": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}", + "sent": 1 } }, "recording": { @@ -69,7 +70,7 @@ "id": "kept", "observation": { "sender": ["328e7f8994b4"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "no-empty": "84e5ca07cb7a" }, diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-merged.json b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json index 1fdbf438465..937b95b4d54 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "9f3fb6e58e8d9ef4f52b2b6c0a42b6e4285d5786060f966261795cf64d055f65", "platform": "darwin", @@ -18,10 +18,6 @@ "value": ["terminal-1", "terminal-2"], "sent": 1 }, - "5eea50c700fd": { - "name": "terminal.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" - }, "727166f3bc25": { "known": [ { @@ -62,6 +58,11 @@ "settledAt": 0, "value": true }, + "c08af175e65b": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}", + "sent": 1 + }, "c2ee5279a532": { "name": "terminal.list#1", "args": [ @@ -118,7 +119,7 @@ "id": "listed", "observation": { "sender": ["c2ee5279a532"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "84e5ca07cb7a" }, diff --git a/mobile/rpc-foundation/goldens/session-terminal-list-refused.json b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json index af7bcf70702..9950472b4fe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "10a8ba5332f4fc2f90cff537ca69f2f1474339cbc4996f67a6feaea70669fb25", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "5eea50c700fd": { - "name": "terminal.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}" - }, "6aa9d70c1c82": { "known": [], "terminals": [] @@ -27,6 +23,11 @@ "settledAt": 0, "value": false }, + "c08af175e65b": { + "name": "terminal.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.list\",\"params\":{\"worktree\":\"id:workspace-1\",\"includeVisualLayouts\":false}}", + "sent": 1 + }, "fcb148236ef4": { "name": "terminal.list#1", "args": [ @@ -70,7 +71,7 @@ "id": "refused", "observation": { "sender": ["fcb148236ef4"], - "payloads": ["5eea50c700fd"], + "payloads": ["c08af175e65b"], "settlements": { "fetch": "7ed3d39f0607" }, diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json index 66ca6310b20..280ba09d19c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4b4b4a8d1acaaec1c8dde0233dc49a696ffe53466578477efcbcdb7263dbd617", "platform": "darwin", @@ -39,6 +39,11 @@ } }, "4f53cda18c2b": [], + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7ca23c4c946b": { "name": "settings.get#1", "args": [ @@ -78,10 +83,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "d52c8e96e222": ["bot-user"], "eb79a9b3682a": { "status": "fulfilled", @@ -99,7 +100,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -111,7 +112,7 @@ "id": "settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, 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 a59f593546c..a0e0132e38f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "cac4980465661fba372e187699741123a4edeb9270125a0a1cad7bbb6a6adebd", "platform": "darwin", @@ -38,6 +38,11 @@ "startedAt": 0 } }, + "271aee91b48d": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, "466ddfe469f9": { "name": "settings.get#2", "args": [ @@ -73,6 +78,11 @@ } }, "4f53cda18c2b": [], + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7ad8a0996352": { "name": "settings.get#2", "args": [ @@ -137,14 +147,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "8f6fe9452bda": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "d52c8e96e222": ["bot-user"], "eb79a9b3682a": { "status": "fulfilled", @@ -162,7 +164,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -174,7 +176,7 @@ "id": "settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -186,7 +188,7 @@ "id": "refresh-pending", "observation": { "sender": ["7ca23c4c946b", "7ad8a0996352"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "refresh": "eb79a9b3682a" @@ -199,7 +201,7 @@ "id": "refused-retains-overrides", "observation": { "sender": ["7ca23c4c946b", "466ddfe469f9"], - "payloads": ["7ddcb1852b39", "8f6fe9452bda"], + "payloads": ["5c52bc3f9e55", "271aee91b48d"], "settlements": { "mount": "eb79a9b3682a", "refresh": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json b/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json index 16347ab5d78..98d54fe8627 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f8ebd2348373b2b39c167735e0c418dfe868511fb5306ecba90cb6f2a905b95e", "platform": "darwin", @@ -39,9 +39,10 @@ } }, "4f53cda18c2b": [], - "7ddcb1852b39": { + "5c52bc3f9e55": { "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "d6140b218abd": { "name": "settings.get#1", @@ -93,7 +94,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -105,7 +106,7 @@ "id": "settled", "observation": { "sender": ["d6140b218abd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, 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 cbf3a47035f..92eb3dc4794 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "f7e63144421a689f05cc50ad87ec901a9eaeb3163165656887be12a5f2753005", "platform": "darwin", @@ -70,9 +70,10 @@ } }, "4f53cda18c2b": [], - "7ddcb1852b39": { + "5c52bc3f9e55": { "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "eb79a9b3682a": { "status": "fulfilled", @@ -90,7 +91,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, @@ -102,7 +103,7 @@ "id": "settled", "observation": { "sender": ["10aeb294c268"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/settings-home-coalesced.json b/mobile/rpc-foundation/goldens/settings-home-coalesced.json index 0c0ed7da29c..1e2c5ec178d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d8d6f738ee11d84d6e9e546624f4babcb42476432f6bddbc74e8519d9ca18370", "platform": "darwin", @@ -96,10 +96,6 @@ } } }, - "13028e692551": { - "name": "preflight.check#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "267fa3075543": { "name": "providers", "value": { @@ -107,9 +103,10 @@ }, "sent": 6 }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "2f9cfbd03d15": { + "name": "linear.status#3", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 9 }, "349f2cb31004": { "name": "preflight.check#1", @@ -146,9 +143,10 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" + "416509928f91": { + "name": "preflight.check#3", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 9 }, "44136fa355b3": {}, "4449b6ee7004": { @@ -190,6 +188,11 @@ } } }, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "4b0d092afb83": { "name": "preflight.check#3", "args": [ @@ -290,6 +293,11 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -357,17 +365,10 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "847430ffa968": { - "name": "linear.status#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, - "86bdff55323d": { - "name": "preflight.check#3", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" + "8672fd66b679": { + "name": "settings.get#3", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 9 }, "a3c30fa6fdda": { "name": "linear.status#1", @@ -402,6 +403,11 @@ } } }, + "aafb12115107": { + "name": "linear.status#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 6 + }, "cdaf45e54941": { "name": "linear.status#2", "args": [ @@ -487,9 +493,10 @@ "startedAt": 0 } }, - "e2311f932df2": { + "e5b0ca52c32c": { "name": "settings.get#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -499,13 +506,15 @@ "$rpc": "undefined" } }, - "ec73eca27964": { - "name": "settings.get#3", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 }, - "f196a3b238ee": { - "name": "linear.status#3", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "f593230fa6a5": { + "name": "preflight.check#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 } }, "recording": { @@ -515,7 +524,7 @@ "id": "settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a", "overlapping-load": "eb79a9b3682a" @@ -536,12 +545,12 @@ "cdaf45e54941" ], "payloads": [ - "7ddcb1852b39", - "42701bb4f394", - "27e92f99be15", - "e2311f932df2", - "13028e692551", - "847430ffa968" + "ee74dff8b8a2", + "4872493b1fb7", + "75ef90fdbf02", + "e5b0ca52c32c", + "f593230fa6a5", + "aafb12115107" ], "settlements": { "load": "eb79a9b3682a", @@ -563,12 +572,12 @@ "078b082b9b55" ], "payloads": [ - "7ddcb1852b39", - "42701bb4f394", - "27e92f99be15", - "e2311f932df2", - "13028e692551", - "847430ffa968" + "ee74dff8b8a2", + "4872493b1fb7", + "75ef90fdbf02", + "e5b0ca52c32c", + "f593230fa6a5", + "aafb12115107" ], "settlements": { "load": "eb79a9b3682a", @@ -593,15 +602,15 @@ "03f34ede1161" ], "payloads": [ - "7ddcb1852b39", - "42701bb4f394", - "27e92f99be15", - "e2311f932df2", - "13028e692551", - "847430ffa968", - "ec73eca27964", - "86bdff55323d", - "f196a3b238ee" + "ee74dff8b8a2", + "4872493b1fb7", + "75ef90fdbf02", + "e5b0ca52c32c", + "f593230fa6a5", + "aafb12115107", + "8672fd66b679", + "416509928f91", + "2f9cfbd03d15" ], "settlements": { "load": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json index 07961f1b812..7b945ef1133 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a32b2fc99e830c58460e6f7c857aed0048738a55501e508eb236604680b9c235", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "349f2cb31004": { "name": "preflight.check#1", "args": [ @@ -52,11 +48,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -107,6 +104,11 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -149,10 +151,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -225,6 +223,11 @@ "value": { "$rpc": "undefined" } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -234,7 +237,7 @@ "id": "settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -246,7 +249,7 @@ "id": "settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, 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 07026fe47a4..55fd2c550aa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "78c48025c4af6cc0f1f136448c0ede9f76b7485d7b33b1356d11dec017bd9053", "platform": "darwin", @@ -46,9 +46,10 @@ } } }, - "13028e692551": { - "name": "preflight.check#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" + "13dcde34ddc4": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 6 }, "267fa3075543": { "name": "providers", @@ -57,10 +58,6 @@ }, "sent": 6 }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "349f2cb31004": { "name": "preflight.check#1", "args": [ @@ -130,11 +127,17 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, + "5362be344986": { + "name": "preflight.check#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 6 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -210,6 +213,11 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, @@ -277,14 +285,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "847430ffa968": { - "name": "linear.status#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -325,6 +325,11 @@ } } }, + "aafb12115107": { + "name": "linear.status#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 6 + }, "cdaf45e54941": { "name": "linear.status#2", "args": [ @@ -410,10 +415,6 @@ "startedAt": 0 } }, - "e2311f932df2": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -421,6 +422,11 @@ "value": { "$rpc": "undefined" } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -430,7 +436,7 @@ "id": "settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -442,7 +448,7 @@ "id": "settled", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -454,7 +460,7 @@ "id": "data-present", "observation": { "sender": ["7dadf370725c", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -474,12 +480,12 @@ "cdaf45e54941" ], "payloads": [ - "7ddcb1852b39", - "42701bb4f394", - "27e92f99be15", - "e2311f932df2", - "13028e692551", - "847430ffa968" + "ee74dff8b8a2", + "4872493b1fb7", + "75ef90fdbf02", + "13dcde34ddc4", + "5362be344986", + "aafb12115107" ], "settlements": { "load": "eb79a9b3682a", @@ -501,12 +507,12 @@ "078b082b9b55" ], "payloads": [ - "7ddcb1852b39", - "42701bb4f394", - "27e92f99be15", - "e2311f932df2", - "13028e692551", - "847430ffa968" + "ee74dff8b8a2", + "4872493b1fb7", + "75ef90fdbf02", + "13dcde34ddc4", + "5362be344986", + "aafb12115107" ], "settlements": { "load": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json index 24ecf12e3dc..ce68e6b2bb7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "c22f33a0ed28622d4d53ae31e934056f87d2c10e8dc4475831ae1ee5fd3a9b8b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "2f02be854c04": { "name": "settings.get#1", "args": [ @@ -86,11 +82,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -141,13 +138,14 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -220,6 +218,11 @@ "value": { "$rpc": "undefined" } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -229,7 +232,7 @@ "id": "settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -241,7 +244,7 @@ "id": "settled", "observation": { "sender": ["2f02be854c04", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, 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 8e160b93530..887eda9db0b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4f16b43dddfb9257828342b0297317868df24b03fd98a89c66f5cd1897829d73", "platform": "darwin", @@ -44,10 +44,6 @@ } } }, - "27e92f99be15": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "349f2cb31004": { "name": "preflight.check#1", "args": [ @@ -83,11 +79,12 @@ } } }, - "42701bb4f394": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "44136fa355b3": {}, + "4872493b1fb7": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 3 + }, "569aea0064f4": { "name": "linear.status#1", "args": [ @@ -138,13 +135,14 @@ "startedAt": 0 } }, + "75ef90fdbf02": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 3 + }, "79b8c1b0d1d1": { "host-1": ["github"] }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f1426c2f53b": { "name": "providers", "value": { @@ -217,6 +215,11 @@ "value": { "$rpc": "undefined" } + }, + "ee74dff8b8a2": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 3 } }, "recording": { @@ -226,7 +229,7 @@ "id": "settings-pending", "observation": { "sender": ["da2c3b49481f", "66bc794cca63", "569aea0064f4"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, @@ -238,7 +241,7 @@ "id": "settled", "observation": { "sender": ["163d57ce469e", "349f2cb31004", "a3c30fa6fdda"], - "payloads": ["7ddcb1852b39", "42701bb4f394", "27e92f99be15"], + "payloads": ["ee74dff8b8a2", "4872493b1fb7", "75ef90fdbf02"], "settlements": { "load": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json index dd3e5ecefb0..fdbd92fe761 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "b6fb40be3bb92d7d9f1a79d99dee077cf95097077917679dc99702f912241fa4", "platform": "darwin", @@ -98,9 +98,10 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", @@ -147,10 +148,6 @@ "isRpcDeliveryUnknown": false } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -189,9 +186,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -201,7 +204,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -213,7 +216,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "68155c1eb584", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b5553341aa32" }, diff --git a/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json b/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json index ffb7ef6a3e1..847a7cbee55 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "31f8a348322551738b14207b3477bae492d48d45c5d51be4d97ffaca2fe2b6e1", "platform": "darwin", @@ -100,9 +100,10 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", @@ -154,10 +155,6 @@ } ] }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -196,9 +193,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -208,7 +211,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -220,7 +223,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "554718767f5a", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "b27c85677730" }, 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 10eeb206a42..42c477e9d59 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "1347663aba0ada1eee8e88fac306757dc0d29fe21f0d062ac2d3968a30a2f214", "platform": "darwin", @@ -105,9 +105,10 @@ "isRpcDeliveryUnknown": true } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "84ca21355dd8": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 3 }, "9270aeb7d9c6": { "status": "pending", @@ -144,10 +145,6 @@ } } }, - "b69a18178af8": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "bae1ab4f96f9": { "name": "repo.list#1", "args": [ @@ -186,9 +183,15 @@ } } }, - "eac54552d8bc": { + "d0694611a403": { "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 2 + }, + "fd387fe4211d": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 } }, "recording": { @@ -198,7 +201,7 @@ "id": "pending", "observation": { "sender": ["26accd69bc48", "090c88478661"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc"], + "payloads": ["fd387fe4211d", "d0694611a403"], "settlements": { "load": "9270aeb7d9c6" }, @@ -210,7 +213,7 @@ "id": "settled", "observation": { "sender": ["bae1ab4f96f9", "10aeb294c268", "9c4be43625f0"], - "payloads": ["6bdbf70bafa2", "eac54552d8bc", "b69a18178af8"], + "payloads": ["fd387fe4211d", "d0694611a403", "84ca21355dd8"], "settlements": { "load": "618234017ab2" }, diff --git a/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json b/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json index 76fb17ab7ef..d6520bf7b70 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "adebd553e2648278d719a1d7299cb36683fce714682a1ab7b49d4c9027eea34e", "platform": "darwin", @@ -88,17 +88,10 @@ "startedAt": 0 } }, - "25793d7c00a5": { - "name": "repo.list#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -115,9 +108,15 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 + }, + "768c9c0dbef7": { + "name": "repo.list#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "7f85f28c922e": { "name": "host.platform#1", @@ -293,9 +292,10 @@ "status": "pending", "startedAt": 60000 }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -358,6 +358,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -367,7 +372,7 @@ "id": "settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -380,7 +385,7 @@ "id": "settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -400,7 +405,7 @@ "id": "cache-hit", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a", @@ -421,7 +426,7 @@ "id": "cache-warm", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a", @@ -450,11 +455,11 @@ "ab830a39e448" ], "payloads": [ - "6bdbf70bafa2", - "2aac570a2011", - "4335d4b6568f", - "df7cbc246ac0", - "25793d7c00a5" + "5730368193ee", + "c78ad1abf9d8", + "6d3dba7b22b6", + "fc07cf302dbe", + "768c9c0dbef7" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json index 5f386ff41a2..06b69a885ee 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b45eba2007e8e2668f524cd7503b8a711eba67816c9c35af5c3725a1afe32d8d", "platform": "darwin", @@ -88,13 +88,10 @@ "startedAt": 0 } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -111,9 +108,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7f85f28c922e": { "name": "host.platform#1", @@ -260,9 +258,10 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -317,6 +316,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -326,7 +330,7 @@ "id": "settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -339,7 +343,7 @@ "id": "settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 a0fbf2e160a..0f0f8d4658e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b1c0b957b828c32e7ec388ec6668273fe84bbe5d11d8286b9a246fa92395a26e", "platform": "darwin", @@ -122,21 +122,10 @@ "startedAt": 0 } }, - "25793d7c00a5": { - "name": "repo.list#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "3fc2a1b54e13": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -191,13 +180,20 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, - "7b3a5fc49e55": { - "name": "host.platform#2", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "762a39050969": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 8 + }, + "768c9c0dbef7": { + "name": "repo.list#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "7f85f28c922e": { "name": "host.platform#1", @@ -279,6 +275,11 @@ ], "sent": 1 }, + "8878ee651abe": { + "name": "ssh.listTargetSummaries#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 8 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -355,6 +356,11 @@ ], "sent": 5 }, + "9b1f8c87d440": { + "name": "host.platform#2", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 8 + }, "9b746c7d3d3a": { "name": "repoIconsByName", "value": [], @@ -477,6 +483,11 @@ "startedAt": 0 } }, + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 + }, "c87423a99f8a": { "name": "hostLabelById", "value": [["ssh:ssh-1", "SSH"]], @@ -487,10 +498,6 @@ "value": "linux", "sent": 8 }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -545,9 +552,10 @@ } } }, - "f81341806cd3": { - "name": "ssh.listTargetSummaries#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -557,7 +565,7 @@ "id": "settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -570,7 +578,7 @@ "id": "settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -590,7 +598,7 @@ "id": "data-present", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "822040616fbb", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" @@ -617,11 +625,11 @@ "c6d210e4939c" ], "payloads": [ - "6bdbf70bafa2", - "2aac570a2011", - "4335d4b6568f", - "df7cbc246ac0", - "25793d7c00a5" + "5730368193ee", + "c78ad1abf9d8", + "6d3dba7b22b6", + "fc07cf302dbe", + "768c9c0dbef7" ], "settlements": { "mount": "eb79a9b3682a", @@ -653,14 +661,14 @@ "a2a51f870c81" ], "payloads": [ - "6bdbf70bafa2", - "2aac570a2011", - "4335d4b6568f", - "df7cbc246ac0", - "25793d7c00a5", - "f81341806cd3", - "3fc2a1b54e13", - "7b3a5fc49e55" + "5730368193ee", + "c78ad1abf9d8", + "6d3dba7b22b6", + "fc07cf302dbe", + "768c9c0dbef7", + "8878ee651abe", + "762a39050969", + "9b1f8c87d440" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json index f3d8c95a214..16b69d2d905 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "867b6905c8a533ddd1c7c8174bf4aadd5fd725cc72bdddbcb2ea8af26e219078", "platform": "darwin", @@ -88,13 +88,10 @@ "startedAt": 0 } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -111,9 +108,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7f85f28c922e": { "name": "host.platform#1", @@ -255,9 +253,10 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -312,6 +311,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -321,7 +325,7 @@ "id": "settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -334,7 +338,7 @@ "id": "settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "c4360222a04e", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 eeea07906cf..50ba55b3459 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d8a00a72849f1ed254c3b35ebcc330dd1bb15b189f006bd1517853a19e53de6c", "platform": "darwin", @@ -36,9 +36,10 @@ ], "sent": 1 }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "82e9a5619b14": { "name": "repoIdsByName", @@ -121,7 +122,7 @@ "id": "single-host-without-label-lookups", "observation": { "sender": ["f4531cb1cb86"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" 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 3fc3debdf99..5c864dab639 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "741db13a84dbcec2e97e80605d742e69558954657c72f8450f3f8bc177dd01b6", "platform": "darwin", @@ -119,13 +119,10 @@ } } }, - "2aac570a2011": { - "name": "ssh.listTargetSummaries#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "5730368193ee": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "6134b73f18d0": { "repoColorsByName": [ @@ -142,9 +139,10 @@ ["Remote", "repo-2"] ] }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "7f85f28c922e": { "name": "host.platform#1", @@ -252,9 +250,10 @@ } } }, - "df7cbc246ac0": { - "name": "host.platform#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}" + "c78ad1abf9d8": { + "name": "ssh.listTargetSummaries#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.listTargetSummaries\"}", + "sent": 4 }, "eb79a9b3682a": { "status": "fulfilled", @@ -309,6 +308,11 @@ } } } + }, + "fc07cf302dbe": { + "name": "host.platform#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"host.platform\"}", + "sent": 4 } }, "recording": { @@ -318,7 +322,7 @@ "id": "settings-pending", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "090c88478661", "02449e890487"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "9270aeb7d9c6" @@ -331,7 +335,7 @@ "id": "settled", "observation": { "sender": ["b40605df86b7", "f7539bb05693", "10aeb294c268", "7f85f28c922e"], - "payloads": ["6bdbf70bafa2", "2aac570a2011", "4335d4b6568f", "df7cbc246ac0"], + "payloads": ["5730368193ee", "c78ad1abf9d8", "6d3dba7b22b6", "fc07cf302dbe"], "settlements": { "mount": "eb79a9b3682a", "load": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json index 6ce0b50450d..b6ce3cb4eee 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "7a8d0a5305aafea56733c229989b6e825fe9b8a681f48f6cef405350304520b6", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -81,10 +82,6 @@ "startedAt": 0 } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -129,9 +126,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", @@ -166,10 +164,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -207,6 +201,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -240,9 +239,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -276,6 +276,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -292,11 +297,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -316,11 +321,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" 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 b2080c6e50c..7bb90d983bd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a11756ecaf7c2d3955b9512aa7479ca55d810341f1492f472985abb538e140e8", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "02af097a98a1": { + "name": "folderWorkspace.list#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 10 + }, + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "18d27f5a5ff4": { "name": "settings.get#1", @@ -139,10 +145,6 @@ } } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3c70da5d6d8e": { "status": "fulfilled", "startedAt": 0, @@ -221,17 +223,20 @@ } } }, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" - }, - "50c2305ef0d9": { - "name": "worktree.ps#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, - "50e357f2ca93": { + "51a07835736f": { "name": "settings.get#2", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 10 + }, + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 + }, + "585d375a76d6": { + "name": "projectGroup.list#2", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 10 }, "59db06c656b6": { "name": "repo.list#2", @@ -332,17 +337,10 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "798651b41a43": { - "name": "repo.list#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, - "8c960b5b9772": { - "name": "folderWorkspace.list#2", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" + "71747883c892": { + "name": "worktree.ps#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 10 }, "9270aeb7d9c6": { "status": "pending", @@ -456,9 +454,10 @@ "startedAt": 0 } }, - "aeee13be426f": { - "name": "projectGroup.list#2", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "9dda22b962df": { + "name": "repo.list#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 10 }, "b82176ce4d53": { "name": "worktree.ps#2", @@ -507,6 +506,11 @@ "worktrees": [] } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -540,9 +544,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -577,6 +582,11 @@ } } }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 + }, "fd056a696c48": { "name": "folderWorkspace.list#2", "args": [ @@ -617,11 +627,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -641,11 +651,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -665,11 +675,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "3c70da5d6d8e" @@ -694,16 +704,16 @@ "92b727c611a8" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096", - "798651b41a43", - "8c960b5b9772", - "aeee13be426f", - "50e357f2ca93", - "50c2305ef0d9" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce", + "9dda22b962df", + "02af097a98a1", + "585d375a76d6", + "51a07835736f", + "71747883c892" ], "settlements": { "load": "3c70da5d6d8e", @@ -729,16 +739,16 @@ "b82176ce4d53" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096", - "798651b41a43", - "8c960b5b9772", - "aeee13be426f", - "50e357f2ca93", - "50c2305ef0d9" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce", + "9dda22b962df", + "02af097a98a1", + "585d375a76d6", + "51a07835736f", + "71747883c892" ], "settlements": { "load": "3c70da5d6d8e", diff --git a/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json b/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json index f2a9854e2d7..47384e8425a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "def0640be601a8013f9537f161b60d8c14ac9551931e5ee4d4cc2acd3c2baf2a", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "1e08ef8dfeae": { "name": "worktree.ps#1", @@ -42,10 +43,6 @@ "startedAt": 0 } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3f303df2ad9f": { "name": "settings.get#1", "args": [ @@ -72,9 +69,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", @@ -109,10 +107,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -198,6 +192,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -231,9 +230,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -267,6 +267,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -283,11 +288,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -307,11 +312,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" 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 b04fed14d99..44306021e90 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "17c31d0c2b7ae5322fd59bafcfa1d2779ae9eff841e12c0cf16b27e454b49f13", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "14a657727096": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" + "127f5062fa38": { + "name": "projectGroup.list#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}", + "sent": 5 }, "1e08ef8dfeae": { "name": "worktree.ps#1", @@ -42,10 +43,6 @@ "startedAt": 0 } }, - "37aefcdc3665": { - "name": "folderWorkspace.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}" - }, "3f303df2ad9f": { "name": "settings.get#1", "args": [ @@ -72,9 +69,10 @@ } }, "44136fa355b3": {}, - "49b164f9bbd1": { - "name": "projectGroup.list#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"projectGroup.list\"}" + "57dd11722848": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 5 }, "658e0bc6b0fc": { "name": "folderWorkspace.list#1", @@ -109,10 +107,6 @@ } } }, - "6bdbf70bafa2": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -195,6 +189,11 @@ } } }, + "ca3245195c36": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "cde27afd4f31": { "name": "repo.list#1", "args": [ @@ -228,9 +227,10 @@ } } }, - "e4b1a04958da": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "da3f602d00fc": { + "name": "folderWorkspace.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"folderWorkspace.list\"}", + "sent": 5 }, "f11be1e3e504": { "name": "worktree.ps#1", @@ -264,6 +264,11 @@ } } } + }, + "f7d94a4630ce": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 5 } }, "recording": { @@ -280,11 +285,11 @@ "1e08ef8dfeae" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "9270aeb7d9c6" @@ -304,11 +309,11 @@ "f11be1e3e504" ], "payloads": [ - "6bdbf70bafa2", - "37aefcdc3665", - "49b164f9bbd1", - "e4b1a04958da", - "14a657727096" + "57dd11722848", + "da3f602d00fc", + "127f5062fa38", + "ca3245195c36", + "f7d94a4630ce" ], "settlements": { "load": "bef8ec25072d" diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json b/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json index d21675c3329..42d76dea018 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "c08cce5d1f71761dbf504863b736e5546abb42b9ff4ab8ced65c7c42e3d66c0e", "platform": "darwin", @@ -77,10 +77,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -171,6 +167,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -205,6 +206,11 @@ }, "sent": 0 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -325,6 +331,16 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -376,6 +392,11 @@ "value": [], "sent": 5 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -494,10 +515,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -623,10 +640,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -639,10 +652,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -651,10 +660,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -685,11 +690,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -750,11 +755,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 227a1a8476d..fe9ad7f45e9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "b23c3076081901c89e8a8fb8d20028e03f030db040c9cd793b6f2c7cd49d8f25", "platform": "darwin", @@ -103,10 +103,6 @@ "value": {}, "sent": 5 }, - "12ff4d4f8fc0": { - "name": "linear.status#2", - "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "16348b11fcba": { "name": "defaultGitHubPreset", "value": "issues", @@ -137,10 +133,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -260,6 +252,11 @@ "value": false, "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -348,10 +345,6 @@ } } }, - "3fc2a1b54e13": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "3fee2a1d2652": { "name": "linearFilter", "value": "all", @@ -401,6 +394,11 @@ "value": "issues", "sent": 10 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "528091bec621": { "name": "githubMode", "value": "items", @@ -551,9 +549,10 @@ } } }, - "70c1fe53348e": { - "name": "status.get#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "6fb34b13c14e": { + "name": "preflight.check#2", + "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 10 }, "7126d29ddcda": { "name": "ui.get#2", @@ -629,20 +628,26 @@ "value": false, "sent": 5 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, "83f55c58a6c5": { "name": "showCreateTargetPicker", "value": false, "sent": 5 }, - "84b10f34b617": { - "name": "ui.get#2", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "851fcb1af715": { "name": "query", "value": "is:issue is:open", "sent": 10 }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -750,6 +755,16 @@ "value": false, "sent": 5 }, + "96cb852fd9c8": { + "name": "status.get#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 6 + }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9abed258acba": { "name": "showGitHubPagePicker", "value": false, @@ -886,10 +901,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "afb75a8d93f3": { "name": "showLinearWorkspacePicker", "value": false, @@ -912,15 +923,16 @@ "value": false, "sent": 0 }, - "b9ce3caa927f": { - "name": "preflight.check#2", - "json": "{\"id\":\"frame-9\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "ba7facf123fb": { "name": "selectedLinearTeamIds", "value": [], "sent": 10 }, + "beb06f5a697a": { + "name": "linear.status#2", + "json": "{\"id\":\"frame-10\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 10 + }, "c0016b5b1033": { "name": "showGitHubProjectPicker", "value": false, @@ -943,6 +955,11 @@ "value": [], "sent": 5 }, + "c5ddb311b886": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 10 + }, "c6178e6a0f4e": { "hydrated": false, "settings": {} @@ -1102,6 +1119,11 @@ }, "sent": 5 }, + "dd92976a6365": { + "name": "ui.get#2", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 10 + }, "ddd2bd23169a": { "name": "githubProjectHiddenFieldIdsByView", "value": {}, @@ -1147,10 +1169,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -1180,10 +1198,6 @@ "value": "is:issue is:open", "sent": 10 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -1192,10 +1206,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "ef60e60436d0": { "name": "showGitLabViewPicker", "value": false, @@ -1248,11 +1258,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1313,11 +1323,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1397,11 +1407,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -1482,12 +1492,12 @@ "c9c0513fdcb9" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8" ], "settlements": { "mount": "eb79a9b3682a", @@ -1611,16 +1621,16 @@ "3986390fc039" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb", - "70c1fe53348e", - "3fc2a1b54e13", - "84b10f34b617", - "b9ce3caa927f", - "12ff4d4f8fc0" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391", + "96cb852fd9c8", + "c5ddb311b886", + "dd92976a6365", + "6fb34b13c14e", + "beb06f5a697a" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json index 227a33dc771..8a1b8238b27 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a510ff7505cddbd6dad3c7e5a2dcde206a5dab1940901511d72c97aca576a6f1", "platform": "darwin", @@ -77,10 +77,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -176,6 +172,11 @@ "value": "all", "sent": 5 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -210,6 +211,11 @@ }, "sent": 0 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -354,6 +360,16 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -409,6 +425,11 @@ "hydrated": true, "settings": {} }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -516,10 +537,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -606,10 +623,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -622,10 +635,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -634,10 +643,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -668,11 +673,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -733,11 +738,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 c38b4ebe0a4..bde3095c021 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "d4a2fef3aefb78bdb4aed94fda982124f24a3af3832227654d324735f44aaeeb", "platform": "darwin", @@ -98,10 +98,6 @@ "value": false, "sent": 0 }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "1f7d21cec906": { "name": "ui.get#1", "args": [ @@ -175,6 +171,11 @@ "value": false, "sent": 0 }, + "32dffd7f2f66": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 5 + }, "334b82d94582": { "name": "linearStatusPickerItem", "value": { @@ -209,6 +210,11 @@ "value": false, "sent": 5 }, + "5014b6118ca4": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 5 + }, "546c38d1781a": { "name": "mergeMethodProjectRow", "value": { @@ -307,6 +313,16 @@ "value": false, "sent": 0 }, + "7e22edf8e391": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 5 + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "85beb8cfde14": { "name": "mergeMethodTaskItem", "value": { @@ -338,6 +354,11 @@ }, "sent": 0 }, + "977d0336784f": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 5 + }, "9b1d9febbcf6": { "name": "showLinearGroupPicker", "value": false, @@ -435,10 +456,6 @@ } } }, - "aba4413b55bb": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, "b341e832c60d": { "name": "projectRowItem", "value": { @@ -510,10 +527,6 @@ } } }, - "e60346521f80": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "e69b48c9e675": { "name": "pendingHostedStateChange", "value": { @@ -526,10 +539,6 @@ "value": false, "sent": 0 }, - "eac54552d8bc": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -538,10 +547,6 @@ "$rpc": "undefined" } }, - "ee444fb637a3": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "f40b9d8aa1eb": { "name": "showLinearFilterPicker", "value": false, @@ -567,11 +572,11 @@ "a4760ef5a9f4" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" @@ -632,11 +637,11 @@ "aa624b10c314" ], "payloads": [ - "1e5b32902af7", - "eac54552d8bc", - "e60346521f80", - "ee444fb637a3", - "aba4413b55bb" + "852980e2efc0", + "5014b6118ca4", + "977d0336784f", + "32dffd7f2f66", + "7e22edf8e391" ], "settlements": { "mount": "eb79a9b3682a" 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 301bc99fa1a..98a9f451543 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "662c3e04e31bce5757f09f91e3e3739fb9d57767b7443be4dc936705b64b1432", "platform": "darwin", @@ -145,6 +145,11 @@ "disabledTuiAgents": [] } }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -152,14 +157,15 @@ "disabledTuiAgents": ["claude"] } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "92e24c796e40": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}", + "sent": 2 + }, "94d10e7369a8": { "name": "setupPrompt", "value": { @@ -186,10 +192,6 @@ }, "sent": 2 }, - "baa74a0ec378": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"orc-1\",\"displayName\":\"ORC-1 Recorded issue\",\"displayNameKind\":\"generated\",\"linkedLinearIssue\":\"ORC-1\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://linear.app/orca/issue/ORC-1\",\"createdWithAgent\":\"claude\"}}" - }, "d78d24fff8fb": { "name": "runtimeTaskSettings", "value": { @@ -214,7 +216,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -227,7 +229,7 @@ "id": "created", "observation": { "sender": ["2473f12c7cdd", "0f72e7ee78c9"], - "payloads": ["7ddcb1852b39", "baa74a0ec378"], + "payloads": ["5c52bc3f9e55", "92e24c796e40"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 a8989b594bb..c601bc14678 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "8ae9e1dbb32d404eac9e01f71dacf1c37497030220a8e988c0093bb7ed2d159b", "platform": "darwin", @@ -45,6 +45,11 @@ "startedAt": 0 } }, + "1fbad6cd3477": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"pr-7\",\"displayName\":\"Recorded pull request\",\"displayNameKind\":\"generated\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://github.com/o/r/pull/7\",\"createdWithAgent\":\"claude\",\"baseBranch\":\"main\",\"linkedPR\":7}}", + "sent": 3 + }, "2473f12c7cdd": { "name": "settings.get#1", "args": [ @@ -106,6 +111,11 @@ "disabledTuiAgents": ["claude"] } }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "759bb7d4b5cf": { "name": "setupPrompt", "value": { @@ -113,10 +123,6 @@ }, "sent": 3 }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8f08c9b94011": { "name": "actionItem", "value": { @@ -219,9 +225,10 @@ "startedAt": 0 } }, - "b66f6d1958b9": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"pr-7\",\"displayName\":\"Recorded pull request\",\"displayNameKind\":\"generated\",\"setupDecision\":\"inherit\",\"activate\":true,\"startupDraft\":\"https://github.com/o/r/pull/7\",\"createdWithAgent\":\"claude\",\"baseBranch\":\"main\",\"linkedPR\":7}}" + "a4bcccf87769": { + "name": "worktree.resolvePrBase#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":7}}", + "sent": 2 }, "d78d24fff8fb": { "name": "runtimeTaskSettings", @@ -244,10 +251,6 @@ "$rpc": "undefined" } }, - "ecc2acd4d70d": { - "name": "worktree.resolvePrBase#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":7}}" - }, "f2ca7e4f0a73": { "name": "navigation", "value": "/h/host-1/session/wt-2?name=Recorded+pull+request&created=1&warning=shallow+clone", @@ -295,7 +298,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -308,7 +311,7 @@ "id": "pr-base-resolved", "observation": { "sender": ["2473f12c7cdd", "f9e183f427ee", "a49b109c46d4"], - "payloads": ["7ddcb1852b39", "ecc2acd4d70d", "b66f6d1958b9"], + "payloads": ["5c52bc3f9e55", "a4bcccf87769", "1fbad6cd3477"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -321,7 +324,7 @@ "id": "created-from-pr-base", "observation": { "sender": ["2473f12c7cdd", "f9e183f427ee", "9e9f36142bbd"], - "payloads": ["7ddcb1852b39", "ecc2acd4d70d", "b66f6d1958b9"], + "payloads": ["5c52bc3f9e55", "a4bcccf87769", "1fbad6cd3477"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json index 7ef6b9f0685..f65f7f8f0f3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "5c4c890e4c71e80fa8847a5e29700fc9df3ac3bd634bad6289db37522fadd621", "platform": "darwin", @@ -66,6 +66,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -112,10 +117,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "8b8197eed660": { "creating": { "$rpc": "null" @@ -164,7 +165,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -177,7 +178,7 @@ "id": "settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json index c2a6e9e28c9..d43ff47b796 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a699a0a5b128fa422dab0c7557b5aa18599b2d23fa6685cdcc02e17edf328af1", "platform": "darwin", @@ -55,6 +55,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -62,10 +67,6 @@ "disabledTuiAgents": ["claude"] } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -144,7 +145,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -157,7 +158,7 @@ "id": "settled", "observation": { "sender": ["d6140b218abd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 a83a38306cb..fc6416118c1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "a5e812cd508826b3f01ec3798c621ab4303de6536a364113f01a4770dd197bb5", "platform": "darwin", @@ -86,6 +86,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -93,10 +98,6 @@ "disabledTuiAgents": ["claude"] } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -141,7 +142,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -154,7 +155,7 @@ "id": "settled", "observation": { "sender": ["10aeb294c268"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-task-write.json b/mobile/rpc-foundation/goldens/settings-task-write.json index 49b9feb84df..cf8af60cfbf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "bbcdefe16b07068a81f3c46ae60df01ccb0fbe5a7c1eade3f584f6f0130c23fe", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "2369258c9999": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultTaskViewPreset\":\"assigned\"}}" - }, "4a8219d725de": { "name": "settings.update#1", "args": [ @@ -76,6 +72,11 @@ "startedAt": 0 } }, + "7f8a022ecd59": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultTaskViewPreset\":\"assigned\"}}", + "sent": 1 + }, "8bdf90b8099a": { "name": "defaultGitHubPreset", "value": "assigned", @@ -97,7 +98,7 @@ "id": "optimistic", "observation": { "sender": ["74827568abb0"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" @@ -110,7 +111,7 @@ "id": "settled", "observation": { "sender": ["4a8219d725de"], - "payloads": ["2369258c9999"], + "payloads": ["7f8a022ecd59"], "settlements": { "mount": "eb79a9b3682a", "write": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json index 27e242abdcb..b303173550d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "287f94e469548f28c9d5591ff6ffb916fa22caa18776b091542b75704c9e1fee", "platform": "darwin", @@ -38,10 +38,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -78,9 +74,10 @@ }, "trust": {} }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 }, "4938921744c6": { "name": "ui.get#1", @@ -115,6 +112,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -175,9 +177,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "789980530ae3": { "name": "linear.status#1", @@ -212,6 +215,11 @@ } } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -251,10 +259,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "a4760ef5a9f4": { "name": "linear.status#1", "args": [ @@ -303,7 +307,7 @@ "id": "settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -315,7 +319,7 @@ "id": "settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 89ed036bcac..75112ded8cf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "76793a56e7b9e596d8c42e9a5a1c47337db32d7437bec2e41d6e7253943f3fd8", "platform": "darwin", @@ -97,14 +97,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, - "13028e692551": { - "name": "preflight.check#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -141,6 +133,16 @@ }, "trust": {} }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, + "31184e123046": { + "name": "linear.status#2", + "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 8 + }, "39bfd36b44ed": { "name": "ui.get#2", "args": [ @@ -166,14 +168,6 @@ "startedAt": 0 } }, - "3fc2a1b54e13": { - "name": "settings.get#2", - "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4938921744c6": { "name": "ui.get#1", "args": [ @@ -207,6 +201,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -267,6 +266,11 @@ "startedAt": 0 } }, + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 + }, "7126d29ddcda": { "name": "ui.get#2", "args": [ @@ -300,9 +304,10 @@ } } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "762a39050969": { + "name": "settings.get#2", + "json": "{\"id\":\"frame-7\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 8 }, "789980530ae3": { "name": "linear.status#1", @@ -362,6 +367,11 @@ "startedAt": 0 } }, + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 + }, "822040616fbb": { "name": "settings.get#1", "args": [ @@ -401,18 +411,6 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, - "847430ffa968": { - "name": "linear.status#2", - "json": "{\"id\":\"frame-6\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" - }, - "84b10f34b617": { - "name": "ui.get#2", - "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" - }, "a4760ef5a9f4": { "name": "linear.status#1", "args": [ @@ -531,6 +529,11 @@ } } }, + "dee8051f4ae6": { + "name": "ui.get#2", + "json": "{\"id\":\"frame-8\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 8 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -539,6 +542,11 @@ "$rpc": "undefined" } }, + "f1c1823caa54": { + "name": "preflight.check#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 8 + }, "f6a09f8c5b85": { "providers": [], "settings": { @@ -554,7 +562,7 @@ "id": "settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -566,7 +574,7 @@ "id": "settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -578,7 +586,7 @@ "id": "data-present", "observation": { "sender": ["563e4c82b345", "789980530ae3", "822040616fbb", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -600,14 +608,14 @@ "39bfd36b44ed" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", @@ -632,14 +640,14 @@ "7126d29ddcda" ], "payloads": [ - "0fb6ff3590e2", - "76de732c569f", - "4335d4b6568f", - "82ff8123c1fe", - "13028e692551", - "847430ffa968", - "3fc2a1b54e13", - "84b10f34b617" + "4f682962c3c3", + "80712cb13084", + "6d3dba7b22b6", + "2e6a7013ce61", + "f1c1823caa54", + "31184e123046", + "762a39050969", + "dee8051f4ae6" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json b/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json index 9684d7654d4..73a6dfafd24 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "ad19fc24973b49ee7d14bc31460a7e4af5d207db6a2375b52b5a0aa878e09205", "platform": "darwin", @@ -38,10 +38,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "234fabe27913": { "name": "preflight.check#1", "args": [ @@ -67,6 +63,11 @@ "startedAt": 0 } }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, "3a834cb85dd8": { "providers": ["github"], "settings": { @@ -74,10 +75,6 @@ }, "trust": {} }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4938921744c6": { "name": "ui.get#1", "args": [ @@ -111,6 +108,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -171,9 +173,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "789980530ae3": { "name": "linear.status#1", @@ -208,9 +211,10 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -294,7 +298,7 @@ "id": "settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -306,7 +310,7 @@ "id": "settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "c4360222a04e", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, 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 74ed238a3c2..c03d2f929dd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "a2c80c9cdbb631f3a8fa648dfbb9e691418467d6ead8fe769d72e7e1d8b552b4", "platform": "darwin", @@ -38,10 +38,6 @@ "startedAt": 0 } }, - "0fb6ff3590e2": { - "name": "preflight.check#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" - }, "10aeb294c268": { "name": "settings.get#1", "args": [ @@ -98,6 +94,11 @@ "startedAt": 0 } }, + "2e6a7013ce61": { + "name": "ui.get#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}", + "sent": 4 + }, "3a834cb85dd8": { "providers": ["github"], "settings": { @@ -105,10 +106,6 @@ }, "trust": {} }, - "4335d4b6568f": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "4938921744c6": { "name": "ui.get#1", "args": [ @@ -142,6 +139,11 @@ } } }, + "4f682962c3c3": { + "name": "preflight.check#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}", + "sent": 4 + }, "563e4c82b345": { "name": "preflight.check#1", "args": [ @@ -202,9 +204,10 @@ "startedAt": 0 } }, - "76de732c569f": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "6d3dba7b22b6": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 4 }, "789980530ae3": { "name": "linear.status#1", @@ -239,9 +242,10 @@ } } }, - "82ff8123c1fe": { - "name": "ui.get#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"ui.get\"}" + "80712cb13084": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 4 }, "a4760ef5a9f4": { "name": "linear.status#1", @@ -291,7 +295,7 @@ "id": "settings-pending", "observation": { "sender": ["234fabe27913", "a4760ef5a9f4", "090c88478661", "5fbdd64c75bc"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, @@ -303,7 +307,7 @@ "id": "settled", "observation": { "sender": ["563e4c82b345", "789980530ae3", "10aeb294c268", "4938921744c6"], - "payloads": ["0fb6ff3590e2", "76de732c569f", "4335d4b6568f", "82ff8123c1fe"], + "payloads": ["4f682962c3c3", "80712cb13084", "6d3dba7b22b6", "2e6a7013ce61"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json index 7aa4002e171..bf6f787e1ac 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "b10ff86086c134284cb0446e8857cd4b55f5ff2bd0507388ec659a95f25e2a19", "platform": "darwin", @@ -58,6 +58,11 @@ }, "sent": 1 }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "5efbd884ea5a": { "creating": false, "error": "Selected agent is disabled. Choose an enabled agent before creating.", @@ -108,10 +113,6 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -153,7 +154,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -166,7 +167,7 @@ "id": "settled", "observation": { "sender": ["7ca23c4c946b"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json index 6e0f2d163d5..bd251d03ccf 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "373ea3743dac4e0845df01d5c8f75c909563b8c517f3858293a478234dc9ca5c", "platform": "darwin", @@ -65,9 +65,10 @@ }, "sent": 1 }, - "7ddcb1852b39": { + "5c52bc3f9e55": { "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -133,7 +134,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -146,7 +147,7 @@ "id": "settled", "observation": { "sender": ["d6140b218abd"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" 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 c4ac9b517af..c386390b1fe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "411f2288f09b7940ceb46304c7fc3325e248bf009ff3a7cc12839d521cfad599", "scenarioSha256": "dfbacbd6392ae8e8199550952fe917e7c01182349df6c99a06eb0682cfd9175c", "platform": "darwin", @@ -96,9 +96,10 @@ }, "sent": 1 }, - "7ddcb1852b39": { + "5c52bc3f9e55": { "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -130,7 +131,7 @@ "id": "settings-pending", "observation": { "sender": ["090c88478661"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "9270aeb7d9c6" @@ -143,7 +144,7 @@ "id": "settled", "observation": { "sender": ["10aeb294c268"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json index deb1920cdb1..4109f1af981 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "08b583790d858a4cb7cf7377126818b6d05766c02587343ec89a167f94094082", "platform": "darwin", @@ -17,9 +17,10 @@ "failures": [], "pending": 0 }, - "90af24dc404f": { + "b5c5cee75a84": { "name": "speech.dictation.chunk#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.chunk\",\"params\":{\"dictationId\":\"dictation-1\",\"audioBase64\":\"ACVKb5S53gM=\",\"sampleRate\":16000}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.chunk\",\"params\":{\"dictationId\":\"dictation-1\",\"audioBase64\":\"ACVKb5S53gM=\",\"sampleRate\":16000}}", + "sent": 1 }, "bc459c132276": { "status": "fulfilled", @@ -77,7 +78,7 @@ "id": "acknowledged", "observation": { "sender": ["c0d15d1b2941"], - "payloads": ["90af24dc404f"], + "payloads": ["b5c5cee75a84"], "settlements": { "chunk": "bc459c132276" }, diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json b/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json index 072ada83bfd..58bc3b9676e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "35fadd03f2c98344e22d6aec2dc85ad15ca5ac8e092fc1c29a20366db5d46628", "platform": "darwin", @@ -64,9 +64,10 @@ } } }, - "e1538fe51a1e": { + "cbb6c5c8ae91": { "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 1 } }, "recording": { @@ -76,7 +77,7 @@ "id": "recording", "observation": { "sender": ["bbe508ab7f95"], - "payloads": ["e1538fe51a1e"], + "payloads": ["cbb6c5c8ae91"], "settlements": { "start": "84e5ca07cb7a" }, 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 ee5d97fb68e..dae94d4acc5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "75b8d1b7ed98b2bf7420986958d0a36222b007c535f85c1308b534301241ec2d", "platform": "darwin", @@ -58,6 +58,11 @@ } } }, + "601f4167c1ac": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 2 + }, "7a657475cacc": { "status": "rejected", "startedAt": 0, @@ -75,10 +80,6 @@ }, "sent": 1 }, - "a78a87e09f05": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "bbe508ab7f95": { "name": "speech.dictation.start#1", "args": [ @@ -112,9 +113,10 @@ } } }, - "e1538fe51a1e": { + "cbb6c5c8ae91": { "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 1 }, "ff7a7828636f": { "name": "keep-awake-release", @@ -131,7 +133,7 @@ "id": "rolled-back", "observation": { "sender": ["bbe508ab7f95", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "start": "7a657475cacc" }, diff --git a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json index 40a0923fcb0..f981332458d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "b1c4a6d6c94d54fb5f60eb2deb437562ededd724140dd3973d842d7c29bf1a60", "platform": "darwin", @@ -46,16 +46,17 @@ } } }, + "601f4167c1ac": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 2 + }, "7ed3d39f0607": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": false }, - "a78a87e09f05": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "bbe508ab7f95": { "name": "speech.dictation.start#1", "args": [ @@ -89,6 +90,11 @@ } } }, + "cbb6c5c8ae91": { + "name": "speech.dictation.start#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}", + "sent": 1 + }, "e0fcd8f8c1a9": { "activeId": { "$rpc": "null" @@ -96,10 +102,6 @@ "idle": false, "started": false }, - "e1538fe51a1e": { - "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"dictation-1\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -116,7 +118,7 @@ "id": "stale-start-cancelled", "observation": { "sender": ["bbe508ab7f95", "58ed4d5abdf0"], - "payloads": ["e1538fe51a1e", "a78a87e09f05"], + "payloads": ["cbb6c5c8ae91", "601f4167c1ac"], "settlements": { "supersede": "eb79a9b3682a", "start": "7ed3d39f0607" diff --git a/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json b/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json index 5baada3b99a..f96bf75b602 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "cc8338e31b7a2dc232238281afd2e3240343bb817a652744789f58ace806325a", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "19545af661f2": { - "name": "speech.dictation.cancel#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, - "3fe14b61ba9c": { + "0469b72b9c8a": { "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 1 }, "6b76435b6f3e": { "error": { @@ -101,6 +98,11 @@ "value": { "$rpc": "undefined" } + }, + "f2afab6e5c12": { + "name": "speech.dictation.cancel#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.cancel\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 2 } }, "recording": { @@ -110,7 +112,7 @@ "id": "cancelled", "observation": { "sender": ["a3d4b25bf713", "b0eeac720acc"], - "payloads": ["3fe14b61ba9c", "19545af661f2"], + "payloads": ["0469b72b9c8a", "f2afab6e5c12"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json b/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json index f1b348d2ac7..97544d156b6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "e49a25f36fe41125d875205f7d543218078b87f0039f16ba3dc2f10c6a9e9860", "platform": "darwin", @@ -13,9 +13,15 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "3fe14b61ba9c": { + "0469b72b9c8a": { "name": "speech.dictation.start#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.start\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 1 + }, + "12aee19e9a0c": { + "name": "speech.dictation.finish#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}", + "sent": 2 }, "5ef2dfd4108a": { "name": "speech.dictation.finish#1", @@ -90,10 +96,6 @@ } } }, - "a79e628b898b": { - "name": "speech.dictation.finish#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.finish\",\"params\":{\"dictationId\":\"mobile-dictation-1767225600000-dakoxjr8wun\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -110,7 +112,7 @@ "id": "transcribed", "observation": { "sender": ["a3d4b25bf713", "5ef2dfd4108a"], - "payloads": ["3fe14b61ba9c", "a79e628b898b"], + "payloads": ["0469b72b9c8a", "12aee19e9a0c"], "settlements": { "mount": "eb79a9b3682a", "start": "eb79a9b3682a", 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 4ec0b55a0ba..1e11dffa6ae 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "69c1c20ea667a2b6a5b53aeb3d9af11b2b707e04086e15ee4ff9e954b1701851", "platform": "darwin", @@ -58,9 +58,10 @@ } } }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 } }, "recording": { @@ -70,7 +71,7 @@ "id": "denied", "observation": { "sender": ["db814c0e0956"], - "payloads": ["f7f1557b866b"], + "payloads": ["f98fd51d5ce2"], "settlements": { "list": "100447f8b483" }, diff --git a/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json b/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json index 9434ce2ec3e..29ee436b5b5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "748e1bc0575fca6baab51b19cbbea5ac6185fca2a15dc4d8577212134355cd7e", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0ea7d26d0706": { - "name": "speech.dictation.setup#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}" - }, "374a424a4fcb": { "name": "speech.dictation.setup#1", "args": [ @@ -100,6 +96,16 @@ } } }, + "73dfd7a0c915": { + "name": "speech.dictation.setup#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"speech.dictation.setup\",\"params\":{\"enabled\":true,\"modelId\":\"whisper-small\"}}", + "sent": 4 + }, + "74cafa3ceeba": { + "name": "speech.models.download#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 2 + }, "7c5b27891a8f": { "configure": { "enabled": true, @@ -130,6 +136,11 @@ "selectedModelId": "whisper-small" } }, + "90128f3a26be": { + "name": "speech.models.delete#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}", + "sent": 3 + }, "a2879fd6371d": { "status": "fulfilled", "startedAt": 0, @@ -222,17 +233,10 @@ "$rpc": "undefined" } }, - "f14b5bb0c614": { - "name": "speech.models.delete#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.delete\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7594a980fe2": { - "name": "speech.models.download#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.download\",\"params\":{\"modelId\":\"whisper-small\"}}" - }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 }, "fc5fb77f49bb": { "status": "fulfilled", @@ -252,7 +256,7 @@ "id": "settled", "observation": { "sender": ["4670310cd94e", "d0708dcdf365", "c41375ac7391", "374a424a4fcb"], - "payloads": ["f7f1557b866b", "f7594a980fe2", "f14b5bb0c614", "0ea7d26d0706"], + "payloads": ["f98fd51d5ce2", "74cafa3ceeba", "90128f3a26be", "73dfd7a0c915"], "settlements": { "list": "a2879fd6371d", "download": "eb79a9b3682a", 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 a9d0190ad29..e6049326755 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "0ba2d8283fe98206c7500b62732e30acdc5b8e55f50b7ea8cae96403b803d519", "platform": "darwin", @@ -58,9 +58,10 @@ } } }, - "f7f1557b866b": { + "f98fd51d5ce2": { "name": "speech.models.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"speech.models.list\",\"params\":null}", + "sent": 1 } }, "recording": { @@ -70,7 +71,7 @@ "id": "legacy-desktop", "observation": { "sender": ["673374bd1eb2"], - "payloads": ["f7f1557b866b"], + "payloads": ["f98fd51d5ce2"], "settlements": { "list": "100447f8b483" }, diff --git a/mobile/rpc-foundation/goldens/structured-launch-created.json b/mobile/rpc-foundation/goldens/structured-launch-created.json index b643f6049f4..bd1b22126c1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "0b5dd55868490e4d62d7d718821dec9634773b20d32fe9889523606a3f6b9168", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "4a8f44bda967": { + "3db129933d79": { "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 }, "6d6669cd1a85": { "status": "fulfilled", @@ -26,10 +27,6 @@ "sessionId": "claude_00000000_0000_4000_8000_000000000001" } }, - "87c3a18d4168": { - "name": "agentSession.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" - }, "bc88a2996f1c": { "name": "agentSession.createSupport#1", "args": [ @@ -64,6 +61,11 @@ } } }, + "ca22846fa804": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 2 + }, "d00057b53c3e": { "launched": { "kind": "created", @@ -124,7 +126,7 @@ "id": "created", "observation": { "sender": ["bc88a2996f1c", "d786cd5ee0ac"], - "payloads": ["4a8f44bda967", "87c3a18d4168"], + "payloads": ["3db129933d79", "ca22846fa804"], "settlements": { "claude": "6d6669cd1a85" }, diff --git a/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json index cd057eaa04d..87a9e74ff08 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "64916f2d8ab51132b08c3e8c72f89c3a2698d83945def294f42edf22eb6d08ea", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "4a8f44bda967": { + "3db129933d79": { "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 }, "509ea9274732": { "name": "agentSession.create#1", @@ -73,10 +74,6 @@ "message": "No agent" } }, - "87c3a18d4168": { - "name": "agentSession.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" - }, "bc88a2996f1c": { "name": "agentSession.createSupport#1", "args": [ @@ -111,6 +108,11 @@ } } }, + "ca22846fa804": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 2 + }, "cddfb66db4f3": { "launched": { "kind": "unknown", @@ -125,7 +127,7 @@ "id": "refused", "observation": { "sender": ["bc88a2996f1c", "509ea9274732"], - "payloads": ["4a8f44bda967", "87c3a18d4168"], + "payloads": ["3db129933d79", "ca22846fa804"], "settlements": { "claude": "57068cb6a8b6" }, 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 53c59615ea2..8d286a8f73e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "fb1ab1209f0a7c03ee1b3985401ce2df080d673532f045c4fca26e754d5e5a9f", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "00c2dc84f227": { + "name": "agentSession.create#2", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 3 + }, + "3db129933d79": { + "name": "agentSession.createSupport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 + }, "4a72f70dd463": { "name": "agentSession.create#1", "args": [ @@ -54,10 +64,6 @@ } } }, - "4a8f44bda967": { - "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" - }, "5576fc62b696": { "name": "agentSession.create#2", "args": [ @@ -104,10 +110,6 @@ } } }, - "68ca9e9559ad": { - "name": "agentSession.create#2", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" - }, "6d6669cd1a85": { "status": "fulfilled", "startedAt": 0, @@ -117,10 +119,6 @@ "sessionId": "claude_00000000_0000_4000_8000_000000000001" } }, - "87c3a18d4168": { - "name": "agentSession.create#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" - }, "bc88a2996f1c": { "name": "agentSession.createSupport#1", "args": [ @@ -155,6 +153,11 @@ } } }, + "ca22846fa804": { + "name": "agentSession.create#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.create\",\"params\":{\"envelope\":{\"sessionId\":\"claude_00000000_0000_4000_8000_000000000001\",\"clientOperationId\":\"1767225600000-00000000000040008000000000000002\",\"expectedRuntimeFence\":null,\"payloadFingerprint\":\"ce04a6ad4f07079b36cb0b4e9b1bcfd95481b5cb2428fbe93b3c0cf995ef8605\"},\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 2 + }, "d00057b53c3e": { "launched": { "kind": "created", @@ -169,7 +172,7 @@ "id": "replayed", "observation": { "sender": ["bc88a2996f1c", "4a72f70dd463", "5576fc62b696"], - "payloads": ["4a8f44bda967", "87c3a18d4168", "68ca9e9559ad"], + "payloads": ["3db129933d79", "ca22846fa804", "00c2dc84f227"], "settlements": { "claude": "6d6669cd1a85" }, diff --git a/mobile/rpc-foundation/goldens/structured-launch-support-refused.json b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json index abea0aa9014..1274bc56125 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "d8928461e3295d265872e5f98fb8aad445b5edc55fc76f137e45c0cff0d8b961", "platform": "darwin", @@ -21,9 +21,10 @@ "kind": "unsupported" } }, - "4a8f44bda967": { + "3db129933d79": { "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 }, "99caa4276b06": { "name": "agentSession.createSupport#1", @@ -73,7 +74,7 @@ "id": "unsupported", "observation": { "sender": ["99caa4276b06"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "2c227fd1941f" }, diff --git a/mobile/rpc-foundation/goldens/structured-launch-unsupported.json b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json index 270fb99ba93..497c8f8f9f4 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "c30e9cae49e134715c009a98f423f3e4a9d552c014be3e28b38e98c57999b6f5", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "4a8f44bda967": { + "3db129933d79": { "name": "agentSession.createSupport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agentSession.createSupport\",\"params\":{\"worktree\":\"id:workspace-1\",\"agent\":\"claude\"}}", + "sent": 1 }, "551313dcc738": { "launched": { @@ -75,7 +76,7 @@ "id": "unsupported", "observation": { "sender": ["bef30d717da6"], - "payloads": ["4a8f44bda967"], + "payloads": ["3db129933d79"], "settlements": { "claude": "dd51c5566f19" }, diff --git a/mobile/rpc-foundation/goldens/tasks-route-repo-list.json b/mobile/rpc-foundation/goldens/tasks-route-repo-list.json index 993fc4f2b50..9df5c7cbdca 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d1810575d5f0e7a45f9f9a327c271f0ed483b16b21b65cfb5fcfa9dc90baf6c8", "scenarioSha256": "b62ca571d4defcc2e53960033c5b4eb3f7e406b57664664cbc6a173041a9f803", "platform": "darwin", @@ -80,9 +80,10 @@ } } }, - "6bdbf70bafa2": { + "5730368193ee": { "name": "repo.list#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 1 }, "9270aeb7d9c6": { "status": "pending", @@ -155,7 +156,7 @@ "id": "repos-pending", "observation": { "sender": ["26accd69bc48"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "9270aeb7d9c6" @@ -168,7 +169,7 @@ "id": "repos-loaded", "observation": { "sender": ["49bee46155dd"], - "payloads": ["6bdbf70bafa2"], + "payloads": ["5730368193ee"], "settlements": { "mount": "eb79a9b3682a", "ensure": "fcd8faa86ca8" diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json index 583b338af99..a1b1de2f7a9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "7cdbf3308411ed6764cc1cdcc0f663a27ddc9390fcc329c49fad4b27cb5a7fd5", "platform": "darwin", @@ -56,10 +56,6 @@ "liveAccepted": "unsent", "sending": false }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "5e9826c92f7b": { "crash": { "$rpc": "null" @@ -68,6 +64,11 @@ "liveAccepted": "unsent", "sending": false }, + "72956b7aff32": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "750695db0ef8": { "name": "terminal.send#1", "args": [ @@ -109,9 +110,10 @@ } } }, - "c28710807a02": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -142,7 +144,7 @@ "id": "sent", "observation": { "sender": ["750695db0ef8", "093b7147f9b0"], - "payloads": ["c28710807a02", "191580ba859d"], + "payloads": ["72956b7aff32", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-refused.json b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json index 2a31809b08a..f1ebda13eda 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "eb5e47e3accccc7ca280ca029f97405905b0cee8a05afb9ef15448314041d9d4", "platform": "darwin", @@ -21,6 +21,11 @@ "liveAccepted": "unsent", "sending": false }, + "72956b7aff32": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "73d599c067f6": { "name": "terminal.send#1", "args": [ @@ -62,10 +67,6 @@ } } }, - "c28710807a02": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls -la\",\"enter\":true,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -82,7 +83,7 @@ "id": "restored", "observation": { "sender": ["73d599c067f6"], - "payloads": ["c28710807a02"], + "payloads": ["72956b7aff32"], "settlements": { "mount": "eb79a9b3682a", "type": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json index 1c920b94f94..e1842686522 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "391a4f681443f099e6ea4417811d82d730242dfe07e21f74b0ad49a98bcd7c81", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "03f8dcaf51c7": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "093b7147f9b0": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -48,14 +53,6 @@ } } }, - "0a0137383ed3": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "4dbb5ea36ed2": { "name": "terminal.send#1", "args": [ @@ -103,6 +100,11 @@ "settledAt": 0, "value": true }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -127,7 +129,7 @@ "id": "live-sent", "observation": { "sender": ["4dbb5ea36ed2", "093b7147f9b0"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "mount": "eb79a9b3682a", "live": "84e5ca07cb7a" diff --git a/mobile/rpc-foundation/goldens/terminal-paste-accepted.json b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json index e6c187ea6d4..75c9e928e32 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "48bb495de3b54f2b2edc0543f0f232ff4fd6068d5aca34d005766ebacbb078c9", "platform": "darwin", @@ -67,9 +67,15 @@ }, "pasteOutcome": "sent" }, - "63ceb8bb55e0": { + "56f3ab2e0d0b": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 3 + }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "7107540f16ca": { "name": "toast", @@ -81,10 +87,6 @@ }, "sent": 1 }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" - }, "84990d8de7e9": { "connectionId": "unresolved", "crash": { @@ -92,6 +94,11 @@ }, "pasteOutcome": "unpasted" }, + "d582f882a68d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 + }, "e142ca57bc1f": { "name": "terminal.send#1", "args": [ @@ -175,10 +182,6 @@ } } } - }, - "f63f705d3a7f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" } }, "recording": { @@ -188,7 +191,7 @@ "id": "copied", "observation": { "sender": ["f3df5e006d8e"], - "payloads": ["7ddcb1852b39"], + "payloads": ["5c52bc3f9e55"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a" @@ -201,7 +204,7 @@ "id": "pasted", "observation": { "sender": ["f3df5e006d8e", "e142ca57bc1f", "4e9a0397c220"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f", "63ceb8bb55e0"], + "payloads": ["5c52bc3f9e55", "d582f882a68d", "56f3ab2e0d0b"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/terminal-paste-refused.json b/mobile/rpc-foundation/goldens/terminal-paste-refused.json index 5f9518be479..0e56981b022 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "78e62b9125252accc7f6d2ce772b93c84a917b01d2df308c1f9fb163d9127665", "platform": "darwin", @@ -73,6 +73,11 @@ }, "pasteOutcome": "sent" }, + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 + }, "7107540f16ca": { "name": "toast", "value": { @@ -83,9 +88,10 @@ }, "sent": 1 }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "d582f882a68d": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -129,10 +135,6 @@ } } } - }, - "f63f705d3a7f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[200~echo hi\\u001b[201~\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" } }, "recording": { @@ -142,7 +144,7 @@ "id": "not-reported", "observation": { "sender": ["f3df5e006d8e", "42b6b7a204f7"], - "payloads": ["7ddcb1852b39", "f63f705d3a7f"], + "payloads": ["5c52bc3f9e55", "d582f882a68d"], "settlements": { "mount": "eb79a9b3682a", "copy": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json index 023a6d31223..ba5313d220e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "bfa1d5f83b4112d3cce6a19e9dc27daf9281ed99745bc01bd19226dd7b268c71", "platform": "darwin", @@ -58,15 +58,16 @@ } } }, - "77094de33a4f": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[0n\",\"enter\":false,\"inputKind\":\"query-reply\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "84e5ca07cb7a": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": true + }, + "a766e4175d1c": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"\\u001b[0n\",\"enter\":false,\"inputKind\":\"query-reply\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 } }, "recording": { @@ -76,7 +77,7 @@ "id": "accepted", "observation": { "sender": ["4ed60727a7ff"], - "payloads": ["77094de33a4f"], + "payloads": ["a766e4175d1c"], "settlements": { "send": "84e5ca07cb7a" }, diff --git a/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json b/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json index b7c0904d985..7ab9443369a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "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 f3788efdc3c..55fbeed6992 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "76fc0c1499ec48a67428f35eba705f68147d2ff2c344b67aa0c9d60ed999f173", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0a0137383ed3": { + "03f8dcaf51c7": { "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 }, "7ed3d39f0607": { "status": "fulfilled", @@ -75,7 +76,7 @@ "id": "not-reported", "observation": { "sender": ["e22c5fe3e056"], - "payloads": ["0a0137383ed3"], + "payloads": ["03f8dcaf51c7"], "settlements": { "send": "7ed3d39f0607" }, diff --git a/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json b/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json index 99fcdf32728..fcb8344fb8f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "579077efd3a4652a6930af3f6690138c20536270cbcd7274246047d2e322199f", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "03f8dcaf51c7": { + "name": "terminal.send#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}", + "sent": 1 + }, "093b7147f9b0": { "name": "orchestration.workerTerminalUserInput#1", "args": [ @@ -48,17 +53,9 @@ } } }, - "0a0137383ed3": { - "name": "terminal.send#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.send\",\"params\":{\"terminal\":\"terminal-1\",\"text\":\"ls\",\"enter\":false,\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"}}}" - }, "11a49f853eb8": { "accepted": true }, - "191580ba859d": { - "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" - }, "4dbb5ea36ed2": { "name": "terminal.send#1", "args": [ @@ -105,6 +102,11 @@ "startedAt": 0, "settledAt": 0, "value": true + }, + "b139ed2905d3": { + "name": "orchestration.workerTerminalUserInput#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 } }, "recording": { @@ -114,7 +116,7 @@ "id": "reported", "observation": { "sender": ["4dbb5ea36ed2", "093b7147f9b0"], - "payloads": ["0a0137383ed3", "191580ba859d"], + "payloads": ["03f8dcaf51c7", "b139ed2905d3"], "settlements": { "send": "84e5ca07cb7a" }, diff --git a/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json b/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json index 2182cc9f323..873eb631159 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "c2236257032fab72ebb007391313eec4e5f0a1bdb4fbcbd907117f9914ffafc6", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002261d201ea": { + "077fe24856b3": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 }, "14ce070cad1b": { "name": "orchestration.workerTerminalUserInput#1", @@ -69,7 +70,7 @@ "id": "reported", "observation": { "sender": ["14ce070cad1b"], - "payloads": ["002261d201ea"], + "payloads": ["077fe24856b3"], "settlements": { "report": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json b/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json index d2001e55d35..5272b8db3d8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "8ad436ca6c3de8b0b3148326337acce18a8a4cf3c514acad1a4530a001f28c75", "platform": "darwin", @@ -13,14 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "002261d201ea": { + "077fe24856b3": { "name": "orchestration.workerTerminalUserInput#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 1 }, "44136fa355b3": {}, - "797d27f8307a": { + "488e1b567bfb": { "name": "orchestration.workerTerminalUserInput#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"orchestration.workerTerminalUserInput\",\"params\":{\"terminal\":\"terminal-1\"}}", + "sent": 2 }, "db9815351ccf": { "name": "orchestration.workerTerminalUserInput#2", @@ -109,7 +111,7 @@ "id": "reported-on-retry", "observation": { "sender": ["f3349fb58cad", "db9815351ccf"], - "payloads": ["002261d201ea", "797d27f8307a"], + "payloads": ["077fe24856b3", "488e1b567bfb"], "settlements": { "report": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json b/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json index e03ebde7b7e..534e00f9183 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "f966c2ef2e747a5231f423147ddaf38458cb08c719434b274016a5e4abc10771", "platform": "darwin", @@ -70,10 +70,6 @@ "rows": 30 } }, - "9c584ebc4a0f": { - "name": "terminal.updateViewport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}" - }, "a993d0d38252": { "name": "measure-fit", "value": { @@ -81,6 +77,11 @@ }, "sent": 0 }, + "ca5578df10d1": { + "name": "terminal.updateViewport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -97,7 +98,7 @@ "id": "reflowed", "observation": { "sender": ["121036dfcf5a"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" 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 dccbf15426a..87df22cebed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "7588d30f33a8bb846c48f160aa9a4a8138176662bb2fb6be7bbdf352f553d05f", "scenarioSha256": "88961a369cb7a7fa92708bb83aa7f818e904018e8cfcedc2f50ef9a0058c8b9d", "platform": "darwin", @@ -27,10 +27,6 @@ "rows": 30 } }, - "9c584ebc4a0f": { - "name": "terminal.updateViewport#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}" - }, "a1c0c7168922": { "name": "unsubscribe-terminal", "value": { @@ -87,6 +83,11 @@ } } }, + "ca5578df10d1": { + "name": "terminal.updateViewport#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"terminal.updateViewport\",\"params\":{\"terminal\":\"terminal-1\",\"client\":{\"id\":\"device-token-1\",\"type\":\"mobile\"},\"viewport\":{\"cols\":100,\"rows\":30}}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -103,7 +104,7 @@ "id": "resubscribed", "observation": { "sender": ["aef14699e2f6"], - "payloads": ["9c584ebc4a0f"], + "payloads": ["ca5578df10d1"], "settlements": { "mount": "eb79a9b3682a", "height": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json index 5436e92f77e..fed2e42d788 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "e7e3718f685e3713cf1b8209d59d618741f892bd286853b79bb456c59cec8d86", "scenarioSha256": "f921c4a764cdf7a4c1df0a7ec618d7c3b1d8a05ee4baa42d66f3bc0d95b3f550", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "594101d24d72": { - "name": "repo.list#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}" + "5c52bc3f9e55": { + "name": "settings.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}", + "sent": 1 }, "63200026ea8b": { "name": "repo.list#1", @@ -61,9 +62,10 @@ } } }, - "7ddcb1852b39": { - "name": "settings.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" + "ad49fec56c14": { + "name": "repo.list#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.list\"}", + "sent": 2 }, "e61132f30b52": { "status": "fulfilled", @@ -129,7 +131,7 @@ "id": "resolved", "observation": { "sender": ["f3df5e006d8e", "63200026ea8b"], - "payloads": ["7ddcb1852b39", "594101d24d72"], + "payloads": ["5c52bc3f9e55", "ad49fec56c14"], "settlements": { "mount": "eb79a9b3682a", "connection": "e61132f30b52" diff --git a/mobile/rpc-foundation/goldens/tk-create-github.json b/mobile/rpc-foundation/goldens/tk-create-github.json index a3423fc9ce6..b47408a6391 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "260a84280f69c43ac582149d9befe6ae547b2ad2b5f56a181d8e3a1314a0a071", "platform": "darwin", @@ -50,10 +50,6 @@ } } }, - "1561684e8ae9": { - "name": "github.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" - }, "46bbfadb0481": { "name": "creatingTask", "value": true, @@ -92,6 +88,11 @@ "value": "", "sent": 1 }, + "6add5b7ef51f": { + "name": "repo.update#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}", + "sent": 2 + }, "781721955405": { "name": "showCreateTask", "value": false, @@ -165,15 +166,16 @@ "value": "", "sent": 0 }, + "b91134109e2b": { + "name": "github.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}", + "sent": 1 + }, "c0c0f9a6037e": { "name": "createTitle", "value": "", "sent": 1 }, - "c41296ee02f7": { - "name": "repo.update#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.update\",\"params\":{\"repo\":\"id:repo-1\",\"updates\":{\"issueSourcePreference\":\"upstream\"}}}" - }, "d48d5c49486c": { "name": "error", "value": "", @@ -200,7 +202,7 @@ "id": "create-settled", "observation": { "sender": ["06e1643ed0af"], - "payloads": ["1561684e8ae9"], + "payloads": ["b91134109e2b"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" @@ -221,7 +223,7 @@ "id": "issue-source-settled", "observation": { "sender": ["06e1643ed0af", "98e33157a9f2"], - "payloads": ["1561684e8ae9", "c41296ee02f7"], + "payloads": ["b91134109e2b", "6add5b7ef51f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-create-gitlab.json b/mobile/rpc-foundation/goldens/tk-create-gitlab.json index 98b2949a12e..07005230fcc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a4d3d1f322d49593056bd20f4122bbf0309d2161123e404161950bcab65decd5", "platform": "darwin", @@ -111,6 +111,11 @@ "$rpc": "undefined" } }, + "ebd58d2ca60f": { + "name": "gitlab.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}", + "sent": 1 + }, "f4790c11c55e": { "name": "actionItem", "value": { @@ -138,10 +143,6 @@ }, "sent": 1 }, - "f5bc6cfd470a": { - "name": "gitlab.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.createIssue\",\"params\":{\"repo\":\"id:repo-1\",\"title\":\"A new task\",\"body\":\"a body\"}}" - }, "fc7f792d6e89": { "name": "creatingTask", "value": false, @@ -155,7 +156,7 @@ "id": "create-settled", "observation": { "sender": ["c9c89070b638"], - "payloads": ["f5bc6cfd470a"], + "payloads": ["ebd58d2ca60f"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-create-linear.json b/mobile/rpc-foundation/goldens/tk-create-linear.json index 07431987cbb..d28f3571db2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "f6c7eea985190d9edeead5b36f90c8aa98679f69d19dab7579fec88841645259", "platform": "darwin", @@ -58,10 +58,6 @@ "value": true, "sent": 0 }, - "6105e77e3945": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A new task\",\"description\":\"a body\",\"workspaceId\":\"linear-workspace\"}}" - }, "61b2cb7e4313": { "composer": false, "creating": false, @@ -112,6 +108,11 @@ "value": "", "sent": 0 }, + "b06990400bdd": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A new task\",\"description\":\"a body\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 1 + }, "b83a4bfe6154": { "name": "actionItem", "value": { @@ -172,7 +173,7 @@ "id": "create-settled", "observation": { "sender": ["11915dfdb24a"], - "payloads": ["6105e77e3945"], + "payloads": ["b06990400bdd"], "settlements": { "mount": "eb79a9b3682a", "create-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-checks-files.json b/mobile/rpc-foundation/goldens/tk-item-checks-files.json index 169ec35bc59..f33e44f2952 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "15de2c1dd80a591a5e27d50664ff21d4e71442c711fc3bbdf7d1f95f499cf04c", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "023bacc5a99f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "02b35324051f": { "name": "prFileLoadingPath", "value": { @@ -34,9 +30,15 @@ "value": false, "sent": 3 }, - "169fba726515": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" + "0dc508badab8": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 4 + }, + "129905b0618e": { + "name": "github.rerunPRChecks#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 1 }, "1e34370849ff": { "name": "error", @@ -340,9 +342,10 @@ }, "refreshSeq": 1 }, - "719c7f70fd21": { - "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}" + "6cf2940fc2bf": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 5 }, "7418dba01b6e": { "contents": {}, @@ -665,10 +668,6 @@ "value": "", "sent": 1 }, - "d530e4061382": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "d6639f415773": { "name": "detailPayload", "value": { @@ -757,9 +756,10 @@ } } }, - "e6fbd22fd721": { - "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "e5ad8c9d0fe9": { + "name": "github.resolveReviewThread#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -778,6 +778,11 @@ "name": "prFileCommentDrafts", "value": {}, "sent": 5 + }, + "ff91ba8c33f6": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 2 } }, "recording": { @@ -787,7 +792,7 @@ "id": "rerun-settled", "observation": { "sender": ["a94ae672d47d"], - "payloads": ["e6fbd22fd721"], + "payloads": ["129905b0618e"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a" @@ -800,7 +805,7 @@ "id": "viewed-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a"], - "payloads": ["e6fbd22fd721", "023bacc5a99f"], + "payloads": ["129905b0618e", "ff91ba8c33f6"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -823,7 +828,7 @@ "id": "thread-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -851,7 +856,7 @@ "id": "expand-settled", "observation": { "sender": ["a94ae672d47d", "e14b632f629a", "bcb382ff8ccc", "56b95ef32926"], - "payloads": ["e6fbd22fd721", "023bacc5a99f", "719c7f70fd21", "d530e4061382"], + "payloads": ["129905b0618e", "ff91ba8c33f6", "e5ad8c9d0fe9", "0dc508badab8"], "settlements": { "mount": "eb79a9b3682a", "rerun-0": "eb79a9b3682a", @@ -892,11 +897,11 @@ "a5b56b388d19" ], "payloads": [ - "e6fbd22fd721", - "023bacc5a99f", - "719c7f70fd21", - "d530e4061382", - "169fba726515" + "129905b0618e", + "ff91ba8c33f6", + "e5ad8c9d0fe9", + "0dc508badab8", + "6cf2940fc2bf" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-github.json b/mobile/rpc-foundation/goldens/tk-item-comment-github.json index b62c337ed77..12e070f654b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "fb0cdff9e02bac37b0bd8e1c47922474823d46fa735f3069ed70cdad41800be6", "platform": "darwin", @@ -129,9 +129,10 @@ } } }, - "79a7f51f2a84": { + "9cd49fc064c7": { "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"body\":\"a comment\",\"type\":\"issue\"}}", + "sent": 1 }, "9e263f5e91be": { "name": "error", @@ -219,7 +220,7 @@ "id": "comment-settled", "observation": { "sender": ["7297a232d830"], - "payloads": ["79a7f51f2a84"], + "payloads": ["9cd49fc064c7"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" 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 1e1cd52eacc..3b50df7b19d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "cb696d402b8af2b9a54d4d6f9d85abfc12280e73b360196e55ec25530e610eee", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "02a9b21b0da8": { - "name": "gitlab.addMRComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" - }, "1792a570e51c": { "name": "detailPayload", "value": { @@ -138,6 +134,11 @@ "value": true, "sent": 0 }, + "e13ed6b2ab74": { + "name": "gitlab.addMRComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addMRComment\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -159,7 +160,7 @@ "id": "comment-settled", "observation": { "sender": ["c6b7aaa4bd08"], - "payloads": ["02a9b21b0da8"], + "payloads": ["e13ed6b2ab74"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json index 06046752765..20a8c83c1ab 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "d993b9f74cf8c5d7af8d31a73cf19d97141c54f6fcf009e98ca5b9106f3ba35b", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "1ca4b0d3bbd0": { + "name": "gitlab.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "1f27ffccd3c3": { "name": "gitlab.addIssueComment#1", "args": [ @@ -124,10 +129,6 @@ }, "sent": 1 }, - "7251019fd224": { - "name": "gitlab.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"body\":\"a comment\",\"projectRef\":\"group/project\"}}" - }, "9e263f5e91be": { "name": "error", "value": "", @@ -159,7 +160,7 @@ "id": "comment-settled", "observation": { "sender": ["1f27ffccd3c3"], - "payloads": ["7251019fd224"], + "payloads": ["1ca4b0d3bbd0"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-github.json b/mobile/rpc-foundation/goldens/tk-item-detail-github.json index 6a0085baadc..800a6a019e6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "5fbff075d7da476f93c2a7da871c2afacc67822d1317acf6c23000195e2b2576", "platform": "darwin", @@ -145,6 +145,11 @@ "value": true, "sent": 0 }, + "7a351201fa97": { + "name": "github.workItemDetails#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"type\":\"pr\"}}", + "sent": 1 + }, "9bd1de5d9753": { "name": "detailPayload", "value": { @@ -157,10 +162,6 @@ "value": "", "sent": 0 }, - "d46a22dbc133": { - "name": "github.workItemDetails#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"type\":\"pr\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -177,7 +178,7 @@ "id": "mounted", "observation": { "sender": ["54ee429ef116"], - "payloads": ["d46a22dbc133"], + "payloads": ["7a351201fa97"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json index b3b49ebfb7c..2c62b994808 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "36bbd34ed8b8f67e516ce7cd230b01ab88f14369fda632037c46dbbd1a0d95a3", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "08049512c6dd": { - "name": "gitlab.workItemDetails#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":4,\"type\":\"issue\",\"projectRef\":\"group/project\"}}" - }, "1867a9df681c": { "name": "detailLoading", "value": false, @@ -70,6 +66,11 @@ } } }, + "48d06c2dc5c4": { + "name": "gitlab.workItemDetails#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemDetails\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":4,\"type\":\"issue\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "56d172ecd2fe": { "name": "detailLoading", "value": true, @@ -235,7 +236,7 @@ "id": "mounted", "observation": { "sender": ["292ec83c1b66"], - "payloads": ["08049512c6dd"], + "payloads": ["48d06c2dc5c4"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json index a21380b1d74..78e0cbf8365 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "f0407adc774b29553bdd177885e8ea9047127c4ebe8298de160a421fb4c1fe67", "platform": "darwin", @@ -80,6 +80,11 @@ } } }, + "46d0f1129c84": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "47f3ae87c00a": { "name": "linear.getIssue#1", "args": [ @@ -172,6 +177,11 @@ "value": true, "sent": 0 }, + "5b2b6dd0b30f": { + "name": "linear.issueComments#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "9bd1de5d9753": { "name": "detailPayload", "value": { @@ -272,14 +282,6 @@ "provider": "linear" } }, - "bb215a1eb59b": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, - "e7f73629d075": { - "name": "linear.issueComments#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.issueComments\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -301,7 +303,7 @@ "id": "mounted", "observation": { "sender": ["47f3ae87c00a", "1764e3c48b18"], - "payloads": ["bb215a1eb59b", "e7f73629d075"], + "payloads": ["46d0f1129c84", "5b2b6dd0b30f"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json index b2029eb75b1..343f931af6f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "e6429c235d8c0b0376f71fea7b47c3b9ff22b850c92922b85ff993ae8b6cd6d0", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "11dbb2f7ba6a": { + "name": "github.listLabels#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "14b04c3d1156": { "name": "itemAssignableUsersLoading", "value": true, @@ -34,6 +39,11 @@ "usersError": "", "usersLoading": false }, + "2c7c5fe4358d": { + "name": "github.listAssignableUsers#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 2 + }, "30554accaab5": { "name": "itemAvailableLabels", "value": ["bug", "chore"], @@ -80,10 +90,6 @@ "value": "body", "sent": 0 }, - "594a2904a1bc": { - "name": "github.listAssignableUsers#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.listAssignableUsers\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "60ab7459b747": { "name": "itemLabelsLoading", "value": true, @@ -159,10 +165,6 @@ "$rpc": "undefined" } }, - "ef317c60c3c6": { - "name": "github.listLabels#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listLabels\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "f70626574f7a": { "name": "itemAvailableLabels", "value": [], @@ -186,7 +188,7 @@ "id": "mounted", "observation": { "sender": ["31a9aea0d54a", "a268d5d92265"], - "payloads": ["ef317c60c3c6", "594a2904a1bc"], + "payloads": ["11dbb2f7ba6a", "2c7c5fe4358d"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json index 89a01c2e471..610c68c2a52 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "28d8dfb15fec1ecaaa1c675c9c8c0cdc196e184a6884625c44dfe1f0f9fc8e7e", "platform": "darwin", @@ -18,6 +18,11 @@ "value": false, "sent": 1 }, + "772281b8af97": { + "name": "gitlab.mergeMR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "84465663f388": { "name": "actionItem", "value": { @@ -103,10 +108,6 @@ } } }, - "c6bf9878ffb7": { - "name": "gitlab.mergeMR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.mergeMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"method\":\"squash\",\"projectRef\":\"group/project\"}}" - }, "cc96725d8f47": { "name": "mutatingStatus", "value": true, @@ -128,7 +129,7 @@ "id": "merge-settled", "observation": { "sender": ["c483c06533af"], - "payloads": ["c6bf9878ffb7"], + "payloads": ["772281b8af97"], "settlements": { "mount": "eb79a9b3682a", "merge-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json index 4758c7de635..9ee719cb291 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "010c65eaa056c5df0b867dd5b5851e206e8479e9fcce02515f1e326df4b8889c", "platform": "darwin", @@ -18,6 +18,11 @@ "value": false, "sent": 1 }, + "387542f122bb": { + "name": "github.updatePR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}", + "sent": 1 + }, "48545870a5c1": { "name": "items", "value": [ @@ -107,10 +112,6 @@ }, "sent": 1 }, - "b092bbd7362d": { - "name": "github.updatePR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"title\":\"Renamed\",\"body\":\"new body\"}}}" - }, "cc96725d8f47": { "name": "mutatingStatus", "value": true, @@ -268,7 +269,7 @@ "id": "update-pr-settled", "observation": { "sender": ["7cb20f219688"], - "payloads": ["b092bbd7362d"], + "payloads": ["387542f122bb"], "settlements": { "mount": "eb79a9b3682a", "update-pr-0": "eb79a9b3682a" 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 9ef88cfd52f..5a5e85ef7a6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "daa54da6cfb8d96c2a66c138beeaf70c764f96a60bdc84f2ff4cde80483cb365", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "00ccf4aaa4aa": { + "name": "gitlab.updateMR#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}", + "sent": 1 + }, "32a3635e06a4": { "name": "mutatingStatus", "value": false, @@ -196,10 +201,6 @@ "value": { "$rpc": "undefined" } - }, - "f2369a06d2a9": { - "name": "gitlab.updateMR#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMR\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"projectRef\":\"group/project\",\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]}}}" } }, "recording": { @@ -209,7 +210,7 @@ "id": "update-gitlab-settled", "observation": { "sender": ["a62f6e435d85"], - "payloads": ["f2369a06d2a9"], + "payloads": ["00ccf4aaa4aa"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json index 71f1333452a..09974388b56 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "4daf374f040e27836c154245d6a7fbad9ba3f6e6c0c9608218451286e4712d6b", "platform": "darwin", @@ -106,6 +106,11 @@ } } }, + "1824f451be8e": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "32a3635e06a4": { "name": "mutatingStatus", "value": false, @@ -116,10 +121,6 @@ "value": "", "sent": 1 }, - "5feb9fb600e8": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"]},\"projectRef\":\"group/project\"}}" - }, "6d96b92fa8ac": { "name": "itemRemoveLabelsDraft", "value": "", @@ -213,7 +214,7 @@ "id": "update-gitlab-settled", "observation": { "sender": ["166d84331771"], - "payloads": ["5feb9fb600e8"], + "payloads": ["1824f451be8e"], "settlements": { "mount": "eb79a9b3682a", "update-gitlab-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json index d2ec8b74f10..4aa1f7f952b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "b8e60092a29ea4944a891adc026444cc1da18c52221876f9e7c07b450b34cea8", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "036b197488e0": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "05d134c26c53": { "name": "github.mergePR#1", "args": [ @@ -52,10 +48,6 @@ } } }, - "08f1b4229a2c": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -199,15 +191,26 @@ "value": false, "sent": 1 }, + "48b5e80976b1": { + "name": "linear.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}", + "sent": 4 + }, + "50b7beefee34": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}", + "sent": 3 + }, + "5701a4cdd402": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 1 + }, "583b546bd557": { "name": "mutatingStatus", "value": true, "sent": 1 }, - "6bd857c36deb": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"method\":\"squash\"}}" - }, "70678ab6df9a": { "name": "mutatingStatus", "value": false, @@ -438,10 +441,6 @@ "value": "", "sent": 2 }, - "b959a668e307": { - "name": "linear.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"linear.updateIssue\",\"params\":{\"id\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"updates\":{\"stateId\":\"state-2\"}}}" - }, "bc3f6bcb8a5e": { "name": "detailPayload", "value": { @@ -603,6 +602,11 @@ "reviewRequests": [] } }, + "db5675927800": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12,\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 2 + }, "dbbebbd74a18": { "name": "error", "value": "", @@ -718,7 +722,7 @@ "id": "review-reply-settled", "observation": { "sender": ["ae78fb6dcf29"], - "payloads": ["036b197488e0"], + "payloads": ["5701a4cdd402"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a" @@ -737,7 +741,7 @@ "id": "issue-reply-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed"], - "payloads": ["036b197488e0", "08f1b4229a2c"], + "payloads": ["5701a4cdd402", "db5675927800"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -762,7 +766,7 @@ "id": "merge-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", @@ -792,7 +796,7 @@ "id": "linear-status-settled", "observation": { "sender": ["ae78fb6dcf29", "976ce137a1ed", "05d134c26c53", "7df24cf10f99"], - "payloads": ["036b197488e0", "08f1b4229a2c", "6bd857c36deb", "b959a668e307"], + "payloads": ["5701a4cdd402", "db5675927800", "50b7beefee34", "48b5e80976b1"], "settlements": { "mount": "eb79a9b3682a", "review-reply-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-item-review-github.json b/mobile/rpc-foundation/goldens/tk-item-review-github.json index ceb31985838..e2ee2ed575a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "3ba358ff7b6a95d9158257225483f77578dfa10c8643cdf89f8a81e0022997e9", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "03f32ac43ec3": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "0879b3f9a393": { "name": "itemReviewersDraft", "value": "", @@ -51,6 +56,11 @@ ], "sent": 1 }, + "15f7c99a18fb": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}", + "sent": 1 + }, "1a20f26b6a0f": { "name": "detailPayload", "value": { @@ -115,14 +125,6 @@ "value": false, "sent": 1 }, - "4fdc894b14c6": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headSha\":\"head-sha\",\"noCache\":true}}" - }, - "53b8bc3863fe": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"reviewers\":[\"octocat\"]}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, @@ -606,7 +608,7 @@ "id": "reviewers-settled", "observation": { "sender": ["d4d38f1bf018"], - "payloads": ["53b8bc3863fe"], + "payloads": ["15f7c99a18fb"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -627,7 +629,7 @@ "id": "checks-settled", "observation": { "sender": ["d4d38f1bf018", "8e390a30a275"], - "payloads": ["53b8bc3863fe", "4fdc894b14c6"], + "payloads": ["15f7c99a18fb", "03f32ac43ec3"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", 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 c63ffe20721..6747c56f495 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "5de4936aed0efd0d8bd5bc5ce893d561f6bc3d0fdf4a76c9e33e7cbefd6ec362", "platform": "darwin", @@ -103,10 +103,6 @@ "provider": "gitlab" } }, - "bbda8a8eedb1": { - "name": "gitlab.updateMRState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}" - }, "cc96725d8f47": { "name": "mutatingStatus", "value": true, @@ -119,6 +115,11 @@ "value": { "$rpc": "undefined" } + }, + "eef11f4ec3f3": { + "name": "gitlab.updateMRState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateMRState\",\"params\":{\"repo\":\"id:repo-1\",\"iid\":7,\"state\":\"closed\",\"projectRef\":\"group/project\"}}", + "sent": 1 } }, "recording": { @@ -128,7 +129,7 @@ "id": "gitlab-status-settled", "observation": { "sender": ["1380dafff177"], - "payloads": ["bbda8a8eedb1"], + "payloads": ["eef11f4ec3f3"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json index 0f4b5666b2a..7b6a77c3f70 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "85414544a9e8570567770b43e6bf5cfcc406c9b9b4ffed3a4ff0c8187beb7549", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "132591a733d1": { - "name": "gitlab.updateIssue#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}" - }, "13b233a5bc5a": { "name": "itemRemoveAssigneesDraft", "value": "", @@ -37,9 +33,10 @@ "value": true, "sent": 1 }, - "71cb3feddd6c": { + "75f13d97f25f": { "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"title\":\"Renamed\",\"addLabels\":[\"triage\"],\"removeLabels\":[\"bug\"]}}}", + "sent": 2 }, "779cb33e2c39": { "name": "gitlab.updateIssue#1", @@ -115,6 +112,11 @@ "value": false, "sent": 2 }, + "948d1db5279c": { + "name": "gitlab.updateIssue#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":4,\"updates\":{\"state\":\"closed\"},\"projectRef\":\"group/project\"}}", + "sent": 1 + }, "9999466f95f3": { "name": "detailPayload", "value": { @@ -253,7 +255,7 @@ "id": "gitlab-status-settled", "observation": { "sender": ["779cb33e2c39"], - "payloads": ["132591a733d1"], + "payloads": ["948d1db5279c"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a" @@ -266,7 +268,7 @@ "id": "github-metadata-settled", "observation": { "sender": ["779cb33e2c39", "9fb1b1ad3675"], - "payloads": ["132591a733d1", "71cb3feddd6c"], + "payloads": ["948d1db5279c", "75f13d97f25f"], "settlements": { "mount": "eb79a9b3682a", "gitlab-status-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-linear-connect.json b/mobile/rpc-foundation/goldens/tk-linear-connect.json index a5dfc37f0a2..f8ebc98866b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "d1bd7ad9b647a50403953ba01d3a4bcccc5f4020c2aefa6146cca8c7688612c1", "platform": "darwin", @@ -30,6 +30,11 @@ "value": "connecting", "sent": 0 }, + "6469c8226ac8": { + "name": "linear.connect#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.connect\",\"params\":{\"apiKey\":\"lin_api_key\"}}", + "sent": 1 + }, "69d74e72326c": { "name": "linearConnected", "value": true, @@ -78,10 +83,6 @@ } } }, - "dae705f55c7f": { - "name": "linear.connect#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.connect\",\"params\":{\"apiKey\":\"lin_api_key\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -113,7 +114,7 @@ "id": "connect-settled", "observation": { "sender": ["b7f1fad8d45f"], - "payloads": ["dae705f55c7f"], + "payloads": ["6469c8226ac8"], "settlements": { "mount": "eb79a9b3682a", "connect-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-linear-item.json b/mobile/rpc-foundation/goldens/tk-linear-item.json index 7e97119c669..9c4320edb9b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "97cfbcd82778ed6517ca2d10b2f3ad5a8d366e380d7846c1e89d5a5baf17e739", "scenarioSha256": "354eaff5243b3aae774c375aa303548d82c4db106a89ada39907d6654fa549b3", "platform": "darwin", @@ -18,15 +18,16 @@ "value": false, "sent": 3 }, + "10b28ba0acf6": { + "name": "linear.addIssueComment#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}", + "sent": 1 + }, "12b9ca6d3411": { "name": "linearCommentDraft", "value": "", "sent": 1 }, - "252af9581c95": { - "name": "linear.addIssueComment#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.addIssueComment\",\"params\":{\"issueId\":\"issue-1\",\"workspaceId\":\"linear-workspace\",\"body\":\"a linear comment\"}}" - }, "2c8f51509f45": { "name": "linear.getIssue#1", "args": [ @@ -222,19 +223,11 @@ } } }, - "56711aa72642": { - "name": "linear.getIssue#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}" - }, "583b546bd557": { "name": "mutatingStatus", "value": true, "sent": 1 }, - "6fbb2167a2a8": { - "name": "linear.createIssue#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}" - }, "7c14fba8a1fe": { "error": "", "item": { @@ -344,6 +337,11 @@ } } }, + "9e002043a9c9": { + "name": "linear.getIssue#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.getIssue\",\"params\":{\"id\":\"issue-2\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "9e263f5e91be": { "name": "error", "value": "", @@ -487,6 +485,11 @@ "value": { "$rpc": "undefined" } + }, + "ee9691287208": { + "name": "linear.createIssue#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.createIssue\",\"params\":{\"teamId\":\"team-1\",\"title\":\"A sub-issue\",\"workspaceId\":\"linear-workspace\",\"parentIssueId\":\"issue-1\",\"projectId\":null}}", + "sent": 3 } }, "recording": { @@ -496,7 +499,7 @@ "id": "comment-settled", "observation": { "sender": ["4c69e7210f1a"], - "payloads": ["252af9581c95"], + "payloads": ["10b28ba0acf6"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a" @@ -515,7 +518,7 @@ "id": "sub-issue-open-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45"], - "payloads": ["252af9581c95", "56711aa72642"], + "payloads": ["10b28ba0acf6", "9e002043a9c9"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", @@ -539,7 +542,7 @@ "id": "sub-issue-create-settled", "observation": { "sender": ["4c69e7210f1a", "2c8f51509f45", "910853564928"], - "payloads": ["252af9581c95", "56711aa72642", "6fbb2167a2a8"], + "payloads": ["10b28ba0acf6", "9e002043a9c9", "ee9691287208"], "settlements": { "mount": "eb79a9b3682a", "comment-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-linear-team-context.json b/mobile/rpc-foundation/goldens/tk-linear-team-context.json index f7992a2a771..96f80ca6949 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "58ea1553e04017c993aea4753aace41ee664705a3fdb3b18569c5a9d7968cf06", "scenarioSha256": "524c2421e61d663dd1344a47ab0552c3bb029ad09e0b6271eac91f1548e8265c", "platform": "darwin", @@ -40,10 +40,6 @@ "value": "", "sent": 1 }, - "18a1433d8d21": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}" - }, "1d9a37f58a33": { "name": "creatingTask", "value": false, @@ -86,6 +82,11 @@ } ] }, + "3c5b5dea64bc": { + "name": "linear.teamStates#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "4331036690d4": { "name": "prFileLoadingPath", "value": { @@ -136,6 +137,11 @@ } } }, + "6f8af71244c2": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\"}", + "sent": 1 + }, "74bc5ac6d229": { "name": "itemAddAssigneesDraft", "value": "", @@ -272,10 +278,6 @@ "value": "", "sent": 1 }, - "e132489d2d57": { - "name": "linear.teamStates#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.teamStates\",\"params\":{\"teamId\":\"team-1\",\"workspaceId\":\"linear-workspace\"}}" - }, "e483917577a8": { "name": "createTeamId", "value": "team-1", @@ -297,7 +299,7 @@ "id": "open-composer-settled", "observation": { "sender": ["4f71189f4e00"], - "payloads": ["18a1433d8d21"], + "payloads": ["6f8af71244c2"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a" @@ -332,7 +334,7 @@ "id": "select-metadata-item-settled", "observation": { "sender": ["4f71189f4e00", "9385340ebcd4"], - "payloads": ["18a1433d8d21", "e132489d2d57"], + "payloads": ["6f8af71244c2", "3c5b5dea64bc"], "settlements": { "mount": "eb79a9b3682a", "open-composer-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json index 3b7b4d16fea..7d4b16fab84 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "9b26b8f112021fe65c156b7d4067071551bcdab44a5858f8a933f7ace66e6f80", "platform": "darwin", @@ -23,10 +23,6 @@ "value": false, "sent": 1 }, - "1aa0fd318b4d": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50}}" - }, "2af5bdc42011": { "error": "", "items": [ @@ -57,6 +53,11 @@ "loading": false, "refreshing": false }, + "60eb8439c985": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50}}", + "sent": 1 + }, "6376c568d60e": { "name": "items", "value": [ @@ -170,7 +171,7 @@ "id": "load-settled", "observation": { "sender": ["d619074f1bad"], - "payloads": ["1aa0fd318b4d"], + "payloads": ["60eb8439c985"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json index 18a9882e083..a441f7a2d43 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "a9e791f56e991e822b2a9f55db22eabbc39ad36ed669c87b6866ba7fe8eea24a", "platform": "darwin", @@ -67,10 +67,6 @@ } } }, - "7dc14a940033": { - "name": "gitlab.todos#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.todos\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "840a8ad61602": { "name": "loading", "value": true, @@ -81,6 +77,11 @@ "value": "", "sent": 0 }, + "c8fb3fcb3f03": { + "name": "gitlab.todos#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.todos\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "d42aae748963": { "name": "error", "value": "Cannot read properties of undefined (reading 'replace')", @@ -113,7 +114,7 @@ "id": "load-settled", "observation": { "sender": ["18d425aa3cf4"], - "payloads": ["7dc14a940033"], + "payloads": ["c8fb3fcb3f03"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-list-linear.json b/mobile/rpc-foundation/goldens/tk-list-linear.json index e988ce0e283..3deeaa1b3b7 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "216ddbf8cb71481d179563d8b033d7dc6cd71bface049e83073b977909776fc9", "platform": "darwin", @@ -23,6 +23,11 @@ "value": false, "sent": 1 }, + "2fa05a58f1ae": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 1 + }, "3edde845aed1": { "error": "", "items": [ @@ -114,10 +119,6 @@ } } }, - "5b8a2e3e390d": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"all\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "6143a28f5226": { "name": "loading", "value": true, @@ -220,10 +221,6 @@ } } }, - "8780e3ee6661": { - "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, "92c28468d7be": { "name": "refreshing", "value": false, @@ -270,6 +267,11 @@ "value": "", "sent": 0 }, + "b83b4bb2ab33": { + "name": "linear.searchIssues#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 + }, "c9db7514f5c5": { "name": "loading", "value": false, @@ -331,7 +333,7 @@ "id": "load-settled", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" @@ -350,7 +352,7 @@ "id": "set-query-done", "observation": { "sender": ["86aeb72f48eb"], - "payloads": ["5b8a2e3e390d"], + "payloads": ["2fa05a58f1ae"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", @@ -370,7 +372,7 @@ "id": "load-settled", "observation": { "sender": ["86aeb72f48eb", "5494ca4c103e"], - "payloads": ["5b8a2e3e390d", "8780e3ee6661"], + "payloads": ["2fa05a58f1ae", "b83b4bb2ab33"], "settlements": { "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-project-board-load.json b/mobile/rpc-foundation/goldens/tk-project-board-load.json index ef7489dd113..c903a6b7f18 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7840e811e81d3645f1c874b871158202a53432989f3b5c849df12550b082813b", "platform": "darwin", @@ -101,10 +101,6 @@ } } }, - "0f1253424990": { - "name": "github.project.listViews#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "156064e9724d": { "name": "githubProjectPasteBusy", "value": true, @@ -115,10 +111,6 @@ "value": "", "sent": 5 }, - "1d3552e91192": { - "name": "github.project.listAccessible#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}" - }, "25b0ac550549": { "name": "githubProjectPartialFailures", "value": [], @@ -197,14 +189,6 @@ "value": true, "sent": 4 }, - "39bc2fd66e3d": { - "name": "github.project.viewTable#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}" - }, - "3e904e0d43b4": { - "name": "github.project.listViews#2", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}" - }, "42d96f8f44ae": { "name": "githubProjectError", "value": "", @@ -253,6 +237,11 @@ } } }, + "474d63060ff3": { + "name": "github.project.viewTable#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.viewTable\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3,\"viewId\":\"view-1\"}}", + "sent": 3 + }, "47ebe03e8b7f": { "name": "githubProjectViews", "value": [ @@ -302,9 +291,15 @@ }, "sent": 5 }, - "6f73e51854d5": { - "name": "github.project.resolveRef#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}" + "74ee0682f370": { + "name": "github.project.listViews#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.enterprise.test\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 2 + }, + "7ca39426a1f8": { + "name": "github.project.listAccessible#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAccessible\",\"params\":{\"host\":\"github.com\"}}", + "sent": 1 }, "80ceb7c32703": { "name": "githubProjects", @@ -324,6 +319,11 @@ "value": false, "sent": 4 }, + "a55aa59164e2": { + "name": "github.project.listViews#2", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listViews\",\"params\":{\"owner\":\"owner\",\"host\":\"github.com\",\"ownerType\":\"organization\",\"projectNumber\":3}}", + "sent": 5 + }, "b05e50b1dc22": { "name": "githubProjectPasteBusy", "value": false, @@ -406,6 +406,11 @@ } } }, + "d81c02b76226": { + "name": "github.project.resolveRef#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.resolveRef\",\"params\":{\"input\":\"https://github.com/orgs/owner/projects/3\",\"host\":\"github.com\"}}", + "sent": 4 + }, "ddc3cac1e389": { "name": "githubProjectTable", "value": { @@ -535,7 +540,7 @@ "id": "projects-settled", "observation": { "sender": ["43d044e8caea"], - "payloads": ["1d3552e91192"], + "payloads": ["7ca39426a1f8"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a" @@ -548,7 +553,7 @@ "id": "views-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534"], - "payloads": ["1d3552e91192", "0f1253424990"], + "payloads": ["7ca39426a1f8", "74ee0682f370"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -568,7 +573,7 @@ "id": "table-settled", "observation": { "sender": ["43d044e8caea", "09d1a467c534", "dec0f3dc00c9"], - "payloads": ["1d3552e91192", "0f1253424990", "39bc2fd66e3d"], + "payloads": ["7ca39426a1f8", "74ee0682f370", "474d63060ff3"], "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", @@ -602,11 +607,11 @@ "02a4a58d8dfb" ], "payloads": [ - "1d3552e91192", - "0f1253424990", - "39bc2fd66e3d", - "6f73e51854d5", - "3e904e0d43b4" + "7ca39426a1f8", + "74ee0682f370", + "474d63060ff3", + "d81c02b76226", + "a55aa59164e2" ], "settlements": { "mount": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json index 95e2cea4afc..aa17ed8c9f1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "a83d5768892764af2dd6866f03d51c09aef63d1c5d3e0645bd5e1c16454b201f", "platform": "darwin", @@ -48,9 +48,10 @@ } } }, - "6530ef4dbd15": { + "81640993e00b": { "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 }, "a357afc033aa": { "name": "githubRepoSlugCache", @@ -94,7 +95,7 @@ "id": "mounted", "observation": { "sender": ["5330ec46fa7e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "mount": "eb79a9b3682a" }, 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 1a92b93ef60..fb6e6e7d39d 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "6f1bfb05a9df6482200bbab4400fd07a09955d47fcc468e1d2feda1ca9875aa1", "platform": "darwin", @@ -18,19 +18,11 @@ "value": false, "sent": 1 }, - "0ce8caa0cc82": { - "name": "github.project.addIssueCommentBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}" - }, "0f3697bbd111": { "name": "projectMutating", "value": true, "sent": 2 }, - "16637fd57f65": { - "name": "github.project.updateIssueCommentBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}" - }, "4b9c688ebd34": { "name": "projectEditingCommentDraft", "value": "", @@ -180,6 +172,11 @@ "itemType": "ISSUE" } }, + "5f2604a47fa1": { + "name": "github.project.updateIssueCommentBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501,\"body\":\"an edited comment\"}}", + "sent": 3 + }, "6f4f9198e5ff": { "name": "projectMutating", "value": false, @@ -346,10 +343,6 @@ "itemType": "ISSUE" } }, - "9340829c00ac": { - "name": "github.project.updateIssueBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}" - }, "9698ad92ebc9": { "name": "projectCommentDraft", "value": "", @@ -456,6 +449,16 @@ }, "sent": 2 }, + "c2bda70f8353": { + "name": "github.project.updateIssueBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, + "cfc8331c4dc0": { + "name": "github.project.addIssueCommentBySlug#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.addIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"body\":\"a project comment\"}}", + "sent": 2 + }, "d1bb762720d5": { "name": "projectMutating", "value": true, @@ -614,7 +617,7 @@ "id": "update-item-settled", "observation": { "sender": ["a3c003fbf907"], - "payloads": ["9340829c00ac"], + "payloads": ["c2bda70f8353"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" @@ -627,7 +630,7 @@ "id": "add-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366"], - "payloads": ["9340829c00ac", "0ce8caa0cc82"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -650,7 +653,7 @@ "id": "update-comment-settled", "observation": { "sender": ["a3c003fbf907", "909e5a140366", "8f5c8979ff80"], - "payloads": ["9340829c00ac", "0ce8caa0cc82", "16637fd57f65"], + "payloads": ["c2bda70f8353", "cfc8331c4dc0", "5f2604a47fa1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", 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 5c6e5492ca2..4fdc218da8c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "e5ff558593fd32d66e6ba1722ebf54d50992c9c2b6db41ef2435b47972fbd0fd", "platform": "darwin", @@ -128,10 +128,6 @@ "value": true, "sent": 0 }, - "80e87e83df29": { - "name": "github.project.updatePullRequestBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}" - }, "c8e3f060e5f1": { "name": "projectRowItem", "value": { @@ -214,6 +210,11 @@ }, "sent": 1 }, + "e1d50458f904": { + "name": "github.project.updatePullRequestBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updatePullRequestBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":2,\"updates\":{\"title\":\"Renamed\"}}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -230,7 +231,7 @@ "id": "update-item-settled", "observation": { "sender": ["0fa9db1cc7c0"], - "payloads": ["80e87e83df29"], + "payloads": ["e1d50458f904"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tk-project-row-detail.json b/mobile/rpc-foundation/goldens/tk-project-row-detail.json index a48ffd5422d..98405a67fed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "f572b37cfd15f41f283e5f96b772a1055670f80e68064ac81477d9b768fc971a", "platform": "darwin", @@ -81,6 +81,11 @@ "value": "", "sent": 0 }, + "8441059da147": { + "name": "github.project.workItemDetailsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}", + "sent": 1 + }, "8e5298b22c5f": { "name": "projectRowDetail", "value": { @@ -190,10 +195,6 @@ } } }, - "e27d1a246a98": { - "name": "github.project.workItemDetailsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -210,7 +211,7 @@ "id": "mounted", "observation": { "sender": ["d1f95449bb04"], - "payloads": ["e27d1a246a98"], + "payloads": ["8441059da147"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tk-project-row-fields.json b/mobile/rpc-foundation/goldens/tk-project-row-fields.json index 9f619a23177..8e0b7823ce8 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "af54a351f4b79fff4a11948fc47a9f5194733065682ff96d6b46b9ae292e327e", "platform": "darwin", @@ -126,6 +126,16 @@ }, "sent": 1 }, + "3602df6361c4": { + "name": "github.project.updateItemField#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}", + "sent": 1 + }, + "3dd9611f0850": { + "name": "github.project.clearItemField#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}", + "sent": 2 + }, "424e9a1ae7ed": { "error": "", "mutating": false, @@ -261,10 +271,6 @@ } } }, - "4bb4179487e7": { - "name": "github.project.updateIssueTypeBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}" - }, "55107e6e9979": { "name": "githubProjectTable", "value": { @@ -357,6 +363,11 @@ }, "sent": 3 }, + "60c2e1f55655": { + "name": "github.project.updateIssueTypeBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateIssueTypeBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"issueTypeId\":\"type-1\"}}", + "sent": 3 + }, "68296a29ee63": { "error": "", "mutating": false, @@ -527,10 +538,6 @@ }, "sent": 3 }, - "895e7a6b9398": { - "name": "github.project.updateItemField#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.updateItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\",\"value\":{\"kind\":\"single-select\",\"optionId\":\"option-1\"}}}" - }, "b2345144ca7e": { "name": "projectFieldDrafts", "value": { @@ -640,10 +647,6 @@ } } }, - "dca464e5bca3": { - "name": "github.project.clearItemField#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.clearItemField\",\"params\":{\"projectId\":\"project-1\",\"host\":\"github.enterprise.test\",\"itemId\":\"item-1\",\"fieldId\":\"field-1\"}}" - }, "de29905548eb": { "error": "", "mutating": false, @@ -753,7 +756,7 @@ "id": "set-field-settled", "observation": { "sender": ["d19660e0ba85"], - "payloads": ["895e7a6b9398"], + "payloads": ["3602df6361c4"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" @@ -766,7 +769,7 @@ "id": "clear-field-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924"], - "payloads": ["895e7a6b9398", "dca464e5bca3"], + "payloads": ["3602df6361c4", "3dd9611f0850"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -790,7 +793,7 @@ "id": "issue-type-settled", "observation": { "sender": ["d19660e0ba85", "46c028c0d924", "d8504a4a27ff"], - "payloads": ["895e7a6b9398", "dca464e5bca3", "4bb4179487e7"], + "payloads": ["3602df6361c4", "3dd9611f0850", "60c2e1f55655"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", 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 389c1a74c9b..2b0f8d6c27a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "629d05d7fbd4a332a65f7191b2084a0e74b84920c1954fa351f264892b2776e9", "platform": "darwin", @@ -66,10 +66,6 @@ }, "sent": 1 }, - "06d558d172f7": { - "name": "github.updatePRState#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}" - }, "0be9101a1dfc": { "name": "mutatingStatus", "value": true, @@ -127,10 +123,6 @@ "value": "", "sent": 4 }, - "251de2865843": { - "name": "github.mergePR#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}" - }, "252f3a25533f": { "name": "actionItem", "value": { @@ -143,10 +135,6 @@ "value": "src/index.ts", "sent": 0 }, - "29ab02f35956": { - "name": "github.prFileContents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}" - }, "359e5860abb8": { "name": "github.mergePR#1", "args": [ @@ -294,15 +282,16 @@ "itemType": "PULL_REQUEST" } }, - "4d1d017cea91": { - "name": "github.addPRReviewComment#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}" - }, "5467502970f1": { "name": "mutatingStatus", "value": false, "sent": 5 }, + "64f9432f6c71": { + "name": "github.updateIssue#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}", + "sent": 4 + }, "6f4f9198e5ff": { "name": "projectMutating", "value": false, @@ -333,9 +322,15 @@ "value": "", "sent": 2 }, - "c02d6dba8a29": { - "name": "github.updateIssue#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.updateIssue\",\"params\":{\"repo\":\"id:repo-1\",\"number\":9,\"updates\":{\"state\":\"closed\"}}}" + "94340748de2a": { + "name": "github.mergePR#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.mergePR\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"method\":\"squash\"}}", + "sent": 3 + }, + "b84494cf2d3b": { + "name": "github.prFileContents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.prFileContents\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"path\":\"src/index.ts\",\"status\":\"modified\",\"headSha\":\"head-sha\",\"baseSha\":\"base-sha\"}}", + "sent": 1 }, "c22bc4151f3c": { "name": "actionItem", @@ -510,6 +505,11 @@ "value": "", "sent": 3 }, + "deafdf0df276": { + "name": "github.addPRReviewComment#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewComment\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commitId\":\"head-sha\",\"path\":\"src/index.ts\",\"line\":12,\"body\":\"a review comment\"}}", + "sent": 2 + }, "e02a62a4ddf5": { "name": "expandedPrFilePath", "value": "src/index.ts", @@ -523,6 +523,11 @@ "$rpc": "undefined" } }, + "eddbc5f50eef": { + "name": "github.updatePRState#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.updatePRState\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"updates\":{\"state\":\"closed\"}}}", + "sent": 5 + }, "f070b17abcde": { "name": "prFileLoadingPath", "value": { @@ -565,7 +570,7 @@ "id": "expand-settled", "observation": { "sender": ["cb3d443fc9be"], - "payloads": ["29ab02f35956"], + "payloads": ["b84494cf2d3b"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a" @@ -584,7 +589,7 @@ "id": "file-comment-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845"], - "payloads": ["29ab02f35956", "4d1d017cea91"], + "payloads": ["b84494cf2d3b", "deafdf0df276"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -609,7 +614,7 @@ "id": "merge-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -640,7 +645,7 @@ "id": "issue-state-settled", "observation": { "sender": ["cb3d443fc9be", "c274925d7845", "359e5860abb8", "02509b3a87d5"], - "payloads": ["29ab02f35956", "4d1d017cea91", "251de2865843", "c02d6dba8a29"], + "payloads": ["b84494cf2d3b", "deafdf0df276", "94340748de2a", "64f9432f6c71"], "settlements": { "mount": "eb79a9b3682a", "expand-0": "eb79a9b3682a", @@ -683,11 +688,11 @@ "13ab8771d5c0" ], "payloads": [ - "29ab02f35956", - "4d1d017cea91", - "251de2865843", - "c02d6dba8a29", - "06d558d172f7" + "b84494cf2d3b", + "deafdf0df276", + "94340748de2a", + "64f9432f6c71", + "eddbc5f50eef" ], "settlements": { "mount": "eb79a9b3682a", 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 cc1ae05c55e..eafb9db44fa 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "60ea389fe16734fb53db01101f1feb4496653a99faa09e4309b3790a50d558d7", "platform": "darwin", @@ -18,6 +18,11 @@ "value": false, "sent": 3 }, + "0a6de48086bd": { + "name": "github.project.listLabelsBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, "2ef615f214b1": { "name": "projectAssignableUsers", "value": [ @@ -94,10 +99,6 @@ ], "sent": 3 }, - "84c3fb2868bd": { - "name": "github.project.listIssueTypesBySlug#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "8f395e09a24b": { "name": "projectAvailableLabels", "value": [], @@ -144,9 +145,15 @@ } } }, - "9a8068985c26": { + "97d5d1b2d5a0": { + "name": "github.project.listIssueTypesBySlug#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listIssueTypesBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}", + "sent": 3 + }, + "a6bac73470d9": { "name": "github.project.listAssignableUsersBySlug#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listAssignableUsersBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"seedLogins\":[\"octocat\"]}}", + "sent": 3 }, "a9da2a563a6c": { "name": "projectLabelsLoading", @@ -196,10 +203,6 @@ ], "usersError": "" }, - "da36de1a5410": { - "name": "github.project.listLabelsBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -263,7 +266,7 @@ "id": "mounted", "observation": { "sender": ["3f5d8df504de", "ef507c348d21", "8fbb806f8730"], - "payloads": ["da36de1a5410", "9a8068985c26", "84c3fb2868bd"], + "payloads": ["0a6de48086bd", "a6bac73470d9", "97d5d1b2d5a0"], "settlements": { "mount": "eb79a9b3682a" }, 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 de18d393082..ba9ba51c20b 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "08caec8e0ab5e674aabbf034ca88fc4a000c4b645ad6397afe6dc18db1f7c098", "platform": "darwin", @@ -91,6 +91,11 @@ "mutating": false, "refreshSeq": 0 }, + "23b7a2047b2c": { + "name": "github.setPRFileViewed#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}", + "sent": 4 + }, "2cd85ef93c74": { "detail": { "assignees": ["octocat"], @@ -152,19 +157,11 @@ "mutating": false, "refreshSeq": 0 }, - "2eee910f375e": { - "name": "github.requestPRReviewers#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}" - }, "347fa6adc9f3": { "name": "projectRowDetailError", "value": "", "sent": 3 }, - "4b9b887ee27f": { - "name": "github.setPRFileViewed#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.setPRFileViewed\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"pullRequestId\":\"PR_kwDO\",\"path\":\"src/index.ts\",\"viewed\":true}}" - }, "5cdba004ba6c": { "detail": { "assignees": ["octocat"], @@ -355,6 +352,11 @@ "value": true, "sent": 3 }, + "78b2174d020d": { + "name": "github.prChecks#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}", + "sent": 2 + }, "7941a2b950be": { "name": "github.prChecks#1", "args": [ @@ -657,9 +659,10 @@ }, "sent": 4 }, - "98fec6b761cc": { - "name": "github.prChecks#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.prChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"noCache\":true}}" + "9f8e0346d638": { + "name": "github.requestPRReviewers#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.requestPRReviewers\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"reviewers\":[\"octocat\"]}}", + "sent": 1 }, "d10f79760196": { "name": "github.rerunPRChecks#1", @@ -707,9 +710,10 @@ "value": true, "sent": 1 }, - "dc5439b12876": { + "e931ac403da8": { "name": "github.rerunPRChecks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.rerunPRChecks\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"headSha\":\"head-sha\",\"failedOnly\":true}}", + "sent": 3 }, "eb79a9b3682a": { "status": "fulfilled", @@ -737,7 +741,7 @@ "id": "reviewers-settled", "observation": { "sender": ["8bb4bae45cc1"], - "payloads": ["2eee910f375e"], + "payloads": ["9f8e0346d638"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a" @@ -756,7 +760,7 @@ "id": "checks-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be"], - "payloads": ["2eee910f375e", "98fec6b761cc"], + "payloads": ["9f8e0346d638", "78b2174d020d"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -780,7 +784,7 @@ "id": "rerun-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", @@ -809,7 +813,7 @@ "id": "viewed-settled", "observation": { "sender": ["8bb4bae45cc1", "7941a2b950be", "d10f79760196", "694581af73a0"], - "payloads": ["2eee910f375e", "98fec6b761cc", "dc5439b12876", "4b9b887ee27f"], + "payloads": ["9f8e0346d638", "78b2174d020d", "e931ac403da8", "23b7a2047b2c"], "settlements": { "mount": "eb79a9b3682a", "reviewers-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-project-row-threads.json b/mobile/rpc-foundation/goldens/tk-project-row-threads.json index 5797f4cc10b..3ea27497fba 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "815f55c0fb848fc9345a66bb7b71b1351f17e56129e005eb1776d6b47c831647", "platform": "darwin", @@ -57,10 +57,6 @@ }, "sent": 1 }, - "095ff0ea9c3e": { - "name": "github.addPRReviewCommentReply#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}" - }, "0f3697bbd111": { "name": "projectMutating", "value": true, @@ -242,6 +238,11 @@ "value": {}, "sent": 4 }, + "8dc2f0b815b9": { + "name": "github.addPRReviewCommentReply#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"github.addPRReviewCommentReply\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"commentId\":501,\"body\":\"a reply\",\"threadId\":\"thread-1\",\"path\":\"src/index.ts\",\"line\":12}}", + "sent": 3 + }, "a7e90307fc74": { "name": "projectRowDetail", "value": { @@ -372,15 +373,21 @@ }, "sent": 3 }, - "cf954aa5f6bf": { + "d018a759f2a7": { "name": "github.resolveReviewThread#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.resolveReviewThread\",\"params\":{\"repo\":\"id:repo-1\",\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"threadId\":\"thread-1\",\"resolve\":true}}", + "sent": 2 }, "d1bb762720d5": { "name": "projectMutating", "value": true, "sent": 1 }, + "d49ee0febc71": { + "name": "github.addIssueComment#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}", + "sent": 4 + }, "d515951be1e3": { "name": "projectRowDetail", "value": { @@ -435,10 +442,6 @@ }, "sent": 4 }, - "d7467bca27a7": { - "name": "github.project.deleteIssueCommentBySlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}" - }, "df5e09a21420": { "name": "github.addIssueComment#1", "args": [ @@ -486,10 +489,6 @@ } } }, - "e3ad9b260dec": { - "name": "github.addIssueComment#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.addIssueComment\",\"params\":{\"repo\":\"id:repo-1\",\"number\":2,\"prRepo\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"},\"body\":\"@octocat a reply\",\"type\":\"pr\"}}" - }, "e76d5520ec18": { "detail": { "assignees": ["octocat"], @@ -599,6 +598,11 @@ } } }, + "f87580087aa8": { + "name": "github.project.deleteIssueCommentBySlug#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.deleteIssueCommentBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"commentId\":501}}", + "sent": 1 + }, "fa2e7b92e1d5": { "name": "projectMutating", "value": false, @@ -612,7 +616,7 @@ "id": "delete-comment-settled", "observation": { "sender": ["b94df8ff01a9"], - "payloads": ["d7467bca27a7"], + "payloads": ["f87580087aa8"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" @@ -625,7 +629,7 @@ "id": "thread-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf"], + "payloads": ["f87580087aa8", "d018a759f2a7"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -648,7 +652,7 @@ "id": "review-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", @@ -677,7 +681,7 @@ "id": "issue-reply-settled", "observation": { "sender": ["b94df8ff01a9", "1689d9f91f40", "f674d050fe62", "df5e09a21420"], - "payloads": ["d7467bca27a7", "cf954aa5f6bf", "095ff0ea9c3e", "e3ad9b260dec"], + "payloads": ["f87580087aa8", "d018a759f2a7", "8dc2f0b815b9", "d49ee0febc71"], "settlements": { "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tk-provider-load.json b/mobile/rpc-foundation/goldens/tk-provider-load.json index c82af60d52f..35144c77b08 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "21b6272878cba5f2b41c89378c178933ffc9406fe69b9c693fc5021a265ef2c9", "platform": "darwin", @@ -96,6 +96,11 @@ } } }, + "4d0c1292156f": { + "name": "linear.status#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}", + "sent": 1 + }, "552cce3107ea": { "name": "linearWorkspaces", "value": [ @@ -237,6 +242,11 @@ ], "sent": 2 }, + "92ae4abe086d": { + "name": "settings.update#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}", + "sent": 3 + }, "a6bfe3e8ec00": { "name": "settings.update#1", "args": [ @@ -308,30 +318,15 @@ } } }, - "b13993ed8b00": { - "name": "settings.update#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"settings.update\",\"params\":{\"defaultLinearTeamSelection\":[\"team-1\"]}}" - }, - "bfba52c22ce2": { - "name": "linear.listTeams#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}" - }, "c1c057249f99": { "name": "selectedLinearTeamIds", "value": ["team-1"], "sent": 2 }, - "c1e3ae5492e1": { - "name": "github.countWorkItems#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}" - }, - "cf53e1835dc8": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}" - }, - "e19509ebde55": { - "name": "linear.status#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.status\"}" + "d470c3799e01": { + "name": "linear.listTeams#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listTeams\",\"params\":{\"workspaceId\":\"linear-workspace\"}}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -340,6 +335,16 @@ "value": { "$rpc": "undefined" } + }, + "faf1e89d7c3c": { + "name": "github.countWorkItems#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"github.countWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"is:issue bug\"}}", + "sent": 5 + }, + "ffdcf2452e62": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"is:issue bug\"}}", + "sent": 4 } }, "recording": { @@ -349,7 +354,7 @@ "id": "linear-context-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2"], - "payloads": ["e19509ebde55", "bfba52c22ce2"], + "payloads": ["4d0c1292156f", "d470c3799e01"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a" @@ -368,7 +373,7 @@ "id": "persist-teams-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -388,7 +393,7 @@ "id": "github-page-settled", "observation": { "sender": ["775d7e2fb99d", "a9c001a4d8d2", "a6bfe3e8ec00", "7dabd82642ac"], - "payloads": ["e19509ebde55", "bfba52c22ce2", "b13993ed8b00", "cf53e1835dc8"], + "payloads": ["4d0c1292156f", "d470c3799e01", "92ae4abe086d", "ffdcf2452e62"], "settlements": { "mount": "eb79a9b3682a", "linear-context-0": "eb79a9b3682a", @@ -416,11 +421,11 @@ "0f9c77bd54ee" ], "payloads": [ - "e19509ebde55", - "bfba52c22ce2", - "b13993ed8b00", - "cf53e1835dc8", - "c1e3ae5492e1" + "4d0c1292156f", + "d470c3799e01", + "92ae4abe086d", + "ffdcf2452e62", + "faf1e89d7c3c" ], "settlements": { "mount": "eb79a9b3682a", 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 0db286c82f8..22fc38eb5f0 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "c5d28c2973881ae6cc94c7d8f6eef544046461f15e236634489afd272b5f1e6b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2c76473bef66": { "published": [] }, @@ -53,12 +49,18 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "9d1bfe4d6810": { "published": [["push.v1"]] }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -112,7 +114,7 @@ "id": "cutover-rejected-the-probe", "observation": { "sender": ["edf54746317d"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a", "migrate": "eb79a9b3682a" @@ -125,7 +127,7 @@ "id": "published-after-cutover-reask", "observation": { "sender": ["edf54746317d", "3e25b523d96b"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["852980e2efc0", "b33a14df0df6"], "settlements": { "start": "eb79a9b3682a", "migrate": "eb79a9b3682a" 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 6fb49d40812..49efa33f7af 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "95ef0a8b60bf92ef5c12a73f923dc143989b34374fb319f812fbaa58c79aa6a6", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { + "852980e2efc0": { "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 }, "cc97c2cd21f1": { "published": [[]] @@ -69,7 +70,7 @@ "id": "capabilities-rejected", "observation": { "sender": ["ecfb77e3d868"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -81,7 +82,7 @@ "id": "stopped", "observation": { "sender": ["ecfb77e3d868"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a", "stop": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json b/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json index a343a86e673..826d526946f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "6e0c3a784992e383a05ccfdf34e44e6f74ebd55ff17c4de0b05b2dfb4197c681", "platform": "darwin", @@ -13,9 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { + "852980e2efc0": { "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 }, "b4584cf1e1a9": { "name": "status.get#1", @@ -69,7 +70,7 @@ "id": "capabilities-published", "observation": { "sender": ["b4584cf1e1a9"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, 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 4ac28f50548..633c1202733 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "2ba1e1d70c98e2fd0d2d2dce6f68c11a186756f05207747e156375fc613940d7", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "2a265b3002f3": { "name": "status.get#2", "args": [ @@ -87,12 +83,18 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "9d1bfe4d6810": { "published": [["push.v1"]] }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "eb79a9b3682a": { "status": "fulfilled", @@ -110,7 +112,7 @@ "id": "backing-off", "observation": { "sender": ["3b0e75cbba89"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "start": "eb79a9b3682a" }, @@ -122,7 +124,7 @@ "id": "published-after-backoff", "observation": { "sender": ["3b0e75cbba89", "2a265b3002f3"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["852980e2efc0", "b33a14df0df6"], "settlements": { "start": "eb79a9b3682a" }, 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 70cef3caac8..c375b13a553 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "f25f444aca6cf768c602bf879e6b30235d1c4c0632636cfd245bd6e27959756b", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "36d81979cef2": { "appVersion": "1.4.200", "capabilities": ["mobile.tasks.v1", "push.v1"], @@ -26,6 +22,11 @@ "kind": "ok" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -79,7 +80,7 @@ "id": "gates-proven", "observation": { "sender": ["eed0ae8cfbd7"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, @@ -91,7 +92,7 @@ "id": "gates-unverified", "observation": { "sender": ["eed0ae8cfbd7"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a", "drop": "eb79a9b3682a" 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 5a48185a38b..9d601a4aae1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "9c5095c24bdf5ab65d6387cc22b9984fee3aa7d5ce93d96bcb470944ac253f86", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "36d81979cef2": { "appVersion": "1.4.200", "capabilities": ["mobile.tasks.v1", "push.v1"], @@ -26,6 +22,11 @@ "kind": "ok" } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -79,7 +80,7 @@ "id": "gates-proven", "observation": { "sender": ["eed0ae8cfbd7"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 f56549a0ff9..8260f15633e 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "a7871b5f1d37b0156970858d5a7fcab3105de7a8a6bfe827299a36f2b2ba5548", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "3b0e75cbba89": { "name": "status.get#1", "args": [ @@ -51,6 +47,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "df2c10616b5e": { "appVersion": { "$rpc": "null" @@ -78,7 +79,7 @@ "id": "gates-degraded", "observation": { "sender": ["3b0e75cbba89"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "mount": "eb79a9b3682a" }, 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 9e4d3a24898..6d9a7299b2a 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "4f0ddbea3c08ea3e90f6e707215a4831f06aed408065b45d0771028d256d6b12", "platform": "darwin", @@ -57,10 +57,6 @@ "isRpcDeliveryUnknown": false } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "4b5a09699ceb": { "name": "status.get#1", "args": [ @@ -95,9 +91,15 @@ } } }, - "c0c86e67c300": { + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "d25369399414": { "outcome": "failed: direct and relay pairing paths both failed" @@ -110,7 +112,7 @@ "id": "both-paths-failed", "observation": { "sender": ["4b5a09699ceb", "001216175103"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "1329c4d27ca9" }, 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 bb1bed4e0e9..34ecb1bcd32 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "488173fa313295f97aa88fb4bf1944fdb655e37cfd2444e9d15515bd6ad82d95", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -83,15 +79,21 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "93edac3a1c3e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": "direct" }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "d433a326314e": { "name": "candidate-closed", @@ -109,7 +111,7 @@ "id": "direct-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "93edac3a1c3e" }, 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 ee2072dc2a5..9737a5f488c 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "dee9824e5ec32115fa7dfaaf223fc34c28d057a5526ac3dad42365543288a934", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "26f802fad080": { "name": "status.get#1", "args": [ @@ -89,6 +85,11 @@ "settledAt": 0, "value": "relay" }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "a7d5becc0aed": { "outcome": "relay" }, @@ -97,9 +98,10 @@ "value": "direct", "sent": 2 }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -109,7 +111,7 @@ "id": "relay-wins-when-it-completes-first", "observation": { "sender": ["26f802fad080", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, 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 98a80bb9ce0..c4ed8753fef 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "a34ffec446f9bbc465bd3f7d0a43166c9bc221a6ece8714e0b5717169625cf43", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "36caf183b988": { "name": "status.get#2", "args": [ @@ -90,6 +86,11 @@ } } }, + "63ab1563ba51": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 + }, "a7d5becc0aed": { "outcome": "relay" }, @@ -98,9 +99,10 @@ "value": "direct", "sent": 2 }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 } }, "recording": { @@ -110,7 +112,7 @@ "id": "relay-wins", "observation": { "sender": ["4b5a09699ceb", "36caf183b988"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["63ab1563ba51", "b33a14df0df6"], "settlements": { "race": "416024b9c436" }, diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json index a5803301369..0c3cea65871 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "9d79bcfd6957d11d5ce8c3296f1038a3cfab81eedad7f990b44071104dfd0f91", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "5242fad3532f": { "name": "status.get#1", "args": [ @@ -65,6 +61,11 @@ } } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "b33d34bddc4e": { "status": "fulfilled", "startedAt": 0, @@ -87,7 +88,7 @@ "id": "probed", "observation": { "sender": ["5242fad3532f"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "b33d34bddc4e" }, diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json index 9ddd488c409..cb60a81bfbc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "fb9c0e4b7c34f9bd1bd355b606c6ba75a7583cff3788000b7ed013612f5574fe", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "32354557bece": { "capabilities": "unprobed" }, @@ -29,6 +25,11 @@ "worktreeCreateIdempotency": false } }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -78,9 +79,10 @@ } } }, - "c0c86e67c300": { + "b33a14df0df6": { "name": "status.get#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 2 }, "c9c0513fdcb9": { "name": "status.get#2", @@ -159,7 +161,7 @@ "id": "reprobing-after-cutover", "observation": { "sender": ["edf54746317d", "c9c0513fdcb9"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["852980e2efc0", "b33a14df0df6"], "settlements": { "probe": "9270aeb7d9c6", "migrate": "eb79a9b3682a" @@ -172,7 +174,7 @@ "id": "probed-on-replacement", "observation": { "sender": ["edf54746317d", "ae9ff6b74ec1"], - "payloads": ["1e5b32902af7", "c0c86e67c300"], + "payloads": ["852980e2efc0", "b33a14df0df6"], "settlements": { "probe": "a8bcef1e95ed", "migrate": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json index 4a4a29ad8d8..a72944d1cf9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "d73fed49e0a7e3e054d5c2fa75780f98bf78b6fa7e02f1ccb2fdc49465cf2fe5", "platform": "darwin", @@ -27,10 +27,6 @@ } } }, - "1e5b32902af7": { - "name": "status.get#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" - }, "3b0c9705ec9a": { "capabilities": { "hostPlatform": { @@ -74,6 +70,11 @@ } } } + }, + "852980e2efc0": { + "name": "status.get#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}", + "sent": 1 } }, "recording": { @@ -83,7 +84,7 @@ "id": "legacy-host-window", "observation": { "sender": ["488c988b5918"], - "payloads": ["1e5b32902af7"], + "payloads": ["852980e2efc0"], "settlements": { "probe": "03f6a4ac937a" }, 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 b136b388d34..b32ae728064 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "a99bb80a5826af1df8d74114fcc5654aa42c9208747b512cea9bd5ca65b64ccb", "platform": "darwin", @@ -49,14 +49,15 @@ "3f946ad0279c": { "outcome": "uncreated" }, - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -83,7 +84,7 @@ "id": "waiting-for-reconnect", "observation": { "sender": ["3b42c7d5a39b"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "9270aeb7d9c6", "drop": "eb79a9b3682a" @@ -96,7 +97,7 @@ "id": "replay-window-abandoned", "observation": { "sender": ["3b42c7d5a39b"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "f0d75436c3f2", "drop": "eb79a9b3682a" 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 dd784c27b05..e7162442ef9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "3cda09e4a4ad4092f5f9a48b7c9715a99a51eb3bc4bed00f7054537a9e21cea9", "platform": "darwin", @@ -16,10 +16,6 @@ "3f946ad0279c": { "outcome": "uncreated" }, - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "4b9d2713abf2": { "status": "rejected", "startedAt": 0, @@ -62,6 +58,11 @@ "isRpcDeliveryUnknown": true } } + }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 } }, "recording": { @@ -71,7 +72,7 @@ "id": "unknown-not-failed", "observation": { "sender": ["50eee544463d"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "4b9d2713abf2" }, 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 24173d6408b..f250d7420ed 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "61097c13b262a4454510936fa9c9554a07865b610f18407f1b67bdd74476df08", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "08a8f26d375e": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\"}}", + "sent": 1 + }, "3f946ad0279c": { "outcome": "uncreated" }, @@ -26,10 +31,6 @@ "isRpcDeliveryUnknown": true } }, - "99d539e63c12": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\"}}" - }, "a179866627c5": { "name": "worktree.create#1", "args": [ @@ -70,7 +71,7 @@ "id": "unstamped-create-is-not-replayed", "observation": { "sender": ["a179866627c5"], - "payloads": ["99d539e63c12"], + "payloads": ["08a8f26d375e"], "settlements": { "create": "6d0209806267" }, diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-created.json b/mobile/rpc-foundation/goldens/tw-create-retry-created.json index 489cf1a06e2..bd8d03f45a5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "0278216fee698c00118bb0e73a7fe755dc59c3b8e2b0459153edae64f155774c", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "489c189aebca": { "name": "worktree.create#1", "args": [ @@ -64,6 +60,11 @@ "worktreeId": "repo-1::/w" } }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 + }, "df162b95f465": { "outcome": { "name": "kestrel", @@ -78,7 +79,7 @@ "id": "created", "observation": { "sender": ["489c189aebca"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "b32227fdb10b" }, 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 bb8ad4e4ea1..6b226c19790 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "6cb658dadc9e146c4f36c6ce643451e72300b8cdda19cc684ffa9fb2b0822c0a", "platform": "darwin", @@ -52,14 +52,6 @@ "3f946ad0279c": { "outcome": "uncreated" }, - "3fa75e508233": { - "name": "worktree.create#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel-2\",\"clientMutationId\":\"mutation-2\"}}" - }, - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -73,6 +65,11 @@ "worktreeId": "repo-1::/w2" } }, + "b701efecb63f": { + "name": "worktree.create#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel-2\",\"clientMutationId\":\"mutation-2\"}}", + "sent": 2 + }, "c277d86477c3": { "name": "worktree.create#2", "args": [ @@ -143,6 +140,11 @@ "name": "kestrel-2", "worktreeId": "repo-1::/w2" } + }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 } }, "recording": { @@ -152,7 +154,7 @@ "id": "retrying", "observation": { "sender": ["2b7c07c2d2af", "c277d86477c3"], - "payloads": ["43a221c63628", "3fa75e508233"], + "payloads": ["de75bbf6c762", "b701efecb63f"], "settlements": { "create": "9270aeb7d9c6" }, @@ -164,7 +166,7 @@ "id": "created-suffixed", "observation": { "sender": ["2b7c07c2d2af", "d0c9ecd48c97"], - "payloads": ["43a221c63628", "3fa75e508233"], + "payloads": ["de75bbf6c762", "b701efecb63f"], "settlements": { "create": "96ffe866d064" }, 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 63d166bc0b2..32bf407affd 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "16abe9e1a8d4cff17b3ea29d40277ae30a3d555a4a9efa08b2745c3a85b02740", "platform": "darwin", @@ -21,10 +21,6 @@ "error": "" } }, - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "43e8315bc2fe": { "name": "worktree.create#1", "args": [ @@ -65,6 +61,11 @@ "outcome": { "error": "" } + }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 } }, "recording": { @@ -74,7 +75,7 @@ "id": "refused-empty-message", "observation": { "sender": ["43e8315bc2fe"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "240b0b1c72b2" }, 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 f36f831dd61..185fb477ee6 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f469b2b7d61e7fc500fa97b5548f5a3732b0dbcdb405412a514a609f786dfbb5", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "43a221c63628": { - "name": "worktree.create#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" - }, "6ad759c47a41": { "name": "worktree.create#1", "args": [ @@ -65,6 +61,11 @@ "worktreeId": "repo-1::/w" } }, + "de75bbf6c762": { + "name": "worktree.create#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}", + "sent": 1 + }, "f800fc04633e": { "outcome": { "name": "kestrel", @@ -80,7 +81,7 @@ "id": "created-with-warning", "observation": { "sender": ["6ad759c47a41"], - "payloads": ["43a221c63628"], + "payloads": ["de75bbf6c762"], "settlements": { "create": "97555d579c32" }, diff --git a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json index aff4170c6ae..ba27d319217 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "b3734c24f8a083d3efcdd995ea6a57e608d3d3ae3bbbd514db19dcf69448fa48", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0e24d2a37a0d": { - "name": "worktree.resolvePrBase#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" - }, "236529aa012d": { "mrBase": "unresolved", "prBase": { @@ -78,9 +74,15 @@ "compareBaseRef": "origin/main" } }, - "69afcaf1cb72": { + "65f985665d42": { "name": "worktree.resolveMrBase#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}", + "sent": 2 + }, + "95d2391d09f2": { + "name": "worktree.resolvePrBase#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}", + "sent": 1 }, "aad8e7ddeea2": { "name": "worktree.resolveMrBase#1", @@ -133,7 +135,7 @@ "id": "pr-base-resolved", "observation": { "sender": ["4febe923ceea"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "5428de0f5130" }, @@ -145,7 +147,7 @@ "id": "mr-base-resolved", "observation": { "sender": ["4febe923ceea", "aad8e7ddeea2"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "5428de0f5130", "mr": "fd552ecb03da" 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 c1a5df6975e..335b648b6fc 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "451e74a430d2549976fa360a0e43e76a8d855b1470b8e313797019770ceca4cb", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0e24d2a37a0d": { - "name": "worktree.resolvePrBase#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" - }, - "69afcaf1cb72": { + "65f985665d42": { "name": "worktree.resolveMrBase#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolveMrBase\",\"params\":{\"repo\":\"id:repo-1\",\"mrIid\":7,\"sourceBranch\":\"feature\"}}", + "sent": 2 }, "723a115a3810": { "name": "worktree.resolveMrBase#1", @@ -56,6 +53,11 @@ } } }, + "95d2391d09f2": { + "name": "worktree.resolvePrBase#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}", + "sent": 1 + }, "ae0c82b12f2a": { "status": "rejected", "startedAt": 0, @@ -123,7 +125,7 @@ "id": "in-band-error", "observation": { "sender": ["eb01c2306db5"], - "payloads": ["0e24d2a37a0d"], + "payloads": ["95d2391d09f2"], "settlements": { "pr": "ae0c82b12f2a" }, @@ -135,7 +137,7 @@ "id": "in-band-empty-error", "observation": { "sender": ["eb01c2306db5", "723a115a3810"], - "payloads": ["0e24d2a37a0d", "69afcaf1cb72"], + "payloads": ["95d2391d09f2", "65f985665d42"], "settlements": { "pr": "ae0c82b12f2a", "mr": "f3b516f62081" diff --git a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json index efc3eb8f2f2..a84c67b4717 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "1fb1cdc8a2544e25547175760143a61355900a3ed4b87e08a1fa0dd2409e317d", "platform": "darwin", @@ -33,10 +33,6 @@ } } }, - "11ab96fde6c9": { - "name": "gitlab.workItemByPath#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}" - }, "2113a0cc7708": { "by-number": { "number": 12, @@ -70,6 +66,11 @@ } } }, + "293712bf6b06": { + "name": "github.workItemByOwnerRepo#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}", + "sent": 2 + }, "4a3429622287": { "by-number": { "number": 12, @@ -88,6 +89,11 @@ "title": "seven" } }, + "62d4d4b68fd1": { + "name": "github.repoSlug#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 4 + }, "65342779da15": { "name": "github.workItem#1", "args": [ @@ -167,14 +173,6 @@ } } }, - "a45a7dd68af6": { - "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, - "aaf80675fc49": { - "name": "github.workItem#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, "bd533f6b0b40": { "status": "fulfilled", "startedAt": 0, @@ -185,9 +183,10 @@ "title": "seven" } }, - "e1f537905a65": { - "name": "github.workItemByOwnerRepo#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" + "d296887f365c": { + "name": "gitlab.workItemByPath#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.workItemByPath\",\"params\":{\"repo\":\"id:repo-1\",\"host\":\"gitlab.com\",\"path\":\"group/project\",\"iid\":7,\"type\":\"issue\"}}", + "sent": 3 }, "e29333b1693f": { "name": "gitlab.workItemByPath#1", @@ -240,6 +239,11 @@ }, "cache": [] }, + "ee9b55f8dafb": { + "name": "github.workItem#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}", + "sent": 1 + }, "f9ea1f747023": { "name": "github.workItemByOwnerRepo#1", "args": [ @@ -286,7 +290,7 @@ "id": "by-number", "observation": { "sender": ["65342779da15"], - "payloads": ["aaf80675fc49"], + "payloads": ["ee9b55f8dafb"], "settlements": { "by-number": "731507dd2e23" }, @@ -298,7 +302,7 @@ "id": "by-slug", "observation": { "sender": ["65342779da15", "f9ea1f747023"], - "payloads": ["aaf80675fc49", "e1f537905a65"], + "payloads": ["ee9b55f8dafb", "293712bf6b06"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23" @@ -311,7 +315,7 @@ "id": "gitlab-path", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", @@ -325,7 +329,7 @@ "id": "repo-slug-matched", "observation": { "sender": ["65342779da15", "f9ea1f747023", "e29333b1693f", "7445a582a9c8"], - "payloads": ["aaf80675fc49", "e1f537905a65", "11ab96fde6c9", "a45a7dd68af6"], + "payloads": ["ee9b55f8dafb", "293712bf6b06", "d296887f365c", "62d4d4b68fd1"], "settlements": { "by-number": "731507dd2e23", "by-slug": "731507dd2e23", 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 2df30382131..49af9ef2417 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "e9d85c576adf93063a8f56d49d28869c402cad38122732b46b8ec021d25db5e3", "platform": "darwin", @@ -99,13 +99,10 @@ "$rpc": "null" } }, - "5f7cab1e0f03": { - "name": "github.repoSlug#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-2\"}}" - }, - "6530ef4dbd15": { + "81640993e00b": { "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 }, "ee20a1dc39e7": { "status": "fulfilled", @@ -114,6 +111,11 @@ "value": { "$rpc": "null" } + }, + "f8c36eed105d": { + "name": "github.repoSlug#2", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-2\"}}", + "sent": 2 } }, "recording": { @@ -123,7 +125,7 @@ "id": "refusal-is-per-repo", "observation": { "sender": ["2d9e475c68c7", "0b81b65669e6"], - "payloads": ["6530ef4dbd15", "5f7cab1e0f03"], + "payloads": ["81640993e00b", "f8c36eed105d"], "settlements": { "repo-slug": "ee20a1dc39e7" }, 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 b766e36ad3d..6f86370c208 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "14509b4c1cc3beb00cc329b6bae46913f59b3938f76c0bd3bf3e374f34fb680d", "platform": "darwin", @@ -88,9 +88,10 @@ "$rpc": "null" } }, - "6530ef4dbd15": { + "81640993e00b": { "name": "github.repoSlug#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 }, "ee20a1dc39e7": { "status": "fulfilled", @@ -108,7 +109,7 @@ "id": "host-wide-probe-cached", "observation": { "sender": ["0f35c09b3d1e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "repo-slug": "ee20a1dc39e7" }, @@ -120,7 +121,7 @@ "id": "no-second-probe", "observation": { "sender": ["0f35c09b3d1e"], - "payloads": ["6530ef4dbd15"], + "payloads": ["81640993e00b"], "settlements": { "repo-slug": "ee20a1dc39e7", "repo-slug-again": "ee20a1dc39e7" 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 a75a3111109..57d1d82e515 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "0d2e3f48aadf45abbf6927b72ed5fef4caa8e3eb2efd1046339a3fbfab6f9f18", "platform": "darwin", @@ -56,9 +56,10 @@ } } }, - "341f646a48a2": { + "4ebca8a81063": { "name": "ui.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"all\":{\"approvedAt\":1767225600000}}}}}" + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"all\":{\"approvedAt\":1767225600000}}}}}", + "sent": 1 }, "f3b516f62081": { "status": "rejected", @@ -78,7 +79,7 @@ "id": "refused-empty-message", "observation": { "sender": ["2fde86b1acca"], - "payloads": ["341f646a48a2"], + "payloads": ["4ebca8a81063"], "settlements": { "approve": "f3b516f62081" }, 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 24d948c2c98..14512e62063 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "f54f5c6dbbe7dbcf8e85e9bd36b27ca9bea7de65d5e35dabace49b3fc766a403", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0f68ccbfb8e9": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}" - }, "6f009f61d89f": { "name": "ui.set#1", "args": [ @@ -57,6 +53,11 @@ } } }, + "99f419f3b772": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}", + "sent": 1 + }, "a406b068aeca": { "status": "fulfilled", "startedAt": 0, @@ -88,7 +89,7 @@ "id": "approved", "observation": { "sender": ["6f009f61d89f"], - "payloads": ["0f68ccbfb8e9"], + "payloads": ["99f419f3b772"], "settlements": { "approve": "a406b068aeca" }, 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 1de355bc994..74b2d3a49d2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "283849e17fb47ad5f9c128cef37a18e869a132357b332b40bec955292db2af3f", "platform": "darwin", @@ -67,6 +67,11 @@ } ] }, + "2a23cc4740e0": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 2 + }, "2cfd107b9660": { "github": [ { @@ -95,10 +100,6 @@ } ] }, - "3828d5880c35": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "41d2452d4ebe": { "github": [ { @@ -211,6 +212,21 @@ } ] }, + "941f815566f4": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 5 + }, + "955ddb924df7": { + "name": "github.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}", + "sent": 1 + }, + "9e06be33a485": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}", + "sent": 4 + }, "a4ee5d16b4f6": { "status": "fulfilled", "startedAt": 0, @@ -267,10 +283,6 @@ } ] }, - "b8b02a30b6b8": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, "c43e80126d82": { "branches": [ { @@ -302,17 +314,10 @@ } ] }, - "e97e5a589476": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "ead829dd6d03": { + "c9256f29d706": { "name": "linear.searchIssues#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}" - }, - "ee6fe4f97b01": { - "name": "github.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"linear.searchIssues\",\"params\":{\"query\":\"bug\",\"limit\":50,\"workspaceId\":\"linear-workspace\"}}", + "sent": 3 }, "f32ad26605d0": { "name": "gitlab.listWorkItems#1", @@ -407,7 +412,7 @@ "id": "github-items", "observation": { "sender": ["5bce68072dc3"], - "payloads": ["ee6fe4f97b01"], + "payloads": ["955ddb924df7"], "settlements": { "github": "36290ab254a4" }, @@ -419,7 +424,7 @@ "id": "gitlab-items", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0"], - "payloads": ["ee6fe4f97b01", "3828d5880c35"], + "payloads": ["955ddb924df7", "2a23cc4740e0"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7" @@ -432,7 +437,7 @@ "id": "linear-search", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -446,7 +451,7 @@ "id": "branch-refs", "observation": { "sender": ["5bce68072dc3", "f32ad26605d0", "6107c951646f", "25f88995b39a"], - "payloads": ["ee6fe4f97b01", "3828d5880c35", "ead829dd6d03", "b8b02a30b6b8"], + "payloads": ["955ddb924df7", "2a23cc4740e0", "c9256f29d706", "9e06be33a485"], "settlements": { "github": "36290ab254a4", "gitlab": "6e2d75e3bbd7", @@ -468,11 +473,11 @@ "fe7f60b5d785" ], "payloads": [ - "ee6fe4f97b01", - "3828d5880c35", - "ead829dd6d03", - "b8b02a30b6b8", - "e97e5a589476" + "955ddb924df7", + "2a23cc4740e0", + "c9256f29d706", + "9e06be33a485", + "941f815566f4" ], "settlements": { "github": "36290ab254a4", 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 650c1db2790..98e9bbfa3a1 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "4537bf83f7a030521eec549adf4490da5be183471d5a9f9e58b71815b29481ff", "platform": "darwin", @@ -14,10 +14,6 @@ "goldenFormatVersion": 5, "values": { "44136fa355b3": {}, - "46027e62015d": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" - }, "51e012c25ebf": { "branches": [ { @@ -66,6 +62,11 @@ } } }, + "5f5d42cbb59c": { + "name": "gitlab.listWorkItems#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}", + "sent": 1 + }, "791f6fc629fc": { "status": "fulfilled", "startedAt": 0, @@ -77,10 +78,6 @@ } ] }, - "86057be07bd0": { - "name": "gitlab.listWorkItems#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" - }, "97c2301d5d8c": { "name": "gitlab.listWorkItems#1", "args": [ @@ -122,6 +119,11 @@ } } }, + "bc245469b086": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}", + "sent": 2 + }, "bf7ab976b200": { "status": "rejected", "startedAt": 0, @@ -140,7 +142,7 @@ "id": "in-band-provider-error", "observation": { "sender": ["97c2301d5d8c"], - "payloads": ["86057be07bd0"], + "payloads": ["5f5d42cbb59c"], "settlements": { "gitlab": "bf7ab976b200" }, @@ -152,7 +154,7 @@ "id": "branch-ref-details", "observation": { "sender": ["97c2301d5d8c", "522d9e5c292e"], - "payloads": ["86057be07bd0", "46027e62015d"], + "payloads": ["5f5d42cbb59c", "bc245469b086"], "settlements": { "gitlab": "bf7ab976b200", "branches": "791f6fc629fc" 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 c5219fb573e..bf6b5460d5f 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", "scenarioSha256": "34ab4edb621856980c8678629bd809c100d27dcd0747db5abbf4508c7231b7e5", "platform": "darwin", @@ -52,6 +52,11 @@ } } }, + "983dbe8444ac": { + "name": "linear.listIssues#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}", + "sent": 1 + }, "a95bdb94e589": { "status": "fulfilled", "startedAt": 0, @@ -62,10 +67,6 @@ } ] }, - "b107467b4d7c": { - "name": "linear.listIssues#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, "f2b981b0b281": { "linear": [ { @@ -81,7 +82,7 @@ "id": "linear-assigned", "observation": { "sender": ["4e3aac46030e"], - "payloads": ["b107467b4d7c"], + "payloads": ["983dbe8444ac"], "settlements": { "linear": "a95bdb94e589" }, 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 065becd2f33..4e2be1f84c3 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "31bfa49f888b0eb3f72873bf4a3af26129e78c23126e8fc8fe45b952caa60904", "platform": "darwin", @@ -13,13 +13,10 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "43a97b36b849": { + "7a73ebbabb90": { "name": "ui.set#2", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}" - }, - "8214f29cee6d": { - "name": "ui.set#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"taskResumeState\":{\"githubItemsPreset\":\"issues\"}}}" + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"trustedOrcaHooks\":{\"repo-1\":{\"setup\":{\"contentHash\":\"hash-1\",\"approvedAt\":1767225600000}}}}}", + "sent": 2 }, "a569eb8ebbdd": { "name": "ui.set#1", @@ -101,6 +98,11 @@ } } }, + "e7c50b077f61": { + "name": "ui.set#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ui.set\",\"params\":{\"taskResumeState\":{\"githubItemsPreset\":\"issues\"}}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -127,7 +129,7 @@ "id": "best-effort-resume-write", "observation": { "sender": ["a569eb8ebbdd"], - "payloads": ["8214f29cee6d"], + "payloads": ["e7c50b077f61"], "settlements": { "mount": "eb79a9b3682a", "resume": "eb79a9b3682a" @@ -140,7 +142,7 @@ "id": "awaited-trust-write-refused", "observation": { "sender": ["a569eb8ebbdd", "bea815de84ac"], - "payloads": ["8214f29cee6d", "43a97b36b849"], + "payloads": ["e7c50b077f61", "7a73ebbabb90"], "settlements": { "mount": "eb79a9b3682a", "resume": "eb79a9b3682a", 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 d13acd1a7a8..d68daef92d2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "2cd1e8972f226572744dad7da82afffbdf0452a121c1cd8c3334d5c3fde5d57c", "platform": "darwin", @@ -18,10 +18,6 @@ "value": false, "sent": 1 }, - "4cedb91a2f7a": { - "name": "repo.sparsePresets#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "539a8c80071f": { "name": "workspaceSparsePresetsLoaded", "value": false, @@ -93,6 +89,11 @@ "value": false, "sent": 1 }, + "c9ed58434d0b": { + "name": "repo.sparsePresets#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "d74e7c93c5be": { "name": "workspaceBaseBranchResults", "value": [], @@ -131,7 +132,7 @@ "id": "presets-refused-empty-message", "observation": { "sender": ["5bad21b1e042"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json index a3061013eaa..bf76dff1abe 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "046dd3a125a3c9abcf5a0dd122818939b516adb91cbda2554b3409d4bb3a7980", "platform": "darwin", @@ -64,14 +64,6 @@ } } }, - "46027e62015d": { - "name": "repo.searchRefs#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" - }, - "4cedb91a2f7a": { - "name": "repo.sparsePresets#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "539a8c80071f": { "name": "workspaceSparsePresetsLoaded", "value": false, @@ -143,6 +135,11 @@ "presetsError": "", "presetsLoaded": true }, + "bc245469b086": { + "name": "repo.searchRefs#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}", + "sent": 2 + }, "c8d4d05367d6": { "name": "repo.sparsePresets#1", "args": [ @@ -182,6 +179,11 @@ } } }, + "c9ed58434d0b": { + "name": "repo.sparsePresets#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"repo.sparsePresets\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "d74e7c93c5be": { "name": "workspaceBaseBranchResults", "value": [], @@ -220,7 +222,7 @@ "id": "presets-loaded", "observation": { "sender": ["c8d4d05367d6"], - "payloads": ["4cedb91a2f7a"], + "payloads": ["c9ed58434d0b"], "settlements": { "mount": "eb79a9b3682a" }, @@ -243,7 +245,7 @@ "id": "branches-loaded", "observation": { "sender": ["c8d4d05367d6", "395368dea8ff"], - "payloads": ["4cedb91a2f7a", "46027e62015d"], + "payloads": ["c9ed58434d0b", "bc245469b086"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" 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 e0847745de9..24d9a106930 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "865a659012dd882fd6073813585e2911a1d6252404fbf5a5e273f062b89fc91d", "platform": "darwin", @@ -18,6 +18,16 @@ "value": "Failed to save sparse preset.", "sent": 2 }, + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 + }, + "15dd622cbe08": { + "name": "repo.saveSparsePreset#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}", + "sent": 2 + }, "193c0bc3cf2a": { "presets": [], "presetsError": "Failed to save sparse preset.", @@ -128,14 +138,6 @@ "ok": false } } - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, - "fd758406cc2c": { - "name": "repo.saveSparsePreset#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}" } }, "recording": { @@ -145,7 +147,7 @@ "id": "saved-without-preset", "observation": { "sender": ["f22d3216eb8d", "a6bf06ff84e0"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" diff --git a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json index bcac8038c58..99a32967aa2 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "124f664e339bfd83a1d892e1cd953a78fdf0dc4b20c4272356d24079c72a3e04", "platform": "darwin", @@ -13,6 +13,16 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "14b354ce0ded": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 1 + }, + "15dd622cbe08": { + "name": "repo.saveSparsePreset#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}", + "sent": 2 + }, "3f2baafe9f80": { "name": "workspaceSparseSaving", "value": false, @@ -186,14 +196,6 @@ "$rpc": "null" }, "sent": 2 - }, - "f9dfbe0c0ea7": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, - "fd758406cc2c": { - "name": "repo.saveSparsePreset#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}" } }, "recording": { @@ -203,7 +205,7 @@ "id": "ssh-state-read", "observation": { "sender": ["89aa7a3bd619"], - "payloads": ["f9dfbe0c0ea7"], + "payloads": ["14b354ce0ded"], "settlements": { "mount": "eb79a9b3682a" }, @@ -215,7 +217,7 @@ "id": "preset-saved", "observation": { "sender": ["89aa7a3bd619", "5c44ff5f6877"], - "payloads": ["f9dfbe0c0ea7", "fd758406cc2c"], + "payloads": ["14b354ce0ded", "15dd622cbe08"], "settlements": { "mount": "eb79a9b3682a", "save": "eb79a9b3682a" 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 9557a654a28..56ebd2dea61 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "dd25391fdd3dc864ae493f72d013e789884a21e9c71522edc79323bc2b6c7f76", "platform": "darwin", @@ -95,10 +95,6 @@ } } }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "55904d40a00f": { "agent": "claude", "connecting": false, @@ -117,15 +113,16 @@ "targetId": "ssh-1" } }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "77b6cedadbe8": { "name": "workspaceAgentOverridden", "value": false, "sent": 0 }, - "7c9498659f58": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "8509334ad6ae": { "agent": "claude", "connecting": false, @@ -208,6 +205,11 @@ } } }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "db1cde7aa6f5": { "name": "workspaceSshConnecting", "value": false, @@ -220,6 +222,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -227,10 +234,6 @@ "value": { "$rpc": "undefined" } - }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -240,7 +243,7 @@ "id": "connect-refused-empty-message", "observation": { "sender": ["27b09a2898b9", "12826f529c2a"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -262,7 +265,7 @@ "id": "setup-skipped", "observation": { "sender": ["27b09a2898b9", "12826f529c2a", "b302d21e1567"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", diff --git a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json index cf7e0dfefe5..4b8ae1161d9 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "495f51d9c2f7f3d71f53a53e88786b8d1f767a5bf66b8655c28222d2909a964c", "platform": "darwin", @@ -84,10 +84,6 @@ }, "sent": 2 }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "43ead075ce12": { "agent": "claude", "connecting": false, @@ -110,6 +106,11 @@ "targetId": "ssh-1" } }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "71d817ffdd81": { "name": "ssh.connect#1", "args": [ @@ -155,10 +156,6 @@ "value": false, "sent": 0 }, - "7c9498659f58": { - "name": "ssh.connect#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "80a4af19f556": { "name": "repo.hooks#1", "args": [ @@ -238,6 +235,11 @@ "targetId": "ssh-1" } }, + "c461e0bfea7c": { + "name": "ssh.connect#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.connect\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "db1cde7aa6f5": { "name": "workspaceSshConnecting", "value": false, @@ -250,6 +252,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -257,10 +264,6 @@ "value": { "$rpc": "undefined" } - }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -270,7 +273,7 @@ "id": "agents-detected", "observation": { "sender": ["17e35b25d15d"], - "payloads": ["37921d9fdeb7"], + "payloads": ["6ec9160ebc42"], "settlements": { "mount": "eb79a9b3682a" }, @@ -282,7 +285,7 @@ "id": "connected", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81"], - "payloads": ["37921d9fdeb7", "7c9498659f58"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" @@ -304,7 +307,7 @@ "id": "setup-prompted", "observation": { "sender": ["17e35b25d15d", "71d817ffdd81", "80a4af19f556"], - "payloads": ["37921d9fdeb7", "7c9498659f58", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "c461e0bfea7c", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", 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 f29fa35148e..a20c56a6937 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "af0623c2d106d2ed18ef9149d4990539f9ed82146ae091a872a3e1d792efeffe", "platform": "darwin", @@ -32,6 +32,11 @@ "value": false, "sent": 0 }, + "c56f76942e16": { + "name": "preflight.detectAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}", + "sent": 1 + }, "cb93b17470e8": { "name": "preflight.detectAgents#1", "args": [ @@ -63,10 +68,6 @@ } } }, - "cf32edc950ac": { - "name": "preflight.detectAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectAgents\"}" - }, "d00f9527d4f2": { "name": "workspaceDetectedAgentIds", "value": ["codex", "claude"], @@ -95,7 +96,7 @@ "id": "local-agents-detected", "observation": { "sender": ["cb93b17470e8"], - "payloads": ["cf32edc950ac"], + "payloads": ["c56f76942e16"], "settlements": { "mount": "eb79a9b3682a" }, 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 72ec5a2cfaf..1b9ec34ed00 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3aa23f15da8fe9972e47c767db454b41750ca353ab10797082fde4514ffe9da0", "platform": "darwin", @@ -13,10 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0adf11d42d1a": { - "name": "ssh.getState#1", - "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" - }, "0c2cba5f3708": { "name": "workspaceAgent", "value": "claude", @@ -110,10 +106,6 @@ } } }, - "37921d9fdeb7": { - "name": "preflight.detectRemoteAgents#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}" - }, "433c16de7ff8": { "name": "workspaceSshState", "value": { @@ -126,11 +118,21 @@ }, "sent": 2 }, + "6ec9160ebc42": { + "name": "preflight.detectRemoteAgents#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.detectRemoteAgents\",\"params\":{\"connectionId\":\"ssh-1\"}}", + "sent": 1 + }, "77b6cedadbe8": { "name": "workspaceAgentOverridden", "value": false, "sent": 0 }, + "8d086baac3c0": { + "name": "ssh.getState#1", + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}", + "sent": 2 + }, "8ecc31aa9892": { "name": "ssh.getState#1", "args": [ @@ -214,6 +216,11 @@ }, "sent": 0 }, + "e02697448559": { + "name": "repo.hooks#1", + "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 3 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -221,10 +228,6 @@ "value": { "$rpc": "undefined" } - }, - "f0a9f62da106": { - "name": "repo.hooks#1", - "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" } }, "recording": { @@ -234,7 +237,7 @@ "id": "ensure-rejected", "observation": { "sender": ["28be8cfc5f01", "8ecc31aa9892"], - "payloads": ["37921d9fdeb7", "0adf11d42d1a"], + "payloads": ["6ec9160ebc42", "8d086baac3c0"], "settlements": { "mount": "eb79a9b3682a", "ensure": "0f1cf505ed63" @@ -253,7 +256,7 @@ "id": "no-setup-script", "observation": { "sender": ["28be8cfc5f01", "8ecc31aa9892", "15d9dbcfd2ce"], - "payloads": ["37921d9fdeb7", "0adf11d42d1a", "f0a9f62da106"], + "payloads": ["6ec9160ebc42", "8d086baac3c0", "e02697448559"], "settlements": { "mount": "eb79a9b3682a", "ensure": "0f1cf505ed63", diff --git a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json index bc5b907e934..e257812ca99 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "d2947158840576cbd0f0604ed3d37b0f446c63c6d439b4d1b7def7fe8524523d", "platform": "darwin", @@ -87,10 +87,6 @@ } } }, - "a87f1f91dc98": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"afterSnapshotId\":null,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "ab1a9ba6301c": { "admitted": [ { @@ -118,6 +114,11 @@ } } }, + "c97fe566ef74": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"afterSnapshotId\":null,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 1 + }, "f97b6b46b1d5": { "name": "worktree.ps#1", "args": [ @@ -154,7 +155,7 @@ "id": "catalog-pending", "observation": { "sender": ["f97b6b46b1d5"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "9270aeb7d9c6" }, @@ -166,7 +167,7 @@ "id": "settled", "observation": { "sender": ["227f9e3de4fa"], - "payloads": ["a87f1f91dc98"], + "payloads": ["c97fe566ef74"], "settlements": { "fetch": "9948855e8b8d" }, diff --git a/mobile/rpc-foundation/goldens/worktree-home-catalog.json b/mobile/rpc-foundation/goldens/worktree-home-catalog.json index 388861d6c2a..692408dc5cb 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "4749bb3b871275ba08f026f9b6bcfd383605f443e7bba70a7f89175b91db6fa5", "platform": "darwin", @@ -74,10 +74,6 @@ } }, "44136fa355b3": {}, - "4912be5d956f": { - "name": "worktree.ps#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}" - }, "86091b4d2b73": { "name": "info", "value": { @@ -125,6 +121,11 @@ "startedAt": 0 } }, + "c72cb878ff2a": { + "name": "worktree.ps#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.ps\",\"params\":{\"limit\":10000,\"supportsWorktreeVisibilitySourceDefaults\":true}}", + "sent": 1 + }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -141,7 +142,7 @@ "id": "catalog-pending", "observation": { "sender": ["bc1a8e138f82"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "9270aeb7d9c6" }, @@ -153,7 +154,7 @@ "id": "settled", "observation": { "sender": ["2e82f8bbb1f1"], - "payloads": ["4912be5d956f"], + "payloads": ["c72cb878ff2a"], "settlements": { "load": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/goldens/worktree-retired-names.json b/mobile/rpc-foundation/goldens/worktree-retired-names.json index a9a7b9b0746..7fc1d552ae5 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": "9f19bd485ecf9c7fe7a3323e5458dbf484f208c9ad3e7dd516c83e00af18904d", + "recorderSha256": "69ad18bdf962600dd2f14ea3d12299a7006a46c26c32d2a9b3cc74d569a72e2c", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "2faa07ee5f12b3ed584117359d3b7aeb9c78a04e8fc49e753372f8c3927a3740", "platform": "darwin", @@ -13,6 +13,11 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "00ae68859cc4": { + "name": "worktree.listRetiredNames#1", + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.listRetiredNames\",\"params\":{\"repo\":\"id:repo-1\"}}", + "sent": 1 + }, "569633c0c5c5": { "name": "worktree.listRetiredNames#1", "args": [ @@ -82,10 +87,6 @@ "names": ["marlin", "orca"] } }, - "ba7d8283433b": { - "name": "worktree.listRetiredNames#1", - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.listRetiredNames\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, "cb76d0017b96": { "registry": { "exhaustedTiers": 0, @@ -108,7 +109,7 @@ "id": "names-pending", "observation": { "sender": ["569633c0c5c5"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, @@ -120,7 +121,7 @@ "id": "settled", "observation": { "sender": ["5e2e60e145d8"], - "payloads": ["ba7d8283433b"], + "payloads": ["00ae68859cc4"], "settlements": { "mount": "eb79a9b3682a" }, diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json index f0bb180c849..5e6badeb31d 100644 --- a/mobile/rpc-foundation/pilot-scenarios.json +++ b/mobile/rpc-foundation/pilot-scenarios.json @@ -19432,6 +19432,226 @@ "checkpoint": "switched" } ] + }, + { + "id": "live-worktree-name-stream", + "operation": "session.live-worktree-name", + "version": 1, + "family": "live-worktree-name", + "sites": ["mobile/src/session/use-live-worktree-name.ts"], + "schedules": [], + "steps": [ + { + "action": "mount", + "id": "mount" + }, + { + "checkpoint": "subscribed" + }, + { + "frame": "runtime.clientEvents.subscribe#1", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "ready", + "subscriptionId": "sub-1" + } + } + }, + { + "checkpoint": "ready" + }, + { + "complete": "worktree.show#1", + "params": { + "worktree": "id:repo-1::/work/feature" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "worktreeId": "repo-1::/work/feature", + "displayName": "Feature Work" + } + } + } + }, + { + "checkpoint": "named" + }, + { + "frame": "runtime.clientEvents.subscribe#1", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "worktreesChanged", + "repoId": "repo-1" + } + } + }, + { + "complete": "worktree.show#2", + "params": { + "worktree": "id:repo-1::/work/feature" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "worktreeId": "repo-1::/work/feature", + "displayName": "Feature Work Renamed" + } + } + } + }, + { + "checkpoint": "refreshed" + }, + { + "action": "cutover", + "id": "cutover" + }, + { + "checkpoint": "re-subscribed" + }, + { + "frame": "runtime.clientEvents.subscribe#2", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "ready", + "subscriptionId": "sub-2" + } + } + }, + { + "complete": "worktree.show#3", + "params": { + "worktree": "id:repo-1::/work/feature" + }, + "reply": { + "ok": true, + "result": { + "worktree": { + "worktreeId": "repo-1::/work/feature", + "displayName": "Feature Work Replayed" + } + } + } + }, + { + "checkpoint": "replayed" + }, + { + "action": "unmount", + "id": "unmount" + }, + { + "checkpoint": "unmounted" + } + ] + }, + { + "id": "host-worktree-refresh-stream", + "operation": "worktree.host-refresh", + "version": 1, + "family": "host-worktree-refresh", + "sites": ["mobile/src/worktree/host-worktree-refresh.ts"], + "schedules": [], + "steps": [ + { + "action": "start", + "id": "start" + }, + { + "checkpoint": "started" + }, + { + "frame": "runtime.clientEvents.subscribe#1", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "ready", + "subscriptionId": "sub-1" + } + } + }, + { + "checkpoint": "ready" + }, + { + "frame": "runtime.clientEvents.subscribe#1", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "worktreesChanged", + "repoId": "repo-1" + } + } + }, + { + "checkpoint": "worktrees-changed" + }, + { + "advance": 3000 + }, + { + "checkpoint": "polled" + }, + { + "frame": "runtime.clientEvents.subscribe#1", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "reposChanged" + } + } + }, + { + "checkpoint": "repos-changed" + }, + { + "action": "cutover", + "id": "cutover" + }, + { + "checkpoint": "re-subscribed" + }, + { + "frame": "runtime.clientEvents.subscribe#2", + "params": null, + "reply": { + "ok": true, + "streaming": true, + "result": { + "type": "ready", + "subscriptionId": "sub-2" + } + } + }, + { + "checkpoint": "replayed" + }, + { + "action": "stop", + "id": "stop" + }, + { + "checkpoint": "stopped" + } + ] } ] } diff --git a/mobile/src/test-support/rpc-recording/README.md b/mobile/src/test-support/rpc-recording/README.md index 8878136f648..2484d969935 100644 --- a/mobile/src/test-support/rpc-recording/README.md +++ b/mobile/src/test-support/rpc-recording/README.md @@ -12,9 +12,19 @@ JSX compiles through the automatic runtime, because product sources use it and n a classic `React.createElement` emit throws `React is not defined` on the first screen render. The transport reuses `createStableLogicalRpcClient`, `projectMobileRpcRequestParams` -(through that client), `RpcClientRequestTracker`, and the delivery-unknown marker. Hook -mounting follows `use-mobile-native-chat-file-search.test.ts`; physical session mounting -follows `stable-logical-rpc-client.test.ts`. Neither test exported a reusable mount utility. +(through that client), `RpcClientRequestTracker`, `RpcClientStreamRegistry`, and the +delivery-unknown marker. Hook mounting follows `use-mobile-native-chat-file-search.test.ts`; +physical session mounting follows `stable-logical-rpc-client.test.ts`. Neither test exported a +reusable mount utility. + +A subscription is opened by the real registry, not by the runner: subscribe params, frame routing +and the unsubscribe wire (`buildReadyStreamUnsubscribe`) are all product code, and the only thing +the recorder adds is the wire id and the name it files the payload under. The registry is per +physical session, the way a `DirectRpcClient` owns one, so a frame is routed by the session that +published its subscribe rather than by whichever session is current — after a cutover those are +different registries, and the retiring one is what holds a cancelled subscribe long enough to +unsubscribe it once its id arrives. Whether the two registries are distinct objects is not +otherwise observable through a server subscription, because stream ids are unique across both. ## Mounting a screen @@ -67,6 +77,7 @@ file, and `scenarioSha256` pins it per golden like any other scenario field. {"action":"select","id":"reset-a","args":{"workspace":"A"}} {"complete":"old-inventory","params":{"worktree":"id:A"},"reply":{"ok":true,"result":{"files":[]}}} {"checkpoint":"stale-completed"} +{"frame":"runtime.clientEvents.subscribe#1","params":null,"reply":{"ok":true,"streaming":true,"result":{"type":"ready","subscriptionId":"sub-1"}}} ``` `{"$undefined":true}` in the input means explicit undefined, including an own property; @@ -76,6 +87,16 @@ wire ids never identify completions. Timers only advance explicitly, and zero-ti flush due timers, promise continuations, and React work after every step. Date, performance, Math.random, Web Crypto random bytes/UUIDs, and transport ids are deterministic. +A `frame` names the subscribe payload it arrives on — `#`, the same per-method +occurrence a request is named by — and carries a whole host response, which the real registry +routes. One step kind therefore covers `ready`, a data event, the host's `end` and a refusal, and +`params` asserts the subscribe params on every one of them, the contract `complete` already holds. +Ending a stream takes the two responses a host really sends: the `end` event as a streaming frame, +then the unary reply the dispatcher sends once the handler returns, which is what closes the stream +and which the registry reports to the listener as an error. A streaming frame arriving after that +is accepted and observes nothing, because the opener path answers for an id it no longer holds; a +non-streaming one names the scenario that has stopped matching. + ### Recorded time Every settlement carries `startedAt` and `settledAt` in virtual milliseconds since the pinned epoch, @@ -162,15 +183,25 @@ file rather than of a restatement of it; `golden-header-digest.test.ts` pins wha buy. Checkpoints contain ordered sender calls and serialized physical application payloads, action and -request settlements, projected state, and ordered external effects. Each effect also carries `sent`, -the number of requests sent when it was recorded: sender and effects are two independent lists, so -without it a send reordered ahead of a device write moves neither list and no golden notices. +request settlements, projected state, and ordered external effects. Each effect and each payload +also carries `sent`, the number of requests sent when it was recorded: sender, payloads and effects +are independent lists, so without it a send reordered ahead of a device write, or ahead of a +subscribe, moves no list and no golden notices. A subscribe is the sharper case of the two, because +it publishes synchronously while a request first waits for connected: swapping `client.subscribe` +and the first `sendRequest` in `use-live-worktree-name.ts` leaves the payload order byte-identical +and moves only `sent`, from 0 to 1. Scheduling the journal write in `codex-reset-attempt-journal.ts` on a timer instead of awaiting it moved none of the 520 goldens before `sent` existed and moves two now, `codex-reset-credit-consumed` and its reply matrix, where the write's `sent` goes from 0 to 1. What `sent` cannot see is a defer shorter than the product's own await chain: dropping that `await`, or deferring the write by one microtask, still lands it before the send, because resolving the journal's promise chain costs more -microtask ticks than the defer saved. Sender args have three +microtask ticks than the defer saved. Nor can it see anything in a family that sends no requests: +`host-worktree-refresh` sends none, so every `sent` in its goldens is `0` across all eight +checkpoints, and moving that file's two initial snapshot reads from after `client.subscribe` to +before it moves no golden. A request count orders payloads and effects against sends, not against +each other, so subscribe-vs-effect order in a request-free family is unpinned. The fix is one +monotonic write ordinal shared by requests, payloads and effects, which forces a full refresh and is +not done here. Sender args have three positional slots; absent, undefined and null are distinct `$rpc` tags. Literal objects containing `$rpc` are escaped. Only object keys are sorted; array/effect order, options, budgets, settlement times and errors stay observable. Errors contain category, message and `isRpcDeliveryUnknown`, never @@ -232,8 +263,17 @@ through direct/relay frame validation. Caches are tested by follow-up requests; no private cache maps are inspected. Every family runs the eleven partitions in `reply-matrix.ts` at **every reply its base scenario -scripts**, one golden per site, and nothing is crossed against consumed fields. The partitions are -the reply shapes a host can send: a normal result, an absent result, `null`, an inner `{ok: false}` +scripts**, one golden per site, and nothing is crossed against consumed fields. A frame is a reply +too, so a subscription's `ready` and each event it carries are sites like any completion — named by +payload and occurrence, because one subscribe carries many frames and the name alone repeats. Nine +of the eleven partitions apply at a frame: the two transport rejections are the shapes a _request +promise_ fails with, and a subscription holds no promise for them to fail. Every success shape is +stamped `streaming: true`, since that flag is what routes a response to the open stream rather than +to a retired request id — without it `normal` would be a different shape from the frame +it replays, and no longer a control. Until frames were sites, `reply-matrix.ts` read only +`'complete' in step`, so a frame was never varied and a family that only subscribes threw +`No scripted reply to drive a matrix over`. The partitions are the reply shapes a host can send: a +normal result, an absent result, `null`, an inner `{ok: false}` envelope with a string or object error, an inner envelope missing `ok`, an outer refusal with and without a message, `method_not_found`, and a transport rejection with and without a message. Shapes that were recorded before and are gone were unreachable: `successResponse` always sets `result`, so @@ -310,9 +350,11 @@ families because no reference states are defined for them. ## What this oracle does and does not see -It replays 78 scenarios against frozen goldens and fails on any divergence: 153 goldens over 210 -tests, all inside `pnpm --dir mobile test`. For a migration it answers one question — does the -rewritten call site produce the same sender calls, settlements, state and effects as main did? +It replays 342 manifest scenarios against frozen goldens and fails on any divergence: 679 goldens +over 796 tests, all inside `pnpm --dir mobile test`. Counts quoted further down are measurements of +the change they describe and are not restatements of this one. For a migration it answers one +question — does the rewritten call site produce the same sender calls, settlements, state and +effects as main did? It is not a substitute for reading the diff. Three facts bound it, all learned the hard way: @@ -341,8 +383,21 @@ the same operation must still survive it. A probe that stops being load-bearing lingering. What is still not covered: what the count-based raw-port inventory covers instead (which files -reach `sendRequest`, and how often), native storage, transport skew, the `subscribe`/ -`sendUnsubscribe` ports, and the two mutations under _Known-open holes_ below. Four of the nine +reach `sendRequest`, and how often), native storage, transport skew, and the two mutations under +_Known-open holes_ below. The `subscribe` / `sendUnsubscribe` ports are covered for +`runtime.clientEvents.subscribe` only — the two client-event families are the whole of it. Nine +product call sites call `client.subscribe`; those two are recorded and seven are not, and no golden +mentions any of their methods: `notifications.subscribe`, `agentSession.subscribe`, +`session.tabs.subscribe`, `nativeChat.subscribe`, `terminal.subscribe`, `browser.screencast` and +`accounts.subscribe`. The frame plumbing is method-agnostic, so what stops each of the seven is its +consumer, not the runner. `terminal.subscribe` and `browser.screencast` write to a webview terminal +ref this runner has no substitute for. `accounts.subscribe` is wired on a per-host client from +`useAllHostClients`, and the runner hands an adapter one client rather than the multi-host context +that hook reads. Its snapshot decoder is not the wall: the loader reaches +`decodeAccountsSnapshot` and it throws its own domain error on a bad snapshot. The remaining four are unwritten scenarios, not walls. Blur is +unrecorded across all of them: `useFocusEffect` is substituted as `useEffect`, so a route's focus +cleanup is recorded at unmount and an unsubscribe only a blur would reach is not — driving focus +needs a substitute, and no recording reads one yet. Four of the nine probes pin behaviour with no demonstrated mutation — the two mixed reject/refusal new-tab orders and the home-providers and resume-metadata refresh refusals; they are frozen observations, not proven defect detectors. `settings.resume-metadata` projects `{}` as its state, so its probe @@ -375,6 +430,13 @@ ORCA_BACKGROUND_LAUNCH=1 RPC_FOUNDATION_RECORD=1 \ pnpm --dir mobile exec tsx scripts/rpc-recording.mts --record ``` +A call site that subscribes runs the same recipe, with one thing to check before step 2. The +subscribe payload is named `#` by per-method occurrence, and every `frame` step in the +scenario names it — so a migration that moves the subscribe past another send of the same method +renames it and the scenario no longer resolves. That is a loud failure, not a silent one +(`Missing subscription payload`), but it is the first thing to read when a subscription scenario +stops matching. + A re-record is a claim about behaviour. State the cause in the commit; every golden the refresh moves should have one. @@ -390,7 +452,10 @@ need a real `.git`, so an archive tree fails as `Product sources or lockfile dif main baseline` — a product mismatch that is not there. Format the recorder before recording: an `oxfmt` pass afterwards moves `recorderSha256` again. A recorder-only branch that has merged main is not the awkward case: its product tree is main's, so repin `baseline` to main's tip and record -in place — there is no migrated source for the goldens to be recorded against. Adding or editing +in place — there is no migrated source for the goldens to be recorded against. That repin is the +whole of it, though. Where a branch is told not to repin, `--record` refuses on any product tree +that is not the pinned one, merged or not, and the detached-pin worktree above is the only recipe +that runs. Adding or editing one domain's module under `adapters/` no longer needs any of this: only that domain's goldens move, and they re-record from its own branch like any other behaviour change. Adding a mutant, a probe or a suite that does not record needs none of it either, and moves no golden at all. diff --git a/mobile/src/test-support/rpc-recording/adapters/client-event-stream-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/client-event-stream-mount-adapters.ts new file mode 100644 index 00000000000..29d2bf99ca4 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/client-event-stream-mount-adapters.ts @@ -0,0 +1,93 @@ +import { hookScreenMount } from '../mounted-screen-tree' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const REPO = 'repo-1' +const WORKTREE = `${REPO}::/work/feature` +const ROUTE_NAME_HINT = 'feature' + +/** + * The two consumers of the runtime client-event stream. + * + * The session header's live title subscribes inside its focus effect, reads `worktree.show` beside + * the subscribe, and re-reads it on every invalidation the stream pushes. The host catalog + * refresher subscribes to the same method and returns a disposer instead of a hook cleanup; the two + * fetches it calls are its own parameters, so when it calls them and with what is its whole output, + * and the recording observes exactly that rather than reconstructing either fetch. + */ +export function clientEventStreamMountAdapters( + modules: ReturnType +): Record { + return { + 'session.live-worktree-name': ({ client, effect }) => { + const useLiveWorktreeName = modules.load< + typeof import('../../../session/use-live-worktree-name') + >('mobile/src/session/use-live-worktree-name.ts').useLiveWorktreeName + let value: ReturnType | undefined + const screen = hookScreenMount(() => { + value = useLiveWorktreeName({ + client, + // The screen reads this off the client it was handed, so the client is the source here too. + connState: client.getState(), + routeName: ROUTE_NAME_HINT, + worktreeId: WORKTREE + }) + }, effect) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'unmount') { + return screen.unmount() + } + throw new Error(`Unknown live worktree name action: ${name}`) + }, + state: () => ({ + name: value?.name ?? null, + resolution: value?.resolution ?? null, + crash: screen.crash() + }), + dispose: screen.unmount + } + }, + 'worktree.host-refresh': ({ client, effect }) => { + const startHostWorktreeRefresh = modules.load< + typeof import('../../../worktree/host-worktree-refresh') + >('mobile/src/worktree/host-worktree-refresh.ts').startHostWorktreeRefresh + const counts = { fetchWorktrees: 0, fetchRepoMetadata: 0 } + let stop: (() => void) | null = null + // The effect carries the options as handed over, so an absent one stays distinct from an + // empty object. State counts instead of restating that list: the order and the options are + // already observed once, and a second copy would cost bytes and add no signal. + const fetching = (fetch: 'fetchWorktrees' | 'fetchRepoMetadata') => (options?: unknown) => { + counts[fetch]++ + effect(fetch, { options }) + return Promise.resolve() + } + return { + action(name) { + if (name === 'start') { + stop = startHostWorktreeRefresh({ + client, + fetchWorktrees: fetching('fetchWorktrees'), + fetchRepoMetadata: fetching('fetchRepoMetadata') + }) + return + } + if (name === 'stop') { + stop?.() + stop = null + return + } + throw new Error(`Unknown host refresh action: ${name}`) + }, + state: () => ({ ...counts, running: stop !== null }), + dispose: () => { + stop?.() + stop = null + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts index 6f27713b1c3..8fcf755b6a4 100644 --- a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts +++ b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts @@ -8,6 +8,7 @@ import { agentHistoryScreenMountExposures } from './agent-history-screen-mount-adapters' import { browserMountAdapters } from './browser-mount-adapters' +import { clientEventStreamMountAdapters } from './client-event-stream-mount-adapters' import { clipboardImageMountAdapters } from './clipboard-image-mount-adapters' import { codexResetCreditMountAdapters } from './codex-reset-credit-mount-adapters' import { dictationMountAdapters } from './dictation-mount-adapters' @@ -91,6 +92,7 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ }, { source: 'ai-vault-resume-mount-adapters.ts', mounts: aiVaultResumeMountAdapters }, { source: 'browser-mount-adapters.ts', mounts: browserMountAdapters }, + { source: 'client-event-stream-mount-adapters.ts', mounts: clientEventStreamMountAdapters }, { source: 'clipboard-image-mount-adapters.ts', mounts: clipboardImageMountAdapters }, { source: 'codex-reset-credit-mount-adapters.ts', mounts: codexResetCreditMountAdapters }, { source: 'dictation-mount-adapters.ts', mounts: dictationMountAdapters }, diff --git a/mobile/src/test-support/rpc-recording/recording-runner.test.ts b/mobile/src/test-support/rpc-recording/recording-runner.test.ts index 7b523be49ff..7d8e88aec19 100644 --- a/mobile/src/test-support/rpc-recording/recording-runner.test.ts +++ b/mobile/src/test-support/rpc-recording/recording-runner.test.ts @@ -26,7 +26,7 @@ import { type GoldenRecording } from './golden-recording' import { hoistPreludeCheckpoints } from './prelude-checkpoints' -import { replyMatrixGoldenId, replyMatrixSites } from './reply-matrix' +import { driveReplyMatrix, replyMatrixGoldenId, replyMatrixSites } from './reply-matrix' import { REPLY_MATRIX_NORMAL_RESULT_INVENTORY, replyMatrixNormalResult @@ -441,6 +441,190 @@ describe('recording boundaries', () => { expect({ missing, imported }).toEqual({ missing: [], imported: [] }) }) + it('delivers each frame through the session that published its subscribe', async () => { + const clock = vitestRecordingScheduler() + clock.start() + const transport = new ScriptedRpcTransport(clock.elapsed) + const events: unknown[] = [] + try { + const dispose = transport.client.subscribe(CLIENT_EVENTS, null, (result) => + events.push(result) + ) + // Cut over before the stream is ready. The retiring registry keeps the cancelled subscribe + // precisely so it can unsubscribe once the id arrives, which is the behaviour a transport + // that routed every frame through the current session would drop on the floor. + await transport.cutover() + await clock.flush() + transport.frame(`${CLIENT_EVENTS}#1`, null, readyFrame('sub-1')) + transport.frame(`${CLIENT_EVENTS}#2`, null, readyFrame('sub-2')) + dispose() + expect( + transport.payloads.map((payload) => [payload.name, JSON.parse(payload.json).id]) + ).toEqual([ + [`${CLIENT_EVENTS}#1`, 'frame-1'], + [`${CLIENT_EVENTS}#2`, 'frame-2'], + ['runtime.clientEvents.unsubscribe#1', 'frame-3'], + ['runtime.clientEvents.unsubscribe#2', 'frame-4'] + ]) + expect(transport.payloads.map((payload) => JSON.parse(payload.json).params)).toEqual([ + null, + null, + { subscriptionId: 'sub-1' }, + { subscriptionId: 'sub-2' } + ]) + // Only the live generation reaches the listener; the retiring one is fenced by the client. + expect(events).toEqual([readyFrame('sub-2').result]) + } finally { + transport.dispose() + await clock.flush() + clock.stop() + } + }) + + it('routes a whole host response at a stream id, and asserts the subscribe params', async () => { + const clock = vitestRecordingScheduler() + clock.start() + const transport = new ScriptedRpcTransport(clock.elapsed) + const events: unknown[] = [] + const changed = { ok: true, streaming: true, result: { type: 'worktreesChanged' } } + try { + const dispose = transport.client.subscribe(CLIENT_EVENTS, null, (result) => + events.push(result) + ) + transport.frame(`${CLIENT_EVENTS}#1`, null, readyFrame('sub-1')) + transport.frame(`${CLIENT_EVENTS}#1`, null, changed) + expect(() => transport.frame(`${CLIENT_EVENTS}#1`, { asserted: 1 }, changed)).toThrow( + 'Subscribe params mismatch' + ) + expect(() => transport.frame(`${CLIENT_EVENTS}#2`, null, changed)).toThrow( + 'Missing subscription payload' + ) + // The host's own end of stream, in the two responses it really sends: the `end` event as a + // streaming frame, then the unary reply the dispatcher sends once the handler returns. The + // second is what closes the stream here, and the registry reports it to the listener as an + // error — so the disposer below has no subscription left and publishes no unsubscribe. + transport.frame(`${CLIENT_EVENTS}#1`, null, { + ok: true, + streaming: true, + result: { type: 'end' } + }) + transport.frame(`${CLIENT_EVENTS}#1`, null, { ok: true }) + expect(() => + transport.frame(`${CLIENT_EVENTS}#1`, null, { + ok: false, + error: { code: 'refused', message: 'gone' } + }) + ).toThrow('No open stream for frame') + dispose() + expect(transport.payloads.map((payload) => payload.name)).toEqual([`${CLIENT_EVENTS}#1`]) + expect(events).toEqual([ + readyFrame('sub-1').result, + changed.result, + { type: 'end' }, + { type: 'error', message: 'Streaming request ended before it was ready.', error: undefined } + ]) + } finally { + transport.dispose() + await clock.flush() + clock.stop() + } + }) + + it('files only a subscribe as an open stream, not the unsubscribe it publishes later', async () => { + const clock = vitestRecordingScheduler() + clock.start() + const transport = new ScriptedRpcTransport(clock.elapsed) + try { + const dispose = transport.client.subscribe(CLIENT_EVENTS, null, () => {}) + transport.frame(`${CLIENT_EVENTS}#1`, null, readyFrame('sub-1')) + dispose() + // The unsubscribe is a published payload but never a stream. Filed as one, a frame aimed at it + // routed at its wire id, matched nothing, recorded nothing and reported success. + expect(transport.payloads.map((payload) => payload.name)).toEqual([ + `${CLIENT_EVENTS}#1`, + 'runtime.clientEvents.unsubscribe#1' + ]) + expect(() => + transport.frame('runtime.clientEvents.unsubscribe#1', null, readyFrame('sub-1')) + ).toThrow('Missing subscription payload') + } finally { + transport.dispose() + await clock.flush() + clock.stop() + } + }) + + it('stamps each payload with the request count, which is all a reordered subscribe moves', async () => { + const subscribeFirst = await payloadsFrom((client) => { + client.subscribe(CLIENT_EVENTS, null, () => {}) + void client.sendRequest('worktree.show', {}).catch(() => {}) + }) + const sendFirst = await payloadsFrom((client) => { + void client.sendRequest('worktree.show', {}).catch(() => {}) + client.subscribe(CLIENT_EVENTS, null, () => {}) + }) + // The published order is identical either way, because a subscribe publishes synchronously + // while a request first waits for connected. Without `sent` the swap moves no recorded byte. + expect(sendFirst.map((payload) => payload.name)).toEqual( + subscribeFirst.map((payload) => payload.name) + ) + expect(subscribeFirst.map((payload) => payload.sent)).toEqual([0, 1]) + expect(sendFirst.map((payload) => payload.sent)).toEqual([1, 1]) + }) + + it('drives the reply matrix over frames, and matrixes a family that only subscribes', () => { + const changed = { ok: true, streaming: true, result: { type: 'worktreesChanged' } } + const base: RecordingScenario = { + id: 'stream', + operation: 'op', + version: 1, + family: 'op', + sites: [], + schedules: [], + steps: [ + { action: 'mount', id: 'mount' }, + { frame: `${CLIENT_EVENTS}#1`, params: null, reply: readyFrame('sub-1') }, + { checkpoint: 'ready' }, + { frame: `${CLIENT_EVENTS}#1`, params: null, reply: changed }, + { checkpoint: 'changed' } + ] + } + // While the matrix read only completions this family threw its own named failure instead. + expect(replyMatrixSites(base)).toEqual([`${CLIENT_EVENTS}#1@1`, `${CLIENT_EVENTS}#1@2`]) + expect(replyMatrixGoldenId('op', `${CLIENT_EVENTS}#1@2`)).toBe( + 'matrix-op-runtime.clientevents.subscribe-1-2' + ) + expect(replyMatrixNormalResult('op', [base], `${CLIENT_EVENTS}#1@2`)).toEqual(changed.result) + const variants = driveReplyMatrix(base, `${CLIENT_EVENTS}#1@1`, readyFrame('sub-1').result) + const partitions = variants.map((variant) => variant.id.replace('stream.', '')) + // Nine of eleven: a frame holds no promise, so neither transport rejection applies to one. + expect(partitions).toEqual([ + 'normal', + 'result-absent', + 'result-null', + 'inner-ok-missing', + 'inner-false-string-error', + 'inner-false-object-error', + 'outer-refused', + 'outer-refused-no-message', + 'method-not-found' + ]) + const replies = new Map(variants.map((variant) => [variant.id, variant.steps[1]])) + // The success shapes keep the flag that routes them to the stream; a refusal never had one. + expect(replies.get('stream.normal')).toEqual(base.steps[1]) + expect(replies.get('stream.result-absent')).toEqual({ + frame: `${CLIENT_EVENTS}#1`, + params: null, + reply: { ok: true, streaming: true } + }) + expect(replies.get('stream.outer-refused')).toMatchObject({ + reply: { ok: false, error: { code: 'refused' } } + }) + // No `optional` on a downstream frame: the registry routes a streaming response to the id that + // opened the stream whatever the divergence did, so every scripted frame still lands. + expect(variants[0]!.steps[3]).toEqual(base.steps[3]) + }) + it('refuses a mutation anchor that matches more than once', () => { const root = mkdtempSync(join(tmpdir(), 'rpc-mutant-')) try { @@ -468,6 +652,30 @@ describe('recording boundaries', () => { }) }) +const CLIENT_EVENTS = 'runtime.clientEvents.subscribe' + +function readyFrame(subscriptionId: string) { + return { ok: true, streaming: true, result: { type: 'ready', subscriptionId } } +} + +/** The payloads one scripted client publishes, with the transport torn down either way. */ +async function payloadsFrom( + drive: (client: ScriptedRpcTransport['client']) => void +): Promise { + const clock = vitestRecordingScheduler() + clock.start() + const transport = new ScriptedRpcTransport(clock.elapsed) + try { + drive(transport.client) + await clock.flush() + return [...transport.payloads] + } finally { + transport.dispose() + await clock.flush() + clock.stop() + } +} + function entryHash(name: string): string { return valueHash({ name }) } diff --git a/mobile/src/test-support/rpc-recording/recording-scenario.ts b/mobile/src/test-support/rpc-recording/recording-scenario.ts index e3d09073fc7..999d8a0faed 100644 --- a/mobile/src/test-support/rpc-recording/recording-scenario.ts +++ b/mobile/src/test-support/rpc-recording/recording-scenario.ts @@ -10,12 +10,19 @@ export type Rejection = { } /** * `optional` belongs to generated steps only: a matrix variant answers one request differently, so - * the requests scripted after it may never be sent. Skipping one that was not sent records what the - * operation actually did; a scripted step the manifest declares is never optional. + * the requests scripted after it may never be sent. Skipping one the operation never asked for + * records what it actually did; a scripted step the manifest declares is never optional. A frame + * carries no such flag — the registry routes every streaming response to the id that opened the + * stream, so a frame after a divergence is always deliverable. + * + * `frame` names the subscribe payload it is delivered on and carries a whole host response, which + * the real stream registry routes — `ready`, a data event, `end` and a refusal are all one kind. + * `params` asserts the subscribe params, the same contract `complete` holds for a request. */ export type ScenarioStep = | { action: string; id: string; args?: Record } | { complete: string; params: unknown; reply?: unknown; reject?: Rejection; optional?: true } + | { frame: string; params: unknown; reply: unknown } | { bind: string; request: string; params: unknown; optional?: true } | { advance: number } | { checkpoint: string } diff --git a/mobile/src/test-support/rpc-recording/reply-matrix-normal-result.ts b/mobile/src/test-support/rpc-recording/reply-matrix-normal-result.ts index da29a4a1726..c5d59679f2c 100644 --- a/mobile/src/test-support/rpc-recording/reply-matrix-normal-result.ts +++ b/mobile/src/test-support/rpc-recording/reply-matrix-normal-result.ts @@ -1,3 +1,4 @@ +import { matrixSites } from './reply-matrix' import type { RecordingScenario } from './recording-scenario' /** @@ -68,9 +69,11 @@ export function replyMatrixNormalResult( ): unknown { let recorded: { found: boolean; result: unknown } = { found: false, result: undefined } for (const scenario of scenarios) { - for (const step of scenario.steps) { - if ('complete' in step && step.complete === request && !recorded.found) { - recorded = fulfilledResult(step.reply) + // Read through the same site list the matrix drives, so a frame's replayed success is found + // where a frame's site is: by payload name and occurrence, not by request name. + for (const site of matrixSites(scenario)) { + if (site.id === request && !recorded.found) { + recorded = fulfilledResult(site.reply) } } } diff --git a/mobile/src/test-support/rpc-recording/reply-matrix.ts b/mobile/src/test-support/rpc-recording/reply-matrix.ts index 5ff898e4f30..3f5251d9180 100644 --- a/mobile/src/test-support/rpc-recording/reply-matrix.ts +++ b/mobile/src/test-support/rpc-recording/reply-matrix.ts @@ -49,16 +49,69 @@ export function replyPartitions(normal: unknown): ReplyPartition[] { } /** - * Every reply the base scenario scripts, as a site the matrix drives. + * The partitions that apply at a frame: nine of the eleven. + * + * A frame is a whole host response handed to the real stream registry, and the two transport + * rejections are the shapes a *request promise* fails with — a subscription holds no promise, so + * there is nothing at a frame for them to reject. Everything else a host can put on a stream id is + * here, including the unary envelopes: the dispatcher sends exactly those once a streaming handler + * returns, and each drives a real branch of the registry rather than a shape invented for symmetry. + * + * Every success partition is stamped `streaming: true`, because that flag is what routes a response + * to the open stream rather than to a retired request id. Without it `normal` would be a different + * shape from the frame it replays, and a success control that is not one. A base frame that scripts + * a non-streaming unary closer is therefore unsupported here: no scenario writes one, and its matrix + * would need the flag varied per partition rather than stamped. + */ +function frameReplyPartitions(normal: unknown): ReplyPartition[] { + return replyPartitions(normal).flatMap((partition) => { + const envelope = successEnvelope(partition.reply) + return 'reject' in partition + ? [] + : [{ ...partition, reply: envelope ? { ...envelope, streaming: true } : partition.reply }] + }) +} + +/** A success envelope, spreadable: only one carries `streaming`, a refusal has no result to stream. */ +function successEnvelope(reply: unknown): Record | null { + return reply !== null && typeof reply === 'object' && 'ok' in reply && reply.ok === true + ? { ...reply } + : null +} + +/** One reply a base scenario scripts, as a site the matrix drives. */ +type MatrixSite = { id: string; index: number; reply: unknown } + +/** + * Every reply the base scenario scripts, in order. * * Why all of them and not one: picking the request per family is what let ten families fall out of * the matrix without saying so, and there is no property of a scenario that identifies the "real" * request — the settings families answer prerequisites before their own read, the chains answer - * their own steps in order. Driving every completion needs no such judgement and needs no edit when - * a domain is added. A family that scripts no reply at all cannot be matrixed and throws. + * their own steps in order. Driving every reply needs no such judgement and needs no edit when a + * domain is added. A family that scripts no reply at all cannot be matrixed and throws. + * + * A completion is named by its request. A frame is named by the subscribe payload it arrives on + * *and its occurrence*, because one subscription carries many frames — `ready`, then events, then + * `end` — so the payload name alone repeats and would make the divergence ambiguous. */ +export function matrixSites(base: RecordingScenario): MatrixSite[] { + const frames = new Map() + return base.steps.flatMap((step, index) => { + if ('complete' in step) { + return [{ id: step.complete, index, reply: step.reply }] + } + if ('frame' in step) { + const occurrence = (frames.get(step.frame) ?? 0) + 1 + frames.set(step.frame, occurrence) + return [{ id: `${step.frame}@${occurrence}`, index, reply: step.reply }] + } + return [] + }) +} + export function replyMatrixSites(base: RecordingScenario): string[] { - const sites = base.steps.flatMap((step) => ('complete' in step ? [step.complete] : [])) + const sites = matrixSites(base).map((site) => site.id) if (!sites.length) { throw new Error(`No scripted reply to drive a matrix over: ${base.id}`) } @@ -72,7 +125,7 @@ export function replyMatrixSites(base: RecordingScenario): string[] { /** Golden id for one family's matrix at one site, inside the charset `writeGolden` accepts. */ export function replyMatrixGoldenId(family: string, request: string): string { - return `matrix-${family}-${request}`.toLowerCase().replaceAll('#', '-') + return `matrix-${family}-${request}`.toLowerCase().replaceAll('#', '-').replaceAll('@', '-') } export function driveReplyMatrix( @@ -80,35 +133,41 @@ export function driveReplyMatrix( request: string, normal: unknown ): RecordingScenario[] { - const sites = base.steps.flatMap((step, index) => - 'complete' in step && step.complete === request ? [index] : [] - ) + const sites = matrixSites(base).filter((site) => site.id === request) if (sites.length !== 1) { - throw new Error(`Matrix requires exactly one completion: ${request}`) + throw new Error(`Matrix requires exactly one reply at: ${request}`) } - const divergence = sites[0]! + const { index: divergence } = sites[0]! + const framed = 'frame' in base.steps[divergence]! + const partitions = framed ? frameReplyPartitions(normal) : replyPartitions(normal) return hoistPreludeCheckpoints( base, - replyPartitions(normal).map((partition) => ({ + partitions.map((partition) => ({ divergence, scenario: { ...base, id: `${base.id}.${partition.id}`, - steps: base.steps.map((step, index): ScenarioStep => - index === divergence && 'complete' in step - ? { - complete: request, - params: step.params, - ...('reject' in partition - ? { reject: partition.reject } - : { reply: partition.reply }) - } - : index > divergence && ('complete' in step || 'bind' in step) - ? // The diverged reply may have ended the chain, so downstream replies are answered - // only if the operation asked for them. The sender list records which it did. - { ...step, optional: true } - : step - ) + steps: base.steps.map((step, index): ScenarioStep => { + if (index > divergence) { + // The diverged reply may have ended the chain, so downstream replies are answered only + // if the operation asked. The sender list records which. + return 'complete' in step || 'bind' in step ? { ...step, optional: true } : step + } + if (index !== divergence) { + return step + } + if ('frame' in step) { + return { frame: step.frame, params: step.params, reply: partition.reply } + } + if ('complete' in step) { + return { + complete: step.complete, + params: step.params, + ...('reject' in partition ? { reject: partition.reject } : { reply: partition.reply }) + } + } + return step + }) } })) ) diff --git a/mobile/src/test-support/rpc-recording/run-recording.ts b/mobile/src/test-support/rpc-recording/run-recording.ts index 0c2022012fb..cfa5f0fcd0f 100644 --- a/mobile/src/test-support/rpc-recording/run-recording.ts +++ b/mobile/src/test-support/rpc-recording/run-recording.ts @@ -67,6 +67,8 @@ export async function runRecording( if (!step.optional || transport.outstanding(step.complete)) { transport.complete(step.complete, step.params, step.reply, step.reject) } + } else if ('frame' in step) { + transport.frame(step.frame, step.params, step.reply) } else if ('bind' in step) { if (!step.optional || transport.outstanding(step.request)) { transport.bind(step.bind, step.request, step.params) diff --git a/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts index 0fb6d49ac4c..05765f847ec 100644 --- a/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts +++ b/mobile/src/test-support/rpc-recording/screen-native-substitutes.ts @@ -1,3 +1,4 @@ +import { useEffect } from 'react' import { inertIconModule, inertNativeElements } from './inert-native-elements' import { partialNativeModule } from './native-module-traps' @@ -32,6 +33,7 @@ export function screenNativeSubstitutes(): Map { // One router per recording, so a screen that closes over it keeps a stable callback. partialNativeModule('expo-router', { useRouter: constantRouter, + useFocusEffect, useLocalSearchParams: constantRoute }) ], @@ -44,6 +46,16 @@ function constantRouter(): typeof ROUTER { return ROUTER } +/** + * Focus as mount. The real hook runs its effect on focus and re-runs it when the callback identity + * changes, which is what a mounted-and-focused screen does here — so a route's focus cleanup is + * recorded at unmount. Blur is not: nothing drives this substitute, so an unsubscribe that only a + * blur would reach stays unrecorded, and the README says so rather than a listener implying it. + */ +function useFocusEffect(effect: () => (() => void) | void): void { + useEffect(effect, [effect]) +} + /** * The route one recording runs on, pinned for the same reason the window size is: a screen's own * address is not a device reading, and for a route screen it is what the props are for a panel an diff --git a/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts b/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts index 0ae741dfb52..11fc7e44d01 100644 --- a/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts +++ b/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts @@ -1,6 +1,7 @@ import type { ConnectionState, RpcResponse } from '../../transport/types' import type { RpcClient } from '../../transport/rpc-client' import { RpcClientRequestTracker } from '../../transport/rpc-client-request-tracker' +import { RpcClientStreamRegistry } from '../../transport/rpc-client-stream-registry' import { createStableLogicalRpcClient } from '../../transport/stable-logical-rpc-client' import { markRpcDeliveryUnknown } from '../../transport/rpc-delivery-ambiguity' import { @@ -11,32 +12,40 @@ import { } from './recording-values' import type { Rejection } from './recording-scenario' +/** The one device identity every recorded frame carries; nothing here reads a keychain. */ +const DEVICE_TOKEN = 'recording-device' + export class ScriptedRpcTransport { readonly requests: { name: string args: ReturnType settlement: Settlement }[] = [] - readonly payloads: { name: string; json: string }[] = [] + readonly payloads: { name: string; json: string; sent: number }[] = [] readonly client: RpcClient readonly logical private counts = new Map() private bindings = new Map() private aliases = new Map() + private openStreams = new Map< + string, + { id: string; params: unknown; deliver: (response: RpcResponse) => boolean } + >() private activeName = '' + private opening = false private frameCount = 0 private state: ConnectionState = 'connected' private listeners = new Set<(state: ConnectionState) => void>() private rejects = new Map void>() private tracker = new RpcClientRequestTracker({ - nextId: () => `frame-${++this.frameCount}`, + nextId: () => this.nextFrameId(), getState: () => this.state, waitForConnected: async () => { if (this.state !== 'connected') { throw new Error('Scripted transport disconnected') } }, - deviceToken: 'recording-device', + deviceToken: DEVICE_TOKEN, sendEncrypted: (value) => { // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the physical client publishes the frame this transport just serialized. const payload = value as { id: string; method: string; params: unknown } @@ -45,7 +54,7 @@ export class ScriptedRpcTransport { throw new Error('Unbound physical request') } this.bindings.set(name, { id: payload.id, params: payload.params, completed: false }) - this.payloads.push({ name, json: JSON.stringify(value) }) + this.publish(name, value) return true } }) @@ -58,9 +67,7 @@ export class ScriptedRpcTransport { this.client = { ...this.logical, sendRequest: (...args: Parameters) => { - const occurrence = (this.counts.get(args[0]) ?? 0) + 1 - this.counts.set(args[0], occurrence) - const name = `${args[0]}#${occurrence}` + const name = this.occurrence(args[0]) this.activeName = name const request = { name, @@ -79,6 +86,32 @@ export class ScriptedRpcTransport { } private session(): RpcClient { + // One registry per physical session, the way `DirectRpcClient` builds one: the tracker is shared + // because a logical request outlives a cutover, a stream does not. Byte-neutral either way — the + // re-send after a cutover comes from the logical client's own replay — but it keeps a frame + // routed through the session that published its subscribe. + const streams = new RpcClientStreamRegistry({ + nextId: () => this.nextFrameId(), + deviceToken: DEVICE_TOKEN, + getState: () => this.state, + sendEncrypted: (value) => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the stream registry publishes the frame it just built. + const payload = value as { id: string; method: string; params: unknown } + const name = this.occurrence(payload.method) + // Only a subscribe opens a stream. The registry sends its unsubscribes through this same + // hook, and filing one under `openStreams` made a frame aimed at an unsubscribe name route + // at that id, find nothing, record nothing and not throw. + if (this.opening) { + this.openStreams.set(name, { + id: payload.id, + params: payload.params, + deliver: (response) => streams.handleResponse(response) + }) + } + this.publish(name, value) + return true + } + }) return { sendRequest: (...args) => { const name = this.activeName @@ -88,10 +121,16 @@ export class ScriptedRpcTransport { this.tracker.sendRequest(...args).then(resolve, reject) }) }, - subscribe: () => { - throw new Error('Subscriptions are outside this request-only runner') + subscribe: (method, params, onData, options) => { + this.opening = true + try { + return streams.subscribe(method, params, onData, options) + } finally { + this.opening = false + } }, - updateTerminalSubscriptionViewport: () => {}, + updateTerminalSubscriptionViewport: (terminal, viewport) => + streams.updateTerminalViewport(terminal, viewport), getState: () => this.state, getReconnectAttempt: () => 0, getLastConnectedAt: () => 0, @@ -108,6 +147,46 @@ export class ScriptedRpcTransport { } } + private nextFrameId(): string { + return `frame-${++this.frameCount}` + } + + /** One occurrence counter per method, so a subscribe payload is named the way a request is. */ + private occurrence(method: string): string { + const next = (this.counts.get(method) ?? 0) + 1 + this.counts.set(method, next) + return `${method}#${next}` + } + + private publish(name: string, value: unknown): void { + // Why the send count: `payloads` and `requests` are independent lists, and a subscribe publishes + // synchronously while a request first waits for connected — so swapping the two in product + // source moves neither list. Stamping the count at write time makes that swap a golden diff. + this.payloads.push({ name, json: JSON.stringify(value), sent: this.requests.length }) + } + + /** + * A whole host response delivered at a subscribe payload's wire id, through the real registry, so + * `ready`, a data event, `end` and a refusal are one step kind rather than four. + */ + frame(name: string, params: unknown, reply: unknown): void { + const stream = this.openStreams.get(name) + if (!stream) { + throw new Error(`Missing subscription payload: ${name}`) + } + if (JSON.stringify(captureValue(stream.params)) !== JSON.stringify(captureValue(params))) { + throw new Error(`Subscribe params mismatch: ${name}`) + } + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the scenario supplies the response as JSON; the wire id is the transport’s. + const routed = stream.deliver({ ...(reply as object), id: stream.id } as RpcResponse) + if (!routed) { + // Only a non-streaming reply lands here: the registry routes every streaming response to the + // id that opened the stream, retired or not. A scenario that has stopped matching, not a + // stream that closed early. + throw new Error(`No open stream for frame: ${name}`) + } + } + /** Whether a scripted name names a request that was sent and is still waiting for its reply. */ outstanding(name: string): boolean { const binding = this.bindings.get(this.aliases.get(name) ?? name) From c33a446190bdfa21286a373e097c50a2b3e0a4d4 Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:47:24 -0400 Subject: [PATCH 08/28] feat(mobile): clarify the notification opt-in screen (#20930) * feat(mobile): clarify the notification opt-in screen Replace the generic enable-notifications prompt with copy and a looping banner preview that show background alerts when an agent finishes or is waiting, even if the app is closed. * fix(mobile): share reduced-motion hook and wait before animating Extract the duplicated onboarding reduced-motion probe and hold the banner loop until the OS preference is known, so Reduce Motion users do not see the first cycle. --- mobile/app/mobile-onboarding.tsx | 36 +--- .../onboarding/MobileOnboardingPage.test.ts | 45 ++++- .../src/onboarding/MobileOnboardingPage.tsx | 29 ++- .../NotificationOnboardingPreview.test.ts | 116 ++++++++++++ .../NotificationOnboardingPreview.tsx | 179 ++++++++++++++++++ .../onboarding/mobile-onboarding-styles.ts | 7 +- mobile/src/onboarding/use-reduced-motion.ts | 25 +++ 7 files changed, 387 insertions(+), 50 deletions(-) create mode 100644 mobile/src/onboarding/NotificationOnboardingPreview.test.ts create mode 100644 mobile/src/onboarding/NotificationOnboardingPreview.tsx create mode 100644 mobile/src/onboarding/use-reduced-motion.ts diff --git a/mobile/app/mobile-onboarding.tsx b/mobile/app/mobile-onboarding.tsx index 213a5c982e5..872d2ca0379 100644 --- a/mobile/app/mobile-onboarding.tsx +++ b/mobile/app/mobile-onboarding.tsx @@ -1,12 +1,5 @@ -import { useCallback, useEffect, useMemo, useRef, useState } from 'react' -import { - AccessibilityInfo, - Animated, - BackHandler, - Text, - useWindowDimensions, - View -} from 'react-native' +import { useCallback, useMemo, useRef, useState } from 'react' +import { Animated, BackHandler, Text, useWindowDimensions, View } from 'react-native' import { useFocusEffect, useLocalSearchParams, useRouter } from 'expo-router' import { SafeAreaView } from 'react-native-safe-area-context' import { OrcaLogo } from '../src/components/OrcaLogo' @@ -17,6 +10,7 @@ import { type NotificationOnboardingChoice } from '../src/onboarding/MobileOnboardingPage' import { parseMobileOnboardingSteps } from '../src/onboarding/mobile-onboarding-plan' +import { useReducedMotionEnabled } from '../src/onboarding/use-reduced-motion' import { mobileOnboardingStyles as styles } from '../src/onboarding/mobile-onboarding-styles' import { saveDefaultSessionView, @@ -85,7 +79,7 @@ function MobileOnboardingFlow({ toValue: nextIndex, // Why: the carousel should preserve continuity without overriding the // device's reduced-motion preference. - duration: reducedMotionEnabled ? 0 : SLIDE_DURATION_MS, + duration: reducedMotionEnabled === true ? 0 : SLIDE_DURATION_MS, useNativeDriver: true }).start(() => { // Why: a cancelled cosmetic transition must not leave the next decision @@ -191,25 +185,3 @@ function MobileOnboardingFlow({ function firstParam(value: string | string[] | undefined): string | undefined { return Array.isArray(value) ? value[0] : value } - -function useReducedMotionEnabled(): boolean { - const [enabled, setEnabled] = useState(false) - - useEffect(() => { - let mounted = true - void AccessibilityInfo.isReduceMotionEnabled() - .then((nextEnabled) => { - if (mounted) { - setEnabled(nextEnabled) - } - }) - .catch(() => undefined) - const subscription = AccessibilityInfo.addEventListener('reduceMotionChanged', setEnabled) - return () => { - mounted = false - subscription.remove() - } - }, []) - - return enabled -} diff --git a/mobile/src/onboarding/MobileOnboardingPage.test.ts b/mobile/src/onboarding/MobileOnboardingPage.test.ts index d62e496f0bd..ebf90e31c28 100644 --- a/mobile/src/onboarding/MobileOnboardingPage.test.ts +++ b/mobile/src/onboarding/MobileOnboardingPage.test.ts @@ -5,8 +5,29 @@ import { MobileOnboardingPage } from './MobileOnboardingPage' vi.mock('react-native', async () => { const React = await import('react') + class AnimatedValue { + interpolate() { + return 0 + } + setValue() {} + } return { + AccessibilityInfo: { + addEventListener: vi.fn(() => ({ remove: vi.fn() })), + isReduceMotionEnabled: vi.fn(() => Promise.resolve(true)) + }, ActivityIndicator: 'ActivityIndicator', + Animated: { + Value: AnimatedValue, + View: 'AnimatedView', + delay: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + loop: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + parallel: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + sequence: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + timing: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })) + }, + Easing: { cubic: (t: number) => t, in: (e: unknown) => e, out: (e: unknown) => e }, + Image: 'Image', Pressable: 'Pressable', ScrollView: ({ children, ...props }: { children?: unknown }) => React.createElement('ScrollView', props, children), @@ -17,10 +38,11 @@ vi.mock('react-native', async () => { }) vi.mock('lucide-react-native', () => ({ - BellRing: 'BellRing', MessageSquare: 'MessageSquare' })) +vi.mock('../components/OrcaLogo', () => ({ OrcaLogo: 'OrcaLogo' })) + describe('MobileOnboardingPage', () => { let renderer: ReactTestRenderer | null = null @@ -64,6 +86,14 @@ describe('MobileOnboardingPage', () => { ) } + function collectText(): string { + return renderer!.root + .findAllByType('Text') + .map((node) => node.props.children) + .flat() + .join(' ') + } + it('renders the session choices and sends exactly one selected view', async () => { const callbacks = await renderPage('session-view') @@ -80,6 +110,19 @@ describe('MobileOnboardingPage', () => { expect(callbacks.onSessionChoice).not.toHaveBeenCalled() }) + it('explains that alerts cover finished work and waiting agents, even if the app is closed', async () => { + await renderPage('notifications') + const copy = collectText() + + expect(copy).toContain('Don’t miss when an agent needs you') + expect(copy).toContain('finishes or is waiting') + expect(copy).toContain('using the app') + expect(copy).toContain('Enable notifications') + expect(copy).toContain('Codex finished') + expect(copy).toContain('Claude needs input') + expect(renderer!.root.findByProps({ testID: 'notification-onboarding-preview' })).toBeTruthy() + }) + it('disables both notification choices while permission is pending', async () => { await renderPage('notifications', { busyChoice: 'enable' }) const enable = button('Enable agent notifications') diff --git a/mobile/src/onboarding/MobileOnboardingPage.tsx b/mobile/src/onboarding/MobileOnboardingPage.tsx index 65a19b57889..25e3b3560ba 100644 --- a/mobile/src/onboarding/MobileOnboardingPage.tsx +++ b/mobile/src/onboarding/MobileOnboardingPage.tsx @@ -1,7 +1,8 @@ import { ActivityIndicator, Pressable, ScrollView, Text, View } from 'react-native' -import { BellRing, MessageSquare } from 'lucide-react-native' +import { MessageSquare } from 'lucide-react-native' import type { MobileOnboardingStep } from './mobile-onboarding-plan' import { mobileOnboardingStyles as styles } from './mobile-onboarding-styles' +import { NotificationOnboardingPreview } from './NotificationOnboardingPreview' import type { MobileSessionView } from '../storage/session-view-preferences' import { colors } from '../theme/mobile-theme' @@ -38,33 +39,29 @@ export function MobileOnboardingPage({ accessibilityElementsHidden={!active} importantForAccessibility={active ? 'auto' : 'no-hide-descendants'} > - - - {isSessionView ? ( + + {isSessionView ? ( + - ) : ( - - )} - + + ) : ( + + )} - {isSessionView ? 'How should sessions open?' : 'Enable notifications'} + {isSessionView ? 'How should sessions open?' : 'Don’t miss when an agent needs you'} {isSessionView ? 'Choose whether supported agent sessions open in the terminal or Chat UI on this device. Press and hold a session tab to switch its view, or change the default later in Settings.' - : 'Get notified when an agent finishes a task or needs your input.'} + : 'Get a notification on this phone when an agent finishes or is waiting — even if you aren’t using the app.'} - {!isSessionView ? ( - - By default, notifications arrive after your desktop has been idle for 3 minutes. - - ) : null} {!isSessionView ? ( - Delivered through Orca’s push service. Change this anytime in Settings. + Delivered through Orca’s push service after your desktop has been idle for 3 minutes. + Change this anytime in Settings. ) : null} {error ? ( diff --git a/mobile/src/onboarding/NotificationOnboardingPreview.test.ts b/mobile/src/onboarding/NotificationOnboardingPreview.test.ts new file mode 100644 index 00000000000..2a7b1215c3d --- /dev/null +++ b/mobile/src/onboarding/NotificationOnboardingPreview.test.ts @@ -0,0 +1,116 @@ +import { createElement } from 'react' +import { act, create, type ReactTestRenderer } from 'react-test-renderer' +import { afterEach, describe, expect, it, vi } from 'vitest' +import { NotificationOnboardingPreview } from './NotificationOnboardingPreview' + +const mocks = vi.hoisted(() => { + const anim = () => ({ start: vi.fn(), stop: vi.fn() }) + return { + reducedMotion: true, + reducedMotionResult: null as Promise | null, + timing: vi.fn(anim), + loop: vi.fn(anim) + } +}) + +vi.mock('react-native', async () => { + const React = await import('react') + class AnimatedValue { + interpolate() { + return 0 + } + setValue() {} + } + return { + AccessibilityInfo: { + addEventListener: vi.fn(() => ({ remove: vi.fn() })), + isReduceMotionEnabled: vi.fn( + () => mocks.reducedMotionResult ?? Promise.resolve(mocks.reducedMotion) + ) + }, + Animated: { + Value: AnimatedValue, + View: ({ children, ...props }: { children?: unknown }) => + React.createElement('AnimatedView', props, children), + delay: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + loop: mocks.loop, + parallel: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + sequence: vi.fn(() => ({ start: vi.fn(), stop: vi.fn() })), + timing: mocks.timing + }, + Easing: { cubic: (t: number) => t, in: (e: unknown) => e, out: (e: unknown) => e }, + StyleSheet: { create: (styles: unknown) => styles }, + Text: 'Text', + View: 'View' + } +}) + +vi.mock('../components/OrcaLogo', () => ({ OrcaLogo: 'OrcaLogo' })) + +describe('NotificationOnboardingPreview', () => { + let renderer: ReactTestRenderer | null = null + + afterEach(() => { + act(() => renderer?.unmount()) + renderer = null + mocks.reducedMotion = true + mocks.reducedMotionResult = null + mocks.timing.mockClear() + mocks.loop.mockClear() + vi.restoreAllMocks() + }) + + async function renderPreview(active = true) { + const consoleError = vi.spyOn(console, 'error').mockImplementation((...args) => { + if (typeof args[0] !== 'string' || !args[0].includes('react-test-renderer is deprecated')) { + throw new Error(String(args[0])) + } + }) + await act(async () => { + renderer = create(createElement(NotificationOnboardingPreview, { active })) + }) + consoleError.mockRestore() + } + + it('shows sample agent-done and needs-input banners as a decorative mock', async () => { + await renderPreview() + const preview = renderer!.root.findByProps({ testID: 'notification-onboarding-preview' }) + const copy = renderer!.root + .findAllByType('Text') + .map((node) => node.props.children) + .flat() + .join(' ') + + expect(preview.props.accessibilityElementsHidden).toBe(true) + expect(preview.props.importantForAccessibility).toBe('no-hide-descendants') + expect(copy).toContain('Codex finished') + expect(copy).toContain('Claude needs input') + }) + + it('does not animate the banners when the page is off-screen', async () => { + await renderPreview(false) + expect(mocks.loop).not.toHaveBeenCalled() + }) + + it('loops the arriving banners while the page is active', async () => { + mocks.reducedMotion = false + await renderPreview(true) + expect(mocks.loop).toHaveBeenCalledOnce() + expect(mocks.loop.mock.results[0]?.value.start).toHaveBeenCalledOnce() + }) + + it('does not start the loop until reduced-motion is known', async () => { + let resolvePreference: (enabled: boolean) => void = () => {} + mocks.reducedMotionResult = new Promise((resolve) => { + resolvePreference = resolve + }) + + await renderPreview(true) + expect(mocks.loop).not.toHaveBeenCalled() + + await act(async () => { + resolvePreference(false) + }) + expect(mocks.loop).toHaveBeenCalledOnce() + }) +}) diff --git a/mobile/src/onboarding/NotificationOnboardingPreview.tsx b/mobile/src/onboarding/NotificationOnboardingPreview.tsx new file mode 100644 index 00000000000..2c81d8d1262 --- /dev/null +++ b/mobile/src/onboarding/NotificationOnboardingPreview.tsx @@ -0,0 +1,179 @@ +import { useEffect, useRef } from 'react' +import { Animated, Easing, StyleSheet, Text, View } from 'react-native' +import { OrcaLogo } from '../components/OrcaLogo' +import { colors, radii, spacing, typography } from '../theme/mobile-theme' +import { useReducedMotionEnabled } from './use-reduced-motion' + +const SAMPLE_NOTIFICATIONS = [ + { title: 'Codex finished', body: 'Tests are passing.' }, + { title: 'Claude needs input', body: 'Waiting on you.' } +] as const + +const ENTER_MS = 676 +const EXIT_MS = 416 +const STAGGER_MS = 546 +const HOLD_MS = 2860 +const GAP_MS = 624 +const SLIDE_FROM_Y = -22 + +type Props = { + active: boolean +} + +/** Decorative banners; the surrounding copy is the accessible explanation. */ +export function NotificationOnboardingPreview({ active }: Props) { + const reduceMotion = useReducedMotionEnabled() + const first = useRef(new Animated.Value(0)).current + const second = useRef(new Animated.Value(0)).current + + useEffect(() => { + if (!active || reduceMotion === null) { + first.setValue(0) + second.setValue(0) + return + } + if (reduceMotion) { + first.setValue(1) + second.setValue(1) + return + } + + const enter = (value: Animated.Value) => + Animated.timing(value, { + toValue: 1, + duration: ENTER_MS, + easing: Easing.out(Easing.cubic), + useNativeDriver: true + }) + const leave = (value: Animated.Value) => + Animated.timing(value, { + toValue: 0, + duration: EXIT_MS, + easing: Easing.in(Easing.cubic), + useNativeDriver: true + }) + const loop = Animated.loop( + Animated.sequence([ + enter(first), + Animated.delay(STAGGER_MS), + enter(second), + Animated.delay(HOLD_MS), + Animated.parallel([leave(first), leave(second)]), + Animated.delay(GAP_MS) + ]) + ) + loop.start() + return () => loop.stop() + }, [active, first, reduceMotion, second]) + + return ( + + + + + + + + + ) +} + +function SampleBanner({ notification }: { notification: (typeof SAMPLE_NOTIFICATIONS)[number] }) { + return ( + + + + + + + Orca + now + + + {notification.title} + + + {notification.body} + + + + ) +} + +function bannerMotion(progress: Animated.Value) { + return { + opacity: progress, + transform: [ + { + translateY: progress.interpolate({ + inputRange: [0, 1], + outputRange: [SLIDE_FROM_Y, 0] + }) + } + ] + } +} + +const styles = StyleSheet.create({ + stack: { + width: '100%', + maxWidth: 320, + gap: spacing.sm, + marginBottom: spacing.xl + spacing.lg + }, + card: { + flexDirection: 'row', + alignItems: 'center', + gap: spacing.md, + backgroundColor: colors.bgPanel, + borderColor: colors.borderSubtle, + borderWidth: 1, + borderRadius: radii.card, + paddingHorizontal: spacing.md, + paddingVertical: spacing.md + }, + appIcon: { + width: 32, + height: 32, + borderRadius: radii.camera, + backgroundColor: colors.bgRaised, + alignItems: 'center', + justifyContent: 'center' + }, + cardCopy: { + flex: 1, + minWidth: 0 + }, + cardMeta: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'space-between', + marginBottom: 2 + }, + appName: { + color: colors.textMuted, + fontSize: typography.metaSize, + fontWeight: '600' + }, + now: { + color: colors.textMuted, + fontSize: typography.metaSize + }, + cardTitle: { + color: colors.textPrimary, + fontSize: typography.bodySize, + fontWeight: '600' + }, + cardBody: { + color: colors.textSecondary, + fontSize: typography.metaSize, + marginTop: 1 + } +}) diff --git a/mobile/src/onboarding/mobile-onboarding-styles.ts b/mobile/src/onboarding/mobile-onboarding-styles.ts index 3f03bb24b95..201bd850818 100644 --- a/mobile/src/onboarding/mobile-onboarding-styles.ts +++ b/mobile/src/onboarding/mobile-onboarding-styles.ts @@ -57,7 +57,12 @@ export const mobileOnboardingStyles = StyleSheet.create({ flexGrow: 1, alignItems: 'center', justifyContent: 'center', - paddingVertical: spacing.xl + paddingTop: spacing.lg, + paddingBottom: spacing.md + }, + notificationContent: { + justifyContent: 'flex-start', + paddingTop: spacing.xl }, iconSurface: { width: 64, diff --git a/mobile/src/onboarding/use-reduced-motion.ts b/mobile/src/onboarding/use-reduced-motion.ts new file mode 100644 index 00000000000..6b3f16a856e --- /dev/null +++ b/mobile/src/onboarding/use-reduced-motion.ts @@ -0,0 +1,25 @@ +import { useEffect, useState } from 'react' +import { AccessibilityInfo } from 'react-native' + +/** `null` until the OS preference has been read. */ +export function useReducedMotionEnabled(): boolean | null { + const [enabled, setEnabled] = useState(null) + + useEffect(() => { + let mounted = true + void AccessibilityInfo.isReduceMotionEnabled() + .then((nextEnabled) => { + if (mounted) { + setEnabled(nextEnabled) + } + }) + .catch(() => undefined) + const subscription = AccessibilityInfo.addEventListener('reduceMotionChanged', setEnabled) + return () => { + mounted = false + subscription.remove() + } + }, []) + + return enabled +} From 07c7606feebc850d8b82c8c85a6a7fda71f29f14 Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Tue, 15 Sep 2026 20:18:21 -0700 Subject: [PATCH 09/28] fix(computer-use): reap detached macOS helpers through owner exit (#20926) Reclaim detached macOS computer-use helpers on abandoned requests and transports. Keep ownership from spawn, escalate SIGTERM to SIGKILL, force pending reaps when the sidecar exits, and clean each failed startup's private socket directory. Based on #14494 by @JuuuuHong. Preserve the original helper ownership/reaping design and regression tests while retaining the upstream line-buffer optimization and adding real-process teardown and resource-bound tests. Fixes #9141. Co-authored-by: JuuuuHong --- .../macos-native-provider-client.test.ts | 175 +++++++++++++++++- .../computer/macos-native-provider-client.ts | 43 ++--- ...os-native-provider-process-reaping.test.ts | 48 +++++ .../macos-native-provider-process-reaping.ts | 72 +++++++ ...ative-provider-reaping.integration.test.ts | 51 +++++ ...os-native-provider-startup-cleanup.test.ts | 87 +++++++++ .../macos-native-provider-transport.ts | 23 ++- ...decar-provider-reaping.integration.test.ts | 121 ++++++++++++ 8 files changed, 586 insertions(+), 34 deletions(-) create mode 100644 src/main/computer/macos-native-provider-process-reaping.test.ts create mode 100644 src/main/computer/macos-native-provider-process-reaping.ts create mode 100644 src/main/computer/macos-native-provider-reaping.integration.test.ts create mode 100644 src/main/computer/macos-native-provider-startup-cleanup.test.ts create mode 100644 src/main/computer/sidecar-provider-reaping.integration.test.ts diff --git a/src/main/computer/macos-native-provider-client.test.ts b/src/main/computer/macos-native-provider-client.test.ts index 501a30eb68a..a8332ac40dd 100644 --- a/src/main/computer/macos-native-provider-client.test.ts +++ b/src/main/computer/macos-native-provider-client.test.ts @@ -1,6 +1,7 @@ import { EventEmitter } from 'node:events' import { join } from 'node:path' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import { PROVIDER_SIGKILL_GRACE_MS } from './macos-native-provider-process-reaping' const { chmodSyncMock, @@ -63,8 +64,15 @@ class FakeSocket extends EventEmitter { } class FakeProvider extends EventEmitter { + exitCode: number | null = null + signalCode: string | null = null kill = vi.fn() unref = vi.fn() + + exit(code = 0): void { + this.exitCode = code + this.emit('exit', code, null) + } } function pendingConnectThatRejectsOnAbort(signal?: AbortSignal): Promise { @@ -107,6 +115,11 @@ describe('MacOSNativeProviderClient', () => { }) afterEach(() => { + for (const result of spawnMock.mock.results) { + if (result.value instanceof FakeProvider) { + result.value.exit() + } + } chmodSyncMock.mockReset() connectMacOSProviderSocketMock.mockReset() mkdtempSyncMock.mockReset() @@ -497,15 +510,15 @@ describe('MacOSNativeProviderClient', () => { }) it('terminates the helper process when socket startup fails', async () => { - const providerKill = vi.fn() - spawnMock.mockReturnValueOnce({ unref: vi.fn(), kill: providerKill }) + const provider = new FakeProvider() + spawnMock.mockReturnValueOnce(provider) connectMacOSProviderSocketMock.mockRejectedValueOnce(new Error('socket did not open')) const { MacOSNativeProviderClient } = await loadClientModule() const client = new MacOSNativeProviderClient() await expect(client.capabilities()).rejects.toThrow('socket did not open') - expect(providerKill).toHaveBeenCalledWith('SIGTERM') + expect(provider.kill).toHaveBeenCalledWith('SIGTERM') expect(rmSyncMock).toHaveBeenCalledWith(expect.stringContaining('orca-computer-use-'), { recursive: true, force: true @@ -551,6 +564,162 @@ describe('MacOSNativeProviderClient', () => { expect(connectSignal.aborted).toBe(true) expect(providers[0]!.kill).toHaveBeenCalledWith('SIGTERM') }) + + it('escalates to SIGKILL when a helper ignores terminate and SIGTERM', async () => { + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const call = client.capabilities() + const rejection = expect(call).rejects.toThrow('native macOS provider handshake timed out') + await vi.waitFor(() => expect(sockets).toHaveLength(1)) + const socket = sockets[0]! + await vi.waitFor(() => expect(socket.writes).toHaveLength(1)) + + await vi.advanceTimersByTimeAsync(60_000) + await rejection + + const provider = providers[0]! + // Why: a wedged helper never reads `terminate`, so the socket write alone + // is what used to leak the process on every request timeout. + expect(socket.writes.at(-1)).toContain('"method":"terminate"') + expect(provider.kill).toHaveBeenCalledWith('SIGTERM') + expect(provider.kill).not.toHaveBeenCalledWith('SIGKILL') + + await vi.advanceTimersByTimeAsync(PROVIDER_SIGKILL_GRACE_MS) + expect(provider.kill).toHaveBeenCalledWith('SIGKILL') + }) + + it('does not escalate to SIGKILL when the helper exits after SIGTERM', async () => { + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const call = client.capabilities() + const rejection = expect(call).rejects.toThrow('native macOS provider handshake timed out') + await vi.waitFor(() => expect(sockets).toHaveLength(1)) + await vi.waitFor(() => expect(sockets[0]!.writes).toHaveLength(1)) + + await vi.advanceTimersByTimeAsync(60_000) + await rejection + + const provider = providers[0]! + expect(provider.kill).toHaveBeenCalledWith('SIGTERM') + provider.exit(0) + + await vi.advanceTimersByTimeAsync(PROVIDER_SIGKILL_GRACE_MS * 2) + expect(provider.kill).not.toHaveBeenCalledWith('SIGKILL') + }) + + it('reaps the previous helper process before a replacement is started', async () => { + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const firstCall = client.capabilities() + const firstRejection = expect(firstCall).rejects.toThrow('active helper failed') + await vi.waitFor(() => expect(sockets).toHaveLength(1)) + await vi.waitFor(() => expect(sockets[0]!.writes).toHaveLength(1)) + sockets[0]!.emit('error', new Error('active helper failed')) + await firstRejection + + expect(providers[0]!.kill).toHaveBeenCalledWith('SIGTERM') + + const secondCall = client.capabilities() + await vi.waitFor(() => expect(providers).toHaveLength(2)) + // Why: the replacement must not inherit the previous generation's teardown. + expect(providers[1]!.kill).not.toHaveBeenCalled() + + const secondSocket = sockets[1]! + await vi.waitFor(() => expect(secondSocket.writes).toHaveLength(1)) + const secondRequest = JSON.parse(secondSocket.writes[0]!) as { id: number } + secondSocket.emit( + 'data', + `${JSON.stringify({ + id: secondRequest.id, + ok: true, + result: { protocolVersion: 1, supports: {} } + })}\n` + ) + await expect(secondCall).resolves.toMatchObject({ protocolVersion: 1 }) + }) + + it('reaps the helper process when the active socket closes on its own', async () => { + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const call = client.capabilities() + const rejection = expect(call).rejects.toThrow('native macOS helper app connection closed') + await vi.waitFor(() => expect(sockets).toHaveLength(1)) + await vi.waitFor(() => expect(sockets[0]!.writes).toHaveLength(1)) + + // Why: a helper that dies takes its socket down with a bare 'close', with no + // preceding 'error' — the teardown path most likely to run in the wild. + sockets[0]!.emit('close') + await rejection + + expect(providers[0]!.kill).toHaveBeenCalledWith('SIGTERM') + }) + + it('does not signal a helper that already exited before teardown', async () => { + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const call = client.capabilities() + const rejection = expect(call).rejects.toThrow('native macOS helper app connection closed') + await vi.waitFor(() => expect(sockets).toHaveLength(1)) + await vi.waitFor(() => expect(sockets[0]!.writes).toHaveLength(1)) + + const provider = providers[0]! + provider.exitCode = 0 + sockets[0]!.emit('close') + await rejection + + // Why: signalling a reaped pid is how a recycled pid gets hit. + expect(provider.kill).not.toHaveBeenCalled() + }) + + it('reaps the helper process of a superseded startup', async () => { + const pendingConnects: { + resolve: (socket: FakeSocket) => void + }[] = [] + connectMacOSProviderSocketMock.mockImplementation( + async () => + await new Promise((resolve) => { + pendingConnects.push({ resolve }) + }) + ) + const { MacOSNativeProviderClient } = await loadClientModule() + const client = new MacOSNativeProviderClient() + + const firstCall = client.capabilities() + await vi.waitFor(() => expect(pendingConnects).toHaveLength(1)) + + client.shutdown() + + const secondCall = client.capabilities() + await vi.waitFor(() => expect(pendingConnects).toHaveLength(2)) + const secondSocket = new FakeSocket() + pendingConnects[1]!.resolve(secondSocket) + await vi.waitFor(() => expect(secondSocket.writes).toHaveLength(1)) + const secondRequest = JSON.parse(secondSocket.writes[0]!) as { id: number } + + pendingConnects[0]!.resolve(new FakeSocket()) + await expect(firstCall).rejects.toThrow('native macOS provider startup was superseded') + + // Why: the superseded throw is caught by this function's own catch, so the + // helper must be reaped exactly once, not once per handler. + expect(providers[0]!.kill).toHaveBeenCalledTimes(1) + expect(providers[0]!.kill).toHaveBeenCalledWith('SIGTERM') + expect(providers[1]!.kill).not.toHaveBeenCalled() + + secondSocket.emit( + 'data', + `${JSON.stringify({ + id: secondRequest.id, + ok: true, + result: { protocolVersion: 1, supports: {} } + })}\n` + ) + await expect(secondCall).resolves.toMatchObject({ protocolVersion: 1 }) + }) }) function macOSProviderCapabilities(actions: Partial> = {}) { diff --git a/src/main/computer/macos-native-provider-client.ts b/src/main/computer/macos-native-provider-client.ts index 61c286223b2..ec466536375 100644 --- a/src/main/computer/macos-native-provider-client.ts +++ b/src/main/computer/macos-native-provider-client.ts @@ -18,6 +18,7 @@ import { writeNativeProviderLine } from './macos-native-provider-contract' import { resolveMacOSComputerUseExecutablePath } from './macos-native-provider-paths' +import { MacOSProviderProcessOwner } from './macos-native-provider-process-reaping' import { attachMacOSNativeProviderSocketListeners, NativeProviderLineBuffer, @@ -31,6 +32,7 @@ const REQUEST_TIMEOUT_MS = 60_000 export class MacOSNativeProviderClient { private socket: net.Socket | null = null + private readonly providerProcess = new MacOSProviderProcessOwner() private socketStartPromise: Promise | null = null private socketPath: string | null = null private socketDirectory: string | null = null @@ -84,7 +86,7 @@ export class MacOSNativeProviderClient { ) this.pending.delete(id) } - this.cleanupSocketDirectory() + this.releaseHelperGeneration() } private async call(method: NativeMethod, params: unknown): Promise { if (method !== 'handshake') { @@ -124,7 +126,7 @@ export class MacOSNativeProviderClient { clearTimeout(pending.timer) this.pending.delete(id) } - this.invalidateActiveSocketAfterWriteFailure(transport, wrapped) + this.invalidateActiveSocket(transport, wrapped) throw wrapped } return await result @@ -192,7 +194,8 @@ export class MacOSNativeProviderClient { helperExecutablePath, isCurrent: (socketPath) => this.socketStartGeneration === startGeneration && - (this.socketPath === null || this.socketPath === socketPath) + (this.socketPath === null || this.socketPath === socketPath), + providerProcess: this.providerProcess }) this.socketDirectory = started.socketDirectory this.socketPath = started.socketPath @@ -243,43 +246,37 @@ export class MacOSNativeProviderClient { this.cleanupActiveSocketListeners() this.socket = null this.socketBuffer.clear() - this.cleanupSocketDirectory() + this.releaseHelperGeneration() this.rejectPending( new RuntimeClientError('accessibility_error', 'native macOS helper app connection closed') ) } private handleTransportError(socket: net.Socket, error: Error): void { - // Why: stale socket errors can arrive after shutdown/restart. - if (this.socket !== socket) { - return - } - this.cleanupActiveSocketListeners() - // Why: an active transport error makes the helper socket unreliable for the next request. - this.socket = null - this.socketBuffer.clear() - if (!socket.destroyed) { - socket.destroy() - } - this.cleanupSocketDirectory() - this.rejectPending(new RuntimeClientError('accessibility_error', error.message)) + this.invalidateActiveSocket( + socket, + new RuntimeClientError('accessibility_error', error.message) + ) } - private invalidateActiveSocketAfterWriteFailure( - socket: net.Socket, - error: RuntimeClientError - ): void { + private invalidateActiveSocket(socket: net.Socket, error: RuntimeClientError): void { + // Why: stale socket errors and late write failures can arrive after + // shutdown/restart; only the active socket may tear down this generation. if (this.socket !== socket) { return } this.cleanupActiveSocketListeners() + // Why: a failed transport makes the helper socket unreliable for the next request. this.socket = null this.socketBuffer.clear() if (!socket.destroyed) { socket.destroy() } - this.cleanupSocketDirectory() + this.releaseHelperGeneration() this.rejectPending(error) } - private cleanupSocketDirectory(): void { + private releaseHelperGeneration(): void { + // Why: `terminate` only lands if the helper is still reading its socket, and + // the wedged helpers this reaps are exactly the ones that are not. + this.providerProcess.reap() if (!this.socketDirectory) { return } diff --git a/src/main/computer/macos-native-provider-process-reaping.test.ts b/src/main/computer/macos-native-provider-process-reaping.test.ts new file mode 100644 index 00000000000..7288795c84d --- /dev/null +++ b/src/main/computer/macos-native-provider-process-reaping.test.ts @@ -0,0 +1,48 @@ +import { ChildProcess } from 'node:child_process' +import { afterEach, describe, expect, it, vi } from 'vitest' +import { + PROVIDER_SIGKILL_GRACE_MS, + reapMacOSProviderProcess +} from './macos-native-provider-process-reaping' + +describe('macOS provider reaping resource bounds', () => { + const providers: ChildProcess[] = [] + + afterEach(() => { + for (const provider of providers.splice(0)) { + provider.emit('exit', 0, null) + } + vi.useRealTimers() + vi.restoreAllMocks() + }) + + it.each(['exit', 'escalation'] as const)( + 'shares one exit hook across 200 helpers and releases it on %s', + (mode) => { + vi.useFakeTimers() + const baseline = process.listenerCount('exit') + for (let index = 0; index < 200; index++) { + const provider = new ChildProcess() + vi.spyOn(provider, 'kill').mockReturnValue(true) + providers.push(provider) + reapMacOSProviderProcess(provider) + reapMacOSProviderProcess(provider) + expect(provider.kill).toHaveBeenCalledTimes(1) + } + expect(process.listenerCount('exit')).toBe(baseline + 1) + if (mode === 'exit') { + for (const provider of providers) { + provider.emit('exit', 0, null) + } + } + vi.advanceTimersByTime(PROVIDER_SIGKILL_GRACE_MS) + + for (const provider of providers) { + expect(provider.kill).toHaveBeenCalledTimes(mode === 'exit' ? 1 : 2) + expect(provider.listenerCount('exit')).toBe(0) + } + expect(vi.getTimerCount()).toBe(0) + expect(process.listenerCount('exit')).toBe(baseline) + } + ) +}) diff --git a/src/main/computer/macos-native-provider-process-reaping.ts b/src/main/computer/macos-native-provider-process-reaping.ts new file mode 100644 index 00000000000..7ce243e6100 --- /dev/null +++ b/src/main/computer/macos-native-provider-process-reaping.ts @@ -0,0 +1,72 @@ +import type { ChildProcessHandle as ChildProcess } from '../../shared/child-process/run-process' + +export const PROVIDER_SIGKILL_GRACE_MS = 2_000 + +const reaped = new WeakSet() +const pendingReaps = new Set<() => void>() + +function forcePendingReaps(): void { + for (const forceReap of pendingReaps) { + forceReap() + } +} + +// Why: signal the child handle, not a raw pid. Node no-ops once the child has +// exited, so a recycled pid can never be signalled. +export function reapMacOSProviderProcess(provider: ChildProcess): void { + if (reaped.has(provider) || hasProviderExited(provider)) { + return + } + reaped.add(provider) + const cleanup = (): void => { + clearTimeout(escalation) + provider.off('exit', cleanup) + pendingReaps.delete(forceReap) + if (pendingReaps.size === 0) { + process.off('exit', forcePendingReaps) + } + } + const forceReap = (): void => { + try { + if (!hasProviderExited(provider)) { + provider.kill('SIGKILL') + } + } finally { + cleanup() + } + } + const escalation = setTimeout(forceReap, PROVIDER_SIGKILL_GRACE_MS) + escalation.unref() + if (pendingReaps.size === 0) { + // Sidecar shutdown calls process.exit(), so timer escalation alone can strand a helper. + process.once('exit', forcePendingReaps) + } + pendingReaps.add(forceReap) + provider.once('exit', cleanup) + provider.kill('SIGTERM') +} + +export class MacOSProviderProcessOwner { + private provider: ChildProcess | null = null + + // Why: adopting a new generation must never strand the previous one, whatever + // teardown did or did not run first. + adopt(provider: ChildProcess): void { + this.reap() + this.provider = provider + } + + reap(): void { + const provider = this.provider + this.provider = null + if (provider) { + reapMacOSProviderProcess(provider) + } + } +} + +// Why: typeof, not `!== null` — test doubles leave these undefined, which +// `!== null` would read as "already exited" and silently skip the reap. +function hasProviderExited(provider: ChildProcess): boolean { + return typeof provider.exitCode === 'number' || typeof provider.signalCode === 'string' +} diff --git a/src/main/computer/macos-native-provider-reaping.integration.test.ts b/src/main/computer/macos-native-provider-reaping.integration.test.ts new file mode 100644 index 00000000000..b4180242e58 --- /dev/null +++ b/src/main/computer/macos-native-provider-reaping.integration.test.ts @@ -0,0 +1,51 @@ +import { once } from 'node:events' +import { afterEach, describe, expect, it } from 'vitest' +import { spawnProcess, type ChildProcessHandle } from '../../shared/child-process/run-process' +import { reapMacOSProviderProcess } from './macos-native-provider-process-reaping' + +describe.skipIf(process.platform === 'win32')('real macOS provider process reaping', () => { + const children: ChildProcessHandle[] = [] + + afterEach(async () => { + await Promise.all( + children.splice(0).map(async (child) => { + if (child.exitCode !== null || child.signalCode !== null) { + return + } + const exit = once(child, 'exit') + child.kill('SIGKILL') + await exit + }) + ) + }) + + it.each(['healthy', 'ignores SIGTERM', 'stopped'])('reaps a %s detached child', async (mode) => { + const child = spawnProcess({ + program: process.execPath, + args: [ + '-e', + ` + ${mode === 'ignores SIGTERM' ? "process.on('SIGTERM', () => {});" : ''} + setInterval(() => {}, 1000); + process.stdout.write('ready'); + ` + ], + detached: true + }) + children.push(child) + const exited = once(child, 'exit') + await once(child.stdout, 'data') + if (mode === 'stopped') { + child.kill('SIGSTOP') + } + const exitListeners = process.listenerCount('exit') + + reapMacOSProviderProcess(child) + reapMacOSProviderProcess(child) + + const [code, signal] = await exited + expect(code).toBeNull() + expect(signal).toBe(mode === 'healthy' ? 'SIGTERM' : 'SIGKILL') + expect(process.listenerCount('exit')).toBe(exitListeners) + }) +}) diff --git a/src/main/computer/macos-native-provider-startup-cleanup.test.ts b/src/main/computer/macos-native-provider-startup-cleanup.test.ts new file mode 100644 index 00000000000..272a928743c --- /dev/null +++ b/src/main/computer/macos-native-provider-startup-cleanup.test.ts @@ -0,0 +1,87 @@ +import { EventEmitter } from 'node:events' +import { existsSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs' +import { tmpdir } from 'node:os' +import { dirname, join } from 'node:path' +import { afterEach, describe, expect, it, vi } from 'vitest' +import { MacOSProviderProcessOwner } from './macos-native-provider-process-reaping' +import { startMacOSNativeProviderSocket } from './macos-native-provider-transport' + +const { connectMock, spawnMock } = vi.hoisted(() => ({ + connectMock: vi.fn(), + spawnMock: vi.fn() +})) + +vi.mock('node:child_process', () => ({ spawn: spawnMock })) +vi.mock('./macos-native-provider-socket', () => ({ + connectMacOSProviderSocket: connectMock +})) + +class Provider extends EventEmitter { + exitCode: number | null = null + signalCode: string | null = null + kill = vi.fn() + unref(): void {} +} + +describe('superseded macOS provider startup cleanup', () => { + const directories: string[] = [] + + afterEach(() => { + for (const result of spawnMock.mock.results) { + if (result.value instanceof Provider) { + result.value.emit('exit', 0, null) + } + } + vi.useRealTimers() + vi.resetAllMocks() + for (const directory of directories.splice(0)) { + rmSync(directory, { recursive: true, force: true }) + } + }) + + it.each(['socket rejection', 'provider exit'])( + 'removes only its own directory on %s', + async (failure) => { + vi.useFakeTimers() + const provider = new Provider() + spawnMock.mockReturnValue(provider) + let rejectConnection = (_error: Error): void => {} + connectMock.mockImplementation( + (socketPath: string, _timeout: number, signal: AbortSignal) => { + directories.push(dirname(socketPath)) + return new Promise((_resolve, reject) => { + rejectConnection = reject + signal.addEventListener('abort', () => reject(new Error('cancelled')), { once: true }) + }) + } + ) + let current = true + const owner = new MacOSProviderProcessOwner() + const startup = startMacOSNativeProviderSocket({ + helperExecutablePath: 'fixture-provider', + isCurrent: () => current, + providerProcess: owner + }) + const rejection = expect(startup).rejects.toThrow() + const ownDirectory = directories[0]! + expect(existsSync(join(ownDirectory, 'provider.token'))).toBe(true) + const replacementDirectory = mkdtempSync(join(tmpdir(), 'orca-computer-use-replacement-')) + directories.push(replacementDirectory) + const replacementToken = join(replacementDirectory, 'provider.token') + writeFileSync(replacementToken, 'replacement-token') + + current = false + owner.reap() + if (failure === 'provider exit') { + provider.exitCode = 0 + provider.emit('exit', 0, null) + } else { + rejectConnection(new Error('socket did not open')) + } + + await rejection + expect(existsSync(ownDirectory)).toBe(false) + expect(existsSync(replacementToken)).toBe(true) + } + ) +}) diff --git a/src/main/computer/macos-native-provider-transport.ts b/src/main/computer/macos-native-provider-transport.ts index 01ceca2d5d6..1678dab22d3 100644 --- a/src/main/computer/macos-native-provider-transport.ts +++ b/src/main/computer/macos-native-provider-transport.ts @@ -5,6 +5,10 @@ import { release, tmpdir } from 'node:os' import { join } from 'node:path' import { randomUUID } from 'node:crypto' import { connectMacOSProviderSocket } from './macos-native-provider-socket' +import { + reapMacOSProviderProcess, + type MacOSProviderProcessOwner +} from './macos-native-provider-process-reaping' import { RuntimeClientError } from './runtime-client-error' const HELPER_CONNECT_TIMEOUT_MS = 10_000 @@ -86,10 +90,12 @@ export function consumeNativeProviderLines( export async function startMacOSNativeProviderSocket({ helperExecutablePath, - isCurrent + isCurrent, + providerProcess }: { helperExecutablePath: string isCurrent: (socketPath: string) => boolean + providerProcess: MacOSProviderProcessOwner }): Promise { const socketDirectory = mkdtempSync(join(tmpdir(), 'orca-computer-use-')) chmodSync(socketDirectory, 0o700) @@ -100,6 +106,9 @@ export async function startMacOSNativeProviderSocket({ // Why: launching the nested helper via LaunchServices can make TCC evaluate // Orca.app as responsible; the signed helper executable owns this grant. const provider = spawnProvider(helperExecutablePath, socketPath, socketTokenPath) + // Why: own the helper from birth. Adopting only after connect leaves a window + // where a quit during startup strands it with nobody holding the handle. + providerProcess.adopt(provider) const providerFailure = waitForProviderLaunchFailure(provider) const connectAbort = new AbortController() try { @@ -111,7 +120,6 @@ export async function startMacOSNativeProviderSocket({ rmSync(socketTokenPath, { force: true }) if (!isCurrent(socketPath)) { socket.destroy() - cleanupSocketDirectory(socketDirectory) throw new RuntimeClientError( 'accessibility_error', 'native macOS provider startup was superseded' @@ -121,12 +129,11 @@ export async function startMacOSNativeProviderSocket({ } catch (error) { connectAbort.abort() providerFailure.cleanup() - // Why: connect failures happen after spawn; terminate the detached helper - // so repeated startup attempts do not leave orphan providers. - provider.kill('SIGTERM') - if (isCurrent(socketPath)) { - cleanupSocketDirectory(socketDirectory) - } + // Why: connect failures and superseded startups both happen after spawn; + // escalate so a helper that ignores SIGTERM cannot outlive the attempt. + reapMacOSProviderProcess(provider) + // Each attempt owns a unique directory, even after its generation is superseded. + cleanupSocketDirectory(socketDirectory) throw error } } diff --git a/src/main/computer/sidecar-provider-reaping.integration.test.ts b/src/main/computer/sidecar-provider-reaping.integration.test.ts new file mode 100644 index 00000000000..1e6e89d2bb0 --- /dev/null +++ b/src/main/computer/sidecar-provider-reaping.integration.test.ts @@ -0,0 +1,121 @@ +import { once } from 'node:events' +import { mkdtemp, readFile, rm } from 'node:fs/promises' +import { tmpdir } from 'node:os' +import { join } from 'node:path' +import { build } from 'esbuild' +import { afterAll, beforeAll, describe, expect, it, vi } from 'vitest' +import { runProcess, spawnProcess } from '../../shared/child-process/run-process' + +describe.skipIf(process.platform === 'win32')('real sidecar exit reaping', () => { + let directory = '' + let entry = '' + + beforeAll(async () => { + directory = await mkdtemp(join(tmpdir(), 'orca-sidecar-reaping-')) + entry = join(directory, 'sidecar.cjs') + await build({ + entryPoints: [join(__dirname, 'sidecar-entry.ts')], + outfile: entry, + bundle: true, + platform: 'node', + format: 'cjs', + logLevel: 'silent', + plugins: [ + { + name: 'fault-injected-provider', + setup(builder) { + builder.onLoad({ filter: /computer-provider-lifecycle\.ts$/ }, () => ({ + resolveDir: __dirname, + loader: 'ts', + contents: ` + import { once } from 'node:events'; + import { writeFileSync } from 'node:fs'; + import { spawnProcess } from '../../shared/child-process/run-process'; + import { reapMacOSProviderProcess } from './macos-native-provider-process-reaping'; + let child; + export function currentComputerProvider() { + return { capabilities: async () => { + child = spawnProcess({ + program: process.execPath, + args: ['-e', "process.on('SIGTERM', () => {}); process.on('SIGHUP', () => {}); setInterval(() => {}, 1000); process.stdout.write('ready');"], + detached: true, + stdio: ['ignore', 'pipe', 'ignore'] + }); + writeFileSync(process.env.ORCA_TEST_PROVIDER_PID_FILE, String(child.pid)); + child.unref(); + await once(child.stdout, 'data'); + child.stdout.destroy(); + child.kill('SIGSTOP'); + return { ready: true }; + }}; + } + export function shutdownComputerProviders() { + if (child) reapMacOSProviderProcess(child); + } + ` + })) + } + } + ] + }) + }) + + afterAll(async () => { + if (directory) { + await rm(directory, { recursive: true, force: true }) + } + }) + + async function isRunning(pid: number): Promise { + const result = await runProcess({ + program: '/bin/ps', + args: ['-o', 'stat=', '-p', String(pid)], + timeoutMs: 5_000 + }) + // Linux containers may retain exited grandchildren as zombies until PID 1 reaps them. + return result.code === 0 && !result.stdout.trim().startsWith('Z') + } + + it.each(['SIGTERM', 'SIGINT', 'disconnect'] as const)( + 'does not leave a stopped, SIGTERM-resistant helper after %s', + async (mode) => { + const pidFile = join(directory, `${mode}.pid`) + const sidecar = spawnProcess({ + program: process.execPath, + args: [entry], + env: { ...process.env, ORCA_BACKGROUND_LAUNCH: '1', ORCA_TEST_PROVIDER_PID_FILE: pidFile }, + stdio: ['ignore', 'pipe', 'pipe', 'ipc'] + }) + const sidecarExit = once(sidecar, 'exit') + try { + const response = once(sidecar, 'message') + sidecar.send({ id: 1, method: 'capabilities' }) + expect((await response)[0]).toMatchObject({ id: 1, ok: true, result: { ready: true } }) + const pid = Number(await readFile(pidFile, 'utf8')) + expect(Number.isInteger(pid) && pid > 0).toBe(true) + expect(await isRunning(pid)).toBe(true) + + if (mode === 'disconnect') { + sidecar.disconnect() + } else { + sidecar.kill(mode) + } + await sidecarExit + + await vi.waitFor(async () => expect(await isRunning(pid)).toBe(false), { + timeout: 5_000, + interval: 100 + }) + } finally { + if (sidecar.exitCode === null && sidecar.signalCode === null) { + sidecar.kill('SIGKILL') + await sidecarExit + } + const pid = Number(await readFile(pidFile, 'utf8').catch(() => '0')) + if (Number.isInteger(pid) && pid > 0 && (await isRunning(pid))) { + process.kill(pid, 'SIGKILL') + } + } + } + ) +}) From 7f23d4463d79d6180f180947d0b5bf4fe20931de Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Tue, 15 Sep 2026 20:50:37 -0700 Subject: [PATCH 10/28] refactor(daemon): consolidate snapshot-safe listener delivery (#20945) Consolidate snapshot-safe daemon PTY listener delivery and exit payload construction. Reuse listener removal and event types while preserving callback ordering, payload isolation, optional exit fields, and recovery exception handling. Fixes #10984. Adapted from #11119. Co-authored-by: MumuTW <42820974+MumuTW@users.noreply.github.com> --- src/main/daemon/daemon-pty-adapter.test.ts | 56 ++++++++++++++----- src/main/daemon/daemon-pty-adapter.ts | 18 ++---- src/main/daemon/daemon-pty-daemon-recovery.ts | 6 +- .../daemon/daemon-pty-event-subscriptions.ts | 46 ++++----------- .../daemon/daemon-pty-listener-emission.ts | 18 ++++++ src/main/daemon/daemon-pty-runtime-state.ts | 18 +----- .../daemon/daemon-pty-session-inventory.ts | 16 ++---- 7 files changed, 86 insertions(+), 92 deletions(-) create mode 100644 src/main/daemon/daemon-pty-listener-emission.ts diff --git a/src/main/daemon/daemon-pty-adapter.test.ts b/src/main/daemon/daemon-pty-adapter.test.ts index 5eba73d8ad2..379d6a23b8f 100644 --- a/src/main/daemon/daemon-pty-adapter.test.ts +++ b/src/main/daemon/daemon-pty-adapter.test.ts @@ -841,6 +841,47 @@ describe('DaemonPtyAdapter (IPtyProvider)', () => { }) describe('fanoutSyntheticExits / getActiveSessionIds (restart primitives)', () => { + it.each(['synthetic', 'daemon'])( + 'snapshots subscriptions and isolates %s exit payloads', + async (source) => { + const { id } = await adapter.spawn({ cols: 80, rows: 24 }) + const emitExit = + source === 'synthetic' + ? () => adapter.fanoutSyntheticExits(-1) + : () => lastSubprocess._simulateExit(-1) + const calls: string[] = [] + const secondListener = vi.fn() + let unsubscribeSecond = () => {} + adapter.onExit((payload) => { + calls.push('first') + unsubscribeSecond() + adapter.onExit(() => calls.push('late')) + payload.id = 'mutated' + payload.code = 99 + }) + unsubscribeSecond = adapter.onExit((payload) => { + calls.push('second') + secondListener(payload) + }) + + emitExit() + await waitFor(() => calls.length >= 2) + + expect(calls).toEqual(['first', 'second']) + expect(secondListener).toHaveBeenCalledWith( + expect.objectContaining({ + id, + code: -1, + incarnationId: expect.any(String) + }) + ) + await adapter.spawn({ cols: 80, rows: 24 }) + emitExit() + await waitFor(() => calls.length >= 4) + expect(calls).toEqual(['first', 'second', 'first', 'late']) + } + ) + it('reports every live spawn in getActiveSessionIds', async () => { const { id: id1 } = await adapter.spawn({ cols: 80, rows: 24 }) const { id: id2 } = await adapter.spawn({ cols: 80, rows: 24 }) @@ -883,20 +924,5 @@ describe('DaemonPtyAdapter (IPtyProvider)', () => { adapter.fanoutSyntheticExits(-1) expect(exits).toHaveLength(1) }) - - it('propagates to every registered exit listener in order', () => { - const aExits: { id: string; code: number }[] = [] - const bExits: { id: string; code: number }[] = [] - adapter.onExit((payload) => aExits.push(payload)) - adapter.onExit((payload) => bExits.push(payload)) - - const internals = adapter as unknown as { activeSessionIds: Set } - internals.activeSessionIds.add('sess-a') - - adapter.fanoutSyntheticExits(-1) - - expect(aExits).toEqual([{ id: 'sess-a', code: -1 }]) - expect(bExits).toEqual([{ id: 'sess-a', code: -1 }]) - }) }) }) diff --git a/src/main/daemon/daemon-pty-adapter.ts b/src/main/daemon/daemon-pty-adapter.ts index cef90dedaed..9624edc4aca 100644 --- a/src/main/daemon/daemon-pty-adapter.ts +++ b/src/main/daemon/daemon-pty-adapter.ts @@ -1,3 +1,4 @@ +import { emitPtyListeners, createPtyExitPayload } from './daemon-pty-listener-emission' import { DaemonPtyDaemonRecovery } from './daemon-pty-daemon-recovery' import { supportsMode2031UnsubscribeFact, type DaemonEvent } from './types' import type { IPtyProvider } from '../providers/types' @@ -16,8 +17,7 @@ export class DaemonPtyAdapter extends DaemonPtyDaemonRecovery implements IPtyPro if (event.event === 'data') { this.markSessionDirty(event.sessionId) - // oxlint-disable-next-line unicorn/no-useless-spread -- copy-safe: listeners may unsubscribe during iteration - for (const listener of [...this.dataListeners]) { + emitPtyListeners(this.dataListeners, (listener) => listener({ id: event.sessionId, data: event.payload.data, @@ -27,7 +27,7 @@ export class DaemonPtyAdapter extends DaemonPtyDaemonRecovery implements IPtyPro ...(event.payload.transformed ? { transformed: true } : {}), ...(event.payload.seq === undefined ? {} : { seq: event.payload.seq }) }) - } + ) } else if (event.event === 'sessionBackgroundMarker') { this.emitBackgroundStreamEvent({ id: event.sessionId, @@ -97,15 +97,9 @@ export class DaemonPtyAdapter extends DaemonPtyDaemonRecovery implements IPtyPro event.payload.code, event.payload.incarnationId ) - // oxlint-disable-next-line unicorn/no-useless-spread -- copy-safe: listeners may unsubscribe during iteration - for (const listener of [...this.exitListeners]) { - listener({ - id: event.sessionId, - code: event.payload.code, - ...(event.payload.incarnationId ? { incarnationId: event.payload.incarnationId } : {}), - ...(event.payload.cause ? { cause: event.payload.cause } : {}) - }) - } + emitPtyListeners(this.exitListeners, (listener) => + listener(createPtyExitPayload(event.sessionId, event.payload)) + ) } }) } diff --git a/src/main/daemon/daemon-pty-daemon-recovery.ts b/src/main/daemon/daemon-pty-daemon-recovery.ts index 73ef2591be6..374c39d1c21 100644 --- a/src/main/daemon/daemon-pty-daemon-recovery.ts +++ b/src/main/daemon/daemon-pty-daemon-recovery.ts @@ -1,3 +1,4 @@ +import { emitPtyListeners } from './daemon-pty-listener-emission' import { existsSync } from 'node:fs' import { getMacDaemonSystemResolverHealth } from './daemon-health' import { getMacDaemonTccAttributionHealth } from './daemon-tcc-attribution' @@ -259,10 +260,7 @@ export abstract class DaemonPtyDaemonRecovery extends DaemonPtyCheckpointPersist } protected emitBackgroundStreamEvent(payload: PtyBackgroundStreamEvent): void { - // oxlint-disable-next-line unicorn/no-useless-spread -- copy-safe: listeners may unsubscribe during iteration - for (const listener of [...this.backgroundStreamListeners]) { - listener(payload) - } + emitPtyListeners(this.backgroundStreamListeners, (listener) => listener(payload)) } protected async doRespawn( diff --git a/src/main/daemon/daemon-pty-event-subscriptions.ts b/src/main/daemon/daemon-pty-event-subscriptions.ts index b033944541f..6d95e2de1c7 100644 --- a/src/main/daemon/daemon-pty-event-subscriptions.ts +++ b/src/main/daemon/daemon-pty-event-subscriptions.ts @@ -1,35 +1,20 @@ +import type { DaemonPtyRouterDataEvent } from './daemon-pty-router-events' +import { removeDaemonListener } from './daemon-listener-registry' +import { emitPtyListeners } from './daemon-pty-listener-emission' import type { PtyIncarnationId } from '../../shared/pty-incarnation' import { DaemonPtySessionInventory } from './daemon-pty-session-inventory' import { CLEAN_DISCONNECT_PROTOCOL_VERSION } from './types' import type { PtyBackgroundStreamEvent } from '../providers/types' export abstract class DaemonPtyEventSubscriptions extends DaemonPtySessionInventory { - onData( - callback: (payload: { - id: string - data: string - sequenceChars?: number - transformed?: boolean - seq?: number - }) => void - ): () => void { + onData(callback: (payload: DaemonPtyRouterDataEvent) => void): () => void { this.dataListeners.push(callback) - return () => { - const idx = this.dataListeners.indexOf(callback) - if (idx !== -1) { - this.dataListeners.splice(idx, 1) - } - } + return () => removeDaemonListener(this.dataListeners, callback) } onBackgroundStreamEvent(callback: (payload: PtyBackgroundStreamEvent) => void): () => void { this.backgroundStreamListeners.push(callback) - return () => { - const idx = this.backgroundStreamListeners.indexOf(callback) - if (idx !== -1) { - this.backgroundStreamListeners.splice(idx, 1) - } - } + return () => removeDaemonListener(this.backgroundStreamListeners, callback) } onReplay(_callback: (payload: { id: string; data: string }) => void): () => void { @@ -40,34 +25,23 @@ export abstract class DaemonPtyEventSubscriptions extends DaemonPtySessionInvent callback: (payload: { id: string; code: number; incarnationId?: PtyIncarnationId }) => void ): () => void { this.exitListeners.push(callback) - return () => { - const idx = this.exitListeners.indexOf(callback) - if (idx !== -1) { - this.exitListeners.splice(idx, 1) - } - } + return () => removeDaemonListener(this.exitListeners, callback) } onWriteUnavailable(callback: (payload: { id: string }) => void): () => void { this.writeUnavailableListeners.push(callback) - return () => { - const idx = this.writeUnavailableListeners.indexOf(callback) - if (idx !== -1) { - this.writeUnavailableListeners.splice(idx, 1) - } - } + return () => removeDaemonListener(this.writeUnavailableListeners, callback) } protected emitWriteUnavailable(id: string): void { - // oxlint-disable-next-line unicorn/no-useless-spread -- copy-safe: listeners may unsubscribe during iteration - for (const listener of [...this.writeUnavailableListeners]) { + emitPtyListeners(this.writeUnavailableListeners, (listener) => { try { listener({ id }) } catch (error) { // Renderer notification failure must not cancel recovery or erase write evidence. console.warn('[daemon] Write unavailable listener failed:', error) } - } + }) } dispose(): void { diff --git a/src/main/daemon/daemon-pty-listener-emission.ts b/src/main/daemon/daemon-pty-listener-emission.ts new file mode 100644 index 00000000000..e2a84daf0fc --- /dev/null +++ b/src/main/daemon/daemon-pty-listener-emission.ts @@ -0,0 +1,18 @@ +import type { DaemonPtyRouterExitEvent } from './daemon-pty-router-events' + +export function emitPtyListeners(listeners: readonly T[], emit: (listener: T) => void): void { + // Callbacks may change subscriptions; those changes apply to the next emission. + listeners.slice().forEach(emit) +} + +export function createPtyExitPayload( + id: string, + { code, incarnationId, cause }: Omit +): DaemonPtyRouterExitEvent { + return { + id, + code, + ...(incarnationId ? { incarnationId } : {}), + ...(cause ? { cause } : {}) + } +} diff --git a/src/main/daemon/daemon-pty-runtime-state.ts b/src/main/daemon/daemon-pty-runtime-state.ts index 0edd28283e0..e471f698748 100644 --- a/src/main/daemon/daemon-pty-runtime-state.ts +++ b/src/main/daemon/daemon-pty-runtime-state.ts @@ -29,8 +29,7 @@ import { } from './history-manager' import { HistoryReader } from './history-reader' import type { PtyBackgroundStreamEvent } from '../providers/types' -import type { PtyIncarnationId } from '../../shared/pty-incarnation' -import type { TerminalExitCause } from '../../shared/terminal-exit-cause' +import type { DaemonPtyRouterDataEvent, DaemonPtyRouterExitEvent } from './daemon-pty-router-events' export type PendingDaemonSpawnOperation = { exitsBySessionId: Map @@ -97,19 +96,8 @@ export abstract class DaemonPtyRuntimeState { protected staleBundleReplacementPromise: Promise | null = null protected writeRecoveryPromise: Promise | null = null protected writeRecoveryAttempted = false - protected dataListeners: ((payload: { - id: string - data: string - sequenceChars?: number - transformed?: boolean - seq?: number - }) => void)[] = [] - protected exitListeners: ((payload: { - id: string - code: number - incarnationId?: PtyIncarnationId - cause?: TerminalExitCause - }) => void)[] = [] + protected dataListeners: ((payload: DaemonPtyRouterDataEvent) => void)[] = [] + protected exitListeners: ((payload: DaemonPtyRouterExitEvent) => void)[] = [] protected backgroundStreamListeners: ((payload: PtyBackgroundStreamEvent) => void)[] = [] protected writeUnavailableListeners: ((payload: { id: string }) => void)[] = [] protected removeEventListener: (() => void) | null = null diff --git a/src/main/daemon/daemon-pty-session-inventory.ts b/src/main/daemon/daemon-pty-session-inventory.ts index 42d728bc994..b08c34830b4 100644 --- a/src/main/daemon/daemon-pty-session-inventory.ts +++ b/src/main/daemon/daemon-pty-session-inventory.ts @@ -1,3 +1,4 @@ +import { emitPtyListeners, createPtyExitPayload } from './daemon-pty-listener-emission' import { basename } from 'node:path' import { existsSync } from 'node:fs' import { @@ -154,16 +155,11 @@ export abstract class DaemonPtySessionInventory extends DaemonPtyProcessInspecti for (const id of ids) { this.coldRestoreCache.delete(id) // Why: don't catch listener throws — matches the natural onExit fanout so synthetic exits keep the same error semantics. - // oxlint-disable-next-line unicorn/no-useless-spread -- copy-safe: listeners may unsubscribe during iteration - for (const listener of [...this.exitListeners]) { - listener({ - id, - code, - ...(this.sessionIncarnations.get(id) - ? { incarnationId: this.sessionIncarnations.get(id) } - : {}) - }) - } + emitPtyListeners(this.exitListeners, (listener) => + listener( + createPtyExitPayload(id, { code, incarnationId: this.sessionIncarnations.get(id) }) + ) + ) this.sessionIncarnations.delete(id) } } From e6a41081a3cc723ade11e719286ca6bd67c68884 Mon Sep 17 00:00:00 2001 From: kaluli123123 Date: Wed, 16 Sep 2026 12:00:27 +0800 Subject: [PATCH 11/28] fix: name the id-kind mismatch when --ack is given a message id (#15743) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: name the id-kind mismatch when --ack is given a message id `orchestration check --ack` takes the batch's delivery id, which the check response returns as the top-level `deliveryId`. Passing a message id instead produced: stale_delivery: Delivery msg_5d5cdf77614c does not belong to this Run. That states a Run-scope verdict for what is really the wrong kind of identifier, and it names no field that carries the right one. The only id visible while reading the message list is the message `id`, so the message sends the caller hunting the wrong axis — #15697 is a detailed report that concluded the ack path was broken and no delivery id was exposed, when both were fine. When the value misses the deliveries table but hits the messages table, say so and point at `deliveryId`. Anything else keeps the original wording, including a delivery that exists but belongs to another Run — that one really is a scope verdict. Refs #15697 Co-Authored-By: Claude Opus 5 (1M context) * test: bind message-id diagnostics to queued rows --------- Co-authored-by: Claude Opus 5 (1M context) Co-authored-by: Neil --- .../db/messages/role-mailbox-delivery.ts | 4 ++- ...orchestration-delivery-consumption.test.ts | 3 ++ .../orchestration/messaging/check.test.ts | 33 +++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) diff --git a/src/main/runtime/orchestration/db/messages/role-mailbox-delivery.ts b/src/main/runtime/orchestration/db/messages/role-mailbox-delivery.ts index 6c96fc282ac..3b5f5dad94f 100644 --- a/src/main/runtime/orchestration/db/messages/role-mailbox-delivery.ts +++ b/src/main/runtime/orchestration/db/messages/role-mailbox-delivery.ts @@ -129,7 +129,9 @@ export function acknowledgeMailboxDelivery( ) { throw new OrchestrationError( 'stale_delivery', - `Delivery ${params.deliveryId} does not belong to this mailbox. --ack requires a delivery_* ID returned by orchestration check; process the entire batch before acknowledging.` + !delivery && this.getMessageById(params.deliveryId) + ? `${params.deliveryId} is a message id, not a delivery id. Acknowledge the batch with the deliveryId field from the check response; process the entire batch before acknowledging.` + : `Delivery ${params.deliveryId} does not belong to this mailbox. --ack requires a delivery_* ID returned by orchestration check; process the entire batch before acknowledging.` ) } if ( diff --git a/src/main/runtime/orchestration/orchestration-delivery-consumption.test.ts b/src/main/runtime/orchestration/orchestration-delivery-consumption.test.ts index 49c8977c417..5d0bd3da6c0 100644 --- a/src/main/runtime/orchestration/orchestration-delivery-consumption.test.ts +++ b/src/main/runtime/orchestration/orchestration-delivery-consumption.test.ts @@ -95,6 +95,9 @@ describe('mailbox delivery consumption', () => { const message = insert('pending') const first = db.getOrCreateRunDelivery(params)! expect(() => db.acknowledgeRunDelivery({ ...params, deliveryId: message.id })).toThrow( + `${message.id} is a message id, not a delivery id. Acknowledge the batch with the deliveryId field from the check response; process the entire batch before acknowledging.` + ) + expect(() => db.acknowledgeRunDelivery({ ...params, deliveryId: 'delivery_missing' })).toThrow( '--ack requires a delivery_* ID returned by orchestration check; process the entire batch before acknowledging.' ) expect(db.getMessageById(message.id)?.read).toBe(0) diff --git a/src/main/runtime/rpc/methods/orchestration/messaging/check.test.ts b/src/main/runtime/rpc/methods/orchestration/messaging/check.test.ts index 536a78b52d1..affdddd0ac4 100644 --- a/src/main/runtime/rpc/methods/orchestration/messaging/check.test.ts +++ b/src/main/runtime/rpc/methods/orchestration/messaging/check.test.ts @@ -247,6 +247,39 @@ describe('orchestration RPC methods', () => { expect(db.getUnreadMessages(`run:${activeRunId}`)).toHaveLength(1) }) + it('names the id-kind mismatch when --ack is given a message id', async () => { + setup() + db.insertMessage({ + from: 'worker', + to: `run:${activeRunId}`, + subject: 'queued', + runId: activeRunId + }) + const [queued] = db.getUnreadMessages(`run:${activeRunId}`) + const checked = await call('orchestration.check', { terminal: 'term_coord' }) + if (!checked || typeof checked !== 'object' || !('deliveryId' in checked)) { + throw new Error('Expected a mailbox delivery') + } + const deliveryId = checked.deliveryId + expect(typeof deliveryId).toBe('string') + + await expect( + call('orchestration.check', { terminal: 'term_coord', ack: queued.id }) + ).rejects.toMatchObject({ + code: 'stale_delivery', + message: `${queued.id} is a message id, not a delivery id. Acknowledge the batch with the deliveryId field from the check response; process the entire batch before acknowledging.` + }) + expect(db.getMessageById(queued.id)).toMatchObject({ id: queued.id, read: 0 }) + expect(await call('orchestration.check', { terminal: 'term_coord' })).toMatchObject({ + deliveryId, + messages: [{ id: queued.id }] + }) + expect( + await call('orchestration.check', { terminal: 'term_coord', ack: deliveryId }) + ).toMatchObject({ acknowledged: deliveryId }) + expect(db.getMessageById(queued.id)).toMatchObject({ read: 1 }) + }) + it('acknowledges a Run Delivery before returning --peek history', async () => { setup() db.insertMessage({ From 357c9780f8bffa10a21d004449d8d6d9846a9310 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 21:31:17 -0700 Subject: [PATCH 12/28] refactor(agent-launch): retire the duplicate worker-start mode decision (#20911) `orchestration-worker-start-mode` becomes a thin adapter over `agent-launch/agent-launch-mode`, which already owns the same decision. Orchestration keeps its receipt vocabulary via WORKER_START_VOCABULARY, so every sentence a dispatch receipt prints is unchanged. Recovers the cutover written in f34d08a452, which a later merge resolved in favour of main's side; the two added files survived, the deletion half did not. --- .../agent-launch/agent-launch-executor.ts | 7 +- .../orchestration-worker-start-mode.ts | 207 +++--------------- ...ation-worker-start-receipt-wording.test.ts | 6 +- 3 files changed, 42 insertions(+), 178 deletions(-) diff --git a/src/main/agent-launch/agent-launch-executor.ts b/src/main/agent-launch/agent-launch-executor.ts index 3f02aaafb36..c1f93ac7aef 100644 --- a/src/main/agent-launch/agent-launch-executor.ts +++ b/src/main/agent-launch/agent-launch-executor.ts @@ -3,10 +3,9 @@ * `agent.launch` alone. Orchestration dispatch, mobile create, CLI create and the desktop agent * tab each still start agents their own way; moving them here is later stack work. * - * The mode decision is duplicated rather than shared: `agent-launch-mode` is a surface-neutral - * second copy of orchestration's `orchestration-worker-start-mode`, which is unchanged and still - * the one orchestration uses, with nothing enforcing agreement between them. That cutover is later - * stack work too. What this module adds is the *sequencing*, and the sequencing is where the bug + * The mode decision is shared, not copied: `agent-launch-mode` owns it, and + * `orchestration-worker-start-mode` is a thin adapter over it supplying orchestration's receipt + * vocabulary. What this module adds is the *sequencing*, and the sequencing is where the bug * was: * * create the worktree agent-first -> its startup terminal IS the agent diff --git a/src/main/runtime/rpc/methods/orchestration-worker-start-mode.ts b/src/main/runtime/rpc/methods/orchestration-worker-start-mode.ts index 92dc5c644a8..9cd9f51e0ac 100644 --- a/src/main/runtime/rpc/methods/orchestration-worker-start-mode.ts +++ b/src/main/runtime/rpc/methods/orchestration-worker-start-mode.ts @@ -1,59 +1,41 @@ /** - * Which kind of worker `orchestration.workerStart` starts, decided from the user's own settings. + * `orchestration.workerStart`'s view of the shared launch-mode decision. * - * There is no `--structured` flag: if the user's default is that a new agent tab opens as a - * structured native chat, an orchestration worker is one too. That default is a preference, not a - * demand, so a dispatch it cannot apply to falls back to an ordinary PTY terminal worker and the - * receipt says which mode ran and why — a routine `worker-start` must never fail because the user - * happens to have a chat preference on. - * - * The settings default and the per-launch feasibility both come from - * `shared/structured-native-chat-launch-route`, the same module the renderer's - * `resolveAgentLaunchRoute` uses. This adapter supplies placement facts and formats the receipt; - * it does not own a second feasibility policy. + * The decision itself lives in `main/agent-launch/agent-launch-mode`, which every launch surface + * shares — a worker is not a special kind of launch, it is the same launch with a dispatch + * attached. All this module contributes is the noun orchestration puts in its receipts ("worker") + * and the `--terminal` wording, so a dispatch receipt reads the way it always has. */ -import type { GlobalSettings } from '../../../../shared/global-settings-types' -import { RUNTIME_CAPABILITIES } from '../../../../shared/protocol-version' import { - prefersStructuredNativeChatByDefault, - resolveStructuredNativeChatSupport, - type NativeChatDefaultSettings, - type StructuredNativeChatBlocker -} from '../../../../shared/structured-native-chat-launch-route' + decideAgentLaunchMode, + downgradeAgentLaunchModeForHost, + readAgentLaunchModeSettings, + resolveAgentLaunchModeOnHost, + type AgentLaunchMode, + type AgentLaunchModeReason, + type AgentLaunchModeReceipt, + type AgentLaunchModeSettings, + type AgentLaunchModeVocabulary +} from '../../../agent-launch/agent-launch-mode' import type { TuiAgent } from '../../../../shared/tui-agent' -import { hasExplicitTuiLaunchCustomization } from '../../../../shared/tui-agent-launch-customization' import type { OrcaRuntimeService } from '../../orca-runtime' -export type WorkerStartMode = 'structured' | 'terminal' +export type WorkerStartMode = AgentLaunchMode +export type WorkerStartModeReason = AgentLaunchModeReason +export type WorkerStartModeReceipt = AgentLaunchModeReceipt -export type WorkerStartModeReason = - | 'user_default' - | 'remote_execution_host' - | 'reused_terminal' - | 'agent_without_structured_session' - | 'tui_launch_customization' - | 'structured_sessions_unavailable' - | 'structured_support_unknown' - | 'wsl_execution_runtime' - | 'codex_on_windows' - | 'structured_unsupported_on_host' - -export type WorkerStartModeReceipt = { - /** The mode the worker actually started in. */ - mode: WorkerStartMode - /** The user's settings default for a new agent tab. */ - preferred: WorkerStartMode - reason: WorkerStartModeReason - /** One sentence, always present, so a fallback is never silent. */ - detail: string +/** Orchestration's receipts are read next to dispatch records, so they name the worker and the + * flag that reused a terminal. Pinned here because the exact strings are asserted. */ +export const WORKER_START_VOCABULARY: AgentLaunchModeVocabulary = { + structured: 'a structured chat session worker', + terminal: 'a terminal agent worker', + detailOverrides: { + remote_execution_host: 'this worker runs on a remote execution host', + reused_terminal: '--terminal reuses a running terminal agent' + } } -type WorkerStartModeSettings = Partial< - NativeChatDefaultSettings & - Pick -> - /** The placement options that exist only on `worker-start`. `worktree`, `model` and `effort` are * listed but no longer read: a structured worker honours all three, and naming them here keeps * the set of options this decision has considered visible. */ @@ -66,152 +48,35 @@ type WorkerStartModePlacement = { effort?: string } -const DOWNGRADE_DETAIL: Record, string> = { - remote_execution_host: 'this worker runs on a remote execution host', - reused_terminal: '--terminal reuses a running terminal agent', - agent_without_structured_session: 'this agent has no structured session', - tui_launch_customization: - 'this agent has a custom launch command, arguments or environment that only a terminal applies', - structured_sessions_unavailable: 'this runtime does not support structured agent sessions', - structured_support_unknown: 'the execution host has not established structured session support', - wsl_execution_runtime: 'this workspace runs under WSL', - codex_on_windows: 'Codex has no structured session on Windows', - structured_unsupported_on_host: 'the execution host cannot create one here' -} - -const BLOCKER_REASON: Record< - StructuredNativeChatBlocker, - Exclude -> = { - 'reused-terminal': 'reused_terminal', - 'agent-without-structured-session': 'agent_without_structured_session', - 'floating-workspace': 'structured_unsupported_on_host', - 'tui-launch-customization': 'tui_launch_customization', - 'remote-execution-host': 'remote_execution_host', - 'project-runtime': 'wsl_execution_runtime', - 'runtime-capability': 'structured_sessions_unavailable', - 'runtime-capability-unknown': 'structured_support_unknown' -} - -/** The host's own create-support verdict (`agentSession.createSupport`) in this vocabulary. */ -const HOST_SUPPORT_REASON: Record< - 'agent' | 'remote' | 'wsl', - Exclude -> = { - agent: 'structured_unsupported_on_host', - remote: 'remote_execution_host', - wsl: 'wsl_execution_runtime' -} - export function decideWorkerStartMode(args: { params: WorkerStartModePlacement - settings: WorkerStartModeSettings | null | undefined + settings: AgentLaunchModeSettings | null | undefined }): WorkerStartModeReceipt { - const { params, settings } = args - if (!prefersStructuredNativeChatByDefault(settings)) { - return { - mode: 'terminal', - preferred: 'terminal', - reason: 'user_default', - detail: 'Started a terminal agent worker, the default for new agent tabs in your settings.' - } - } - const agent = params.agent as TuiAgent - const support = resolveStructuredNativeChatSupport({ - agent, - executionHostId: params.on ? `runtime:${params.on}` : 'local', - reusesTerminal: Boolean(params.terminal), - hostCapabilities: RUNTIME_CAPABILITIES, - // Orchestration resolves a managed worktree or folder workspace; a floating terminal is never - // a worker placement. WSL is left to the executing host's own create-support probe, which - // reads the resolved workspace rather than guessing from a client-side project runtime. - requiresTuiLaunchCustomization: hasExplicitTuiLaunchCustomization(settings, agent) + return decideAgentLaunchMode({ + placement: args.params, + settings: args.settings, + vocabulary: WORKER_START_VOCABULARY }) - if (!support.supported) { - return downgraded(BLOCKER_REASON[support.blocker]) - } - return { - mode: 'structured', - preferred: 'structured', - reason: 'user_default', - detail: - 'Started a structured chat session worker, the default for new agent tabs in your settings.' - } } -/** - * Second half of the decision, once the worktree is resolved: the host that will run the worker - * answers whether it can create a structured session there at all. Asked before anything is - * created, so a refusal becomes a terminal worker rather than a failed start. - */ export async function resolveWorkerStartModeOnHost( runtime: Pick, mode: WorkerStartModeReceipt, worktreeId: string | undefined, agent: TuiAgent | undefined ): Promise { - if (mode.mode !== 'structured' || !worktreeId) { - return mode - } - return downgradeWorkerStartModeForHost( - mode, - await readStructuredCreateSupport(runtime, worktreeId, agent) - ) + return resolveAgentLaunchModeOnHost(runtime, mode, worktreeId, agent, WORKER_START_VOCABULARY) } -/** A host that cannot answer has not proved it can create one, so the worker stays a PTY agent. */ -async function readStructuredCreateSupport( - runtime: Pick, - worktreeId: string, - agent: TuiAgent | undefined -): Promise<{ supported: boolean; reason?: 'agent' | 'remote' | 'wsl' } | null> { - if (agent !== 'claude' && agent !== 'codex') { - return { supported: false, reason: 'agent' } - } - try { - return await runtime.getStructuredAgentSessionCreateSupport(`id:${worktreeId}`, agent) - } catch { - return null - } -} - -/** - * Applies the executing host's `agentSession.createSupport` answer, which is the authority on WSL, - * remoteness and the Windows process-start-time gate for the resolved workspace. - */ export function downgradeWorkerStartModeForHost( receipt: WorkerStartModeReceipt, support: { supported: boolean; reason?: 'agent' | 'remote' | 'wsl' } | null ): WorkerStartModeReceipt { - if (receipt.mode !== 'structured' || support?.supported) { - return receipt - } - if (support === null) { - return downgraded(BLOCKER_REASON['runtime-capability-unknown']) - } - return downgraded( - support.reason ? HOST_SUPPORT_REASON[support.reason] : 'structured_unsupported_on_host' - ) + return downgradeAgentLaunchModeForHost(receipt, support, WORKER_START_VOCABULARY) } -function downgraded( - reason: Exclude -): WorkerStartModeReceipt { - return { - mode: 'terminal', - preferred: 'structured', - reason, - detail: `Your default is a structured chat session, but ${DOWNGRADE_DETAIL[reason]}; started a terminal agent worker instead.` - } -} - -/** The store can be missing on a runtime that never opened one; that reads as no preference. */ export function readWorkerStartModeSettings( runtime: Pick -): WorkerStartModeSettings | null { - try { - return runtime.getClientSettings() - } catch { - return null - } +): AgentLaunchModeSettings | null { + return readAgentLaunchModeSettings(runtime) } diff --git a/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts b/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts index b52263ba791..7e735fa65fb 100644 --- a/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts +++ b/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts @@ -8,9 +8,9 @@ * structured→terminal downgrade explains itself, so the whole sentence is the contract, not a * fragment of it. * - * This pins orchestration's own module, which this PR leaves in place. The neutral - * `agent-launch/agent-launch-mode` it introduces is a second copy of the same policy; nothing yet - * enforces that the two agree. + * Orchestration's module is now a thin adapter over the shared `agent-launch/agent-launch-mode`, + * so these sentences also pin the adapter's vocabulary: the shared default wording differs for the + * remote-host and reused-terminal downgrades, and only `WORKER_START_VOCABULARY` restores it. */ import { describe, expect, it } from 'vitest' From 96d77b37c5371f15f8dc9263f70c6d4e47be221f Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Wed, 16 Sep 2026 00:46:46 -0400 Subject: [PATCH 13/28] perf: always show project names and remove notification scans (#20931) * perf: avoid repeated agent scans when labeling notifications * perf: always label notifications and remove project counting * fix: qualify the notification project group by its folder's host Folder notifications resolved the folder host-aware, then looked its project group up by bare ID. The owner index fails a bare ID closed when two hosts publish the same group ID, so a remote folder lost the project name the catalog already had. Also drops the identity rescans that recovered display fields: the catalog finders now return the caller's row type, matching findIndexedRepoOwnerForHost. Updates the idle-arbitration expectation that still asserted the removed hasMultipleActiveRepos flag. --- src/main/ipc/notification-options.ts | 2 +- .../notifications-message-formatting.test.ts | 77 +++++---- ...y-connection-hook-idle-arbitration.test.ts | 1 - .../terminal-notification-state.test.ts | 160 ++++++++++++++++++ .../terminal-notification-state.ts | 103 ++++------- .../use-notification-dispatch.ts | 14 +- .../src/lib/worktree-runtime-owner-index.ts | 18 +- src/shared/notification-settings-types.ts | 1 + 8 files changed, 246 insertions(+), 130 deletions(-) create mode 100644 src/renderer/src/components/terminal-pane/terminal-notification-state.test.ts diff --git a/src/main/ipc/notification-options.ts b/src/main/ipc/notification-options.ts index deb0b93fd2f..a19f6044a46 100644 --- a/src/main/ipc/notification-options.ts +++ b/src/main/ipc/notification-options.ts @@ -87,7 +87,7 @@ function formatNotificationWorktreeContext(args: NotificationDispatchRequest): s NOTIFICATION_TITLE_CONTEXT_MAX_LENGTH ) const repoLabel = normalizeNotificationText(args.repoLabel, NOTIFICATION_TITLE_CONTEXT_MAX_LENGTH) - if (args.hasMultipleActiveRepos && repoLabel && worktreeLabel) { + if (repoLabel && worktreeLabel) { return normalizeNotificationText( `${repoLabel} / ${worktreeLabel}`, NOTIFICATION_TITLE_CONTEXT_MAX_LENGTH diff --git a/src/main/ipc/notifications-message-formatting.test.ts b/src/main/ipc/notifications-message-formatting.test.ts index 677c3131203..abf41bfae3c 100644 --- a/src/main/ipc/notifications-message-formatting.test.ts +++ b/src/main/ipc/notifications-message-formatting.test.ts @@ -96,43 +96,6 @@ describe('registerNotificationHandlers', () => { ) ).toEqual({ delivered: true }) - expect(notificationCtorMock).toHaveBeenCalledWith( - expectedNativeNotificationOptions({ - title: 'feat/notis - Codex finished', - body: 'Updated the notification body.' - }) - ) - }) - - it('includes the repo name when multiple repos are active', async () => { - registerNotificationHandlers({ - getSettings: () => ({ - notifications: { - enabled: true, - agentTaskComplete: true, - terminalBell: false, - suppressWhenFocused: true - } - }) - } as never) - - const handler = getDispatchHandler() - expect( - await handler( - {}, - { - source: 'agent-task-complete', - worktreeId: 'repo::wt1', - worktreeLabel: 'feat/notis', - repoLabel: 'orca', - hasMultipleActiveRepos: true, - agentType: 'codex', - agentState: 'done', - agentLastAssistantMessage: 'Updated the notification body.' - } - ) - ).toEqual({ delivered: true }) - expect(notificationCtorMock).toHaveBeenCalledWith( expectedNativeNotificationOptions({ title: 'orca / feat/notis - Codex finished', @@ -141,6 +104,46 @@ describe('registerNotificationHandlers', () => { ) }) + it.each([true, false, undefined])( + 'includes the repo name regardless of the legacy multiple-repo flag (%s)', + async (hasMultipleActiveRepos) => { + registerNotificationHandlers({ + getSettings: () => ({ + notifications: { + enabled: true, + agentTaskComplete: true, + terminalBell: false, + suppressWhenFocused: true + } + }) + } as never) + + const handler = getDispatchHandler() + expect( + await handler( + {}, + { + source: 'agent-task-complete', + worktreeId: 'repo::wt1', + worktreeLabel: 'feat/notis', + repoLabel: 'orca', + hasMultipleActiveRepos, + agentType: 'codex', + agentState: 'done', + agentLastAssistantMessage: 'Updated the notification body.' + } + ) + ).toEqual({ delivered: true }) + + expect(notificationCtorMock).toHaveBeenCalledWith( + expectedNativeNotificationOptions({ + title: 'orca / feat/notis - Codex finished', + body: 'Updated the notification body.' + }) + ) + } + ) + it('keeps a readable body when no assistant response was captured', async () => { registerNotificationHandlers({ getSettings: () => ({ diff --git a/src/renderer/src/components/terminal-pane/pty-connection-hook-idle-arbitration.test.ts b/src/renderer/src/components/terminal-pane/pty-connection-hook-idle-arbitration.test.ts index ce5834f100a..1b6cfd4f049 100644 --- a/src/renderer/src/components/terminal-pane/pty-connection-hook-idle-arbitration.test.ts +++ b/src/renderer/src/components/terminal-pane/pty-connection-hook-idle-arbitration.test.ts @@ -218,7 +218,6 @@ describe('connectPanePty', () => { worktreeId: 'wt-1', repoLabel: 'orca', worktreeLabel: 'feat/notis', - hasMultipleActiveRepos: true, terminalTitle: '* Claude done', agentType: 'claude', agentState: 'done', diff --git a/src/renderer/src/components/terminal-pane/terminal-notification-state.test.ts b/src/renderer/src/components/terminal-pane/terminal-notification-state.test.ts new file mode 100644 index 00000000000..e09f6dade3a --- /dev/null +++ b/src/renderer/src/components/terminal-pane/terminal-notification-state.test.ts @@ -0,0 +1,160 @@ +// @vitest-environment happy-dom +import { describe, expect, it } from 'vitest' +import { FLOATING_TERMINAL_WORKTREE_ID } from '../../../../shared/constants' +import { useAppStore } from '@/store' +import { makeFolderWorkspace, makeWorktree } from '@/store/slices/worktrees-slice-test-fixtures' +import { getNotificationWorkspaceLabels } from './terminal-notification-state' + +function stateWithWorkspace() { + return { + ...useAppStore.getInitialState(), + worktreesByRepo: { repo: [makeWorktree({ id: 'wt', repoId: 'repo', displayName: 'Feature' })] }, + repos: [ + { + id: 'repo', + displayName: 'Orca', + path: '/orca', + connectionId: null, + badgeColor: 'blue', + addedAt: 0 + } + ] + } +} + +describe('notification workspace labels', () => { + it('includes the only project without reading agent inventories', () => { + const state = stateWithWorkspace() + Object.defineProperty(state, 'agentStatusByPaneKey', { + get() { + throw new Error('agent scan') + } + }) + Object.defineProperty(state, 'retainedAgentsByPaneKey', { + get() { + throw new Error('retained scan') + } + }) + expect(getNotificationWorkspaceLabels(state, 'wt')).toEqual({ + repoLabel: 'Orca', + worktreeLabel: 'Feature' + }) + expect(getNotificationWorkspaceLabels(state, 'worktree:wt')).toEqual({ + repoLabel: 'Orca', + worktreeLabel: 'Feature' + }) + }) + + it('keeps labels for remote Git workspaces', () => { + const state = stateWithWorkspace() + state.worktreesByRepo.repo = [ + makeWorktree({ + id: 'remote', + repoId: 'repo', + hostId: 'ssh:server', + displayName: 'Remote feature' + }) + ] + expect(getNotificationWorkspaceLabels(state, 'remote')).toEqual({ + repoLabel: 'Orca', + worktreeLabel: 'Remote feature' + }) + }) + + it.each([undefined, 'ssh:server'] as const)( + 'resolves folder and project names on host %s', + (executionHostId) => { + const state = stateWithWorkspace() + state.folderWorkspaces = [ + makeFolderWorkspace({ + id: 'folder-id', + projectGroupId: 'group', + name: 'Website', + executionHostId + }) + ] + state.projectGroups = [ + { + id: 'group', + name: 'Personal', + executionHostId, + parentPath: null, + parentGroupId: null, + createdFrom: 'manual', + tabOrder: 0, + isCollapsed: false, + color: null, + createdAt: 0, + updatedAt: 0 + } + ] + expect(getNotificationWorkspaceLabels(state, 'folder:folder-id')).toEqual({ + repoLabel: 'Personal', + worktreeLabel: 'Website' + }) + state.projectGroups = [] + expect(getNotificationWorkspaceLabels(state, 'folder:folder-id')).toEqual({ + repoLabel: undefined, + worktreeLabel: 'Website' + }) + } + ) + + it.each([false, true])( + 'qualifies project groups by the folder host (legacy SSH: %s)', + (legacy) => { + const state = stateWithWorkspace() + state.folderWorkspaces = [ + makeFolderWorkspace({ + id: 'remote-folder', + name: 'Remote folder', + projectGroupId: 'shared', + ...(legacy ? { connectionId: 'server' } : { executionHostId: 'ssh:server' as const }) + }) + ] + state.projectGroups = (['local', 'ssh:server'] as const).map((executionHostId) => ({ + id: 'shared', + name: executionHostId === 'local' ? 'Local group' : 'Remote group', + executionHostId, + parentPath: null, + parentGroupId: null, + createdFrom: 'manual' as const, + tabOrder: 0, + isCollapsed: false, + color: null, + createdAt: 0, + updatedAt: 0 + })) + expect(getNotificationWorkspaceLabels(state, 'folder:remote-folder')).toEqual({ + repoLabel: 'Remote group', + worktreeLabel: 'Remote folder' + }) + } + ) + + it('does not pick an arbitrary folder when hosts have conflicting records', () => { + const state = stateWithWorkspace() + state.folderWorkspaces = (['ssh:a', 'ssh:b'] as const).map((executionHostId) => + makeFolderWorkspace({ id: 'duplicate', name: executionHostId, executionHostId }) + ) + expect(getNotificationWorkspaceLabels(state, 'folder:duplicate', 'Terminal')).toEqual({ + repoLabel: undefined, + worktreeLabel: 'Terminal' + }) + }) + + it.each(['folder:missing', 'missing-worktree', FLOATING_TERMINAL_WORKTREE_ID])( + 'uses readable fallbacks for %s', + (id) => { + const state = stateWithWorkspace() + expect(getNotificationWorkspaceLabels(state, id, 'My terminal')).toEqual({ + repoLabel: undefined, + worktreeLabel: 'My terminal' + }) + expect(getNotificationWorkspaceLabels(state, id, ' ')).toEqual({ + repoLabel: undefined, + worktreeLabel: 'workspace' + }) + } + ) +}) diff --git a/src/renderer/src/components/terminal-pane/terminal-notification-state.ts b/src/renderer/src/components/terminal-pane/terminal-notification-state.ts index ac2d1c6d227..db24696115c 100644 --- a/src/renderer/src/components/terminal-pane/terminal-notification-state.ts +++ b/src/renderer/src/components/terminal-pane/terminal-notification-state.ts @@ -1,7 +1,11 @@ -import { isExplicitAgentStatusFresh } from '@/lib/agent-status' import type { useAppStore } from '@/store' -import { getWorktreeMapFromState } from '@/store/selectors' -import { AGENT_STATUS_STALE_AFTER_MS } from '../../../../shared/agent-status-types' +import { getRepoMapFromState, getWorktreeMapFromState } from '@/store/selectors' +import { + findIndexedFolderWorkspaceOwner, + findIndexedProjectGroupOwner, + getCatalogOwnerHostId +} from '@/lib/worktree-runtime-owner-index' +import { parseWorkspaceKey } from '../../../../shared/workspace-scope' import { parsePaneKey } from '../../../../shared/stable-pane-id' import type { TerminalPaneLayoutNode } from '../../../../shared/terminal-tab-types' @@ -144,74 +148,31 @@ export function isCurrentKnownPaneKey( return ptyHints.length === 0 || ptyHints.some((ptyId) => !isSuppressedPtyHint(state, ptyId)) } -function hasActiveWorktreeState(state: StoreSnapshot, worktreeId: string): boolean { - if (hasLivePtyForWorktree(state, worktreeId)) { - return true +export function getNotificationWorkspaceLabels( + state: StoreSnapshot, + workspaceId: string, + terminalTitle?: string +): { repoLabel?: string; worktreeLabel: string } { + const scope = parseWorkspaceKey(workspaceId) + const fallback = terminalTitle?.trim() || 'workspace' + if (scope?.type === 'folder') { + const folder = findIndexedFolderWorkspaceOwner(state.folderWorkspaces, scope.folderWorkspaceId) + // The group ID is only unique per host, so qualify it with the folder's own host. + const group = + folder && + findIndexedProjectGroupOwner( + state.projectGroups, + folder.projectGroupId, + getCatalogOwnerHostId(folder) + ) + return { repoLabel: group?.name, worktreeLabel: folder?.name || fallback } } - - if ((state.browserTabsByWorktree?.[worktreeId] ?? []).length > 0) { - return true + const worktree = getWorktreeMapFromState(state).get( + scope?.type === 'worktree' ? scope.worktreeId : workspaceId + ) + const repo = worktree ? getRepoMapFromState(state).get(worktree.repoId) : undefined + return { + repoLabel: repo?.displayName, + worktreeLabel: worktree?.displayName || worktree?.branch || fallback } - - const worktree = getWorktreeMapFromState(state).get(worktreeId) - if (worktree?.workspaceStatus === 'in-progress') { - return true - } - - if ( - Object.values(state.retainedAgentsByPaneKey ?? {}).some( - (agent) => agent.worktreeId === worktreeId - ) - ) { - return true - } - - const tabs = state.tabsByWorktree[worktreeId] ?? [] - const tabIds = new Set(tabs.map((tab) => tab.id)) - if (tabIds.size === 0) { - return false - } - - const now = Date.now() - return Object.values(state.agentStatusByPaneKey ?? {}).some((entry) => { - const tabId = getPaneKeyTabId(entry.paneKey) - return ( - tabId !== null && - tabIds.has(tabId) && - isExplicitAgentStatusFresh(entry, now, AGENT_STATUS_STALE_AFTER_MS) - ) - }) -} - -function countReposWithWorktrees(state: StoreSnapshot): number { - let count = 0 - for (const worktrees of Object.values(state.worktreesByRepo)) { - if (worktrees.length > 0) { - count += 1 - } - } - return count -} - -export function countReposNeedingNotificationDisambiguation(state: StoreSnapshot): number { - const activeRepoIds = new Set() - const worktreeMap = getWorktreeMapFromState(state) - for (const worktreeId of Object.keys(state.tabsByWorktree)) { - if (!hasActiveWorktreeState(state, worktreeId)) { - continue - } - const repoId = worktreeMap.get(worktreeId)?.repoId - if (repoId) { - activeRepoIds.add(repoId) - } - } - for (const [repoId, worktrees] of Object.entries(state.worktreesByRepo)) { - if (activeRepoIds.has(repoId)) { - continue - } - if (worktrees.some((worktree) => hasActiveWorktreeState(state, worktree.id))) { - activeRepoIds.add(repoId) - } - } - return Math.max(activeRepoIds.size, countReposWithWorktrees(state)) } diff --git a/src/renderer/src/components/terminal-pane/use-notification-dispatch.ts b/src/renderer/src/components/terminal-pane/use-notification-dispatch.ts index 3c4070b44aa..f15c5067925 100644 --- a/src/renderer/src/components/terminal-pane/use-notification-dispatch.ts +++ b/src/renderer/src/components/terminal-pane/use-notification-dispatch.ts @@ -1,7 +1,6 @@ import { useCallback } from 'react' import { useAppStore } from '@/store' import { resolveCommittedTitleAgentType } from '@/lib/pane-agent-evidence' -import { getRepoMapFromState, getWorktreeMapFromState } from '@/store/selectors' import { playDesktopNotificationSound } from '@/lib/desktop-notification-sound' import { showBlockedNotificationFallbackToast } from '@/lib/blocked-notification-fallback' import { buildAgentNotificationId } from '../../../../shared/agent-notification-id' @@ -15,7 +14,7 @@ import type { AgentCompletionDispatchMeta, AgentCompletionStatusSnapshot } from './agent-completion-coordinator-types' -import { countReposNeedingNotificationDisambiguation } from './terminal-notification-state' +import { getNotificationWorkspaceLabels } from './terminal-notification-state' import { createTerminalAttentionSurface } from './terminal-attention-surface' import { applyAgentAttention, @@ -134,13 +133,6 @@ export function dispatchTerminalNotification( // Desktop settings are applied in main after independent mobile delivery. - // Why: prefer worktree.repoId over string-parsing the worktreeId. The - // `${repoId}::${path}` format is an implementation detail of id - // construction; coupling the notification dispatcher to it would silently - // drop the repo label if that format ever changes. The worktree object - // itself is the source of truth for its owning repo. - const worktree = getWorktreeMapFromState(state).get(worktreeId) - const repo = worktree ? getRepoMapFromState(state).get(worktree.repoId) : null const customSoundId = state.settings?.notifications?.customSoundId ?? 'system' const customSoundVolume = state.settings?.notifications?.customSoundVolume ?? null // Why: pane keys are reused across turns. A rich OS notification must not @@ -175,9 +167,7 @@ export function dispatchTerminalNotification( ...(notificationId ? { notificationId } : {}), worktreeId: request.workspaceId, paneKey: request.subjectKey ?? undefined, - repoLabel: repo?.displayName, - worktreeLabel: worktree?.displayName || worktree?.branch || worktreeId, - hasMultipleActiveRepos: countReposNeedingNotificationDisambiguation(state) > 1, + ...getNotificationWorkspaceLabels(state, request.workspaceId, event.terminalTitle), terminalTitle: event.terminalTitle, isActiveWorktree: request.workspaceIsActive, ...agentSnapshot diff --git a/src/renderer/src/lib/worktree-runtime-owner-index.ts b/src/renderer/src/lib/worktree-runtime-owner-index.ts index cddb3b81d90..df5aa8551eb 100644 --- a/src/renderer/src/lib/worktree-runtime-owner-index.ts +++ b/src/renderer/src/lib/worktree-runtime-owner-index.ts @@ -279,11 +279,11 @@ export function findIndexedRepoOwnerForHost( return resolution?.kind === 'resolved' ? (resolution.owner as T) : null } -export function findIndexedFolderWorkspaceOwner( - folderWorkspaces: readonly FolderWorkspaceOwnerRecord[] | undefined, +export function findIndexedFolderWorkspaceOwner( + folderWorkspaces: readonly T[] | undefined, folderWorkspaceId: string, executionHostId?: ExecutionHostId -): FolderWorkspaceOwnerRecord | null { +): T | null { if (!folderWorkspaces) { return null } @@ -295,14 +295,15 @@ export function findIndexedFolderWorkspaceOwner( const resolution = index.get( executionHostId ? `${folderWorkspaceId}\0${executionHostId}` : folderWorkspaceId ) - return resolution?.kind === 'resolved' ? resolution.owner : null + // The cache is keyed by this exact array, so its owner retains the caller's row type. + return resolution?.kind === 'resolved' ? (resolution.owner as T) : null } -export function findIndexedProjectGroupOwner( - projectGroups: readonly ProjectGroupOwnerRecord[] | undefined, +export function findIndexedProjectGroupOwner( + projectGroups: readonly T[] | undefined, projectGroupId: string, executionHostId?: ExecutionHostId -): ProjectGroupOwnerRecord | null { +): T | null { if (!projectGroups) { return null } @@ -314,5 +315,6 @@ export function findIndexedProjectGroupOwner( const resolution = index.get( executionHostId ? `${projectGroupId}\0${executionHostId}` : projectGroupId ) - return resolution?.kind === 'resolved' ? resolution.owner : null + // The cache is keyed by this exact array, so its owner retains the caller's row type. + return resolution?.kind === 'resolved' ? (resolution.owner as T) : null } diff --git a/src/shared/notification-settings-types.ts b/src/shared/notification-settings-types.ts index fe4ef74015c..1c06b90d8db 100644 --- a/src/shared/notification-settings-types.ts +++ b/src/shared/notification-settings-types.ts @@ -33,6 +33,7 @@ export type NotificationDispatchRequest = { paneKey?: string repoLabel?: string worktreeLabel?: string + /** Legacy senders may still provide this; project labels are now always shown. */ hasMultipleActiveRepos?: boolean terminalTitle?: string isActiveWorktree?: boolean From 47bb473ec6cc5494a433f6b77339f3a1103b9350 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Tue, 15 Sep 2026 21:55:06 -0700 Subject: [PATCH 14/28] Remove agent map from dashboard popout (#20929) The agent map view was not functional and its components have been removed entirely. The dashboard popout now only supports the kanban board view, with all map-related code, utilities, types, and translations cleaned up accordingly. --- config/oxlint-dead-classes.json | 1 - config/scripts/ci-shard-timings.json | 26 - src/main/ipc/dashboard-popout.test.ts | 11 +- src/main/ipc/dashboard-popout.ts | 7 +- .../window/dashboard-popout-window.test.ts | 34 +- src/main/window/dashboard-popout-window.ts | 18 +- src/preload/api/dashboard-api.ts | 3 +- src/preload/api/dashboard-bridge.ts | 9 +- src/renderer/src/assets/main.css | 4 +- .../src/components/AgentQuestionIcon.tsx | 5 +- .../AgentDashboardMapView.tsx | 188 ----- .../dashboard-popout/AgentMap.test.tsx | 749 ------------------ .../components/dashboard-popout/AgentMap.tsx | 114 --- .../AgentMapCanvas.performance.test.tsx | 95 --- .../dashboard-popout/AgentMapCanvas.tsx | 412 ---------- .../AgentMapContentFilterItems.tsx | 59 -- .../AgentMapFilterCheckbox.tsx | 47 -- .../dashboard-popout/AgentMapFilterChips.tsx | 152 ---- .../AgentMapFilterPanel.test.tsx | 73 -- .../dashboard-popout/AgentMapFilterPanel.tsx | 363 --------- .../AgentMapFilterSection.tsx | 55 -- .../dashboard-popout/AgentMapMotion.test.tsx | 196 ----- .../AgentMapProjectContextMenu.tsx | 114 --- .../AgentMapProjectContextMenuLoader.tsx | 29 - .../AgentMapProjectLabel.test.tsx | 126 --- .../AgentMapQuestionMarker.tsx | 37 - .../AgentMapRingHover.test.tsx | 124 --- .../dashboard-popout/AgentMapScene.tsx | 304 ------- .../AgentMapSnapshotWorkspaceMenu.tsx | 100 --- .../AgentMapStatusGlow.test.tsx | 96 --- .../AgentMapTimeRangeField.test.tsx | 416 ---------- .../AgentMapTimeRangeField.tsx | 135 ---- .../AgentMapViewportControls.tsx | 47 -- ...ntMapWorkspaceContextMenu.boundary.test.ts | 35 - .../AgentMapWorkspaceContextMenu.test.tsx | 389 --------- .../AgentMapWorkspaceContextMenu.tsx | 167 ---- .../AgentMapWorkspaceContextMenuLoader.tsx | 35 - .../AgentMapWorktreeLabel.tsx | 40 - .../AgentMapWorktreeRingNode.tsx | 413 ---------- .../agent-dashboard-filter-options.ts | 24 - .../agent-map-agent-placement.ts | 58 -- .../dashboard-popout/agent-map-canvas-zoom.ts | 25 - .../agent-map-filter-labels.ts | 13 - .../agent-map-filter-summaries.ts | 54 -- .../dashboard-popout/agent-map-filter.test.ts | 113 --- .../dashboard-popout/agent-map-filter.ts | 106 --- .../agent-map-glow.performance.test.ts | 94 --- .../agent-map-hover-containment.test.ts | 49 -- .../agent-map-label-declutter.test.ts | 151 ---- .../agent-map-label-declutter.ts | 266 ------- .../agent-map-layout-metadata.ts | 69 -- .../dashboard-popout/agent-map-layout.test.ts | 658 --------------- .../dashboard-popout/agent-map-layout.ts | 325 -------- .../agent-map-lineage-chevron-path.test.ts | 136 ---- .../agent-map-lineage-chevron-path.ts | 125 --- .../agent-map-lineage-layout.ts | 224 ------ .../agent-map-navigation.test.ts | 42 - .../dashboard-popout/agent-map-navigation.ts | 53 -- .../agent-map-node-metadata.test.ts | 163 ---- .../agent-map-node-metadata.ts | 101 --- .../agent-map-node-presentation.test.ts | 17 - .../agent-map-node-presentation.ts | 44 - .../agent-map-packing-spatial-index.ts | 94 --- .../agent-map-project-placement.ts | 50 -- .../agent-map-quick-views.test.ts | 88 -- .../dashboard-popout/agent-map-quick-views.ts | 131 --- .../agent-map-render-test-harness.tsx | 136 ---- .../agent-map-spawn-clustering.ts | 27 - .../agent-map-time-filter.test.ts | 95 --- .../dashboard-popout/agent-map-time-filter.ts | 113 --- .../agent-map-viewport-transition.ts | 56 -- .../agent-map-workspace-identity.ts | 29 - .../agent-map-workspace-visibility.test.ts | 81 -- .../agent-map-workspace-visibility.ts | 25 - .../agent-map-worktree-active-status.test.ts | 43 - .../agent-map-worktree-active-status.ts | 25 - .../agent-map-worktree-host.ts | 25 - .../agent-map-worktree-lineage-layout.test.ts | 223 ------ .../agent-map-worktree-lineage-layout.ts | 279 ------- .../agent-map-worktree-packing.test.ts | 168 ---- .../agent-map-worktree-packing.ts | 267 ------- .../components/dashboard-popout/agent-map.css | 595 -------------- .../dashboard-popout/useAgentMapCanvasSize.ts | 35 - .../useAgentMapContextMenus.tsx | 156 ---- .../useAgentMapFilters.test.tsx | 69 -- .../dashboard-popout/useAgentMapFilters.ts | 105 --- .../useAgentMapMotionLayout.ts | 279 ------- .../useAgentMapPointerHold.ts | 47 -- .../useAgentMapSelectedFocus.ts | 63 -- .../useAgentMapViewportTransition.ts | 51 -- .../dashboard/AgentDashboardDrawer.test.tsx | 10 - ...nt-dashboard-performance-isolation.test.ts | 12 - .../src/i18n/en-runtime-required.json | 19 - src/renderer/src/i18n/locales/en.json | 75 +- src/renderer/src/i18n/locales/es.json | 21 - src/renderer/src/i18n/locales/fr.json | 75 +- src/renderer/src/i18n/locales/ja.json | 21 - src/renderer/src/i18n/locales/ko.json | 21 - src/renderer/src/i18n/locales/zh.json | 21 - .../agent-status-store-snapshot-budget.ts | 8 +- src/shared/dashboard-snapshot.ts | 4 +- .../pane-agent-identity-inventory.test.ts | 2 - 102 files changed, 31 insertions(+), 11751 deletions(-) delete mode 100644 src/renderer/src/components/dashboard-popout/AgentDashboardMapView.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMap.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMap.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapCanvas.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapContentFilterItems.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapFilterCheckbox.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapFilterChips.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapFilterSection.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenu.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenuLoader.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapQuestionMarker.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapScene.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapSnapshotWorkspaceMenu.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapViewportControls.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenuLoader.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorktreeLabel.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/AgentMapWorktreeRingNode.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-agent-placement.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-canvas-zoom.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-filter-labels.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-filter-summaries.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-filter.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-label-declutter.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-layout-metadata.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-layout.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-lineage-layout.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-navigation.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-node-metadata.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-node-presentation.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-packing-spatial-index.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-project-placement.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-quick-views.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-render-test-harness.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-spawn-clustering.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-time-filter.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-viewport-transition.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-workspace-identity.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-host.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.ts delete mode 100644 src/renderer/src/components/dashboard-popout/agent-map.css delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapCanvasSize.ts delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapContextMenus.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapFilters.ts delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapMotionLayout.ts delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapPointerHold.ts delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapSelectedFocus.ts delete mode 100644 src/renderer/src/components/dashboard-popout/useAgentMapViewportTransition.ts diff --git a/config/oxlint-dead-classes.json b/config/oxlint-dead-classes.json index ad58853134f..cd1c91fbb03 100644 --- a/config/oxlint-dead-classes.json +++ b/config/oxlint-dead-classes.json @@ -30,7 +30,6 @@ "error", { "allow": [ - "agent-map-*", "comment-md-*", "compact-agent-*", "feature-wall-*", diff --git a/config/scripts/ci-shard-timings.json b/config/scripts/ci-shard-timings.json index 46ea33ce679..722ff71be5c 100644 --- a/config/scripts/ci-shard-timings.json +++ b/config/scripts/ci-shard-timings.json @@ -4367,16 +4367,6 @@ "src/renderer/src/components/crash-report/use-crash-report-copy.test.tsx": 21, "src/renderer/src/components/dashboard-popout/AgentKanbanBoard.test.tsx": 469, "src/renderer/src/components/dashboard-popout/AgentKanbanCard.test.tsx": 393, - "src/renderer/src/components/dashboard-popout/AgentMap.test.tsx": 1741, - "src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx": 75, - "src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx": 126, - "src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx": 189, - "src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx": 106, - "src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx": 289, - "src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx": 732, - "src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx": 1678, - "src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts": 7, - "src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx": 2066, "src/renderer/src/components/dashboard-popout/AgentTerminalDialog.test.tsx": 234, "src/renderer/src/components/dashboard-popout/AgentTerminalPreview.clipboard-routes.test.tsx": 1314, "src/renderer/src/components/dashboard-popout/AgentTerminalPreview.option-dead-key.test.tsx": 149, @@ -4384,21 +4374,6 @@ "src/renderer/src/components/dashboard-popout/DashboardHostBadge.test.tsx": 64, "src/renderer/src/components/dashboard-popout/DashboardPopoutRoot.test.tsx": 26, "src/renderer/src/components/dashboard-popout/agent-board-filtering.test.ts": 8, - "src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts": 9, - "src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts": 12, - "src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts": 7, - "src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts": 12, - "src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts": 152, - "src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts": 26, - "src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts": 9, - "src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts": 10, - "src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts": 4, - "src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts": 11, - "src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts": 6, - "src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts": 5, - "src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts": 8, - "src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts": 161, - "src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts": 1600, "src/renderer/src/components/dashboard-popout/dashboard-agent-status-patch.test.ts": 9, "src/renderer/src/components/dashboard-popout/preview-grid-claim.test.ts": 18, "src/renderer/src/components/dashboard-popout/preview-terminal-ime-bridge-kitty-bytes.test.ts": 228, @@ -4407,7 +4382,6 @@ "src/renderer/src/components/dashboard-popout/preview-terminal-shortcuts.test.ts": 13, "src/renderer/src/components/dashboard-popout/preview-terminal-snapshot-replay.test.ts": 11, "src/renderer/src/components/dashboard-popout/terminal-preview-unavailable-message.test.ts": 10, - "src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx": 36, "src/renderer/src/components/dashboard-popout/useDashboardSnapshot.test.tsx": 59, "src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx": 227, "src/renderer/src/components/dashboard/AgentDashboardSettingsMenu.test.tsx": 68, diff --git a/src/main/ipc/dashboard-popout.test.ts b/src/main/ipc/dashboard-popout.test.ts index 9bead362816..ae1f414806f 100644 --- a/src/main/ipc/dashboard-popout.test.ts +++ b/src/main/ipc/dashboard-popout.test.ts @@ -132,18 +132,9 @@ describe('registerDashboardPopoutHandlers', () => { store.getSettings.mockReturnValue({ experimentalAgentDashboardPopout: true }) handlers.get('dashboardPopout:open')!({ sender: mainSender } as never) - expect(createPopoutMock).toHaveBeenCalledWith(store, undefined, { + expect(createPopoutMock).toHaveBeenCalledWith(store, { getKeybindings: expect.any(Function) }) - - handlers.get('dashboardPopout:open')!({ sender: mainSender } as never, 'map') - expect(createPopoutMock).toHaveBeenLastCalledWith(store, 'map', { - getKeybindings: expect.any(Function) - }) - - createPopoutMock.mockClear() - handlers.get('dashboardPopout:open')!({ sender: mainSender } as never, 'invalid') - expect(createPopoutMock).not.toHaveBeenCalled() }) it('auto-closes the popout when the feature is disabled', () => { diff --git a/src/main/ipc/dashboard-popout.ts b/src/main/ipc/dashboard-popout.ts index 9e71d9ac32a..af19285a67e 100644 --- a/src/main/ipc/dashboard-popout.ts +++ b/src/main/ipc/dashboard-popout.ts @@ -57,14 +57,11 @@ export function registerDashboardPopoutHandlers( } }) - ipcMain.handle('dashboardPopout:open', (event, view: unknown): void => { + ipcMain.handle('dashboardPopout:open', (event): void => { if (!isTrustedUIRenderer(event.sender) || !isDashboardEnabled(store)) { return } - if (view !== undefined && view !== 'board' && view !== 'map') { - return - } - createOrFocusDashboardPopout(store, view, { + createOrFocusDashboardPopout(store, { getKeybindings: () => keybindings?.getOverrides() }) }) diff --git a/src/main/window/dashboard-popout-window.test.ts b/src/main/window/dashboard-popout-window.test.ts index 0e64d573f76..960379a797d 100644 --- a/src/main/window/dashboard-popout-window.test.ts +++ b/src/main/window/dashboard-popout-window.test.ts @@ -235,29 +235,23 @@ describe('createOrFocusDashboardPopout', () => { expect(win.show).toHaveBeenCalledTimes(1) }) - it('loads the prod file entry with the requested view', () => { - createOrFocusDashboardPopout(makeStore() as never, 'kanban') + it('loads the prod file entry', () => { + createOrFocusDashboardPopout(makeStore() as never) const win = instances[0] expect(win.loadURL).not.toHaveBeenCalled() expect(win.loadFile).toHaveBeenCalledTimes(1) const [file, options] = win.loadFile.mock.calls[0] expect(String(file)).toMatch(/renderer[\\/]popout\.html$/) - expect(options).toEqual({ search: 'view=kanban' }) + expect(options).toBeUndefined() }) - it('opens on the current dashboard view by default', () => { - createOrFocusDashboardPopout(makeStore() as never) - - expect(instances[0].loadFile.mock.calls[0][1]).toEqual({ search: 'view=board' }) - }) - - it('loads the dev server URL with the requested view when in dev', () => { + it('loads the dev server URL when in dev', () => { isMock.dev = true vi.stubEnv('ELECTRON_RENDERER_URL', RENDERER_URL) - createOrFocusDashboardPopout(makeStore() as never, 'kanban') + createOrFocusDashboardPopout(makeStore() as never) const win = instances[0] expect(win.loadFile).not.toHaveBeenCalled() - expect(win.loadURL).toHaveBeenCalledWith(`${RENDERER_URL}/popout.html?view=kanban`) + expect(win.loadURL).toHaveBeenCalledWith(`${RENDERER_URL}/popout.html`) }) it('focuses the existing window instead of creating a second one', () => { @@ -269,16 +263,6 @@ describe('createOrFocusDashboardPopout', () => { expect(instances[0].focus).toHaveBeenCalledTimes(1) }) - it('switches an existing popout to an explicitly requested view', () => { - const store = makeStore() - createOrFocusDashboardPopout(store as never) - const win = instances[0] - - createOrFocusDashboardPopout(store as never, 'map') - - expect(win.webContents.send).toHaveBeenCalledWith('dashboard:viewRequested', 'map') - }) - it('trusts only the live popout webContents', () => { const win = createOrFocusDashboardPopout(makeStore() as never) as unknown as FakeWindow expect(isDashboardPopoutRenderer(win.webContents as never)).toBe(true) @@ -446,12 +430,14 @@ describe('createOrFocusDashboardPopout', () => { }) it('respects zoom keybinding overrides for keyboard and mouse-wheel paths', () => { - const win = createOrFocusDashboardPopout(makeStore() as never, undefined, { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: makeStore() is a partial store stub; this path only reads UI/getKeybindings, matching every other popout call here. + createOrFocusDashboardPopout(makeStore() as never, { getKeybindings: () => ({ 'zoom.in': ['Mod+Y'], 'zoom.out': [] }) - }) as unknown as FakeWindow + }) + const win = instances[0] const mod = process.platform === 'darwin' ? { meta: true, control: false } diff --git a/src/main/window/dashboard-popout-window.ts b/src/main/window/dashboard-popout-window.ts index 5e765c7e432..a6b082ac1ae 100644 --- a/src/main/window/dashboard-popout-window.ts +++ b/src/main/window/dashboard-popout-window.ts @@ -19,7 +19,6 @@ const MIN_WIDTH = 480 const MIN_HEIGHT = 360 const DEFAULT_WIDTH = 960 const DEFAULT_HEIGHT = 720 -const DEFAULT_VIEW = 'board' const DASHBOARD_POPOUT_PARTITION = 'orca-dashboard-popout' // Why: singleton — the dashboard is a companion surface, so a second "Pop Out" @@ -99,14 +98,13 @@ function broadcastPopoutOpenChanged(open: boolean): void { } } -function loadDashboardPopout(window: BrowserWindow, view: string): void { - const search = `view=${encodeURIComponent(view)}` +function loadDashboardPopout(window: BrowserWindow): void { // Why: mirror loadMainWindow's dev/prod branch — the dev server serves the // second HTML entry, prod loads the emitted file. if (is.dev && process.env.ELECTRON_RENDERER_URL) { - void window.loadURL(`${process.env.ELECTRON_RENDERER_URL}/popout.html?${search}`) + void window.loadURL(`${process.env.ELECTRON_RENDERER_URL}/popout.html`) } else { - void window.loadFile(join(__dirname, '../renderer/popout.html'), { search }) + void window.loadFile(join(__dirname, '../renderer/popout.html')) } } @@ -135,11 +133,10 @@ function resolveRestoredBounds(store: Store | null): { * Open the pop-out dashboard window, or focus it if already open. The window is * a standalone top-level BrowserWindow with a native frame that reuses the same * preload/window.api as the main window but renders its own React root - * (popout.html?view=…). + * (popout.html). */ export function createOrFocusDashboardPopout( store: Store | null, - view?: string, options: { getKeybindings?: () => KeybindingOverrides | undefined } = {} ): BrowserWindow { if (dashboardPopoutWindow && !dashboardPopoutWindow.isDestroyed()) { @@ -149,14 +146,9 @@ export function createOrFocusDashboardPopout( if (!isBackgroundLaunch()) { dashboardPopoutWindow.focus() } - if (view) { - dashboardPopoutWindow.webContents.send('dashboard:viewRequested', view) - } return dashboardPopoutWindow } - const initialView = view ?? DEFAULT_VIEW - const savedBounds = resolveRestoredBounds(store) const window = new BrowserWindow({ @@ -291,7 +283,7 @@ export function createOrFocusDashboardPopout( broadcastPopoutOpenChanged(false) }) - loadDashboardPopout(window, initialView) + loadDashboardPopout(window) return window } diff --git a/src/preload/api/dashboard-api.ts b/src/preload/api/dashboard-api.ts index aa8d6dabd8a..f3b766ce054 100644 --- a/src/preload/api/dashboard-api.ts +++ b/src/preload/api/dashboard-api.ts @@ -10,7 +10,7 @@ import type { } from '../../shared/terminal-preview' export type DashboardApi = { - openPopout: (view?: 'board' | 'map') => Promise + openPopout: () => Promise publishSnapshot: (snapshot: DashboardSnapshot) => Promise getPopoutOpen: () => Promise onPopoutOpenChanged: (callback: (open: boolean) => void) => () => void @@ -21,7 +21,6 @@ export type DashboardApi = { onSleepWorkspace: (callback: (args: DashboardSleepWorkspaceArgs) => void) => () => void requestSnapshot: () => Promise onSnapshot: (callback: (snapshot: DashboardSnapshot) => void) => () => void - onViewRequested: (callback: (view: 'board' | 'map') => void) => () => void revealAgent: (args: DashboardRevealAgentArgs) => Promise ackAgent: (paneKey: string) => Promise spawnAgent: (args: DashboardSpawnAgentArgs) => Promise diff --git a/src/preload/api/dashboard-bridge.ts b/src/preload/api/dashboard-bridge.ts index e6862504da9..b1e4690cbd7 100644 --- a/src/preload/api/dashboard-bridge.ts +++ b/src/preload/api/dashboard-bridge.ts @@ -9,8 +9,7 @@ import type { PreloadApi } from '../api-types' export const dashboardApi = { // Open the pop-out dashboard window, or focus it if already open. - openPopout: (view?: 'board' | 'map'): Promise => - ipcRenderer.invoke('dashboardPopout:open', view), + openPopout: (): Promise => ipcRenderer.invoke('dashboardPopout:open'), // ── Producer side (main window) ────────────────────────────────────── publishSnapshot: (snapshot: DashboardSnapshot): Promise => @@ -58,12 +57,6 @@ export const dashboardApi = { ipcRenderer.on('dashboard:snapshot', listener) return () => ipcRenderer.removeListener('dashboard:snapshot', listener) }, - onViewRequested: (callback: (view: 'board' | 'map') => void): (() => void) => { - const listener = (_event: Electron.IpcRendererEvent, view: 'board' | 'map'): void => - callback(view) - ipcRenderer.on('dashboard:viewRequested', listener) - return () => ipcRenderer.removeListener('dashboard:viewRequested', listener) - }, revealAgent: (args: DashboardRevealAgentArgs): Promise => ipcRenderer.invoke('dashboardPopout:revealAgent', args), ackAgent: (paneKey: string): Promise => diff --git a/src/renderer/src/assets/main.css b/src/renderer/src/assets/main.css index 693e7572ddf..6987df890a7 100644 --- a/src/renderer/src/assets/main.css +++ b/src/renderer/src/assets/main.css @@ -177,8 +177,8 @@ --terminal-pane-locate: var(--color-blue-600); --ai-action-accent: var(--color-violet-500); /* "An agent is asking you something" — one hue for every surface that shows - it (sidebar, tabs, dashboard, agent map). Orange, not amber: on the map it - has to stay separable from working-yellow at a glance. */ + it (sidebar, tabs, dashboard, kanban). Orange, not amber: it has to stay + separable from working-yellow at a glance. */ --agent-question: var(--color-orange-600); /* Legible weight for text/glyphs on a tinted --agent-question surface. */ --agent-question-text: var(--color-orange-700); diff --git a/src/renderer/src/components/AgentQuestionIcon.tsx b/src/renderer/src/components/AgentQuestionIcon.tsx index 6f2c3975a92..843ba913229 100644 --- a/src/renderer/src/components/AgentQuestionIcon.tsx +++ b/src/renderer/src/components/AgentQuestionIcon.tsx @@ -3,9 +3,8 @@ import { MessageCircleQuestion } from 'lucide-react' import { cn } from '@/lib/utils' // Why: "the agent is asking you something" shows up in the sidebar, terminal -// tabs, the dashboard, the kanban and the agent map. One icon + one token -// (--agent-question) so the four never drift apart; the map paints the same -// token from agent-map.css. Callers pass sizing via className. +// tabs, the dashboard and the kanban. One icon + one token (--agent-question) +// so they never drift apart. Callers pass sizing via className. type AgentQuestionIconProps = React.ComponentProps diff --git a/src/renderer/src/components/dashboard-popout/AgentDashboardMapView.tsx b/src/renderer/src/components/dashboard-popout/AgentDashboardMapView.tsx deleted file mode 100644 index 0f861279438..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentDashboardMapView.tsx +++ /dev/null @@ -1,188 +0,0 @@ -import { Suspense, useMemo, useState, type RefObject } from 'react' -import type { - DashboardCard, - DashboardSleepWorkspaceArgs, - DashboardSnapshot, - DashboardSpawnAgentArgs -} from '../../../../shared/dashboard-snapshot' -import { cn } from '@/lib/utils' -import { lazyWithRetry } from '@/lib/lazy-with-retry' -import { AgentDashboardToolbar } from './AgentDashboardToolbar' -import { AgentTerminalPanel, type AgentRevealArgs } from './AgentTerminalDialog' -import { - EMPTY_DASHBOARD_FILTERS, - filterDashboardWorkspaces, - type DashboardFilters -} from './agent-board-filtering' -import { countAgentMapAgentTypes, filterAgentMapCards } from './agent-map-filter' -import { selectAgentlessMapWorkspaces } from './agent-map-workspace-visibility' -import { AgentMapFilterChips } from './AgentMapFilterChips' -import { AgentMapFilterPanel } from './AgentMapFilterPanel' -import { useAgentMapFilters } from './useAgentMapFilters' - -const AgentMap = lazyWithRetry( - () => import('./AgentMap').then((module) => ({ default: module.AgentMap })), - { reloadKey: 'agent-map' } -) - -type AgentDashboardMapViewProps = { - snapshot: DashboardSnapshot - cards: DashboardCard[] - query: string - onQueryChange: (query: string) => void - filters: DashboardFilters - onFiltersChange: (filters: DashboardFilters) => void - searchInputRef: RefObject - now: number - dialogCard: DashboardCard | null - onDialogOpenChange: (open: boolean) => void - onRevealAgent: (args: AgentRevealArgs) => void - onOpenTerminal: (card: DashboardCard) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void - workspaceContextMenusEnabled: boolean - onWorkspaceContextMenuOpenChange?: (open: boolean) => void -} - -/** Map-only state and derivation stay in the pop-out's lazy chunk. */ -export function AgentDashboardMapView({ - snapshot, - cards, - query, - onQueryChange, - filters, - onFiltersChange, - searchInputRef, - now, - dialogCard, - onDialogOpenChange, - onRevealAgent, - onOpenTerminal, - onSpawnAgent, - onSleepWorkspace, - workspaceContextMenusEnabled, - onWorkspaceContextMenuOpenChange -}: AgentDashboardMapViewProps): React.JSX.Element { - const agentTypes = useMemo( - () => [...countAgentMapAgentTypes(snapshot.cards).keys()], - [snapshot.cards] - ) - const mapFilters = useAgentMapFilters(agentTypes) - const [showAgentlessWorkspaces, setShowAgentlessWorkspaces] = useState(false) - const [showOrchestrationLinks, setShowOrchestrationLinks] = useState(true) - const agentlessWorkspaces = useMemo( - () => - selectAgentlessMapWorkspaces({ - cards: snapshot.cards, - workspaces: snapshot.workspaces ?? [], - query: '', - filters: EMPTY_DASHBOARD_FILTERS - }), - [snapshot.cards, snapshot.workspaces] - ) - // The map's own facets run here so the panel can report one shown-count that - // matches what the canvas actually draws. - const visibleCards = useMemo( - () => - filterAgentMapCards({ - cards, - enabledStates: mapFilters.states, - enabledHosts: mapFilters.hosts, - enabledAgentTypes: mapFilters.agentTypes, - timeRanges: mapFilters.timeRanges, - orchestrationOnly: mapFilters.orchestrationOnly, - now - }).filter((card) => !mapFilters.unreadOnly || card.unseen), - [ - cards, - mapFilters.states, - mapFilters.hosts, - mapFilters.agentTypes, - mapFilters.timeRanges, - mapFilters.orchestrationOnly, - mapFilters.unreadOnly, - now - ] - ) - const visibleAgentlessWorkspaces = useMemo( - () => - showAgentlessWorkspaces ? filterDashboardWorkspaces(agentlessWorkspaces, query, filters) : [], - [agentlessWorkspaces, filters, query, showAgentlessWorkspaces] - ) - - return ( - <> - - } - /> - snapshot.cards.find((card) => card.repoId === id)?.repoName ?? id} - statusLabel={(id) => - snapshot.cards.find((card) => card.workspaceStatusId === id)?.workspaceStatusLabel ?? id - } - showAgentlessWorkspaces={showAgentlessWorkspaces} - onShowAgentlessWorkspacesChange={setShowAgentlessWorkspaces} - showOrchestrationLinks={showOrchestrationLinks} - onShowOrchestrationLinksChange={setShowOrchestrationLinks} - onClear={() => { - onFiltersChange(EMPTY_DASHBOARD_FILTERS) - mapFilters.reset() - setShowAgentlessWorkspaces(false) - setShowOrchestrationLinks(true) - }} - /> -
- - - - {dialogCard ? ( - - ) : null} -
- - ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMap.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMap.test.tsx deleted file mode 100644 index 9db95d8cad7..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMap.test.tsx +++ /dev/null @@ -1,749 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { act, cleanup, fireEvent, render, screen } from '@testing-library/react' -import { describe, expect, it, vi } from 'vitest' -import { TooltipProvider } from '@/components/ui/tooltip' -import { AgentMap } from './AgentMap' -import { agentMapAttentionMarkerScale } from './agent-map-node-presentation' -import type { AgentMapState } from './agent-map-filter' -import type { DashboardCardHostKind } from '../../../../shared/dashboard-snapshot' -import { AGENT_MAP_AGENT_RADIUS } from './agent-map-layout' -import { card, installAgentMapEnvironment, NOW, renderMap } from './agent-map-render-test-harness' - -describe('AgentMap', () => { - const environment = installAgentMapEnvironment() - - it('renders the amber marker only for unread agents', () => { - const finished = card({ - paneKey: 'done', - conversationName: 'Finished agent', - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000, - unseen: true - }) - renderMap([card(), finished]) - - const workingNode = screen.getByRole('button', { name: /Agent alpha/ }) - const doneNode = screen.getByRole('button', { name: /Finished agent/ }) - expect(workingNode).toHaveClass('fleet-status-working') - expect(doneNode).toHaveClass('fleet-status-done') - expect(workingNode.querySelector('.agent-map-agent-icon svg')).toBeInTheDocument() - expect(workingNode.querySelector('[data-agent-unread-marker]')).not.toBeInTheDocument() - expect(doneNode.querySelector('.agent-map-agent-icon svg')).toBeInTheDocument() - const unreadMarker = doneNode.querySelector('[data-agent-unread-marker]') - expect(unreadMarker).toHaveClass('agent-map-agent-unread-mark') - // On the ring circumference at the top-left diagonal, where the halo breaks the ring. - const onRing = String(-AGENT_MAP_AGENT_RADIUS * Math.SQRT1_2) - expect(unreadMarker).toHaveAttribute('cx', onRing) - expect(unreadMarker).toHaveAttribute('cy', onRing) - expect(Number(unreadMarker?.getAttribute('r'))).toBeGreaterThanOrEqual( - AGENT_MAP_AGENT_RADIUS * 0.225 - ) - expect(unreadMarker).toHaveAttribute('vector-effect', 'none') - expect(doneNode).toHaveAccessibleName(/unread/) - }) - - it('lets attention override working on the worktree glow', () => { - const done = card({ - paneKey: 'done', - conversationName: 'Finished agent', - worktreeId: 'worktree-done', - worktreeName: 'Finished worktree', - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000 - }) - const waiting = card({ - paneKey: 'waiting', - conversationName: 'Question agent', - bucket: 'attention', - dotState: 'waiting' - }) - const { container } = renderMap([card(), waiting, done]) - - const workingNode = screen.getByRole('button', { name: /Agent alpha/ }) - const waitingNode = screen.getByRole('button', { name: /Question agent/ }) - const doneNode = screen.getByRole('button', { name: /Finished agent/ }) - const workingRing = screen.getByRole('button', { - name: /Open Agent map worktree details/ - }) - const doneRing = screen.getByRole('button', { - name: /Open Finished worktree worktree details/ - }) - - expect(workingNode.querySelector('[data-agent-map-agent-status-glow]')).toHaveAttribute( - 'data-agent-active-status', - 'working' - ) - expect(waitingNode.querySelector('[data-agent-map-agent-status-glow]')).toHaveAttribute( - 'data-agent-active-status', - 'waiting' - ) - expect(doneNode.querySelector('[data-agent-map-agent-status-glow]')).not.toBeInTheDocument() - expect(workingRing).toHaveClass('is-waiting') - expect(workingRing).not.toHaveClass('is-working') - expect(doneRing).not.toHaveClass('is-working') - expect(container.querySelector('[data-agent-map-worktree-status-glow]')).toHaveAttribute( - 'data-worktree-active-status', - 'waiting' - ) - expect(container.querySelectorAll('[data-agent-map-worktree-status-glow]')).toHaveLength(1) - }) - - it('keeps glow markup bounded for a large visible worktree', () => { - const cards = Array.from({ length: 120 }, (_, index) => { - const working = index % 2 === 0 - return card({ - paneKey: `pane-${index}`, - ptyId: `pty-${index}`, - tabId: `tab-${index}`, - leafId: `leaf-${index}`, - conversationName: `Agent ${index}`, - bucket: working ? 'working' : 'done', - dotState: working ? 'working' : 'done', - finishedAt: working ? null : NOW - 60_000 - }) - }) - const { container } = renderMap(cards, { selectedPaneKey: 'pane-0' }) - - expect(container.querySelectorAll('[data-agent-map-agent-status-glow]')).toHaveLength(60) - expect(container.querySelectorAll('[data-agent-map-worktree-status-glow]')).toHaveLength(1) - expect(container.querySelectorAll('filter')).toHaveLength(0) - }) - - it('enlarges unread markers when the full fleet is zoomed out', () => { - const fleet = Array.from({ length: 72 }, (_, index) => - card({ - paneKey: `pane-${index}`, - ptyId: `pty-${index}`, - tabId: `tab-${index}`, - leafId: `leaf-${index}`, - worktreeId: `worktree-${index}`, - worktreeName: `Worktree ${index}`, - conversationName: `Agent ${index}`, - unseen: index === 0 - }) - ) - const { container } = renderMap(fleet) - const marker = container.querySelector('[data-agent-unread-marker]')! - const agentMark = - marker.parentElement!.querySelector('.agent-map-agent-mark')! - - expect(Number(marker.getAttribute('r'))).toBeGreaterThan( - Number(agentMark.getAttribute('r')) * 0.225 - ) - expect(marker).toHaveAttribute('vector-effect', 'none') - }) - - it('grows attention markers more gently than the inverse zoom while keeping a size floor', () => { - const mapScale = 0.2 - const markerScale = agentMapAttentionMarkerScale(mapScale) - - expect(markerScale).toBeGreaterThan(1) - expect(markerScale).toBeLessThan(1 / mapScale) - expect(AGENT_MAP_AGENT_RADIUS * 0.225 * markerScale * mapScale).toBeGreaterThanOrEqual(2.25) - }) - - it('shows worktree details and opens a running agent', () => { - const onOpenTerminal = vi.fn() - const running = card() - renderMap([running], { onOpenTerminal }) - const ring = screen.getByRole('button', { name: 'Open Agent map worktree details' }) - fireEvent.click(ring) - - expect(ring).toHaveClass('is-open') - expect(screen.queryByRole('button', { name: 'Focus ring' })).not.toBeInTheDocument() - // The popover names the project; the map itself draws it uppercased. - expect(screen.getByText('Orca')).toBeInTheDocument() - expect(screen.getByText('1 agent · 1 active · 0 done')).toBeInTheDocument() - expect(screen.getByText('Agent alpha')).toBeInTheDocument() - fireEvent.click(screen.getAllByRole('button', { name: /Agent alpha/ })[1]) - expect(onOpenTerminal).toHaveBeenCalledWith(running) - expect(ring).not.toHaveClass('is-open') - }) - - it('counts acknowledged completions as done in worktree details', () => { - renderMap([ - card({ - bucket: 'idle', - dotState: 'done', - unseen: false, - finishedAt: NOW - 60_000 - }) - ]) - fireEvent.click(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - - expect(screen.getByText('1 agent · 0 active · 1 done')).toBeInTheDocument() - }) - - it('starts a new agent from the worktree details picker', () => { - const onSpawnAgent = vi.fn() - renderMap([card()], { - onSpawnAgent, - launchableAgentsByWorktreeId: { 'worktree-1': ['claude', 'codex'] } - }) - fireEvent.click(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - - expect(screen.getByText('Start a new agent')).toBeInTheDocument() - fireEvent.click(screen.getByRole('button', { name: /Codex/ })) - - // The raw worktree id, not the host-qualified map identity. - expect(onSpawnAgent).toHaveBeenCalledWith({ worktreeId: 'worktree-1', agent: 'codex' }) - }) - - it('explains an empty picker rather than offering nothing', () => { - renderMap([card()], { onSpawnAgent: vi.fn() }) - fireEvent.click(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - - expect(screen.getByText('No enabled agents detected.')).toBeInTheDocument() - }) - - it('offers sleep and launch on right-click where the store menu is unavailable', async () => { - const onSleepWorkspace = vi.fn() - renderMap([card()], { - onSleepWorkspace, - onSpawnAgent: vi.fn(), - launchableAgentsByWorktreeId: { 'worktree-1': ['claude'] } - }) - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' }), { - clientX: 10, - clientY: 10 - }) - - expect(await screen.findByText('Start a new agent')).toBeInTheDocument() - fireEvent.click(screen.getByText('Sleep')) - expect(onSleepWorkspace).toHaveBeenCalledWith({ worktreeId: 'worktree-1' }) - }) - - it('toggles worktree details from the keyboard', () => { - renderMap([card()]) - const ring = screen.getByRole('button', { name: 'Open Agent map worktree details' }) - - fireEvent.keyDown(ring, { key: 'Enter' }) - expect(ring).toHaveClass('is-open') - fireEvent.keyDown(ring, { key: 'Enter' }) - expect(ring).not.toHaveClass('is-open') - }) - - it('labels folder workspaces without presenting them as worktrees', () => { - renderMap([card({ workspaceKind: 'folder', worktreeName: 'Documentation' })]) - - expect( - screen.getByRole('button', { name: 'Open Documentation folder workspace details' }) - ).toBeInTheDocument() - }) - - it('connects spawned workers beneath their visible parent', () => { - const parent = card({ paneKey: 'parent', conversationName: 'Coordinator' }) - const child = card({ - paneKey: 'child', - parentPaneKey: 'parent', - conversationName: 'Worker' - }) - const nested = card({ - paneKey: 'nested', - parentPaneKey: 'child', - conversationName: 'Subagent' - }) - const orphan = card({ - paneKey: 'orphan', - parentPaneKey: 'filtered-parent', - conversationName: 'Orphaned worker' - }) - const { container } = renderMap([parent, child, nested, orphan]) - const workerLink = container.querySelector('[data-child-pane-key="child"]') - const nestedLink = container.querySelector('[data-child-pane-key="nested"]') - - expect(screen.getByRole('button', { name: /Coordinator/ })).toBeInTheDocument() - expect(screen.getByRole('button', { name: /^Worker/ })).toBeInTheDocument() - expect(container.querySelectorAll('[data-agent-map-lineage-link]')).toHaveLength(2) - expect(workerLink).toHaveClass('agent-map-lineage-link') - expect(workerLink).toHaveAttribute('data-agent-map-lineage-relation', 'orchestration') - expect(workerLink).toHaveAttribute('data-parent-pane-key', 'parent') - expect(workerLink?.getAttribute('d')?.match(/\bM\b/g)?.length).toBeGreaterThan(1) - // Why orchestration, not subagent: `nested` is a card, and in-process subagents - // never become cards — so a grandchild dispatch is still an orchestration edge. - expect(nestedLink).toHaveClass('agent-map-lineage-link') - expect(nestedLink).toHaveAttribute('data-agent-map-lineage-relation', 'orchestration') - expect(nestedLink).toHaveAttribute('data-parent-pane-key', 'child') - expect(nestedLink?.getAttribute('d')?.match(/\bM\b/g)?.length).toBeGreaterThan(1) - }) - - it('connects spawned workers across worktree rings', () => { - const parent = card({ - paneKey: 'parent', - worktreeId: 'parent-worktree', - worktreeName: 'Parent workspace', - conversationName: 'Coordinator' - }) - const child = card({ - paneKey: 'child', - worktreeId: 'child-worktree', - worktreeName: 'Child workspace', - parentPaneKey: 'parent', - conversationName: 'Worker' - }) - const nested = card({ - paneKey: 'nested', - worktreeId: 'nested-worktree', - worktreeName: 'Nested workspace', - parentPaneKey: 'child', - conversationName: 'Subagent' - }) - const { container } = renderMap([parent, child, nested]) - const workerLink = container.querySelector('[data-child-pane-key="child"]') - const nestedLink = container.querySelector('[data-child-pane-key="nested"]') - - expect(workerLink).toHaveClass('agent-map-lineage-link', 'is-cross-worktree') - expect(workerLink).toHaveAttribute('data-agent-map-lineage-relation', 'orchestration') - expect(nestedLink).toHaveClass('agent-map-lineage-link', 'is-cross-worktree') - expect(nestedLink).toHaveAttribute('data-agent-map-lineage-relation', 'orchestration') - }) - - it('keeps lineage styling to one lightweight path per relationship at fleet scale', () => { - const cards = Array.from({ length: 240 }, (_, index) => - card({ - paneKey: `agent-${index}`, - parentPaneKey: index === 0 ? undefined : `agent-${index - 1}`, - conversationName: `Agent ${index}` - }) - ) - const { container } = renderMap(cards, { selectedPaneKey: 'agent-0' }) - - expect(container.querySelectorAll('[data-agent-map-lineage-link]')).toHaveLength(239) - expect( - container.querySelectorAll('[data-agent-map-lineage-relation="orchestration"]') - ).toHaveLength(239) - expect(container.querySelectorAll('[data-agent-map-lineage-relation="subagent"]')).toHaveLength( - 0 - ) - expect(container.querySelectorAll('filter, animate, animateTransform')).toHaveLength(0) - }) - - it('hides orchestration links when the filter turns them off, keeping the agents', () => { - const sameWorktree = [ - card({ paneKey: 'parent', conversationName: 'Coordinator' }), - card({ paneKey: 'child', parentPaneKey: 'parent', conversationName: 'Worker' }) - ] - const crossWorktree = [ - card({ paneKey: 'far-parent', worktreeId: 'wt-a', worktreeName: 'A' }), - card({ - paneKey: 'far-child', - worktreeId: 'wt-b', - worktreeName: 'B', - parentPaneKey: 'far-parent' - }) - ] - const cards = [...sameWorktree, ...crossWorktree] - - const shown = renderMap(cards) - expect(shown.container.querySelectorAll('[data-agent-map-lineage-link]')).toHaveLength(2) - cleanup() - - const hidden = renderMap(cards, { showOrchestrationLinks: false }) - // Both same-worktree and cross-worktree edges go; the nodes themselves stay. - expect(hidden.container.querySelectorAll('[data-agent-map-lineage-link]')).toHaveLength(0) - expect(screen.getByRole('button', { name: /Coordinator/ })).toBeInTheDocument() - expect(screen.getByRole('button', { name: /^Worker/ })).toBeInTheDocument() - }) - - it('draws no lineage edge for an agent that lists itself as its own parent', () => { - const { container } = renderMap([ - card({ paneKey: 'self', parentPaneKey: 'self', conversationName: 'Self parent' }), - card({ paneKey: 'other', conversationName: 'Unrelated' }) - ]) - - expect(container.querySelectorAll('[data-agent-map-lineage-link]')).toHaveLength(0) - expect(screen.getByRole('button', { name: /Self parent/ })).toBeInTheDocument() - }) - - it('connects lineage between visible nodes even when the child is not ranked below its parent', () => { - // A 2-cycle cannot be ranked consistently, so the bounded layout (>256 agents) - // must place one of its edges pointing upward. Both nodes are drawn, so both - // edges must be too — the old y-ordering gate silently dropped the upward one. - const cards = [ - card({ paneKey: 'cycle-a', parentPaneKey: 'cycle-b', conversationName: 'Cycle A' }), - card({ paneKey: 'cycle-b', parentPaneKey: 'cycle-a', conversationName: 'Cycle B' }), - ...Array.from({ length: 255 }, (_, index) => - card({ - paneKey: `filler-${index}`, - parentPaneKey: index === 0 ? undefined : `filler-${index - 1}`, - conversationName: `Filler ${index}` - }) - ) - ] - const { container } = renderMap(cards, { selectedPaneKey: 'cycle-a' }) - - expect(container.querySelector('[data-child-pane-key="cycle-a"]')).not.toBeNull() - expect(container.querySelector('[data-child-pane-key="cycle-b"]')).not.toBeNull() - }) - - it('connects visible child worktrees beneath their parent ring', () => { - const { container } = renderMap([ - card({ paneKey: 'parent', worktreeId: 'parent-worktree', worktreeName: 'Parent' }), - card({ - paneKey: 'child', - worktreeId: 'child-worktree', - worktreeName: 'Child', - parentWorktreeId: 'parent-worktree' - }), - card({ - paneKey: 'orphan', - worktreeId: 'orphan-worktree', - worktreeName: 'Orphan', - parentWorktreeId: 'filtered-parent' - }) - ]) - const links = container.querySelectorAll('[data-agent-map-worktree-lineage-link]') - - expect(links).toHaveLength(1) - expect(links[0]).toHaveAttribute('data-parent-worktree-id', 'parent-worktree') - expect(links[0]).toHaveAttribute('data-child-worktree-id', 'child-worktree') - }) - - it('opens the shared dashboard terminal dialog when an agent is clicked', () => { - const onOpenTerminal = vi.fn() - const agent = card() - renderMap([agent], { onOpenTerminal }) - - fireEvent.click(screen.getByRole('button', { name: /Agent alpha/ })) - expect(onOpenTerminal).toHaveBeenCalledWith(agent) - }) - - it('keeps a selected node visible while compacting around an adjacent terminal', () => { - const { container } = renderMap([card()], { selectedPaneKey: 'pane-1' }) - - const selectedNode = screen.getByRole('button', { name: /Agent alpha/ }) - expect(selectedNode).toHaveClass('is-selected') - expect(screen.getByRole('button', { name: /Agent alpha/ })).toHaveAttribute( - 'aria-pressed', - 'true' - ) - const label = container.querySelector('.agent-map-worktree-label-group')! - expect(selectedNode.compareDocumentPosition(label) & Node.DOCUMENT_POSITION_FOLLOWING).toBe(4) - expect(label.querySelector('rect')).not.toBeInTheDocument() - expect(screen.getByText('270%')).toBeInTheDocument() - expect(screen.queryByText('Map filters')).not.toBeInTheDocument() - }) - - it('narrows the map to the enabled hosts', () => { - render( - - (['ssh'])} - onOpenTerminal={vi.fn()} - /> - - ) - - expect( - screen.queryByRole('button', { name: 'Open Agent map worktree details' }) - ).not.toBeInTheDocument() - expect( - screen.getByRole('button', { name: 'Open Remote map worktree details' }) - ).toBeInTheDocument() - }) - - it('eases the viewport into the selected agent', () => { - const frames: FrameRequestCallback[] = [] - vi.stubGlobal( - 'matchMedia', - vi.fn(() => ({ matches: false, addEventListener: vi.fn(), removeEventListener: vi.fn() })) - ) - vi.stubGlobal( - 'requestAnimationFrame', - vi.fn((callback: FrameRequestCallback) => { - frames.push(callback) - return frames.length - }) - ) - vi.stubGlobal('cancelAnimationFrame', vi.fn()) - const agent = card() - const view = renderMap([agent]) - - view.rerender( - - ) - act(() => frames.shift()?.(0)) - expect(screen.getByText('100%')).toBeInTheDocument() - act(() => frames.shift()?.(120)) - expect(screen.getByText('249%')).toBeInTheDocument() - act(() => frames.shift()?.(240)) - expect(screen.getByText('270%')).toBeInTheDocument() - }) - - it('keeps the selected node centered when topology changes around it', () => { - const selected = card() - const view = renderMap([selected], { selectedPaneKey: selected.paneKey }) - const svg = view.container.querySelector('.agent-map-canvas > svg')! - const selectedNode = (): SVGGElement => - view.container.querySelector('.agent-map-agent-node.is-selected')! - const nodeCenter = (): [number, number] => { - const match = selectedNode() - .getAttribute('transform') - ?.match(/translate\(([^ ]+) ([^)]+)\)/) - return [Number(match?.[1]), Number(match?.[2])] - } - const viewportCenter = (): [number, number] => { - const [x, y, width, height] = svg.getAttribute('viewBox')!.split(' ').map(Number) - return [x + width / 2, y + height / 2] - } - - const originalNodeCenter = nodeCenter() - view.rerender( - - ) - - expect(nodeCenter()).not.toEqual(originalNodeCenter) - expect(viewportCenter()[0]).toBeCloseTo(nodeCenter()[0]) - expect(viewportCenter()[1]).toBeCloseTo(nodeCenter()[1]) - }) - - it('increases map label scale when users zoom out', () => { - const { container } = renderMap([card()]) - const labelGroup = container.querySelector('.agent-map-worktree-label')?.parentElement - const initialScale = Number( - labelGroup?.getAttribute('transform')?.match(/scale\(([^)]+)\)/)?.[1] - ) - - const readsBeforeZoom = environment.boundsSpy.mock.calls.length - fireEvent.click(screen.getByRole('button', { name: 'Zoom out' })) - - const zoomedScale = Number( - labelGroup?.getAttribute('transform')?.match(/scale\(([^)]+)\)/)?.[1] - ) - expect(environment.boundsSpy).toHaveBeenCalledTimes(readsBeforeZoom) - expect(zoomedScale).toBeGreaterThan(initialScale) - }) - - it('avoids idle pointer layout reads and batches active viewport updates by frame', () => { - const frames: FrameRequestCallback[] = [] - const requestFrame = vi.fn((callback: FrameRequestCallback) => { - frames.push(callback) - return frames.length - }) - vi.stubGlobal('requestAnimationFrame', requestFrame) - vi.stubGlobal('cancelAnimationFrame', vi.fn()) - const { container } = renderMap([card()]) - const svg = container.querySelector('.agent-map-canvas > svg')! - Object.assign(svg, { - setPointerCapture: vi.fn(), - releasePointerCapture: vi.fn() - }) - - const readsBeforeHover = environment.boundsSpy.mock.calls.length - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 20, clientY: 20 }) - expect(environment.boundsSpy).toHaveBeenCalledTimes(readsBeforeHover) - - fireEvent.pointerDown(svg, { pointerId: 1, clientX: 20, clientY: 20 }) - expect(svg.setPointerCapture).toHaveBeenCalledWith(1) - const readsAfterPointerDown = environment.boundsSpy.mock.calls.length - const initialViewBox = svg.getAttribute('viewBox') - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 30, clientY: 20 }) - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 40, clientY: 20 }) - - expect(environment.boundsSpy).toHaveBeenCalledTimes(readsAfterPointerDown) - expect(requestFrame).toHaveBeenCalledOnce() - expect(svg).toHaveAttribute('viewBox', initialViewBox) - - act(() => frames.shift()?.(0)) - expect(svg.getAttribute('viewBox')).not.toBe(initialViewBox) - - requestFrame.mockClear() - const readsBeforeWheel = environment.boundsSpy.mock.calls.length - const wheel = (): void => { - const event = new Event('wheel', { bubbles: true, cancelable: true }) - Object.defineProperties(event, { - deltaY: { value: -10 }, - clientX: { value: 100 }, - clientY: { value: 100 } - }) - fireEvent(svg, event) - expect(event.defaultPrevented).toBe(true) - } - wheel() - wheel() - expect(environment.boundsSpy).toHaveBeenCalledTimes(readsBeforeWheel + 1) - expect(requestFrame).toHaveBeenCalledOnce() - }) - - it('keeps active labels visible and progressively discloses quiet labels', () => { - const quiet = card({ - paneKey: 'done', - worktreeId: 'quiet-worktree', - worktreeName: 'Quiet result', - conversationName: 'Finished agent', - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000, - unseen: false - }) - const { container } = renderMap([card(), quiet]) - const labels = [...container.querySelectorAll('.agent-map-worktree-label')] - const activeGroup = labels.find((label) => label.textContent === 'Agent map')?.parentElement - const quietGroup = labels.find((label) => label.textContent === 'Quiet result')?.parentElement - - expect(activeGroup).toHaveClass('is-visible') - expect(quietGroup).not.toHaveClass('is-visible') - }) - - it('keeps acknowledged completions green and distinct from both unseen and idle', () => { - const seenResult = card({ - paneKey: 'seen', - conversationName: 'Seen result', - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000, - unseen: false - }) - const newResult = card({ - paneKey: 'new', - conversationName: 'New result', - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 2 * 60_000, - unseen: true - }) - renderMap([card(), seenResult, newResult]) - - expect(screen.getByRole('button', { name: /Agent alpha/ })).toBeInTheDocument() - expect(screen.getByRole('button', { name: /New result/ })).toHaveClass('fleet-status-done') - // Not `fleet-status-idle`: acknowledging a finish demotes it, but the work is still - // yours to land, so it must not look like a workspace that never ran. - const seen = screen.getByRole('button', { name: /Seen result/ }) - expect(seen).toHaveClass('fleet-status-done-seen') - expect(seen).not.toHaveClass('fleet-status-idle') - expect(seen).not.toHaveClass('fleet-status-done') - expect(seen.querySelector('[data-agent-map-agent-status-glow]')).not.toBeInTheDocument() - }) - - it('hides the states the toolbar filter has muted', () => { - const done = card({ - paneKey: 'done', - conversationName: 'Done agent', - unseen: true, - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000 - }) - renderMap([card(), done], { enabledStates: new Set(['done']) }) - - expect(screen.queryByRole('button', { name: /Agent alpha/ })).not.toBeInTheDocument() - expect(screen.getByRole('button', { name: /Done agent/ })).toBeInTheDocument() - }) - - it('preserves the viewport when filters temporarily empty the map', () => { - const agent = card() - const all = new Set(['attention', 'working', 'done', 'idle']) - const view = renderMap([agent], { enabledStates: all }) - fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })) - const viewBox = view.container - .querySelector('.agent-map-canvas > svg')! - .getAttribute('viewBox') - - const onOpenTerminal = vi.fn() - view.rerender( - (['done'])} - /> - ) - expect(view.container.querySelector('.agent-map-canvas > svg')).not.toBeInTheDocument() - view.rerender( - - ) - - expect(view.container.querySelector('.agent-map-canvas > svg')).toHaveAttribute( - 'viewBox', - viewBox - ) - }) - - it('preserves the viewport through an empty source snapshot', () => { - const agent = card() - const view = renderMap([agent]) - fireEvent.click(screen.getByRole('button', { name: 'Zoom in' })) - const viewBox = view.container - .querySelector('.agent-map-canvas > svg')! - .getAttribute('viewBox') - - view.rerender() - expect(view.container.querySelector('.agent-map-canvas > svg')).not.toBeInTheDocument() - view.rerender() - - expect(view.container.querySelector('.agent-map-canvas > svg')).toHaveAttribute( - 'viewBox', - viewBox - ) - }) - - it('aggregates only acknowledged idle results without repacking topology', () => { - const results = Array.from({ length: 5 }, (_, index) => - card({ - paneKey: `done-${index}`, - conversationName: `Result ${index}`, - bucket: 'done', - dotState: 'done', - finishedAt: NOW - 60_000, - unseen: true - }) - ) - const view = renderMap(results) - const { container } = view - - expect(container.querySelectorAll('[data-agent-map-agent]')).toHaveLength(5) - expect(container.querySelectorAll('.agent-map-aggregate-node')).toHaveLength(0) - view.rerender( - ({ ...result, unseen: false }))} - now={NOW} - onOpenTerminal={vi.fn()} - /> - ) - expect(container.querySelectorAll('[data-agent-map-agent]')).toHaveLength(0) - expect(container.querySelectorAll('.agent-map-aggregate-node')).toHaveLength(1) - - view.rerender( - ({ ...result, unseen: false }))} - now={NOW} - selectedPaneKey="done-0" - onOpenTerminal={vi.fn()} - /> - ) - expect(container.querySelectorAll('[data-agent-map-agent]')).toHaveLength(5) - expect(container.querySelectorAll('.agent-map-aggregate-node')).toHaveLength(0) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMap.tsx b/src/renderer/src/components/dashboard-popout/AgentMap.tsx deleted file mode 100644 index 7b7afc56bc7..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMap.tsx +++ /dev/null @@ -1,114 +0,0 @@ -import { useEffect, useMemo, useRef } from 'react' -import { cn } from '@/lib/utils' -import type { - DashboardCard, - DashboardCardHostKind, - DashboardSleepWorkspaceArgs, - DashboardSpawnAgentArgs, - DashboardWorkspace -} from '../../../../shared/dashboard-snapshot' -import type { RepoIcon } from '../../../../shared/repo-icon' -import type { TuiAgent } from '../../../../shared/tui-agent' -import { AgentMapCanvas, type AgentMapCanvasHandle } from './AgentMapCanvas' -import { ALL_AGENT_MAP_HOSTS, filterAgentMapCards, type AgentMapState } from './agent-map-filter' -import { updateAgentMapLayout, type AgentMapLayoutCache } from './agent-map-layout' -import { selectAgentMapRecentFlareStatuses } from './agent-map-node-metadata' -import './agent-map.css' - -type AgentMapProps = { - cards: DashboardCard[] - workspaces?: DashboardWorkspace[] - repoIconsByRepoId?: Record - now: number - className?: string - selectedPaneKey?: string | null - /** Pass-throughs in production — the board pre-filters so its panel can report - * a shown-count that matches the canvas. Kept so tests can empty the map. */ - enabledStates?: ReadonlySet - enabledHosts?: ReadonlySet - /** Owned by the board's filter menu. Defaults to shown. */ - showOrchestrationLinks?: boolean - launchableAgentsByWorktreeId?: Record - workspaceContextMenusEnabled?: boolean - onWorkspaceContextMenuOpenChange?: (open: boolean) => void - onOpenTerminal: (card: DashboardCard) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void -} - -const ALL_AGENT_STATES: ReadonlySet = new Set([ - 'attention', - 'working', - 'done', - 'idle' -]) -const ALL_HOSTS: ReadonlySet = new Set(ALL_AGENT_MAP_HOSTS) -const EMPTY_WORKSPACES: DashboardWorkspace[] = [] - -export function AgentMap({ - cards, - workspaces = EMPTY_WORKSPACES, - repoIconsByRepoId, - now, - className, - selectedPaneKey = null, - enabledStates = ALL_AGENT_STATES, - enabledHosts = ALL_HOSTS, - showOrchestrationLinks = true, - launchableAgentsByWorktreeId, - workspaceContextMenusEnabled = false, - onWorkspaceContextMenuOpenChange, - onOpenTerminal, - onSpawnAgent, - onSleepWorkspace -}: AgentMapProps): React.JSX.Element { - const canvasRef = useRef(null) - const layoutCacheRef = useRef(null) - const visibleCards = useMemo( - () => - filterAgentMapCards({ - cards, - enabledStates, - enabledHosts - }), - [cards, enabledStates, enabledHosts] - ) - const visibleWorkspaces = useMemo( - () => workspaces.filter((workspace) => enabledHosts.has(workspace.hostKind)), - [enabledHosts, workspaces] - ) - const layoutResult = useMemo( - () => updateAgentMapLayout(layoutCacheRef.current, visibleCards, now, visibleWorkspaces), - [visibleCards, visibleWorkspaces, now] - ) - const recentFlareStatuses = useMemo( - () => selectAgentMapRecentFlareStatuses(visibleCards), - [visibleCards] - ) - useEffect(() => { - layoutCacheRef.current = layoutResult.cache - }, [layoutResult.cache]) - const layout = layoutResult.layout - - return ( -
-
- -
-
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx deleted file mode 100644 index 7ec41a3d8b4..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapCanvas.performance.test.tsx +++ /dev/null @@ -1,95 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { act, cleanup, fireEvent, render } from '@testing-library/react' -import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' - -const ringRender = vi.hoisted(() => vi.fn()) -vi.mock('./AgentMapWorktreeRingNode', () => ({ - AgentMapWorktreeRingNode: ({ worktree }: { worktree: { id: string } }) => { - ringRender(worktree.id) - return - } -})) - -import { AgentMap } from './AgentMap' - -const NOW = 2_000_000_000 -const CARD: DashboardCard = { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Measure map', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Performance', - startedAt: NOW - 1_000, - finishedAt: null, - stateChangedAt: NOW - 1_000, - unseen: false -} - -describe('AgentMapCanvas pointer performance', () => { - const frames: FrameRequestCallback[] = [] - - beforeEach(() => { - frames.length = 0 - ringRender.mockClear() - vi.stubGlobal('requestAnimationFrame', (callback: FrameRequestCallback) => { - frames.push(callback) - return frames.length - }) - vi.stubGlobal('cancelAnimationFrame', vi.fn()) - vi.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue({ - x: 0, - y: 0, - left: 0, - top: 0, - right: 800, - bottom: 560, - width: 800, - height: 560, - toJSON: () => ({}) - }) - }) - - afterEach(() => { - cleanup() - vi.restoreAllMocks() - vi.unstubAllGlobals() - }) - - it('presents the map as a non-selectable panning surface', () => { - const { container } = render() - const svg = container.querySelector('.agent-map-canvas > svg')! - - expect(svg).toHaveClass('cursor-grab', 'touch-none', 'select-none', 'active:cursor-grabbing') - }) - - it('coalesces drag frames without rerendering worktree nodes', () => { - const { container } = render() - const svg = container.querySelector('.agent-map-canvas > svg')! - Object.assign(svg, { - setPointerCapture: vi.fn(), - releasePointerCapture: vi.fn() - }) - expect(ringRender).toHaveBeenCalledTimes(1) - - fireEvent.pointerDown(svg, { pointerId: 2, button: 2, clientX: 20, clientY: 20 }) - expect(svg.setPointerCapture).not.toHaveBeenCalled() - - fireEvent.pointerDown(svg, { pointerId: 1, clientX: 20, clientY: 20 }) - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 40, clientY: 20 }) - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 60, clientY: 20 }) - expect(frames).toHaveLength(1) - - act(() => frames.shift()?.(0)) - expect(ringRender).toHaveBeenCalledTimes(1) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapCanvas.tsx b/src/renderer/src/components/dashboard-popout/AgentMapCanvas.tsx deleted file mode 100644 index 84290f36f40..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapCanvas.tsx +++ /dev/null @@ -1,412 +0,0 @@ -import { - forwardRef, - useCallback, - useEffect, - useImperativeHandle, - useMemo, - useRef, - useState -} from 'react' -import { translate } from '@/i18n/i18n' -import { usePrefersReducedMotion } from '@/hooks/usePrefersReducedMotion' -import type { - DashboardCard, - DashboardSleepWorkspaceArgs, - DashboardSpawnAgentArgs -} from '../../../../shared/dashboard-snapshot' -import type { RepoIcon } from '../../../../shared/repo-icon' -import type { TuiAgent } from '../../../../shared/tui-agent' -import type { AgentMapAgentNode, AgentMapProjectRing, AgentMapLayout } from './agent-map-layout' -import type { AgentMapFlareStatus } from './agent-map-node-metadata' -import { AgentMapScene } from './AgentMapScene' -import { agentFocusZoom, clamp, MAX_ZOOM, MIN_ZOOM } from './agent-map-canvas-zoom' -import { AgentMapViewportControls } from './AgentMapViewportControls' -import { - agentMapAgents, - navigableAgentMapAgents, - nextDirectionalAgent -} from './agent-map-navigation' -import type { AgentMapViewport } from './agent-map-viewport-transition' -import { useAgentMapContextMenus } from './useAgentMapContextMenus' -import { useAgentMapCanvasSize } from './useAgentMapCanvasSize' -import { useAgentMapPointerHold } from './useAgentMapPointerHold' -import { useAgentMapMotionLayout } from './useAgentMapMotionLayout' -import { useAgentMapSelectedFocus } from './useAgentMapSelectedFocus' -import { useAgentMapViewportTransition } from './useAgentMapViewportTransition' - -const AGENT_FOCUS_DURATION_MS = 240 - -export type AgentMapCanvasHandle = { - fit: () => void - focusProject: (project: AgentMapProjectRing) => void -} - -type AgentMapCanvasProps = { - layout: AgentMapLayout - repoIconsByRepoId?: Record - selectedPaneKey: string | null - allowAggregation: boolean - showOrchestrationLinks: boolean - recentFlareStatuses: ReadonlyMap - launchableAgentsByWorktreeId?: Record - workspaceContextMenusEnabled?: boolean - onWorkspaceContextMenuOpenChange?: (open: boolean) => void - onSelectAgent: (card: DashboardCard) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void -} - -export const AgentMapCanvas = forwardRef( - function AgentMapCanvas( - { - layout, - repoIconsByRepoId, - selectedPaneKey, - allowAggregation, - showOrchestrationLinks, - recentFlareStatuses, - launchableAgentsByWorktreeId, - workspaceContextMenusEnabled = false, - onWorkspaceContextMenuOpenChange, - onSelectAgent, - onSpawnAgent, - onSleepWorkspace - }, - forwardedRef - ): React.JSX.Element { - const containerRef = useRef(null) - const svgRef = useRef(null) - const nodeRefs = useRef(new Map()) - const dragRef = useRef<{ - pointerId: number - point: AgentMapViewport['center'] - center: AgentMapViewport['center'] - worldPerPixelX: number - worldPerPixelY: number - } | null>(null) - const viewportFrameRef = useRef(null) - const pendingViewportRef = useRef(null) - const interactionBoundsRef = useRef(null) - const hasShownProjectsRef = useRef(layout.projects.length > 0) - const { held, hold, release: releaseHold, clearDrag } = useAgentMapPointerHold(dragRef) - const clearInteractionBounds = useCallback(() => { - interactionBoundsRef.current = null - }, []) - const size = useAgentMapCanvasSize(containerRef, clearInteractionBounds) - const [viewport, setViewport] = useState({ - center: { x: layout.width / 2, y: layout.height / 2 }, - zoom: 1 - }) - const prefersReducedMotion = usePrefersReducedMotion() - const motionLayout = useAgentMapMotionLayout(layout, prefersReducedMotion) - const viewportRef = useRef(viewport) - const { contextMenus, onOpenProjectContextMenu, onOpenWorkspaceContextMenu } = - useAgentMapContextMenus({ - enabled: workspaceContextMenusEnabled, - launchableAgentsByWorktreeId, - onOpenChange: onWorkspaceContextMenuOpenChange, - onSpawnAgent, - onSleepWorkspace - }) - const { center, zoom } = viewport - const agents = useMemo(() => agentMapAgents(layout), [layout]) - const navigableAgents = useMemo( - () => navigableAgentMapAgents(layout, zoom, allowAggregation, selectedPaneKey), - [allowAggregation, layout, selectedPaneKey, zoom] - ) - const hasProjects = layout.projects.length > 0 - const aspect = size.width / Math.max(1, size.height) - const baseWidth = Math.max(layout.width, layout.height * aspect) - const baseHeight = baseWidth / aspect - const viewWidth = baseWidth / zoom - const viewHeight = baseHeight / zoom - const mapScale = size.width / viewWidth - const labelScale = Math.max(1, 1 / mapScale) - const viewBox = `${center.x - viewWidth / 2} ${center.y - viewHeight / 2} ${viewWidth} ${viewHeight}` - const focusZoom = agentFocusZoom(layout, size.width, size.height) - const resolveFocusZoom = useCallback((): number => { - const bounds = containerRef.current?.getBoundingClientRect() - return bounds && bounds.width > 0 && bounds.height > 0 - ? agentFocusZoom(layout, bounds.width, bounds.height) - : focusZoom - }, [focusZoom, layout]) - - const commitViewport = useCallback((next: AgentMapViewport): void => { - viewportRef.current = next - pendingViewportRef.current = null - interactionBoundsRef.current = null - setViewport(next) - }, []) - const { animate: animateViewport, stop: stopViewportTransition } = - useAgentMapViewportTransition({ - durationMs: AGENT_FOCUS_DURATION_MS, - reducedMotion: prefersReducedMotion, - onFrame: commitViewport - }) - useAgentMapSelectedFocus({ - agents, - selectedPaneKey, - viewportRef, - resolveFocusZoom, - animateViewport, - stopViewportTransition - }) - const applyViewport = useCallback( - (next: AgentMapViewport): void => { - stopViewportTransition() - commitViewport(next) - }, - [commitViewport, stopViewportTransition] - ) - const scheduleViewport = useCallback( - (next: AgentMapViewport): void => { - stopViewportTransition() - viewportRef.current = next - pendingViewportRef.current = next - if (viewportFrameRef.current !== null) { - return - } - viewportFrameRef.current = requestAnimationFrame(() => { - viewportFrameRef.current = null - interactionBoundsRef.current = null - const pending = pendingViewportRef.current - pendingViewportRef.current = null - if (pending) { - setViewport(pending) - } - }) - }, - [stopViewportTransition] - ) - const fit = useCallback((): void => { - applyViewport({ center: { x: layout.width / 2, y: layout.height / 2 }, zoom: 1 }) - }, [applyViewport, layout.height, layout.width]) - const focusProject = useCallback( - (project: AgentMapProjectRing): void => { - const projectWidth = project.radius * 2.5 - const projectHeight = project.radius * 2.5 - applyViewport({ - center: { x: project.x, y: project.y }, - zoom: clamp( - Math.min(baseWidth / projectWidth, baseHeight / projectHeight), - MIN_ZOOM, - MAX_ZOOM - ) - }) - }, - [applyViewport, baseHeight, baseWidth] - ) - useImperativeHandle(forwardedRef, () => ({ fit, focusProject }), [fit, focusProject]) - - useEffect(() => { - if (hasProjects && !hasShownProjectsRef.current) { - hasShownProjectsRef.current = true - fit() - } - }, [fit, hasProjects]) - - useEffect( - () => () => { - if (viewportFrameRef.current !== null) { - cancelAnimationFrame(viewportFrameRef.current) - } - }, - [] - ) - - const handleAgentKeyDown = useCallback( - (event: React.KeyboardEvent, agent: AgentMapAgentNode): void => { - if (event.key === 'Enter' || event.key === ' ') { - event.preventDefault() - onSelectAgent(agent.card) - return - } - const direction = - event.key === 'ArrowLeft' - ? { x: -1, y: 0 } - : event.key === 'ArrowRight' - ? { x: 1, y: 0 } - : event.key === 'ArrowUp' - ? { x: 0, y: -1 } - : event.key === 'ArrowDown' - ? { x: 0, y: 1 } - : null - if (!direction) { - return - } - event.preventDefault() - const next = nextDirectionalAgent(agent, navigableAgents, direction) - nodeRefs.current.get(next?.card.paneKey ?? '')?.focus() - }, - [navigableAgents, onSelectAgent] - ) - - const zoomAt = useCallback( - (nextZoom: number, clientX?: number, clientY?: number): void => { - const clampedZoom = clamp(nextZoom, MIN_ZOOM, MAX_ZOOM) - if (clientX === undefined || clientY === undefined) { - applyViewport({ ...viewportRef.current, zoom: clampedZoom }) - return - } - const bounds = - interactionBoundsRef.current ?? svgRef.current?.getBoundingClientRect() ?? null - if (!bounds || bounds.width <= 0 || bounds.height <= 0) { - applyViewport({ ...viewportRef.current, zoom: clampedZoom }) - return - } - interactionBoundsRef.current = bounds - const current = viewportRef.current - const currentWidth = baseWidth / current.zoom - const currentHeight = baseHeight / current.zoom - const anchorX = - current.center.x - - currentWidth / 2 + - ((clientX - bounds.left) / bounds.width) * currentWidth - const anchorY = - current.center.y - - currentHeight / 2 + - ((clientY - bounds.top) / bounds.height) * currentHeight - const nextWidth = baseWidth / clampedZoom - const nextHeight = baseHeight / clampedZoom - const xRatio = (clientX - bounds.left) / bounds.width - const yRatio = (clientY - bounds.top) / bounds.height - scheduleViewport({ - center: { - x: anchorX - (xRatio - 0.5) * nextWidth, - y: anchorY - (yRatio - 0.5) * nextHeight - }, - zoom: clampedZoom - }) - }, - [applyViewport, baseHeight, baseWidth, scheduleViewport] - ) - - useEffect(() => { - if (!hasProjects) { - return - } - const svg = svgRef.current - if (!svg) { - return - } - const handleWheel = (event: WheelEvent): void => { - event.preventDefault() - zoomAt( - viewportRef.current.zoom * Math.exp(-event.deltaY * 0.0015), - event.clientX, - event.clientY - ) - } - svg.addEventListener('wheel', handleWheel, { passive: false }) - return () => svg.removeEventListener('wheel', handleWheel) - }, [hasProjects, zoomAt]) - - return ( -
- {motionLayout.projects.length === 0 ? ( -
- {translate('dashboardPopout.map.empty', 'No agents match the current filters.')} -
- ) : ( - { - if (event.button !== 0 || dragRef.current) { - return - } - if ( - (event.target as Element).closest( - '[data-agent-map-agent], .agent-map-worktree-ring' - ) - ) { - return - } - const bounds = event.currentTarget.getBoundingClientRect() - if (bounds.width <= 0 || bounds.height <= 0) { - return - } - const current = viewportRef.current - dragRef.current = { - pointerId: event.pointerId, - point: { x: event.clientX, y: event.clientY }, - center: current.center, - worldPerPixelX: baseWidth / current.zoom / bounds.width, - worldPerPixelY: baseHeight / current.zoom / bounds.height - } - hold(event.target as Element) - event.currentTarget.setPointerCapture(event.pointerId) - }} - onPointerMove={(event) => { - const drag = dragRef.current - if (!drag) { - releaseHold() - return - } - if (drag.pointerId !== event.pointerId) { - return - } - scheduleViewport({ - center: { - x: drag.center.x - (event.clientX - drag.point.x) * drag.worldPerPixelX, - y: drag.center.y - (event.clientY - drag.point.y) * drag.worldPerPixelY - }, - zoom: viewportRef.current.zoom - }) - }} - onPointerUp={(event) => { - if (clearDrag(event.pointerId)) { - event.currentTarget.releasePointerCapture(event.pointerId) - } - }} - onPointerCancel={(event) => { - clearDrag(event.pointerId) - }} - onLostPointerCapture={(event) => { - clearDrag(event.pointerId) - }} - onPointerLeave={() => { - if (!dragRef.current) { - releaseHold() - } - }} - > - - - )} - - zoomAt(viewportRef.current.zoom * 1.25)} - onZoomOut={() => zoomAt(viewportRef.current.zoom / 1.25)} - /> - {contextMenus} -
- ) - } -) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapContentFilterItems.tsx b/src/renderer/src/components/dashboard-popout/AgentMapContentFilterItems.tsx deleted file mode 100644 index 25a2a94020c..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapContentFilterItems.tsx +++ /dev/null @@ -1,59 +0,0 @@ -import { - DropdownMenuCheckboxItem, - DropdownMenuLabel, - DropdownMenuSeparator -} from '@/components/ui/dropdown-menu' -import { translate } from '@/i18n/i18n' -import { FilterOptionCount } from './FilterOptionCount' - -type AgentMapContentFilterItemsProps = { - showAgentlessWorkspaces: boolean - agentlessWorkspaceCount: number - onShowAgentlessWorkspacesChange: (show: boolean) => void - showOrchestrationLinks: boolean - onShowOrchestrationLinksChange: (show: boolean) => void -} - -/** - * The map-only "Map content" rows of the shared dashboard filter menu. These - * govern what the map draws rather than which cards survive filtering, so they - * sit apart from the project/status/review sections. - */ -export function AgentMapContentFilterItems({ - showAgentlessWorkspaces, - agentlessWorkspaceCount, - onShowAgentlessWorkspacesChange, - showOrchestrationLinks, - onShowOrchestrationLinksChange -}: AgentMapContentFilterItemsProps): React.JSX.Element { - return ( - <> - - {translate('dashboardPopout.map.filters.workspaceVisibility', 'Map content')} - - onShowAgentlessWorkspacesChange(checked === true)} - onSelect={(event) => event.preventDefault()} - > - - {translate( - 'dashboardPopout.map.filters.agentlessWorkspaces', - 'Workspaces without agents' - )} - - - - onShowOrchestrationLinksChange(checked === true)} - onSelect={(event) => event.preventDefault()} - > - - {translate('dashboardPopout.map.filters.orchestrationLinks', 'Orchestration links')} - - - - - ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapFilterCheckbox.tsx b/src/renderer/src/components/dashboard-popout/AgentMapFilterCheckbox.tsx deleted file mode 100644 index dca4532eeba..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapFilterCheckbox.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Check } from 'lucide-react' -import { cn } from '@/lib/utils' -import { FilterOptionCount } from './FilterOptionCount' - -type AgentMapFilterCheckboxProps = { - label: string - checked: boolean - count: number - onToggle: () => void - leading?: React.ReactNode -} - -/** A filter row in the map's popover. Not a menu item: the panel holds sliders, - * and a Radix menu would swallow the arrow keys those need. */ -export function AgentMapFilterCheckbox({ - label, - checked, - count, - onToggle, - leading -}: AgentMapFilterCheckboxProps): React.JSX.Element { - return ( - - ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapFilterChips.tsx b/src/renderer/src/components/dashboard-popout/AgentMapFilterChips.tsx deleted file mode 100644 index ab41cc3151e..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapFilterChips.tsx +++ /dev/null @@ -1,152 +0,0 @@ -import { X } from 'lucide-react' -import { Button } from '@/components/ui/button' -import { translate } from '@/i18n/i18n' -import type { DashboardFilters } from './agent-board-filtering' -import { timeFieldLabel } from './agent-map-filter-labels' -import { agentStateLabel, reviewStateLabel } from './agent-dashboard-filter-options' -import { - activeAgentMapTimeFields, - agentMapTimeStopLabel, - FULL_AGENT_MAP_TIME_RANGE -} from './agent-map-time-filter' -import type { AgentMapFilterControls } from './useAgentMapFilters' - -type Chip = { id: string; label: string; onRemove: () => void } - -type AgentMapFilterChipsProps = { - map: AgentMapFilterControls - filters: DashboardFilters - onFiltersChange: (filters: DashboardFilters) => void - projectLabel: (id: string) => string - statusLabel: (id: string) => string - showAgentlessWorkspaces: boolean - onShowAgentlessWorkspacesChange: (show: boolean) => void - showOrchestrationLinks: boolean - onShowOrchestrationLinksChange: (show: boolean) => void - onClear: () => void -} - -/** Every active facet as a removable chip. The panel's collapsed summaries say - * what is filtered; these are how you undo one without reopening the panel. */ -export function AgentMapFilterChips({ - map, - filters, - onFiltersChange, - projectLabel, - statusLabel, - showAgentlessWorkspaces, - onShowAgentlessWorkspacesChange, - showOrchestrationLinks, - onShowOrchestrationLinksChange, - onClear -}: AgentMapFilterChipsProps): React.JSX.Element | null { - const chips: Chip[] = [] - const drop = (values: T[], value: T): T[] => values.filter((v) => v !== value) - - for (const id of filters.projects) { - chips.push({ - id: `project:${id}`, - label: projectLabel(id), - onRemove: () => onFiltersChange({ ...filters, projects: drop(filters.projects, id) }) - }) - } - for (const id of filters.workspaceStatuses) { - chips.push({ - id: `status:${id}`, - label: statusLabel(id), - onRemove: () => - onFiltersChange({ ...filters, workspaceStatuses: drop(filters.workspaceStatuses, id) }) - }) - } - for (const id of filters.reviewStates) { - chips.push({ - id: `review:${id}`, - label: translate('dashboardPopout.filters.reviewChip', 'Review: {{state}}', { - state: reviewStateLabel(id) - }), - onRemove: () => onFiltersChange({ ...filters, reviewStates: drop(filters.reviewStates, id) }) - }) - } - if (map.states.size < 4) { - chips.push({ - id: 'states', - label: translate('dashboardPopout.map.filters.stateChip', 'State: {{states}}', { - states: [...map.states].map(agentStateLabel).join(', ') - }), - onRemove: map.resetStates - }) - } - for (const field of activeAgentMapTimeFields(map.timeRanges)) { - const range = map.timeRanges[field] - chips.push({ - id: `time:${field}`, - label: `${timeFieldLabel(field)}: ${agentMapTimeStopLabel(range.min)}–${agentMapTimeStopLabel(range.max)}`, - onRemove: () => map.setTimeRange(field, { ...FULL_AGENT_MAP_TIME_RANGE }) - }) - } - if (map.unreadOnly) { - chips.push({ - id: 'unread', - label: translate('dashboardPopout.map.quickView.unread', 'Unread'), - onRemove: () => map.setUnreadOnly(false) - }) - } - if (map.orchestrationOnly) { - chips.push({ - id: 'orchestration', - label: translate('dashboardPopout.map.quickView.orchestration', 'Orchestration'), - onRemove: () => map.setOrchestrationOnly(false) - }) - } - if (showAgentlessWorkspaces) { - chips.push({ - id: 'agentless', - label: translate( - 'dashboardPopout.map.filters.agentlessWorkspaces', - 'Workspaces without agents' - ), - onRemove: () => onShowAgentlessWorkspacesChange(false) - }) - } - if (!showOrchestrationLinks) { - chips.push({ - id: 'orchestration-links', - label: translate( - 'dashboardPopout.map.filters.orchestrationLinksHidden', - 'Orchestration links hidden' - ), - onRemove: () => onShowOrchestrationLinksChange(true) - }) - } - // Agent chips need the option universe to know what "all" is, so they ride - // the panel's summary rather than a chip. - - if (chips.length === 0) { - return null - } - return ( -
- {chips.map((chip) => ( - - {chip.label} - - - ))} - -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx deleted file mode 100644 index 40fa1dfbdf9..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.test.tsx +++ /dev/null @@ -1,73 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { fireEvent, render, screen } from '@testing-library/react' -import { describe, expect, it, vi } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { ALL_AGENT_MAP_STATES, emptyAgentMapFilterState } from './agent-map-quick-views' -import { AgentMapFilterPanel } from './AgentMapFilterPanel' -import type { AgentMapFilterControls } from './useAgentMapFilters' - -function card(agentType: string, paneKey: string): DashboardCard { - return { - paneKey, - ptyId: paneKey, - agentType, - bucket: 'working', - dotState: 'working', - task: '', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: 1, - finishedAt: null, - stateChangedAt: 1, - unseen: false, - hostKind: agentType === 'codex' ? 'local' : 'ssh' - } -} - -function controls(): AgentMapFilterControls { - return { - ...emptyAgentMapFilterState(['claude', 'codex']), - states: new Set(ALL_AGENT_MAP_STATES), - activeCount: 0, - toggleState: vi.fn(), - resetStates: vi.fn(), - toggleAgentType: vi.fn(), - setTimeRange: vi.fn(), - resetTimeRanges: vi.fn(), - setUnreadOnly: vi.fn(), - setOrchestrationOnly: vi.fn(), - applyQuickView: vi.fn(), - reset: vi.fn() - } -} - -describe('AgentMapFilterPanel', () => { - it('offers agent filtering without a host section', () => { - const cards = [card('codex', 'codex-pane'), card('claude', 'claude-pane')] - render( - - ) - - fireEvent.click(screen.getByRole('button', { name: /^Filter/ })) - - expect(screen.getByRole('button', { name: /Agents/ })).toBeInTheDocument() - expect(screen.queryByRole('button', { name: /Hosts/ })).not.toBeInTheDocument() - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.tsx b/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.tsx deleted file mode 100644 index 7e717eb3956..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapFilterPanel.tsx +++ /dev/null @@ -1,363 +0,0 @@ -import { ChevronDown, Filter, X } from 'lucide-react' -import { useState } from 'react' -import { AgentStateDot } from '@/components/AgentStateDot' -import { Button } from '@/components/ui/button' -import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover' -import { translate } from '@/i18n/i18n' -import { cn } from '@/lib/utils' -import { getWorkspaceStatusVisualMeta } from '../sidebar/workspace-status' -import type { DashboardCard, DashboardFilterOptions } from '../../../../shared/dashboard-snapshot' -import { - activeDashboardFilterCount, - toggleDashboardFilter, - type DashboardFilters, - type DashboardReviewFilter -} from './agent-board-filtering' -import { - AGENT_STATE_ROWS, - agentStateLabel, - projectOptions, - REVIEW_OPTIONS, - reviewCountsByState, - reviewStateLabel, - workspaceStatusOptions -} from './agent-dashboard-filter-options' -import { - summarizeSelection, - summarizeTimeRanges, - type AgentMapSectionSummary -} from './agent-map-filter-summaries' -import { countAgentMapAgentTypes, countAgentMapCards } from './agent-map-filter' -import { AGENT_MAP_QUICK_VIEWS } from './agent-map-quick-views' -import { AGENT_MAP_TIME_FIELDS, type AgentMapTimeField } from './agent-map-time-filter' -import { AgentMapFilterCheckbox } from './AgentMapFilterCheckbox' -import { AgentMapFilterSection } from './AgentMapFilterSection' -import { AgentMapTimeRangeField } from './AgentMapTimeRangeField' -import type { AgentMapFilterControls } from './useAgentMapFilters' -import { timeFieldLabel } from './agent-map-filter-labels' - -type AgentMapFilterPanelProps = { - cards: DashboardCard[] - shownCount: number - filterOptions?: DashboardFilterOptions - filters: DashboardFilters - onFiltersChange: (filters: DashboardFilters) => void - map: AgentMapFilterControls - agentlessWorkspaceCount: number - showAgentlessWorkspaces: boolean - onShowAgentlessWorkspacesChange: (show: boolean) => void - showOrchestrationLinks: boolean - onShowOrchestrationLinksChange: (show: boolean) => void -} - -type SectionId = 'quick' | 'state' | 'agent' | 'time' | 'workspace' | 'content' - -export function AgentMapFilterPanel({ - cards, - shownCount, - filterOptions, - filters, - onFiltersChange, - map, - agentlessWorkspaceCount, - showAgentlessWorkspaces, - onShowAgentlessWorkspacesChange, - showOrchestrationLinks, - onShowOrchestrationLinksChange -}: AgentMapFilterPanelProps): React.JSX.Element { - const [open, setOpen] = useState>(() => new Set(['quick'])) - const toggleSection = (id: SectionId, next: boolean): void => - setOpen((current) => { - const updated = new Set(current) - if (next) { - updated.add(id) - } else { - updated.delete(id) - } - return updated - }) - - const stateCounts = countAgentMapCards(cards) - const agentTypeCounts = countAgentMapAgentTypes(cards) - const projects = projectOptions(cards, filterOptions?.projects) - const statuses = workspaceStatusOptions(cards, filterOptions?.workspaceStatuses) - const reviewCounts = reviewCountsByState(cards) - const agentTypes = [...agentTypeCounts.keys()] - - const boardActive = activeDashboardFilterCount(filters) - const activeCount = - boardActive + - map.activeCount + - (showAgentlessWorkspaces ? 1 : 0) + - (showOrchestrationLinks ? 0 : 1) - - const clearAll = (): void => { - onFiltersChange({ projects: [], workspaceStatuses: [], reviewStates: [] }) - map.reset() - onShowAgentlessWorkspacesChange(false) - onShowOrchestrationLinksChange(true) - setOpen(new Set(['quick'])) - } - const applyQuickView = (id: Parameters[0]): void => { - onFiltersChange({ projects: [], workspaceStatuses: [], reviewStates: [] }) - onShowAgentlessWorkspacesChange(false) - onShowOrchestrationLinksChange(true) - map.applyQuickView(id) - } - - // Board-style facets: an empty list means "no filter", so the count is what is - // explicitly picked rather than what survives. - const pickedWorkspaceCount = - filters.workspaceStatuses.length + - filters.reviewStates.length + - (showAgentlessWorkspaces ? 1 : 0) - const workspaceSummary: AgentMapSectionSummary = - pickedWorkspaceCount === 0 - ? { text: translate('dashboardPopout.map.filters.summaryAll', 'All'), active: false } - : { - text: translate('dashboardPopout.map.filters.summarySelected', '{{count}} selected', { - count: pickedWorkspaceCount - }), - active: true - } - const projectSummary: AgentMapSectionSummary = - filters.projects.length === 0 - ? { text: translate('dashboardPopout.map.filters.summaryAll', 'All'), active: false } - : { - text: - filters.projects.length === 1 - ? (projects.find((p) => p.id === filters.projects[0])?.label ?? filters.projects[0]) - : translate('dashboardPopout.map.filters.summaryCount', '{{shown}} of {{total}}', { - shown: filters.projects.length, - total: projects.length - }), - active: true - } - - return ( - - - - - -
- - {translate('dashboardPopout.map.filters.title', 'Map controls')} - - - - {shownCount}{' '} - - {translate('dashboardPopout.map.filters.ofTotalAgents', 'of {{total}} agents shown', { - total: cards.length - })} - - -
- -
- toggleSection('quick', next)} - > -
- {AGENT_MAP_QUICK_VIEWS.map((view) => ( - - ))} -
-
- - toggleSection('state', next)} - > - {AGENT_STATE_ROWS.map(({ state, dotState }) => ( - map.toggleState(state)} - leading={} - /> - ))} - - - {agentTypes.length > 1 ? ( - id)} - open={open.has('agent')} - onOpenChange={(next) => toggleSection('agent', next)} - > - {agentTypes.map((agentType) => ( - map.toggleAgentType(agentType)} - /> - ))} - - ) : null} - - toggleSection('time', next)} - > - {AGENT_MAP_TIME_FIELDS.map((field: AgentMapTimeField) => ( - map.setTimeRange(field, range)} - /> - ))} - - - - toggleSection('workspace', next)} - > - {projects.map((option) => ( - - onFiltersChange({ - ...filters, - projects: toggleDashboardFilter(filters.projects, option.id) - }) - } - /> - ))} - - - toggleSection('content', next)} - > - {statuses.map((option) => { - const meta = getWorkspaceStatusVisualMeta({ - id: option.id, - label: option.label, - color: option.color - }) - return ( - - onFiltersChange({ - ...filters, - workspaceStatuses: toggleDashboardFilter(filters.workspaceStatuses, option.id) - }) - } - leading={} - /> - ) - })} -
- {REVIEW_OPTIONS.map((option: DashboardReviewFilter) => ( - - onFiltersChange({ - ...filters, - reviewStates: toggleDashboardFilter(filters.reviewStates, option) - }) - } - /> - ))} -
- onShowAgentlessWorkspacesChange(!showAgentlessWorkspaces)} - /> - onShowOrchestrationLinksChange(!showOrchestrationLinks)} - /> - - - {activeCount > 0 ? ( - - ) : null} -
- - - ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapFilterSection.tsx b/src/renderer/src/components/dashboard-popout/AgentMapFilterSection.tsx deleted file mode 100644 index ae06227d0a3..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapFilterSection.tsx +++ /dev/null @@ -1,55 +0,0 @@ -import { ChevronRight } from 'lucide-react' -import { cn } from '@/lib/utils' -import type { AgentMapSectionSummary } from './agent-map-filter-summaries' - -type AgentMapFilterSectionProps = { - title: string - /** Shown collapsed, so a closed row still says what it is doing. */ - summary: AgentMapSectionSummary - open: boolean - onOpenChange: (open: boolean) => void - children: React.ReactNode -} - -export function AgentMapFilterSection({ - title, - summary, - open, - onOpenChange, - children -}: AgentMapFilterSectionProps): React.JSX.Element { - // A section doing something stays open: a collapsed row must never be the - // reason the map looks smaller than the filters claim. - const expanded = open || summary.active - return ( -
- - {expanded ?
{children}
: null} -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx deleted file mode 100644 index 95b019b184f..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapMotion.test.tsx +++ /dev/null @@ -1,196 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { act, cleanup, render, screen } from '@testing-library/react' -import { Profiler } from 'react' -import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { AgentMap } from './AgentMap' -import { AGENT_MAP_ENTER_DURATION_MS, AGENT_MAP_EXIT_DURATION_MS } from './useAgentMapMotionLayout' - -const NOW = 2_000_000_000 - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Build map', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - conversationName: 'Agent alpha', - startedAt: NOW - 60_000, - finishedAt: null, - stateChangedAt: NOW - 1_000, - unseen: false, - hostKind: 'local', - workspaceKind: 'worktree', - ...overrides - } -} - -describe('Agent Map motion lifecycle', () => { - beforeEach(() => { - vi.stubGlobal( - 'matchMedia', - vi.fn(() => ({ matches: false, addEventListener: vi.fn(), removeEventListener: vi.fn() })) - ) - vi.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue({ - x: 0, - y: 0, - left: 0, - top: 0, - right: 400, - bottom: 300, - width: 400, - height: 300, - toJSON: () => ({}) - }) - }) - - afterEach(() => { - cleanup() - vi.useRealTimers() - vi.restoreAllMocks() - vi.unstubAllGlobals() - }) - - it('keeps agent positioning separate from the animated hover visual', () => { - render() - - const agent = screen.getByRole('button', { name: /Agent alpha/ }) - expect(agent).toHaveAttribute('transform', expect.stringMatching(/^translate\(/)) - expect(agent.querySelector(':scope > .agent-map-agent-visual')).toBeInTheDocument() - }) - - it('retains created and removed agents for anchored enter and exit motion', () => { - const first = card() - const added = card({ - paneKey: 'pane-2', - ptyId: 'pty-2', - tabId: 'tab-2', - leafId: 'leaf-2', - conversationName: 'Agent beta' - }) - const view = render() - - vi.useFakeTimers() - view.rerender() - const entering = screen.getByRole('button', { name: /Agent beta/ }) - const position = entering.getAttribute('transform') - expect(entering).toHaveClass('is-entering') - act(() => vi.advanceTimersByTime(AGENT_MAP_ENTER_DURATION_MS)) - expect(entering).not.toHaveClass('is-entering') - - view.rerender() - const exiting = view.container.querySelector('[aria-label^="Agent beta,"]') - expect(exiting).toHaveClass('is-exiting') - expect(exiting).toHaveAttribute('transform', position) - - act(() => vi.advanceTimersByTime(AGENT_MAP_EXIT_DURATION_MS)) - expect(view.container.querySelector('[aria-label^="Agent beta,"]')).not.toBeInTheDocument() - }) - - it('retains removed worktrees until their exit transition completes', () => { - const first = card() - const second = card({ - paneKey: 'pane-2', - ptyId: 'pty-2', - tabId: 'tab-2', - leafId: 'leaf-2', - worktreeId: 'worktree-2', - worktreeName: 'Motion branch', - conversationName: 'Agent beta' - }) - const view = render() - - vi.useFakeTimers() - view.rerender() - const enteringGroup = view.container - .querySelector('[aria-label="Open Motion branch worktree details"]') - ?.closest('.agent-map-worktree-group') - expect(enteringGroup).toHaveClass('is-entering') - act(() => vi.advanceTimersByTime(AGENT_MAP_ENTER_DURATION_MS)) - expect(enteringGroup).not.toHaveClass('is-entering') - - view.rerender() - const ring = view.container.querySelector( - '[aria-label="Open Motion branch worktree details"]' - ) - const exitingGroup = ring?.closest('.agent-map-worktree-group') - const exitingAgent = exitingGroup?.querySelector('[data-agent-map-agent]') - expect(exitingGroup).toHaveClass('is-exiting') - expect(exitingGroup).toHaveAttribute('aria-hidden', 'true') - expect(exitingAgent).toHaveAttribute('tabindex', '-1') - expect(exitingAgent).toHaveAttribute('aria-hidden', 'true') - - act(() => vi.advanceTimersByTime(AGENT_MAP_EXIT_DURATION_MS)) - expect( - view.container.querySelector('[aria-label="Open Motion branch worktree details"]') - ).not.toBeInTheDocument() - }) - - it('does not restart an exit deadline for metadata-only layout updates', async () => { - const first = card() - const removed = card({ paneKey: 'pane-2', conversationName: 'Agent beta' }) - const view = render() - - vi.useFakeTimers() - view.rerender() - await act(async () => { - vi.advanceTimersByTime(AGENT_MAP_EXIT_DURATION_MS - 10) - }) - view.rerender() - await act(async () => { - vi.advanceTimersByTime(10) - }) - - expect(view.container.querySelector('[aria-label^="Agent beta,"]')).not.toBeInTheDocument() - }) - - it('commits a metadata-only layout update once', () => { - let commitCount = 0 - const view = render( - (commitCount += 1)}> - - - ) - commitCount = 0 - - view.rerender( - (commitCount += 1)}> - - - ) - - expect(commitCount).toBe(1) - }) - - it('makes descendants non-interactive while their project exits', () => { - const first = card() - const removed = card({ - paneKey: 'pane-2', - repoId: 'repo-2', - repoName: 'Removed project', - worktreeId: 'worktree-2', - worktreeName: 'Removed branch', - conversationName: 'Agent beta' - }) - const view = render() - - vi.useFakeTimers() - view.rerender() - const exitingProject = view.container.querySelector('.agent-map-project-node.is-exiting') - const exitingAgent = exitingProject?.querySelector('[data-agent-map-agent]') - - expect(exitingProject).toHaveAttribute('aria-hidden', 'true') - expect(exitingAgent).toHaveAttribute('tabindex', '-1') - expect(exitingAgent).toHaveAttribute('aria-hidden', 'true') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenu.tsx b/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenu.tsx deleted file mode 100644 index ba653e7cd59..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenu.tsx +++ /dev/null @@ -1,114 +0,0 @@ -import { useEffect, useMemo, useRef } from 'react' -import { Plus } from 'lucide-react' -import { - ContextMenu, - ContextMenuContent, - ContextMenuItem, - ContextMenuLabel, - ContextMenuTrigger -} from '@/components/ui/context-menu' -import { useAppStore } from '@/store' -import { getRepoHeaderCreateState } from '@/components/sidebar/repo-header-create-state' -import { translate } from '@/i18n/i18n' - -const FOLDER_PROJECT_PREFIX = 'folder-workspace:' - -export type AgentMapProjectContextMenuRequest = { - id: number - projectId: string - clientX: number - clientY: number -} - -type AgentMapProjectContextMenuProps = { - request: AgentMapProjectContextMenuRequest - onOpenChange?: (open: boolean) => void -} - -export function AgentMapProjectContextMenu({ - request, - onOpenChange -}: AgentMapProjectContextMenuProps): React.JSX.Element | null { - const triggerRef = useRef(null) - const repos = useAppStore((state) => state.repos) - const projectGroups = useAppStore((state) => state.projectGroups) - const target = useMemo(() => { - if (request.projectId.startsWith(FOLDER_PROJECT_PREFIX)) { - const groupId = request.projectId.slice(FOLDER_PROJECT_PREFIX.length) - const groups = projectGroups.filter((group) => group.id === groupId) - return groups.length === 1 ? { kind: 'folder' as const, group: groups[0] } : null - } - const owners = repos.filter((repo) => repo.id === request.projectId) - return owners.length === 1 ? { kind: 'repo' as const, repo: owners[0] } : null - }, [projectGroups, repos, request.projectId]) - const repo = target?.kind === 'repo' ? target.repo : null - const sshStatus = useAppStore((state) => - repo?.connectionId ? (state.sshConnectionStates.get(repo.connectionId)?.status ?? null) : null - ) - const openModal = useAppStore((state) => state.openModal) - - useEffect(() => { - if (!target) { - onOpenChange?.(false) - return - } - triggerRef.current?.dispatchEvent( - new MouseEvent('contextmenu', { - bubbles: true, - cancelable: true, - clientX: request.clientX, - clientY: request.clientY, - button: 2 - }) - ) - }, [onOpenChange, request, target]) - - if (!target) { - return null - } - const label = target.kind === 'repo' ? target.repo.displayName : target.group.name - const createState = - target.kind === 'repo' - ? getRepoHeaderCreateState({ repo: target.repo, label, sshStatus }) - : { - disabled: false, - tooltip: translate( - 'auto.components.sidebar.repo.header.create.state.62e71f2d5d', - 'Create workspace for {{value0}}', - { value0: label } - ), - ariaLabel: translate( - 'auto.components.sidebar.repo.header.create.state.62e71f2d5d', - 'Create workspace for {{value0}}', - { value0: label } - ) - } - - return ( -
- - - - - - {label} - { - openModal( - 'new-workspace-composer', - target.kind === 'repo' - ? { initialRepoId: target.repo.id, telemetrySource: 'sidebar' } - : { initialProjectGroupId: target.group.id, telemetrySource: 'sidebar' } - ) - }} - > - - {createState.tooltip} - - - -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenuLoader.tsx b/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenuLoader.tsx deleted file mode 100644 index ff81fdaca4f..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapProjectContextMenuLoader.tsx +++ /dev/null @@ -1,29 +0,0 @@ -import { Suspense } from 'react' -import { lazyWithRetry } from '@/lib/lazy-with-retry' -import type { AgentMapProjectContextMenuRequest } from './AgentMapProjectContextMenu' - -const AgentMapProjectContextMenu = lazyWithRetry( - () => - import('./AgentMapProjectContextMenu').then((module) => ({ - default: module.AgentMapProjectContextMenu - })), - { reloadKey: 'agent-map-project-context-menu' } -) - -type AgentMapProjectContextMenuLoaderProps = { - request: AgentMapProjectContextMenuRequest - onOpenChange?: (open: boolean) => void -} - -export function AgentMapProjectContextMenuLoader({ - request, - onOpenChange -}: AgentMapProjectContextMenuLoaderProps): React.JSX.Element { - return ( - - - - ) -} - -export type { AgentMapProjectContextMenuRequest } diff --git a/src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx deleted file mode 100644 index 56039ad4db7..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapProjectLabel.test.tsx +++ /dev/null @@ -1,126 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { render } from '@testing-library/react' -import { describe, expect, it, vi } from 'vitest' -import type { AgentMapLayout } from './agent-map-layout' -import { AgentMapScene } from './AgentMapScene' -import { TooltipProvider } from '@/components/ui/tooltip' - -const LAYOUT: AgentMapLayout = { - projects: [ - { - id: 'repo-1', - name: 'Orca', - x: 120, - y: 120, - radius: 96, - worktrees: [], - agentCount: 1 - } - ], - width: 240, - height: 240, - topologyKey: 'repo-1' -} - -describe('AgentMapScene project labels', () => { - it('renders the configured repository image next to its name', () => { - const { container } = render( - - - - ) - - const label = container.querySelector('.agent-map-project-label')! - expect(label).toHaveTextContent('ORCA') - expect(label).toHaveClass('agent-map-project-label') - expect(label.querySelector('.agent-map-project-name')).toHaveTextContent('ORCA') - expect(label.querySelector('img')).toHaveAttribute('src', 'data:image/png;base64,AAAA') - expect(label.firstElementChild?.querySelector('img')).toBeInTheDocument() - expect(container.querySelector('.agent-map-project-label-frame')).toHaveAttribute('x', '-48') - expect(container.querySelector('.agent-map-project-label-frame')).toHaveAttribute('width', '96') - }) - - it('labels an SSH-backed project ring with its saved host', () => { - const sshLayout: AgentMapLayout = { - ...LAYOUT, - projects: [ - { - ...LAYOUT.projects[0], - worktrees: [ - { - id: 'worktree-1:openclaw', - worktreeId: 'worktree-1', - executionHostId: 'ssh:opaque-target', - hostKind: 'ssh', - hostLabel: 'openclaw', - name: 'humpback', - workspaceKind: 'worktree', - x: 120, - y: 120, - radius: 48, - agents: [], - statusCounts: { - working: 0, - monitoring: 0, - blocked: 0, - waiting: 0, - done: 0, - 'done-seen': 0, - idle: 0 - }, - quiet: true - } - ] - } - ] - } - const { container } = render( - - - - - - ) - - const badge = container.querySelector('[data-dashboard-host-badge="ssh"]') - expect(badge).toHaveAccessibleName('SSH host · openclaw') - expect(badge).toHaveClass('agent-map-project-host-badge', 'pointer-events-auto') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapQuestionMarker.tsx b/src/renderer/src/components/dashboard-popout/AgentMapQuestionMarker.tsx deleted file mode 100644 index 00447f63d5e..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapQuestionMarker.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react' -import { AgentQuestionIcon } from '@/components/AgentQuestionIcon' - -// Why: hue alone can't carry 'waiting' on the map — it sits one step from -// blocked-red, and nodes shrink as you zoom out. The badge repeats the same -// question glyph every other surface uses, so the state is readable by shape. - -/** Question badge marking an agent that is waiting on the user. */ -export function AgentMapQuestionMarker({ - radius, - markerScale -}: { - radius: number - markerScale: number -}): React.JSX.Element { - const iconSize = radius * 0.74 * markerScale - // Mirrors the unread dot across the node so the two never stack. - const offset = radius * Math.SQRT1_2 - return ( - - ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx deleted file mode 100644 index ccc3b29e89f..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapRingHover.test.tsx +++ /dev/null @@ -1,124 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { fireEvent } from '@testing-library/react' -import { describe, expect, it } from 'vitest' -import { card, installAgentMapEnvironment, renderMap } from './agent-map-render-test-harness' - -/** A ring has to stay open for as long as the pointer is working inside it — - * across its own contents, and across a pan drag that takes pointer capture. */ -describe('AgentMap ring hover', () => { - installAgentMapEnvironment() - - it('reveals the hovered workspace name and agent count above every other label', () => { - const { container } = renderMap([ - card(), - card({ paneKey: 'pane-2', conversationName: 'Agent beta' }) - ]) - expect(container.querySelector('[data-agent-map-hover-label]')).not.toBeInTheDocument() - - fireEvent.pointerOver(container.querySelector('.agent-map-worktree-group')!) - - const hovered = container.querySelector('[data-agent-map-hover-label]')! - expect(hovered.querySelector('.agent-map-worktree-label')).toHaveTextContent('Agent map') - expect(hovered.querySelector('.agent-map-worktree-count')).toHaveTextContent('2 agents') - expect(hovered.querySelector('.agent-map-worktree-label-group')).toHaveClass( - 'is-active', - 'is-count-visible' - ) - // The hovered name is hoisted, not duplicated, and draws after every ring. - const labels = container.querySelectorAll('.agent-map-worktree-label-group') - expect(labels).toHaveLength(1) - const lastRing = [...container.querySelectorAll('[data-agent-map-worktree]')].at(-1)! - expect(lastRing.compareDocumentPosition(labels[0]) & Node.DOCUMENT_POSITION_FOLLOWING).toBe(4) - }) - - it('hides the hovered workspace label again when the pointer leaves', () => { - const { container } = renderMap([card()]) - const group = container.querySelector('.agent-map-worktree-group')! - - fireEvent.pointerOver(group) - expect(container.querySelector('[data-agent-map-hover-label]')).toBeInTheDocument() - - fireEvent.pointerOut(group) - expect(container.querySelector('[data-agent-map-hover-label]')).not.toBeInTheDocument() - }) - - it('keeps the pressed rings lit for the whole pan drag', () => { - const { container } = renderMap([card()]) - const svg = container.querySelector('svg')! - const projectRing = container.querySelector('[data-agent-map-project-id]')! - const worktreeGroup = container.querySelector('.agent-map-worktree-group')! - // Pointer capture retargets :hover to the mid-gesture, so CSS alone - // cannot hold the ring open — the class has to survive the drag. - fireEvent.pointerDown(projectRing, { button: 0, pointerId: 1 }) - - expect(projectRing).toHaveClass('is-held') - - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 40, clientY: 24 }) - expect(projectRing).toHaveClass('is-held') - - fireEvent.pointerUp(svg, { pointerId: 1 }) - expect(projectRing).not.toHaveClass('is-held') - expect(worktreeGroup).not.toHaveClass('is-held') - }) - - it('holds the workspace name up while panning from inside that workspace', () => { - const { container } = renderMap([card()]) - const svg = container.querySelector('svg')! - const worktreeGroup = container.querySelector('[data-agent-map-worktree-id]')! - // The aggregate bubble sits inside the group but is not the ring, so a press - // there pans rather than opening the workspace popover. - fireEvent.pointerDown(worktreeGroup, { button: 0, pointerId: 1 }) - fireEvent.pointerMove(svg, { pointerId: 1, clientX: 40, clientY: 24 }) - - expect(worktreeGroup).toHaveClass('is-held') - expect(container.querySelector('[data-agent-map-hover-label]')).toBeInTheDocument() - }) - - it('drops the held rings when the pan is cancelled', () => { - const { container } = renderMap([card()]) - const svg = container.querySelector('svg')! - const projectRing = container.querySelector('[data-agent-map-project-id]')! - - fireEvent.pointerDown(projectRing, { button: 0, pointerId: 1 }) - fireEvent.pointerCancel(svg, { pointerId: 1 }) - - expect(projectRing).not.toHaveClass('is-held') - }) - - it('drops the held rings and drag when pointer capture is lost', () => { - const { container } = renderMap([card()]) - const svg = container.querySelector('svg')! - const projectRing = container.querySelector('[data-agent-map-project-id]')! - - fireEvent.pointerDown(projectRing, { button: 0, pointerId: 1 }) - fireEvent.lostPointerCapture(svg, { pointerId: 1 }) - - expect(projectRing).not.toHaveClass('is-held') - }) - - it('keeps a focused workspace label visible after its pointer leaves', () => { - const { container } = renderMap([card()]) - const group = container.querySelector('.agent-map-worktree-group')! - const ring = container.querySelector('.agent-map-worktree-ring')! - - ring.focus() - fireEvent.pointerOver(group) - fireEvent.pointerOut(group) - - expect(container.querySelector('[data-agent-map-hover-label]')).toBeInTheDocument() - }) - - it('keeps a hovered workspace label visible after its focus leaves', () => { - const { container } = renderMap([card()]) - const group = container.querySelector('.agent-map-worktree-group')! - const ring = container.querySelector('.agent-map-worktree-ring')! - - fireEvent.pointerOver(group) - ring.focus() - ring.blur() - - expect(container.querySelector('[data-agent-map-hover-label]')).toBeInTheDocument() - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapScene.tsx b/src/renderer/src/components/dashboard-popout/AgentMapScene.tsx deleted file mode 100644 index a4914bbdad5..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapScene.tsx +++ /dev/null @@ -1,304 +0,0 @@ -import { memo, useCallback, useMemo, useState, type MutableRefObject } from 'react' -import { RepoIconGlyph } from '@/components/repo/repo-icon' -import { translate } from '@/i18n/i18n' -import type { DashboardCard, DashboardSpawnAgentArgs } from '../../../../shared/dashboard-snapshot' -import type { RepoIcon } from '../../../../shared/repo-icon' -import type { TuiAgent } from '../../../../shared/tui-agent' -import type { - AgentMapAgentNode, - AgentMapLayout, - AgentMapProjectRing, - AgentMapWorktreeRing -} from './agent-map-layout' -import { AGENT_MAP_LINEAGE_RELATION, shouldAggregateAgentMapWorktree } from './agent-map-layout' -import { selectVisibleAgentMapLabels } from './agent-map-label-declutter' -import { agentMapDirectLineageChevronPath } from './agent-map-lineage-chevron-path' -import type { AgentMapFlareStatus } from './agent-map-node-metadata' -import { AgentMapWorktreeLabel } from './AgentMapWorktreeLabel' -import { AgentMapWorktreeRingNode } from './AgentMapWorktreeRingNode' -import { DashboardHostBadge } from './DashboardHostBadge' - -type AgentMapSceneProps = { - layout: AgentMapLayout - repoIconsByRepoId?: Record - zoom: number - labelScale: number - mapScale: number - /** Rings the pointer was pressed in; they stay lit for the whole pan drag. */ - heldProjectId: string | null - heldWorktreeId: string | null - selectedPaneKey: string | null - allowAggregation: boolean - showOrchestrationLinks: boolean - recentFlareStatuses: ReadonlyMap - launchableAgentsByWorktreeId?: Record - nodeRefs: MutableRefObject> - onSelectAgent: (card: DashboardCard) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onOpenProjectContextMenu?: ( - event: React.MouseEvent, - project: AgentMapProjectRing - ) => void - onOpenWorkspaceContextMenu?: ( - event: React.MouseEvent, - worktree: AgentMapWorktreeRing - ) => void - onAgentKeyDown: (event: React.KeyboardEvent, agent: AgentMapAgentNode) => void -} - -function worktreeLineagePath(parent: AgentMapWorktreeRing, child: AgentMapWorktreeRing): string { - const startY = parent.y + parent.radius - const endY = child.y - child.radius - const branchY = (startY + endY) / 2 - return `M ${parent.x} ${startY} C ${parent.x} ${branchY} ${child.x} ${branchY} ${child.x} ${endY}` -} - -type VisibleAgentLocation = { - agent: AgentMapAgentNode - worktreeId: string -} - -function agentLineagePath(parent: AgentMapAgentNode, child: AgentMapAgentNode): string { - return agentMapDirectLineageChevronPath(parent, child) -} - -/** Memoization keeps pointer panning to one SVG viewBox write, not a map rerender. */ -export const AgentMapScene = memo(function AgentMapScene({ - layout, - repoIconsByRepoId, - zoom, - labelScale, - mapScale, - heldProjectId, - heldWorktreeId, - selectedPaneKey, - allowAggregation, - showOrchestrationLinks, - recentFlareStatuses, - launchableAgentsByWorktreeId, - nodeRefs, - onSelectAgent, - onSpawnAgent, - onOpenProjectContextMenu, - onOpenWorkspaceContextMenu, - onAgentKeyDown -}: AgentMapSceneProps): React.JSX.Element { - const [hoveredWorktreeId, setHoveredWorktreeId] = useState(null) - const [focusedWorktreeId, setFocusedWorktreeId] = useState(null) - const activeWorktreeId = heldWorktreeId ?? hoveredWorktreeId ?? focusedWorktreeId - const handleLabelHoverChange = useCallback((worktreeId: string, active: boolean): void => { - setHoveredWorktreeId((current) => - active ? worktreeId : current === worktreeId ? null : current - ) - }, []) - const handleLabelFocusChange = useCallback((worktreeId: string, active: boolean): void => { - setFocusedWorktreeId((current) => - active ? worktreeId : current === worktreeId ? null : current - ) - }, []) - const visibleLabels = useMemo( - () => selectVisibleAgentMapLabels(layout, labelScale, mapScale), - [labelScale, layout, mapScale] - ) - const activeWorktree = useMemo(() => { - if (!activeWorktreeId) { - return null - } - for (const project of layout.projects) { - for (const worktree of project.worktrees) { - if (worktree.id === activeWorktreeId) { - return worktree - } - } - } - return null - }, [activeWorktreeId, layout]) - const visibleAgentsByPaneKey = useMemo(() => { - const agents = new Map() - for (const project of layout.projects) { - for (const worktree of project.worktrees) { - const selected = worktree.agents.some((agent) => agent.card.paneKey === selectedPaneKey) - if (!selected && shouldAggregateAgentMapWorktree(worktree, zoom, allowAggregation)) { - continue - } - for (const agent of worktree.agents) { - agents.set(agent.card.paneKey, { agent, worktreeId: worktree.id }) - } - } - } - return agents - }, [allowAggregation, layout, selectedPaneKey, zoom]) - return ( - <> - {layout.projects.map((project) => { - const worktreesById = new Map(project.worktrees.map((worktree) => [worktree.id, worktree])) - const projectLabelHalfWidth = project.radius * mapScale - const projectHostsById = new Map() - for (const worktree of project.worktrees) { - if (worktree.hostKind === 'ssh' || worktree.hostKind === 'remote') { - projectHostsById.set(`${worktree.hostKind}:${worktree.executionHostId ?? ''}`, worktree) - } - } - const projectHosts = [...projectHostsById.values()] - const projectCountText = translate( - 'dashboardPopout.map.projectCount', - '{{agents}} agents · {{workspaces}} workspaces', - { agents: project.agentCount, workspaces: project.worktrees.length } - ).toUpperCase() - const crossWorktreeLineage = !showOrchestrationLinks - ? [] - : project.worktrees.flatMap((worktree) => - worktree.agents.flatMap((child) => { - const parent = child.card.parentPaneKey - ? visibleAgentsByPaneKey.get(child.card.parentPaneKey) - : undefined - const childLocation = visibleAgentsByPaneKey.get(child.card.paneKey) - return parent && childLocation && parent.worktreeId !== childLocation.worktreeId - ? [{ parent: parent.agent, child }] - : [] - }) - ) - return ( - - { - event.preventDefault() - event.stopPropagation() - onOpenProjectContextMenu(event, project) - } - : undefined - } - /> - - {project.worktrees.map((child) => { - const parent = child.parentId ? worktreesById.get(child.parentId) : undefined - return !parent || child.y <= parent.y ? null : ( - - ) - })} - - - {crossWorktreeLineage.map(({ parent, child }) => ( - - ))} - - {project.worktrees.map((worktree) => ( - - ))} - - {project.worktrees.map((worktree) => - worktree.id === activeWorktreeId ? null : ( - - ) - )} - - - -
- - - {project.name.toUpperCase()} - - {projectHosts.map((host) => ( - - ))} -
-
- {visibleLabels.projectCountIds.has(project.id) ? ( - - {projectCountText} - - ) : null} -
-
- ) - })} - {/* Drawn last so a hovered name clears every other project's rings, and - * outside the declutter pass so it reads at any zoom. */} - {activeWorktree ? ( - - - - ) : null} - - ) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapSnapshotWorkspaceMenu.tsx b/src/renderer/src/components/dashboard-popout/AgentMapSnapshotWorkspaceMenu.tsx deleted file mode 100644 index 17b992aaaff..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapSnapshotWorkspaceMenu.tsx +++ /dev/null @@ -1,100 +0,0 @@ -import { useEffect, useRef } from 'react' -import { Moon, Plus } from 'lucide-react' -import { - ContextMenu, - ContextMenuContent, - ContextMenuItem, - ContextMenuLabel, - ContextMenuSeparator, - ContextMenuSub, - ContextMenuSubContent, - ContextMenuSubTrigger, - ContextMenuTrigger -} from '@/components/ui/context-menu' -import { translate } from '@/i18n/i18n' -import { AgentIcon, getAgentLabel } from '@/lib/agent-catalog' -import type { - DashboardSleepWorkspaceArgs, - DashboardSpawnAgentArgs -} from '../../../../shared/dashboard-snapshot' -import type { TuiAgent } from '../../../../shared/tui-agent' - -export type AgentMapSnapshotWorkspaceMenuRequest = { - id: number - worktreeId: string - worktreeName: string - launchableAgents: readonly TuiAgent[] - clientX: number - clientY: number -} - -type AgentMapSnapshotWorkspaceMenuProps = { - request: AgentMapSnapshotWorkspaceMenuRequest - onOpenChange?: (open: boolean) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void -} - -/** - * The workspace right-click menu for surfaces without the app store — the - * pop-out window. Its actions are relayed to the main renderer, so it offers - * only what a snapshot can describe, not the full sidebar menu. - */ -export function AgentMapSnapshotWorkspaceMenu({ - request, - onOpenChange, - onSpawnAgent, - onSleepWorkspace -}: AgentMapSnapshotWorkspaceMenuProps): React.JSX.Element { - const triggerRef = useRef(null) - useEffect(() => { - triggerRef.current?.dispatchEvent( - new MouseEvent('contextmenu', { - bubbles: true, - cancelable: true, - clientX: request.clientX, - clientY: request.clientY, - button: 2 - }) - ) - }, [request]) - - return ( -
- - - - - - {request.worktreeName} - {onSpawnAgent ? ( - - - - {translate('dashboardPopout.map.spawnAgent', 'Start a new agent')} - - - {request.launchableAgents.map((agent) => ( - onSpawnAgent({ worktreeId: request.worktreeId, agent })} - > - - {getAgentLabel(agent)} - - ))} - - - ) : null} - {onSpawnAgent && onSleepWorkspace ? : null} - {onSleepWorkspace ? ( - onSleepWorkspace({ worktreeId: request.worktreeId })}> - - {translate('dashboardPopout.map.sleepWorkspace', 'Sleep')} - - ) : null} - - -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx deleted file mode 100644 index 3680658539e..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapStatusGlow.test.tsx +++ /dev/null @@ -1,96 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { describe, expect, it, vi } from 'vitest' -import { card, installAgentMapEnvironment, NOW, renderMap } from './agent-map-render-test-harness' - -describe('AgentMap status glow', () => { - installAgentMapEnvironment() - - it.each([ - { bucket: 'working', dotState: 'working', unseen: false, glows: true }, - { bucket: 'attention', dotState: 'waiting', unseen: false, glows: true }, - { bucket: 'attention', dotState: 'blocked', unseen: false, glows: true }, - // An unread finish is the state the map exists to surface, so it halos like the - // rest. Acknowledging it drops the halo — that is the seen/unseen difference. - { bucket: 'done', dotState: 'done', unseen: true, glows: true }, - { bucket: 'done', dotState: 'done', unseen: false, glows: false }, - { bucket: 'idle', dotState: 'idle', unseen: false, glows: false } - ] as const)( - 'applies the expected halo for $dotState agents (unseen: $unseen)', - ({ glows, ...state }) => { - const { container } = renderMap([card(state)]) - const glow = container.querySelector('[data-agent-map-agent-status-glow]') - - if (glows) { - expect(glow).toHaveAttribute('data-agent-active-status', state.dotState) - return - } - expect(glow).not.toBeInTheDocument() - } - ) - - it('caps a 200-status burst at four flares without dropping static emphasis', () => { - const clock = vi.spyOn(Date, 'now').mockReturnValue(NOW) - const { container } = renderMap( - Array.from({ length: 200 }, (_, index) => - card({ - paneKey: `pane-${index}`, - ptyId: `pty-${index}`, - leafId: `leaf-${index}`, - bucket: 'done', - dotState: 'done', - unseen: true, - stateChangedAt: NOW - }) - ) - ) - clock.mockRestore() - - expect(container.querySelectorAll('[data-agent-map-agent-status-flare]')).toHaveLength(4) - expect(container.querySelectorAll('[data-agent-map-agent-status-glow]')).toHaveLength(200) - expect(container.querySelectorAll('.fleet-status-done .agent-map-agent-mark')).toHaveLength(200) - expect(container.querySelectorAll('[data-agent-unread-marker]')).toHaveLength(200) - }) - - it.each([ - { bucket: 'attention', dotState: 'waiting', className: 'fleet-status-waiting' }, - { bucket: 'done', dotState: 'done', className: 'fleet-status-done' } - ] as const)('flares a fresh $dotState state', ({ bucket, dotState, className }) => { - const clock = vi.spyOn(Date, 'now').mockReturnValue(NOW) - const { container } = renderMap([card({ bucket, dotState, unseen: true, stateChangedAt: NOW })]) - clock.mockRestore() - - expect(container.querySelector('[data-agent-map-agent-status-flare]')).toHaveClass(className) - }) - - it.each([ - { dotState: 'waiting', marked: true }, - { dotState: 'working', marked: false }, - { dotState: 'blocked', marked: false } - ] as const)('marks $dotState agents with a question badge: $marked', (state) => { - const { container } = renderMap([card({ bucket: 'attention', dotState: state.dotState })]) - const marker = container.querySelector('[data-agent-question-marker]') - - if (!state.marked) { - expect(marker).not.toBeInTheDocument() - return - } - expect(marker).toBeInTheDocument() - // Same glyph the sidebar and tabs use, not a map-local invention. - expect(container.querySelector('svg.agent-map-agent-question-icon')).toBeInTheDocument() - expect(marker!.parentElement!.querySelector('foreignObject')).not.toBeInTheDocument() - }) - - it('keeps the question badge clear of the unread dot', () => { - const { container } = renderMap([ - card({ bucket: 'attention', dotState: 'waiting', unseen: true }) - ]) - const question = container.querySelector('[data-agent-question-marker]')!.parentElement! - const unread = container.querySelector('[data-agent-unread-marker]')! - - // Unread sits top-left, the badge top-right — opposite signs on x. - expect(question.getAttribute('transform')).toMatch(/translate\(\d/) - expect(Number(unread.getAttribute('cx'))).toBeLessThan(0) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx deleted file mode 100644 index 05ce6113726..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.test.tsx +++ /dev/null @@ -1,416 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { act, cleanup, fireEvent, render, screen, waitFor, within } from '@testing-library/react' -import { useState } from 'react' -import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' -import type { DashboardCard, DashboardSnapshot } from '../../../../shared/dashboard-snapshot' -import type * as AgentMapLayoutModule from './agent-map-layout' -import type * as AgentMapProjectPlacementModule from './agent-map-project-placement' -import { AGENT_MAP_TIME_MAX_INDEX, type AgentMapTimeRange } from './agent-map-time-filter' - -/** Counts the packing work one slider interaction costs. `repacks` only rises - * when `updateAgentMapLayout` misses its topology cache and runs the full - * `deriveAgentMapLayout` again; `updates` counts every layout evaluation. */ -const layoutCalls = vi.hoisted(() => ({ updates: 0, repacks: 0 })) -const packCalls = vi.hoisted(() => ({ count: 0 })) - -vi.mock('./agent-map-layout', async (importOriginal) => { - const actual = await importOriginal() - return { - ...actual, - updateAgentMapLayout: ( - ...args: Parameters - ): ReturnType => { - layoutCalls.updates += 1 - const result = actual.updateAgentMapLayout(...args) - // A fresh cache object is returned only on the deriveAgentMapLayout path. - if (result.cache !== args[0]) { - layoutCalls.repacks += 1 - } - return result - } - } -}) - -// Second, independent counter: the packer runs once per non-empty repack. -vi.mock('./agent-map-project-placement', async (importOriginal) => { - const actual = await importOriginal() - return { - ...actual, - placeAgentMapProjects: ( - ...args: Parameters - ): ReturnType => { - packCalls.count += 1 - return actual.placeAgentMapProjects(...args) - } - } -}) - -import { AgentDashboardMapView } from './AgentDashboardMapView' -import { AgentMapTimeRangeField } from './AgentMapTimeRangeField' - -const NOW = 2_000_000_000 -const MINUTE = 60_000 -const HOUR = 60 * MINUTE -const DAY = 24 * HOUR - -const SLIDER_WIDTH = 280 -/** Radix maps pointer x linearly onto [0, AGENT_MAP_TIME_MAX_INDEX]. */ -const clientXForStop = (stop: number): number => (stop / AGENT_MAP_TIME_MAX_INDEX) * SLIDER_WIDTH - -function card(overrides: Partial & { paneKey: string }): DashboardCard { - return { - ptyId: overrides.paneKey, - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Pack the map', - repoId: 'repo-1', - worktreeId: `worktree-${overrides.paneKey}`, - tabId: 'tab-1', - leafId: `leaf-${overrides.paneKey}`, - repoName: 'Orca', - worktreeName: overrides.paneKey, - startedAt: NOW - MINUTE, - finishedAt: null, - stateChangedAt: NOW - 1_000, - statusUpdatedAt: NOW - 1_000, - unseen: false, - hostKind: 'local', - workspaceKind: 'worktree', - ...overrides - } -} - -/** One card per stop the drag crosses, each just old enough to be dropped by - * the next step down — so every value change is a real topology change. */ -const LIFESPANS: readonly { paneKey: string; lifespan: number }[] = [ - { paneKey: 'agent-20d', lifespan: 20 * DAY }, - { paneKey: 'agent-10d', lifespan: 10 * DAY }, - { paneKey: 'agent-5d', lifespan: 5 * DAY }, - { paneKey: 'agent-2_5d', lifespan: 2.5 * DAY }, - { paneKey: 'agent-36h', lifespan: 36 * HOUR }, - { paneKey: 'agent-18h', lifespan: 18 * HOUR }, - { paneKey: 'agent-5m', lifespan: 5 * MINUTE } -] - -const CARDS: DashboardCard[] = LIFESPANS.map(({ paneKey, lifespan }) => - card({ paneKey, startedAt: NOW - lifespan }) -) - -const SNAPSHOT: DashboardSnapshot = { - generatedAt: NOW, - cards: CARDS, - workspaces: [], - filterOptions: { projects: [], workspaceStatuses: [] } -} - -/** Stops the max thumb passes through on one drag: ∞ → 12h. */ -const DRAG_STOPS = [13, 12, 11, 10, 9, 8] -const EXPECTED_DRAG_REPACKS = 1 -const DRAFT_CANCELLATIONS = [ - { name: 'pointer cancellation', finish: (thumb: HTMLElement) => fireEvent.pointerCancel(thumb) }, - { - name: 'pointer capture loss', - finish: (thumb: HTMLElement) => fireEvent.lostPointerCapture(thumb, { pointerId: 1 }) - }, - { name: 'focus loss', finish: (thumb: HTMLElement) => fireEvent.blur(thumb) }, - { name: 'Escape', finish: (thumb: HTMLElement) => fireEvent.keyDown(thumb, { key: 'Escape' }) } -] - -function renderMapView(): ReturnType { - return render( - - ) -} - -async function openTimeSection(): Promise { - fireEvent.click(screen.getByRole('button', { name: /^Filter/ })) - fireEvent.click(await screen.findByRole('button', { name: /^Time/ })) - const slider = await screen.findByRole('slider', { name: 'Session lifespan maximum' }) - return slider -} - -/** Mirrors the panel's wiring: the field is controlled and the owner re-renders - * on every published range. */ -function ControlledField({ - label, - initial, - onChange -}: { - label: string - initial: AgentMapTimeRange - onChange: (range: AgentMapTimeRange) => void -}): React.JSX.Element { - const [range, setRange] = useState(initial) - return ( - { - setRange(next) - onChange(next) - }} - /> - ) -} - -/** Radix reads geometry off the root and gates moves on pointer capture. */ -function stubSliderGeometry(): () => void { - const captured = new Set() - const element = Element.prototype as unknown as { - setPointerCapture: (id: number) => void - hasPointerCapture: (id: number) => boolean - releasePointerCapture: (id: number) => void - } - const original = { - setPointerCapture: element.setPointerCapture, - hasPointerCapture: element.hasPointerCapture, - releasePointerCapture: element.releasePointerCapture - } - element.setPointerCapture = (id) => void captured.add(id) - element.hasPointerCapture = (id) => captured.has(id) - element.releasePointerCapture = (id) => void captured.delete(id) - const rect = vi.spyOn(Element.prototype, 'getBoundingClientRect').mockReturnValue({ - x: 0, - y: 0, - left: 0, - top: 0, - right: SLIDER_WIDTH, - bottom: 24, - width: SLIDER_WIDTH, - height: 24, - toJSON: () => ({}) - }) - return () => { - element.setPointerCapture = original.setPointerCapture - element.hasPointerCapture = original.hasPointerCapture - element.releasePointerCapture = original.releasePointerCapture - rect.mockRestore() - } -} - -function dragThumb(thumb: HTMLElement, stops: readonly number[], onStep?: () => void): void { - act(() => { - fireEvent.pointerDown(thumb, { pointerId: 1, button: 0, clientX: SLIDER_WIDTH }) - }) - for (const stop of stops) { - act(() => { - fireEvent.pointerMove(thumb, { pointerId: 1, clientX: clientXForStop(stop) }) - }) - onStep?.() - } - act(() => { - fireEvent.pointerUp(thumb, { pointerId: 1, clientX: clientXForStop(stops.at(-1) ?? 0) }) - }) -} - -describe('AgentMapTimeRangeField', () => { - let restoreGeometry: () => void - - beforeEach(() => { - layoutCalls.updates = 0 - layoutCalls.repacks = 0 - packCalls.count = 0 - restoreGeometry = stubSliderGeometry() - }) - - afterEach(() => { - restoreGeometry() - cleanup() - vi.restoreAllMocks() - }) - - it('repacks the whole map once when a multi-stop drag commits', async () => { - renderMapView() - await waitFor(() => expect(document.querySelector('.agent-map-canvas')).toBeTruthy()) - const mountRepacks = layoutCalls.repacks - const mountUpdates = layoutCalls.updates - const mountPacks = packCalls.count - - const thumb = await openTimeSection() - dragThumb(thumb, DRAG_STOPS) - - expect(layoutCalls.repacks - mountRepacks).toBe(EXPECTED_DRAG_REPACKS) - expect(packCalls.count - mountPacks).toBe(EXPECTED_DRAG_REPACKS) - expect(layoutCalls.updates - mountUpdates).toBe(EXPECTED_DRAG_REPACKS) - expect(screen.getByText('of 7 agents shown').parentElement).toHaveTextContent( - '1 of 7 agents shown' - ) - await waitFor(() => expect(document.querySelectorAll('[data-agent-map-agent]')).toHaveLength(1)) - }) - - it('updates the thumb and readout at every intermediate drag stop', async () => { - renderMapView() - await waitFor(() => expect(document.querySelector('.agent-map-canvas')).toBeTruthy()) - const thumb = await openTimeSection() - const field = thumb.closest('[data-slot="slider"]')?.parentElement as HTMLElement - const readouts: string[] = [] - const thumbValues: string[] = [] - - dragThumb(thumb, DRAG_STOPS, () => { - readouts.push(within(field).getByText(/–|any/).textContent ?? '') - thumbValues.push(thumb.getAttribute('aria-valuenow') ?? '') - }) - - expect(readouts).toEqual(['0 – 14d', '0 – 7d', '0 – 3d', '0 – 2d', '0 – 1d', '0 – 12h']) - expect(thumbValues).toEqual(DRAG_STOPS.map(String)) - }) - - it('keeps the readout, chip, and map aligned after a full-range collapse', async () => { - renderMapView() - await waitFor(() => expect(document.querySelector('.agent-map-canvas')).toBeTruthy()) - - const thumb = await openTimeSection() - dragThumb(thumb, [0]) - - expect(screen.getByText('0 – 0')).toBeInTheDocument() - expect(screen.getByText('Session lifespan: 0–0')).toBeInTheDocument() - expect(screen.getByText('of 7 agents shown').parentElement).toHaveTextContent( - '0 of 7 agents shown' - ) - await waitFor(() => expect(document.querySelectorAll('[data-agent-map-agent]')).toHaveLength(0)) - }) - - it('publishes only the final range for a multi-stop drag', () => { - const onChange = vi.fn() - render( - - ) - - dragThumb(screen.getByRole('slider', { name: 'Session lifespan maximum' }), DRAG_STOPS) - - expect(onChange).toHaveBeenCalledExactlyOnceWith({ min: 0, max: DRAG_STOPS.at(-1) }) - }) - - it.each([ - { name: 'a narrowed range', initial: { min: 5, max: AGENT_MAP_TIME_MAX_INDEX }, stop: 5 }, - { name: 'the full range', initial: { min: 0, max: AGENT_MAP_TIME_MAX_INDEX }, stop: 0 } - ])('commits max-thumb collapse from $name', ({ initial, stop }) => { - const onChange = vi.fn() - render() - - dragThumb(screen.getByRole('slider', { name: 'Session lifespan maximum' }), [stop]) - - expect(onChange).toHaveBeenCalledExactlyOnceWith({ min: stop, max: stop }) - expect( - screen.getByText(`${stop === 0 ? '0' : '1h'} – ${stop === 0 ? '0' : '1h'}`) - ).toBeInTheDocument() - }) - - it('follows an external range change while a draft is active', () => { - const onChange = vi.fn() - const field = (range: AgentMapTimeRange): React.JSX.Element => ( - - ) - const view = render(field({ min: 0, max: AGENT_MAP_TIME_MAX_INDEX })) - expect(screen.getByText('any')).toBeInTheDocument() - - view.rerender(field({ min: 4, max: 9 })) - - expect(screen.getByText('30m – 1d')).toBeInTheDocument() - expect(screen.getByRole('slider', { name: 'Session lifespan minimum' })).toHaveAttribute( - 'aria-valuenow', - '4' - ) - expect(screen.getByRole('slider', { name: 'Session lifespan maximum' })).toHaveAttribute( - 'aria-valuenow', - '9' - ) - - const thumb = screen.getByRole('slider', { name: 'Session lifespan maximum' }) - act(() => { - fireEvent.pointerDown(thumb, { pointerId: 1, button: 0, clientX: clientXForStop(9) }) - fireEvent.pointerMove(thumb, { pointerId: 1, clientX: clientXForStop(7) }) - }) - expect(screen.getByText('30m – 6h')).toBeInTheDocument() - - view.rerender(field({ min: 0, max: AGENT_MAP_TIME_MAX_INDEX })) - - expect(screen.getByText('any')).toBeInTheDocument() - expect(screen.getByRole('slider', { name: 'Session lifespan maximum' })).toHaveAttribute( - 'aria-valuenow', - String(AGENT_MAP_TIME_MAX_INDEX) - ) - }) - - it('does not commit an interaction invalidated by an external range change', () => { - const onChange = vi.fn() - const field = (range: AgentMapTimeRange): React.JSX.Element => ( - - ) - const view = render(field({ min: 0, max: AGENT_MAP_TIME_MAX_INDEX })) - const thumb = screen.getByRole('slider', { name: 'Session lifespan maximum' }) - - act(() => { - fireEvent.pointerDown(thumb, { pointerId: 1, button: 0, clientX: SLIDER_WIDTH }) - fireEvent.pointerMove(thumb, { pointerId: 1, clientX: clientXForStop(8) }) - }) - view.rerender(field({ min: 4, max: 9 })) - act(() => { - fireEvent.pointerMove(thumb, { pointerId: 1, clientX: clientXForStop(7) }) - fireEvent.pointerUp(thumb, { pointerId: 1, clientX: clientXForStop(7) }) - }) - - expect(onChange).not.toHaveBeenCalled() - }) - - it.each(DRAFT_CANCELLATIONS)('discards a pointer draft on $name', ({ finish }) => { - const onChange = vi.fn() - render( - - ) - const thumb = screen.getByRole('slider', { name: 'Session lifespan maximum' }) - - act(() => { - fireEvent.pointerDown(thumb, { pointerId: 1, button: 0, clientX: SLIDER_WIDTH }) - fireEvent.pointerMove(thumb, { pointerId: 1, clientX: clientXForStop(8) }) - }) - expect(screen.getByText('0 – 12h')).toBeInTheDocument() - finish(thumb) - - expect(screen.getByText('any')).toBeInTheDocument() - expect(onChange).not.toHaveBeenCalled() - }) - - it('commits a keyboard arrow step', () => { - const onChange = vi.fn() - render( - - ) - - const thumb = screen.getByRole('slider', { name: 'Session lifespan maximum' }) - // Radix routes arrow keys to the last focused thumb, not the event target. - act(() => thumb.focus()) - fireEvent.keyDown(thumb, { key: 'ArrowLeft' }) - - expect(onChange).toHaveBeenCalledExactlyOnceWith({ min: 0, max: AGENT_MAP_TIME_MAX_INDEX - 1 }) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.tsx b/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.tsx deleted file mode 100644 index 752a00ea673..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapTimeRangeField.tsx +++ /dev/null @@ -1,135 +0,0 @@ -import { Slider } from '@/components/ui/slider' -import { cn } from '@/lib/utils' -import { translate } from '@/i18n/i18n' -import { useRef, useState } from 'react' -import { - AGENT_MAP_TIME_MAX_INDEX, - agentMapTimeStopLabel, - isFullAgentMapTimeRange, - type AgentMapTimeRange -} from './agent-map-time-filter' - -type AgentMapTimeRangeFieldProps = { - label: string - range: AgentMapTimeRange - onChange: (range: AgentMapTimeRange) => void -} - -type SliderInteraction = { - source: AgentMapTimeRange - value: AgentMapTimeRange | null -} - -/** Ticks are sparse on purpose — the scale is non-linear, so labelling every - * stop would read as evenly spaced time when it is not. */ -const TICKS = [0, 5, 9, 12, AGENT_MAP_TIME_MAX_INDEX] -const SLIDER_KEYBOARD_COMMIT_KEYS = [ - 'ArrowDown', - 'ArrowLeft', - 'ArrowRight', - 'ArrowUp', - 'End', - 'Home', - 'PageDown', - 'PageUp' -] - -export function AgentMapTimeRangeField({ - label, - range, - onChange -}: AgentMapTimeRangeFieldProps): React.JSX.Element { - const [draft, setDraft] = useState<{ - source: AgentMapTimeRange - value: AgentMapTimeRange - } | null>(null) - const interaction = useRef(null) - const reconcileInteraction = (value?: AgentMapTimeRange): void => { - const source = interaction.current?.source - interaction.current = null - setDraft(null) - if (value && source === range) { - onChange(value) - } - } - // New external range objects invalidate stale drafts from resets and quick views. - const displayedRange = draft?.source === range ? draft.value : range - const isFull = isFullAgentMapTimeRange(displayedRange) - return ( -
-
- {label} - - {isFull - ? translate('dashboardPopout.map.filters.timeAny', 'any') - : `${agentMapTimeStopLabel(displayedRange.min)} – ${agentMapTimeStopLabel(displayedRange.max)}`} - -
- { - if (event.key === 'Escape') { - reconcileInteraction() - return - } - if (SLIDER_KEYBOARD_COMMIT_KEYS.includes(event.key)) { - interaction.current = { source: range, value: null } - } - }} - onPointerDown={() => { - interaction.current = { source: range, value: null } - }} - onPointerUp={() => { - reconcileInteraction(interaction.current?.value ?? undefined) - }} - onPointerCancel={() => { - reconcileInteraction() - }} - onLostPointerCapture={() => { - reconcileInteraction() - }} - onBlur={(event) => { - if (!event.currentTarget.contains(event.relatedTarget as Node | null)) { - reconcileInteraction() - } - }} - onValueChange={([min, max]) => { - const current = interaction.current - if (!current) { - return - } - const value = { min, max } - current.value = value - setDraft({ source: current.source, value }) - }} - onValueCommit={([min, max]) => { - reconcileInteraction({ min, max }) - }} - /> -
- {TICKS.map((tick) => ( - {agentMapTimeStopLabel(tick)} - ))} -
-
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapViewportControls.tsx b/src/renderer/src/components/dashboard-popout/AgentMapViewportControls.tsx deleted file mode 100644 index 6e035dca692..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapViewportControls.tsx +++ /dev/null @@ -1,47 +0,0 @@ -import { Focus, Minus, Plus } from 'lucide-react' -import { Button } from '@/components/ui/button' -import { translate } from '@/i18n/i18n' - -type AgentMapViewportControlsProps = { - zoom: number - onFit: () => void - onZoomIn: () => void - onZoomOut: () => void -} - -export function AgentMapViewportControls({ - zoom, - onFit, - onZoomIn, - onZoomOut -}: AgentMapViewportControlsProps): React.JSX.Element { - return ( -
- - - {Math.round(zoom * 100)}% - - - -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts b/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts deleted file mode 100644 index 7275b3d274e..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.boundary.test.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { readFileSync } from 'node:fs' -import { resolve } from 'node:path' -import { describe, expect, it } from 'vitest' - -function source(file: string): string { - return readFileSync( - resolve(process.cwd(), 'src/renderer/src/components/dashboard-popout', file), - 'utf8' - ) -} - -describe('Agent Map workspace menu performance boundary', () => { - it('loads store-backed workspace actions only after a ring context request', () => { - const loader = source('AgentMapWorkspaceContextMenuLoader.tsx') - const menu = source('AgentMapWorkspaceContextMenu.tsx') - - expect(loader).toMatch(/import\('\.\/AgentMapWorkspaceContextMenu'\)/) - expect(loader).not.toMatch( - /import\s+\{\s*AgentMapWorkspaceContextMenu\s*\}\s+from\s+['"]\.\/AgentMapWorkspaceContextMenu['"]/ - ) - expect(menu).toMatch(/import\('@\/components\/sidebar\/WorktreeContextMenu'\)/) - expect(menu).not.toMatch( - /import\s+WorktreeContextMenu\s+from\s+['"]@\/components\/sidebar\/WorktreeContextMenu['"]/ - ) - }) - - it('loads store-backed project actions only after a project context request', () => { - const loader = source('AgentMapProjectContextMenuLoader.tsx') - - expect(loader).toMatch(/import\('\.\/AgentMapProjectContextMenu'\)/) - expect(loader).not.toMatch( - /import\s+\{\s*AgentMapProjectContextMenu\s*\}\s+from\s+['"]\.\/AgentMapProjectContextMenu['"]/ - ) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx b/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx deleted file mode 100644 index bc4958408a2..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.test.tsx +++ /dev/null @@ -1,389 +0,0 @@ -// @vitest-environment happy-dom - -import '@testing-library/jest-dom/vitest' -import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' -import { act, cleanup, fireEvent, render, screen, waitFor } from '@testing-library/react' -import { TooltipProvider } from '@/components/ui/tooltip' -import { useAppStore } from '@/store' -import type { ProjectGroup } from '../../../../shared/project-group-types' -import type { Repo } from '../../../../shared/repo-types' -import type { Worktree } from '../../../../shared/worktree/types' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { AgentMap } from './AgentMap' -import * as StoreSelectors from '@/store/selectors' - -const NOW = 2_000_000_000 -const EXECUTION_HOST_ID = 'runtime:env-1' as const -const initialState = useAppStore.getState() - -const repo = { - id: 'repo-1', - path: '/repo', - displayName: 'Orca', - badgeColor: '#000000', - addedAt: NOW, - kind: 'git', - executionHostId: EXECUTION_HOST_ID -} satisfies Repo - -const worktree = { - id: 'worktree-1', - repoId: repo.id, - path: '/repo/worktrees/map', - displayName: 'Agent map', - comment: '', - linkedIssue: null, - linkedPR: null, - linkedLinearIssue: null, - branch: 'refs/heads/agent-map', - head: 'abc123', - isBare: false, - isMainWorktree: false, - isArchived: false, - isUnread: false, - isPinned: false, - sortOrder: 0, - lastActivityAt: NOW, - hostId: EXECUTION_HOST_ID -} satisfies Worktree - -const collidingLocalWorktree = { - ...worktree, - path: '/local/repo/worktrees/map', - displayName: 'Local agent map', - hostId: 'local' -} satisfies Worktree - -const parentWorktree = { - ...worktree, - id: 'worktree-parent', - path: '/repo/worktrees/parent', - displayName: 'Parent worktree', - branch: 'refs/heads/parent' -} satisfies Worktree - -const folderProjectGroup = { - id: 'group-1', - name: 'Documentation', - parentPath: '/docs', - parentGroupId: null, - createdFrom: 'folder-scan', - tabOrder: 0, - isCollapsed: false, - color: null, - createdAt: NOW, - updatedAt: NOW -} satisfies ProjectGroup - -const card: DashboardCard = { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Build map', - repoId: repo.id, - worktreeId: worktree.id, - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: repo.displayName, - worktreeName: worktree.displayName, - startedAt: NOW - 60_000, - finishedAt: null, - stateChangedAt: NOW - 1_000, - unseen: false, - workspaceKind: 'worktree' -} - -describe('Agent Map workspace context menu', () => { - beforeEach(() => { - useAppStore.setState({ - repos: [repo], - worktreesByRepo: { [repo.id]: [worktree, parentWorktree] }, - detectedWorktreesByRepo: {}, - projectGroups: [], - workspaceStatuses: [{ id: 'todo', label: 'Todo' }] - }) - }) - - afterEach(() => { - cleanup() - useAppStore.setState(initialState, true) - vi.restoreAllMocks() - }) - - it('opens the shared sidebar workspace actions from a worktree ring', async () => { - const useWorktreeById = vi.spyOn(StoreSelectors, 'useWorktreeById') - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' }), { - clientX: 120, - clientY: 140 - }) - - expect(await screen.findByText('Workspace', {}, { timeout: 5_000 })).toBeInTheDocument() - expect(screen.getByText('Update')).toBeInTheDocument() - expect(screen.getByText('Move to Status')).toBeInTheDocument() - expect(screen.getByText('Open in')).toBeInTheDocument() - expect(screen.getByText('Copy Path')).toBeInTheDocument() - expect(screen.getByText('Pin')).toBeInTheDocument() - expect(screen.getByText('Mark Unread')).toBeInTheDocument() - expect(screen.getByText('Sleep')).toBeInTheDocument() - expect(screen.getByText('Delete')).toBeInTheDocument() - expect(useWorktreeById).toHaveBeenCalledWith(worktree.id, EXECUTION_HOST_ID) - }) - - it('deduplicates the same host owner across known and detected worktrees', async () => { - useAppStore.setState({ - detectedWorktreesByRepo: { - [repo.id]: { - repoId: repo.id, - authoritative: true, - source: 'git', - worktrees: [ - { ...worktree, ownership: 'orca-managed', selectedCheckout: false, visible: true } - ] - } - } - }) - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - - expect(await screen.findByText('Workspace', {}, { timeout: 5_000 })).toBeInTheDocument() - }) - - it('uses explicit SSH ownership instead of the paired hub repo host', async () => { - const sshHostId = 'ssh:provider-1' as const - const sshWorktree = { ...worktree, hostId: sshHostId } - useAppStore.setState({ worktreesByRepo: { [repo.id]: [sshWorktree] } }) - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - - expect(await screen.findByText('Workspace', {}, { timeout: 5_000 })).toBeInTheDocument() - }) - - it('fails closed when bare-ID actions would span multiple execution hosts', async () => { - useAppStore.setState({ - worktreesByRepo: { [repo.id]: [collidingLocalWorktree, worktree] } - }) - const useWorktreeById = vi.spyOn(StoreSelectors, 'useWorktreeById') - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - await waitFor(() => - expect(useWorktreeById).toHaveBeenCalledWith(worktree.id, EXECUTION_HOST_ID) - ) - await act(async () => new Promise((resolve) => window.setTimeout(resolve, 0))) - expect(screen.queryByText('Workspace')).not.toBeInTheDocument() - - act(() => { - useAppStore.setState({ worktreesByRepo: { [repo.id]: [worktree] } }) - }) - expect(screen.queryByText('Workspace')).not.toBeInTheDocument() - }) - - it('clears a workspace request whose target disappeared', async () => { - useAppStore.setState({ worktreesByRepo: {} }) - const useWorktreeById = vi.spyOn(StoreSelectors, 'useWorktreeById') - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - await waitFor(() => expect(useWorktreeById).toHaveBeenCalled()) - await act(async () => new Promise((resolve) => window.setTimeout(resolve, 0))) - act(() => { - useAppStore.setState({ worktreesByRepo: { [repo.id]: [worktree] } }) - }) - - expect(screen.queryByText('Workspace')).not.toBeInTheDocument() - }) - - it('releases the store-backed workspace menu after an ordinary close', async () => { - const getKnownWorktreeById = vi.fn(useAppStore.getState().getKnownWorktreeById) - useAppStore.setState({ getKnownWorktreeById }) - render( - - {}} - /> - - ) - - fireEvent.contextMenu(screen.getByRole('button', { name: 'Open Agent map worktree details' })) - expect(await screen.findByText('Workspace', {}, { timeout: 5_000 })).toBeInTheDocument() - fireEvent.keyDown(document, { key: 'Escape' }) - await waitFor(() => expect(screen.queryByText('Workspace')).not.toBeInTheDocument()) - await act(async () => new Promise((resolve) => window.setTimeout(resolve, 0))) - - getKnownWorktreeById.mockClear() - act(() => { - useAppStore.setState({ agentStatusEpoch: useAppStore.getState().agentStatusEpoch + 1 }) - }) - expect(getKnownWorktreeById).not.toHaveBeenCalled() - }) - - it('keeps shared-menu follow-up overlays mounted through their lifecycle', async () => { - render( - - {}} - /> - - ) - const ring = screen.getByRole('button', { name: 'Open Agent map worktree details' }) - - fireEvent.contextMenu(ring) - const createGroup = await screen.findByText('New group from project', {}, { timeout: 5_000 }) - fireEvent.pointerDown(createGroup, { button: 0 }) - fireEvent.click(createGroup) - expect(await screen.findByRole('dialog', { name: 'New Project Group' })).toBeInTheDocument() - fireEvent.click(screen.getByRole('button', { name: 'Cancel' })) - await waitFor(() => - expect(screen.queryByRole('dialog', { name: 'New Project Group' })).not.toBeInTheDocument() - ) - - fireEvent.contextMenu(ring) - const setParent = await screen.findByText('Set Parent Worktree...', {}, { timeout: 5_000 }) - fireEvent.pointerDown(setParent, { button: 0 }) - fireEvent.click(setParent) - // Candidate rows are virtualized and measure 0 in happy-dom; the mounted - // search input is the picker's lifecycle signal. - expect(await screen.findByPlaceholderText('Search worktrees...')).toBeInTheDocument() - }) - - it('opens the existing worktree composer from a project ring', async () => { - const { container } = render( - - {}} /> - - ) - - fireEvent.contextMenu(container.querySelector('[data-agent-map-project]')!, { - clientX: 100, - clientY: 110 - }) - const createWorktree = await screen.findByText( - 'Create new worktree for Orca', - {}, - { timeout: 5_000 } - ) - // Radix restores focus after unmount; drain it before the next test opens a menu. - const focusRestored = new Promise((resolve) => { - screen - .getByRole('menu') - .addEventListener('focusScope.autoFocusOnUnmount', () => resolve(), { once: true }) - }) - fireEvent.click(createWorktree) - await act(async () => focusRestored) - - expect(useAppStore.getState().activeModal).toBe('new-workspace-composer') - expect(useAppStore.getState().modalData).toEqual({ - initialRepoId: repo.id, - telemetrySource: 'sidebar' - }) - }) - - it('opens the folder-workspace composer from a synthetic project ring', async () => { - useAppStore.setState({ projectGroups: [folderProjectGroup] }) - const folderCard = { - ...card, - repoId: `folder-workspace:${folderProjectGroup.id}`, - repoName: folderProjectGroup.name, - worktreeId: 'folder:folder-1', - worktreeName: 'Docs', - workspaceKind: 'folder' as const - } - const { container } = render( - - {}} - /> - - ) - - fireEvent.contextMenu(container.querySelector('[data-agent-map-project]')!) - fireEvent.click( - await screen.findByText('Create workspace for Documentation', {}, { timeout: 5_000 }) - ) - - expect(useAppStore.getState().modalData).toEqual({ - initialProjectGroupId: folderProjectGroup.id, - telemetrySource: 'sidebar' - }) - }) - - it('clears an ambiguous project request instead of choosing a repo host', async () => { - useAppStore.setState({ - repos: [repo, { ...repo, path: '/local/repo', executionHostId: 'local' }] - }) - const { container } = render( - - {}} /> - - ) - - fireEvent.contextMenu(container.querySelector('[data-agent-map-project]')!) - await act(async () => new Promise((resolve) => window.setTimeout(resolve, 0))) - expect(screen.queryByText('Create new worktree for Orca')).not.toBeInTheDocument() - - act(() => { - useAppStore.setState({ repos: [repo] }) - }) - expect(screen.queryByText('Create new worktree for Orca')).not.toBeInTheDocument() - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.tsx b/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.tsx deleted file mode 100644 index 1ac20df44d2..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenu.tsx +++ /dev/null @@ -1,167 +0,0 @@ -import { Suspense, useEffect, useMemo, useRef } from 'react' -import { useShallow } from 'zustand/react/shallow' -import { lazyWithRetry } from '@/lib/lazy-with-retry' -import { useAppStore } from '@/store' -import { useWorktreeById } from '@/store/selectors' -import type { AppState } from '@/store/types' -import { - getRepoExecutionHostId, - normalizeExecutionHostId, - toSshExecutionHostId, - type ExecutionHostId -} from '../../../../shared/execution-host' -import { parseWorkspaceKey } from '../../../../shared/workspace-scope' - -const WorktreeContextMenu = lazyWithRetry( - () => import('@/components/sidebar/WorktreeContextMenu'), - { reloadKey: 'agent-map-worktree-context-menu' } -) - -export type AgentMapWorkspaceContextMenuRequest = { - id: number - worktreeId: string - executionHostId?: ExecutionHostId - clientX: number - clientY: number - altKey: boolean -} - -type AgentMapWorkspaceContextMenuProps = { - request: AgentMapWorkspaceContextMenuRequest | null - onOpenChange?: (open: boolean) => void - onLifecycleComplete?: () => void -} - -function countWorkspaceOwners( - worktreeId: string | null, - state: Pick< - AppState, - 'worktreesByRepo' | 'detectedWorktreesByRepo' | 'folderWorkspaces' | 'repos' - > -): number { - if (!worktreeId) { - return 0 - } - const scope = parseWorkspaceKey(worktreeId) - if (scope?.type === 'folder') { - return new Set( - state.folderWorkspaces - .filter((workspace) => workspace.id === scope.folderWorkspaceId) - .map( - (workspace) => - normalizeExecutionHostId(workspace.executionHostId) ?? - (workspace.connectionId ? toSshExecutionHostId(workspace.connectionId) : 'local') - ) - ).size - } - const repoOwnerIdsByRepoId = new Map>() - for (const repo of state.repos) { - const ownerId = getRepoExecutionHostId(repo) - const owners = repoOwnerIdsByRepoId.get(repo.id) - if (owners) { - owners.add(ownerId) - } else { - repoOwnerIdsByRepoId.set(repo.id, new Set([ownerId])) - } - } - const ownerIds = new Set() - const addOwner = (worktree: { repoId: string; hostId?: ExecutionHostId }): void => { - const directOwner = normalizeExecutionHostId(worktree.hostId) - if (directOwner) { - ownerIds.add(directOwner) - return - } - const repoOwnerIds = repoOwnerIdsByRepoId.get(worktree.repoId) - if (!repoOwnerIds) { - ownerIds.add('local') - return - } - for (const ownerId of repoOwnerIds) { - ownerIds.add(ownerId) - } - } - for (const worktrees of Object.values(state.worktreesByRepo)) { - for (const worktree of worktrees) { - if (worktree.id === worktreeId) { - addOwner(worktree) - } - } - } - for (const result of Object.values(state.detectedWorktreesByRepo)) { - for (const worktree of result.worktrees) { - if (worktree.id === worktreeId) { - addOwner(worktree) - } - } - } - return ownerIds.size -} - -function ContextMenuTrigger({ - request -}: { - request: AgentMapWorkspaceContextMenuRequest -}): React.JSX.Element { - const triggerRef = useRef(null) - useEffect(() => { - triggerRef.current?.dispatchEvent( - new MouseEvent('contextmenu', { - bubbles: true, - cancelable: true, - clientX: request.clientX, - clientY: request.clientY, - altKey: request.altKey, - button: 2 - }) - ) - }, [request]) - return -} - -export function AgentMapWorkspaceContextMenu({ - request, - onOpenChange, - onLifecycleComplete -}: AgentMapWorkspaceContextMenuProps): React.JSX.Element | null { - const { worktreesByRepo, detectedWorktreesByRepo, folderWorkspaces, repos } = useAppStore( - useShallow((state) => ({ - worktreesByRepo: state.worktreesByRepo, - detectedWorktreesByRepo: state.detectedWorktreesByRepo, - folderWorkspaces: state.folderWorkspaces, - repos: state.repos - })) - ) - const worktree = useWorktreeById(request?.worktreeId ?? null, request?.executionHostId) - const ownerCount = useMemo( - () => - countWorkspaceOwners(request?.worktreeId ?? null, { - worktreesByRepo, - detectedWorktreesByRepo, - folderWorkspaces, - repos - }), - [detectedWorktreesByRepo, folderWorkspaces, repos, request?.worktreeId, worktreesByRepo] - ) - const unavailable = request !== null && (!worktree || ownerCount !== 1) - useEffect(() => { - if (unavailable) { - onLifecycleComplete?.() - } - }, [onLifecycleComplete, unavailable]) - if (!request || unavailable || !worktree) { - return null - } - return ( -
- - - - - -
- ) -} diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenuLoader.tsx b/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenuLoader.tsx deleted file mode 100644 index 8ece35ad2ef..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorkspaceContextMenuLoader.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { Suspense } from 'react' -import { lazyWithRetry } from '@/lib/lazy-with-retry' -import type { AgentMapWorkspaceContextMenuRequest } from './AgentMapWorkspaceContextMenu' - -const AgentMapWorkspaceContextMenu = lazyWithRetry( - () => - import('./AgentMapWorkspaceContextMenu').then((module) => ({ - default: module.AgentMapWorkspaceContextMenu - })), - { reloadKey: 'agent-map-workspace-context-menu' } -) - -type AgentMapWorkspaceContextMenuLoaderProps = { - request: AgentMapWorkspaceContextMenuRequest - onOpenChange?: (open: boolean) => void - onLifecycleComplete?: () => void -} - -export function AgentMapWorkspaceContextMenuLoader({ - request, - onOpenChange, - onLifecycleComplete -}: AgentMapWorkspaceContextMenuLoaderProps): React.JSX.Element { - return ( - - - - ) -} - -export type { AgentMapWorkspaceContextMenuRequest } diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorktreeLabel.tsx b/src/renderer/src/components/dashboard-popout/AgentMapWorktreeLabel.tsx deleted file mode 100644 index 27a1c455341..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorktreeLabel.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import { memo } from 'react' -import { translate } from '@/i18n/i18n' -import type { AgentMapWorktreeRing } from './agent-map-layout' - -type AgentMapWorktreeLabelProps = { - worktree: AgentMapWorktreeRing - visible: boolean - active: boolean - labelScale: number - mapScale: number -} - -export const AgentMapWorktreeLabel = memo(function AgentMapWorktreeLabel({ - worktree, - visible, - active, - labelScale, - mapScale -}: AgentMapWorktreeLabelProps): React.JSX.Element { - // Hover is an explicit ask for this workspace's detail, so it outranks declutter. - const showCount = active || (visible && worktree.radius * mapScale >= 80) - const agentCountText = translate( - 'dashboardPopout.map.agentCount', - worktree.agents.length === 1 ? '{{count}} agent' : '{{count}} agents', - { count: worktree.agents.length } - ) - return ( - - - {worktree.name} - - - {agentCountText} - - - ) -}) diff --git a/src/renderer/src/components/dashboard-popout/AgentMapWorktreeRingNode.tsx b/src/renderer/src/components/dashboard-popout/AgentMapWorktreeRingNode.tsx deleted file mode 100644 index 55a2d5f547e..00000000000 --- a/src/renderer/src/components/dashboard-popout/AgentMapWorktreeRingNode.tsx +++ /dev/null @@ -1,413 +0,0 @@ -import { memo, useState, type MutableRefObject } from 'react' -import { Plus } from 'lucide-react' -import { AgentStateDot } from '@/components/AgentStateDot' -import { Button } from '@/components/ui/button' -import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover' -import { translate } from '@/i18n/i18n' -import { AgentIcon, getAgentLabel } from '@/lib/agent-catalog' -import { agentTypeToIconAgent } from '@/lib/agent-status' -import type { DashboardCard, DashboardSpawnAgentArgs } from '../../../../shared/dashboard-snapshot' -import type { TuiAgent } from '../../../../shared/tui-agent' -import type { - AgentMapAgentNode, - AgentMapProjectRing, - AgentMapWorktreeRing -} from './agent-map-layout' -import { AGENT_MAP_LINEAGE_RELATION, shouldAggregateAgentMapWorktree } from './agent-map-layout' -import { AgentMapQuestionMarker } from './AgentMapQuestionMarker' -import type { AgentMapFlareStatus } from './agent-map-node-metadata' -import { - agentMapAttentionMarkerScale, - agentMapStatusLabel, - agentName, - formatDuration, - lineagePath -} from './agent-map-node-presentation' -import { agentMapWorktreeActiveStatus } from './agent-map-worktree-active-status' - -type AgentMapWorktreeRingNodeProps = { - project: AgentMapProjectRing - worktree: AgentMapWorktreeRing - zoom: number - mapScale: number - /** Pressed at the start of a pan drag; keeps the ring lit through the gesture. */ - held: boolean - selectedPaneKey: string | null - allowAggregation: boolean - showOrchestrationLinks: boolean - recentFlareStatuses: ReadonlyMap - launchableAgents?: readonly TuiAgent[] - nodeRefs: MutableRefObject> - onSelectAgent: (card: DashboardCard) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onOpenWorkspaceContextMenu?: ( - event: React.MouseEvent, - worktree: AgentMapWorktreeRing - ) => void - onLabelHoverChange: (worktreeId: string, active: boolean) => void - onLabelFocusChange: (worktreeId: string, active: boolean) => void - onAgentKeyDown: (event: React.KeyboardEvent, agent: AgentMapAgentNode) => void -} - -function WorktreeDetails({ - project, - worktree, - launchableAgents, - onSelectAgent, - onSpawnAgent, - onDone -}: Pick< - AgentMapWorktreeRingNodeProps, - 'project' | 'worktree' | 'launchableAgents' | 'onSelectAgent' | 'onSpawnAgent' -> & { - onDone: () => void -}): React.JSX.Element { - const activeCount = - worktree.statusCounts.working + - worktree.statusCounts.monitoring + - worktree.statusCounts.blocked + - worktree.statusCounts.waiting - const doneCount = worktree.statusCounts.done + worktree.statusCounts['done-seen'] - return ( - -
- {project.name} - {worktree.name} - - {translate( - 'dashboardPopout.map.worktreeSummary', - '{{total}} agents · {{active}} active · {{done}} done', - { - count: worktree.agents.length, - defaultValue_one: '{{total}} agent · {{active}} active · {{done}} done', - defaultValue_other: '{{total}} agents · {{active}} active · {{done}} done', - total: worktree.agents.length, - active: activeCount, - done: doneCount - } - )} - -
-
-

- {translate('dashboardPopout.map.runningAgents', 'Agents')} -

-
- {worktree.agents.length === 0 ? ( -

- {translate('dashboardPopout.map.noWorkspaceAgents', 'No agents in this workspace.')} -

- ) : ( - worktree.agents.map((agent) => ( - - )) - )} -
-
- {onSpawnAgent ? ( -
-

- {translate('dashboardPopout.map.spawnAgent', 'Start a new agent')} -

- {launchableAgents && launchableAgents.length > 0 ? ( -
- {launchableAgents.map((agent) => ( - - ))} -
- ) : ( -

- {translate('dashboardPopout.map.noLaunchableAgents', 'No enabled agents detected.')} -

- )} -
- ) : null} -
- ) -} - -export const AgentMapWorktreeRingNode = memo(function AgentMapWorktreeRingNode({ - project, - worktree, - zoom, - mapScale, - held, - selectedPaneKey, - allowAggregation, - showOrchestrationLinks, - recentFlareStatuses, - launchableAgents, - nodeRefs, - onSelectAgent, - onSpawnAgent, - onOpenWorkspaceContextMenu, - onLabelHoverChange, - onLabelFocusChange, - onAgentKeyDown -}: AgentMapWorktreeRingNodeProps): React.JSX.Element { - const [detailsOpen, setDetailsOpen] = useState(false) - const exiting = project.motionState === 'exiting' || worktree.motionState === 'exiting' - const selected = worktree.agents.some((agent) => agent.card.paneKey === selectedPaneKey) - const activeStatus = agentMapWorktreeActiveStatus(worktree.statusCounts) - const aggregate = !selected && shouldAggregateAgentMapWorktree(worktree, zoom, allowAggregation) - const agentsByPaneKey = new Map(worktree.agents.map((agent) => [agent.card.paneKey, agent])) - - return ( - - onLabelHoverChange(worktree.id, true)} - onPointerLeave={() => onLabelHoverChange(worktree.id, false)} - onFocus={() => onLabelFocusChange(worktree.id, true)} - onBlur={(event) => { - if (!event.currentTarget.contains(event.relatedTarget as Node | null)) { - onLabelFocusChange(worktree.id, false) - } - }} - > - {activeStatus ? ( - - setDetailsOpen(false)} - /> - - ) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-dashboard-filter-options.ts b/src/renderer/src/components/dashboard-popout/agent-dashboard-filter-options.ts index db9b42c57eb..feb4661e23a 100644 --- a/src/renderer/src/components/dashboard-popout/agent-dashboard-filter-options.ts +++ b/src/renderer/src/components/dashboard-popout/agent-dashboard-filter-options.ts @@ -1,34 +1,10 @@ import { translate } from '@/i18n/i18n' import type { DashboardCard, DashboardFilterOption } from '../../../../shared/dashboard-snapshot' import type { DashboardReviewFilter } from './agent-board-filtering' -import type { AgentMapState } from './agent-map-filter' /** Option rows and labels for the shared dashboard filter menu. */ export type FilterOption = { id: string; label: string; count: number; color?: string } -export const AGENT_STATE_ROWS: { - state: AgentMapState - dotState: 'waiting' | 'working' | 'done' | 'idle' -}[] = [ - { state: 'attention', dotState: 'waiting' }, - { state: 'working', dotState: 'working' }, - { state: 'done', dotState: 'done' }, - { state: 'idle', dotState: 'idle' } -] - -export function agentStateLabel(state: AgentMapState): string { - switch (state) { - case 'attention': - return translate('dashboardPopout.bucket.attention', 'Needs You') - case 'working': - return translate('dashboardPopout.bucket.working', 'Working') - case 'done': - return translate('dashboardPopout.bucket.done', 'Done') - case 'idle': - return translate('dashboardPopout.bucket.idle', 'Idle') - } -} - function countBy( cards: DashboardCard[], value: (card: DashboardCard) => string diff --git a/src/renderer/src/components/dashboard-popout/agent-map-agent-placement.ts b/src/renderer/src/components/dashboard-popout/agent-map-agent-placement.ts deleted file mode 100644 index 3eb4fc329f3..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-agent-placement.ts +++ /dev/null @@ -1,58 +0,0 @@ -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { - agentMapDurationMinutes, - agentMapNodeStatus, - type AgentMapNodeStatus -} from './agent-map-node-metadata' - -const GOLDEN_ANGLE = 2.399963229728653 - -function stableHash(value: string): number { - let hash = 2166136261 - for (let index = 0; index < value.length; index += 1) { - hash ^= value.charCodeAt(index) - hash = Math.imul(hash, 16777619) - } - return hash >>> 0 -} - -export function placeAgentMapAgents({ - worktreeId, - cards, - radius, - agentRadius, - now -}: { - worktreeId: string - cards: DashboardCard[] - radius: number - agentRadius: number - now: number -}): { - card: DashboardCard - x: number - y: number - radius: number - durationMinutes: number - status: AgentMapNodeStatus -}[] { - const availableRadius = Math.max(0, radius - agentRadius - 6) - const sorted = [...cards].sort((a, b) => - a.paneKey < b.paneKey ? -1 : a.paneKey > b.paneKey ? 1 : 0 - ) - const capacity = Math.ceil(Math.sqrt(Math.max(1, sorted.length))) ** 2 - const angleOffset = (stableHash(worktreeId) / 0xffffffff) * Math.PI * 2 - - return sorted.map((card, index) => { - const orbit = sorted.length === 1 ? 0 : Math.sqrt((index + 0.5) / capacity) * availableRadius - const angle = angleOffset + index * GOLDEN_ANGLE - return { - card, - x: Math.cos(angle) * orbit, - y: Math.sin(angle) * orbit, - radius: agentRadius, - durationMinutes: agentMapDurationMinutes(card, now), - status: agentMapNodeStatus(card) - } - }) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-canvas-zoom.ts b/src/renderer/src/components/dashboard-popout/agent-map-canvas-zoom.ts deleted file mode 100644 index ab2d846a387..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-canvas-zoom.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { AGENT_MAP_AGENT_RADIUS, type AgentMapLayout } from './agent-map-layout' - -export const MIN_ZOOM = 0.7 -export const MAX_ZOOM = 24 - -/** Screen radius a single agent should occupy once focused. */ -const AGENT_FOCUS_RADIUS_PX = 24 - -export function clamp(value: number, minimum: number, maximum: number): number { - return Math.max(minimum, Math.min(maximum, value)) -} - -/** Zoom that brings one agent up to `AGENT_FOCUS_RADIUS_PX` on screen. */ -export function agentFocusZoom(layout: AgentMapLayout, width: number, height: number): number { - const aspect = width / Math.max(1, height) - const baseWidth = Math.max(layout.width, layout.height * aspect) - return clamp( - Math.max( - 2, - (baseWidth * AGENT_FOCUS_RADIUS_PX) / (Math.max(1, width) * AGENT_MAP_AGENT_RADIUS) - ), - MIN_ZOOM, - MAX_ZOOM - ) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-filter-labels.ts b/src/renderer/src/components/dashboard-popout/agent-map-filter-labels.ts deleted file mode 100644 index 4fd91c81ce9..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-filter-labels.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { translate } from '@/i18n/i18n' -import type { AgentMapTimeField } from './agent-map-time-filter' - -export function timeFieldLabel(field: AgentMapTimeField): string { - switch (field) { - case 'lifespan': - return translate('dashboardPopout.map.filters.lifespan', 'Session lifespan') - case 'sinceMessage': - return translate('dashboardPopout.map.filters.sinceMessage', 'Since last message') - case 'timeInState': - return translate('dashboardPopout.map.filters.timeInState', 'Time in current state') - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-filter-summaries.ts b/src/renderer/src/components/dashboard-popout/agent-map-filter-summaries.ts deleted file mode 100644 index bb49665d74d..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-filter-summaries.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { translate } from '@/i18n/i18n' -import { - activeAgentMapTimeFields, - agentMapTimeStopLabel, - type AgentMapTimeRanges -} from './agent-map-time-filter' - -export type AgentMapSectionSummary = { text: string; active: boolean } - -const all = (): string => translate('dashboardPopout.map.filters.summaryAll', 'All') - -/** "All" / the one selected value / "2 of 4" — enough to skip opening the row. */ -export function summarizeSelection( - selected: ReadonlySet, - total: number, - label: (value: T) => string -): AgentMapSectionSummary { - if (selected.size >= total) { - return { text: all(), active: false } - } - if (selected.size === 1) { - return { text: label([...selected][0]), active: true } - } - return { - text: translate('dashboardPopout.map.filters.summaryCount', '{{shown}} of {{total}}', { - shown: selected.size, - total - }), - active: true - } -} - -export function summarizeTimeRanges( - ranges: AgentMapTimeRanges, - label: (field: keyof AgentMapTimeRanges) => string -): AgentMapSectionSummary { - const active = activeAgentMapTimeFields(ranges) - if (active.length === 0) { - return { text: translate('dashboardPopout.map.filters.timeAny', 'any'), active: false } - } - if (active.length === 1) { - const range = ranges[active[0]] - return { - text: `${label(active[0])}: ${agentMapTimeStopLabel(range.min)}–${agentMapTimeStopLabel(range.max)}`, - active: true - } - } - return { - text: translate('dashboardPopout.map.filters.timeRangeCount', '{{count}} ranges', { - count: active.length - }), - active: true - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts deleted file mode 100644 index 2fb54c2f45e..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-filter.test.ts +++ /dev/null @@ -1,113 +0,0 @@ -import { describe, expect, it } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { agentMapState, countAgentMapCards, filterAgentMapCards } from './agent-map-filter' - -const NOW = 2_000_000_000 - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'done', - dotState: 'done', - task: '', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: NOW - 60_000, - finishedAt: NOW - 30_000, - stateChangedAt: NOW - 30_000, - unseen: false, - hostKind: 'local', - ...overrides - } -} - -describe('agent map filtering', () => { - it('files both unseen and acknowledged completions under done, never idle', () => { - expect(agentMapState(card({ unseen: true }))).toBe('done') - // Why not idle: an acknowledged finish still paints emerald, so hiding "idle" - // must not blank it out. Only a card that never finished is idle. - expect(agentMapState(card({ unseen: false }))).toBe('done') - expect(agentMapState(card({ bucket: 'idle', dotState: 'idle' }))).toBe('idle') - }) - - it('applies state and host filters independently', () => { - const hidden = card({ paneKey: 'hidden', repoId: 'hidden', hostKind: 'ssh', unseen: true }) - const visible = filterAgentMapCards({ - cards: [hidden], - enabledStates: new Set(['done']), - enabledHosts: new Set(['ssh']) - }) - - expect(visible).toEqual([hidden]) - expect( - filterAgentMapCards({ - cards: [hidden], - enabledStates: new Set(['idle']), - enabledHosts: new Set(['ssh']) - }) - ).toEqual([]) - expect( - filterAgentMapCards({ - cards: [hidden], - enabledStates: new Set(['done']), - enabledHosts: new Set(['local']) - }) - ).toEqual([]) - }) - - it('keeps every selected host rather than one at a time', () => { - const local = card({ paneKey: 'local' }) - const ssh = card({ paneKey: 'ssh', hostKind: 'ssh' }) - const wsl = card({ paneKey: 'wsl', hostKind: 'wsl' }) - - expect( - filterAgentMapCards({ - cards: [local, ssh, wsl], - enabledStates: new Set(['done']), - enabledHosts: new Set(['local', 'wsl']) - }) - ).toEqual([local, wsl]) - }) - - it('treats a missing hostKind as local', () => { - const legacy = card({ paneKey: 'legacy', hostKind: undefined }) - - expect( - filterAgentMapCards({ - cards: [legacy], - enabledStates: new Set(['done']), - enabledHosts: new Set(['local']) - }) - ).toEqual([legacy]) - expect( - filterAgentMapCards({ - cards: [legacy], - enabledStates: new Set(['done']), - enabledHosts: new Set(['ssh']) - }) - ).toEqual([]) - }) - - it('counts all four display states', () => { - const cards = [ - card({ paneKey: 'done-new', unseen: true }), - card({ paneKey: 'done-seen', unseen: false }), - card({ paneKey: 'working', bucket: 'working', dotState: 'working', finishedAt: null }), - card({ paneKey: 'waiting', bucket: 'attention', dotState: 'waiting', finishedAt: null }), - card({ paneKey: 'idle', bucket: 'idle', dotState: 'idle', finishedAt: null }) - ] - - expect(countAgentMapCards(cards)).toEqual({ - attention: 1, - working: 1, - done: 2, - idle: 1 - }) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-filter.ts b/src/renderer/src/components/dashboard-popout/agent-map-filter.ts deleted file mode 100644 index 698bd64b49c..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-filter.ts +++ /dev/null @@ -1,106 +0,0 @@ -import type { DashboardCard, DashboardCardHostKind } from '../../../../shared/dashboard-snapshot' -import { agentMapNodeStatus } from './agent-map-node-metadata' -import { matchesAgentMapTimeRanges, type AgentMapTimeRanges } from './agent-map-time-filter' - -export type AgentMapState = 'attention' | 'working' | 'done' | 'idle' -export type AgentMapCounts = Record - -export const ALL_AGENT_MAP_HOSTS: readonly DashboardCardHostKind[] = [ - 'local', - 'ssh', - 'wsl', - 'remote' -] - -export function agentMapState(card: DashboardCard): AgentMapState { - const state = agentMapNodeStatus(card) - if (state === 'blocked' || state === 'waiting') { - return 'attention' - } - // Why: an acknowledged finish still paints emerald, so it has to answer the Done - // chip. Filtering it as idle would let "hide idle" blank out visibly green nodes. - if (state === 'done-seen') { - return 'done' - } - if (state === 'monitoring') { - return 'working' - } - return state -} - -/** Every agent in a dispatch relationship — each dispatched child *and* the - * coordinator that dispatched it. A children-only set would hide the half of - * the flow that explains it. */ -export function agentMapOrchestrationPaneKeys(cards: DashboardCard[]): Set { - const present = new Set(cards.map((card) => card.paneKey)) - const flows = new Set() - for (const card of cards) { - const parent = card.parentPaneKey - if (parent && present.has(parent)) { - flows.add(card.paneKey) - flows.add(parent) - } - } - return flows -} - -export function filterAgentMapCards({ - cards, - enabledStates, - enabledHosts, - enabledAgentTypes, - timeRanges, - orchestrationOnly = false, - now -}: { - cards: DashboardCard[] - enabledStates: ReadonlySet - enabledHosts: ReadonlySet - enabledAgentTypes?: ReadonlySet - timeRanges?: AgentMapTimeRanges - orchestrationOnly?: boolean - now?: number -}): DashboardCard[] { - const flows = orchestrationOnly ? agentMapOrchestrationPaneKeys(cards) : null - // Project filtering lives in the shared toolbar filter, which has already - // narrowed these cards. - return cards.filter((card) => { - if (!enabledHosts.has(card.hostKind ?? 'local')) { - return false - } - if (!enabledStates.has(agentMapState(card))) { - return false - } - if (enabledAgentTypes && !enabledAgentTypes.has(card.agentType)) { - return false - } - if (flows && !flows.has(card.paneKey)) { - return false - } - if (timeRanges && now !== undefined && !matchesAgentMapTimeRanges(card, timeRanges, now)) { - return false - } - return true - }) -} - -export function countAgentMapCards(cards: DashboardCard[]): AgentMapCounts { - const counts: AgentMapCounts = { - attention: 0, - working: 0, - done: 0, - idle: 0 - } - for (const card of cards) { - counts[agentMapState(card)] += 1 - } - return counts -} - -export function countAgentMapAgentTypes(cards: DashboardCard[]): Map { - const counts = new Map() - for (const card of cards) { - counts.set(card.agentType, (counts.get(card.agentType) ?? 0) + 1) - } - return new Map([...counts].sort(([a], [b]) => a.localeCompare(b))) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts deleted file mode 100644 index 150c228b84f..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-glow.performance.test.ts +++ /dev/null @@ -1,94 +0,0 @@ -import { readFileSync } from 'node:fs' -import { resolve } from 'node:path' -import { describe, expect, it } from 'vitest' - -function source(file: string): string { - return readFileSync( - resolve(process.cwd(), 'src/renderer/src/components/dashboard-popout', file), - 'utf8' - ) -} - -describe('Agent Map glow performance boundary', () => { - it('uses one conditional SVG halo per active entity without filter effects', () => { - const component = source('AgentMapWorktreeRingNode.tsx') - - expect(component.match(/data-agent-map-worktree-status-glow/g)).toHaveLength(1) - expect(component.match(/data-agent-map-agent-status-glow/g)).toHaveLength(1) - expect(component).not.toMatch(/ { - const css = source('agent-map.css') - const baseGlowRules = css.match( - /\.agent-map-(?:worktree-status|agent-status)-glow\s*\{[^}]+\}/gs - ) - const glowRules = css.match( - /\.agent-map-(?:worktree-status|agent-status)-glow[^{}]*\{[^}]+\}/gs - ) - - expect(baseGlowRules).toHaveLength(2) - for (const rule of baseGlowRules ?? []) { - expect(rule).toContain('pointer-events: none') - expect(rule).toContain('vector-effect: non-scaling-stroke') - } - // 2 base + 4 agent statuses + 4 worktree statuses. - expect(glowRules).toHaveLength(10) - for (const rule of glowRules ?? []) { - expect(rule).not.toMatch(/filter:|animation:|transition:/) - } - - const markRule = css.match(/\.agent-map-agent-mark\s*\{[^}]+\}/s)?.[0] - expect(markRule).not.toMatch(/filter:|animation:|transition:/) - }) - - it('keeps the waiting badge on the native SVG paint path', () => { - const marker = source('AgentMapQuestionMarker.tsx') - const css = source('agent-map.css') - const markerRules = css.match(/\.agent-map-agent-question-[^{}]*\{[^}]+\}/gs) ?? [] - - expect(marker).not.toContain(' { - const component = source('AgentMapWorktreeRingNode.tsx') - const metadata = source('agent-map-node-metadata.ts') - - // The flare is the one animated element on an agent node, so it must stay gated on - // the globally capped recent-status map rather than on status alone. - expect(component.match(/data-agent-map-agent-status-flare/g)).toHaveLength(1) - expect(component).toMatch(/recentFlareStatuses\.get\(agent\.card\.paneKey\)/) - expect(component).not.toMatch(/ { - const map = source('AgentMap.tsx') - const scene = source('AgentMapScene.tsx') - - expect(map).toMatch(/selectAgentMapRecentFlareStatuses\(visibleCards\)/) - expect(scene).not.toContain('selectAgentMapRecentFlareStatuses') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts deleted file mode 100644 index ea5bbab362e..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-hover-containment.test.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { readFileSync } from 'node:fs' -import { resolve } from 'node:path' -import { describe, expect, it } from 'vitest' - -const css = readFileSync( - resolve(process.cwd(), 'src/renderer/src/components/dashboard-popout/agent-map.css'), - 'utf8' -) - -const PROJECT_SCALE = - /:where\(\s*\.agent-map-project-node:hover,\s*\.agent-map-project-node:focus-within,\s*\.agent-map-project-node\.is-held\s*\)\s*\.agent-map-project-ring\s*\{([^}]*)\}/ -const WORKTREE_SCALE = - /:where\(\s*\.agent-map-worktree-group:hover,\s*\.agent-map-worktree-group:focus-within,\s*\.agent-map-worktree-group\.is-held\s*\)\s*\.agent-map-worktree-ring\s*\{([^}]*)\}/ - -/** A ring that only reacts to :hover on itself pulses shut whenever the pointer - * crosses onto something drawn inside it, and again when a pan drag takes - * pointer capture. Both triggers have to live on the containing group. */ -describe('Agent Map hover containment', () => { - it('scales each ring from its containing group, never from the ring element', () => { - expect(css).not.toMatch(/\.agent-map-(?:project|worktree)-ring:hover/) - expect(css.match(PROJECT_SCALE)?.[1]).toContain('transform: scale') - expect(css.match(WORKTREE_SCALE)?.[1]).toContain('transform: scale') - }) - - it('keeps the group-scoped hover at ring specificity so state rules still win', () => { - // `:where()` contributes no specificity, so the workspace state rules keep - // overriding hover fill and stroke — but only while they stay below it. - const hoverAt = css.search(WORKTREE_SCALE) - - expect(hoverAt).toBeGreaterThan(css.indexOf('.agent-map-worktree-ring {')) - for (const state of ['.is-open', '.is-selected', '.is-working', '.is-blocked']) { - expect(css.indexOf(`.agent-map-worktree-ring${state}`)).toBeGreaterThan(hoverAt) - } - }) - - it('expands containing rings for keyboard focus as well as pointer hover', () => { - expect(css.match(PROJECT_SCALE)?.[0]).toContain('.agent-map-project-node:focus-within') - expect(css.match(WORKTREE_SCALE)?.[0]).toContain('.agent-map-worktree-group:focus-within') - }) - - it('drops both hover triggers under reduced motion', () => { - const reducedMotion = css.slice(css.indexOf('@media (prefers-reduced-motion: reduce)')) - - expect(reducedMotion).toContain('.agent-map-project-node.is-held') - expect(reducedMotion).toContain('.agent-map-worktree-group.is-held') - expect(reducedMotion).toMatch(/\.agent-map-project-node:hover/) - expect(reducedMotion).toMatch(/\.agent-map-worktree-group:hover/) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts deleted file mode 100644 index f0f2d458be0..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.test.ts +++ /dev/null @@ -1,151 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { selectVisibleAgentMapLabels } from './agent-map-label-declutter' -import type { AgentMapLayout, AgentMapProjectRing, AgentMapWorktreeRing } from './agent-map-layout' -import { - agentMapQuietCount, - emptyAgentMapStatusCounts, - type AgentMapStatusCounts -} from './agent-map-node-metadata' - -function statusCounts(overrides: Partial = {}): AgentMapStatusCounts { - return { ...emptyAgentMapStatusCounts(), ...overrides } -} - -function worktree(overrides: Partial = {}): AgentMapWorktreeRing { - const counts = overrides.statusCounts ?? statusCounts({ working: 1 }) - const total = Object.values(counts).reduce((sum, value) => sum + value, 0) - return { - id: 'worktree-a', - worktreeId: 'worktree-a', - executionHostId: undefined, - name: 'alpha', - workspaceKind: 'worktree', - x: 0, - y: 0, - radius: 62, - // Sparse placeholders keep tests that only care about label-to-label collisions concise. - agents: Array.from({ length: total }) as AgentMapWorktreeRing['agents'], - statusCounts: counts, - quiet: agentMapQuietCount(counts) === total, - ...overrides - } -} - -function layoutOf( - worktrees: AgentMapWorktreeRing[], - project: Partial = {} -): AgentMapLayout { - return { - projects: [ - { - id: 'project-1', - name: 'orca', - x: 0, - // Parked far above the workspaces so the project label is not itself - // the thing under test unless a case moves it. - y: -4_000, - radius: 100, - worktrees, - agentCount: worktrees.reduce((sum, item) => sum + item.agents.length, 0), - ...project - } - ], - width: 900, - height: 560, - topologyKey: 'test' - } -} - -describe('selectVisibleAgentMapLabels', () => { - it('keeps both labels when they are far enough apart', () => { - const layout = layoutOf([ - worktree({ id: 'a', x: -400, y: 0 }), - worktree({ id: 'b', name: 'beta', x: 400, y: 0 }) - ]) - - const { worktreeIds } = selectVisibleAgentMapLabels(layout, 1, 1) - - expect([...worktreeIds].sort()).toEqual(['a', 'b']) - }) - - it('drops the lower-priority label when two would overlap', () => { - // Same anchor point: the two labels are drawn on top of each other. - const layout = layoutOf([ - worktree({ id: 'busy', x: 0, y: 0, statusCounts: statusCounts({ working: 3 }) }), - worktree({ id: 'calm', name: 'beta', x: 0, y: 0, statusCounts: statusCounts({ done: 1 }) }) - ]) - - const { worktreeIds } = selectVisibleAgentMapLabels(layout, 1, 1) - - expect([...worktreeIds]).toEqual(['busy']) - }) - - it('hides a workspace title that would cover an agent', () => { - const coveringAgent = { x: 0, y: -48, radius: 20 } - const covered = worktree({ - id: 'covered', - agents: [coveringAgent] as AgentMapWorktreeRing['agents'] - }) - - const labels = selectVisibleAgentMapLabels(layoutOf([covered]), 1, 1) - - expect(labels.worktreeIds.size).toBe(0) - }) - - it('lets a blocked workspace outrank a busier neighbour for the surviving label', () => { - const layout = layoutOf([ - worktree({ id: 'blocked', x: 0, y: 0, statusCounts: statusCounts({ blocked: 1 }) }), - worktree({ - id: 'working', - name: 'beta', - x: 0, - y: 0, - statusCounts: statusCounts({ working: 9 }) - }) - ]) - - const { worktreeIds } = selectVisibleAgentMapLabels(layout, 1, 1) - - expect([...worktreeIds]).toEqual(['blocked']) - }) - - it('hides all-idle workspace labels until the ring is large on screen', () => { - const idle = worktree({ id: 'idle', x: 0, y: 0, statusCounts: statusCounts({ idle: 2 }) }) - - expect(selectVisibleAgentMapLabels(layoutOf([idle]), 1, 0.5).worktreeIds.size).toBe(0) - expect([...selectVisibleAgentMapLabels(layoutOf([idle]), 1, 1).worktreeIds]).toEqual(['idle']) - }) - - it('drops the project count rather than a workspace name when they collide', () => { - // The workspace ring's name lands on the project's count line. - const layout = layoutOf([worktree({ id: 'a', x: 0, y: 42 })], { - x: 0, - y: 0, - radius: 40, - agentCount: 1 - }) - - const { worktreeIds, projectCountIds } = selectVisibleAgentMapLabels(layout, 1, 1) - - expect([...worktreeIds]).toEqual(['a']) - expect(projectCountIds.size).toBe(0) - }) - - it('keeps the project count when nothing is in its way', () => { - const layout = layoutOf([worktree({ id: 'a', x: 0, y: 0 })]) - - expect([...selectVisibleAgentMapLabels(layout, 1, 1).projectCountIds]).toEqual(['project-1']) - }) - - it('admits more labels as zooming in shrinks their world footprint', () => { - const worktrees = Array.from({ length: 6 }, (_unused, index) => - worktree({ id: `w-${index}`, name: `workspace-${index}`, x: index * 90, y: 0 }) - ) - - const zoomedOut = selectVisibleAgentMapLabels(layoutOf(worktrees), 4, 0.25).worktreeIds - const zoomedIn = selectVisibleAgentMapLabels(layoutOf(worktrees), 1, 1).worktreeIds - - expect(zoomedOut.size).toBeLessThan(zoomedIn.size) - expect(zoomedIn.size).toBe(6) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.ts b/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.ts deleted file mode 100644 index 67081f39084..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-label-declutter.ts +++ /dev/null @@ -1,266 +0,0 @@ -import type { AgentMapLayout, AgentMapWorktreeRing } from './agent-map-layout' - -/** Metrics for the label styles in agent-map.css. Estimating text extents from - * the character count avoids a per-frame DOM measure of every label. */ -const WORKTREE_LABEL_FONT_PX = 12 -const PROJECT_LABEL_FONT_PX = 13 -const COUNT_FONT_PX = 11 -const GLYPH_WIDTH_RATIO = 0.56 -/** Uppercase project text runs wider per glyph than a mixed-case worktree name. */ -const UPPERCASE_GLYPH_WIDTH_RATIO = 0.66 -const ASCENT_RATIO = 0.8 -const DESCENT_RATIO = 0.2 -const PROJECT_LABEL_ICON_PX = 16 -/** Local-unit breathing room so two labels never appear to touch. */ -const LABEL_GAP_X_PX = 3 -const LABEL_GAP_Y_PX = 1 -const AGENT_LABEL_CLEARANCE_PX = 3 -/** Baselines the scene renders at, relative to each label group's origin. */ -const WORKTREE_LABEL_BASELINE = 18 -const COUNT_BASELINE = 32 -const PROJECT_NAME_TOP = 3 -const PROJECT_NAME_BOTTOM = 21 -/** Past this many candidates the pass stops admitting labels; a map that dense - * is unreadable long before the cap, and this bounds the work. */ -const MAX_LABEL_CANDIDATES = 600 -const DECLUTTER_GRID_PX = 96 - -/** A label box in world units, matching what the scene actually renders. */ -type LabelBox = { - left: number - right: number - top: number - bottom: number -} - -type LabelGrid = Map> - -export type AgentMapVisibleLabels = { - /** Worktree ring ids whose name can render without colliding. */ - worktreeIds: Set - /** Project ids whose agent/workspace count line still has room. The count is - * the first thing dropped: it repeats what the filter rail already says. */ - projectCountIds: Set -} - -function textWidth(text: string, fontPx: number, ratio = GLYPH_WIDTH_RATIO): number { - return text.length * fontPx * ratio -} - -function boxesOverlap(a: LabelBox, b: LabelBox): boolean { - return a.left < b.right && b.left < a.right && a.top < b.bottom && b.top < a.bottom -} - -function addBox(grid: LabelGrid, box: LabelBox): void { - const left = Math.floor(box.left / DECLUTTER_GRID_PX) - const right = Math.floor(box.right / DECLUTTER_GRID_PX) - const top = Math.floor(box.top / DECLUTTER_GRID_PX) - const bottom = Math.floor(box.bottom / DECLUTTER_GRID_PX) - for (let x = left; x <= right; x += 1) { - let column = grid.get(x) - if (!column) { - column = new Map() - grid.set(x, column) - } - for (let y = top; y <= bottom; y += 1) { - const cell = column.get(y) - if (cell) { - cell.push(box) - } else { - column.set(y, [box]) - } - } - } -} - -function collides(grid: LabelGrid, box: LabelBox): boolean { - const left = Math.floor(box.left / DECLUTTER_GRID_PX) - const right = Math.floor(box.right / DECLUTTER_GRID_PX) - const top = Math.floor(box.top / DECLUTTER_GRID_PX) - const bottom = Math.floor(box.bottom / DECLUTTER_GRID_PX) - for (let x = left; x <= right; x += 1) { - const column = grid.get(x) - if (!column) { - continue - } - for (let y = top; y <= bottom; y += 1) { - for (const placed of column.get(y) ?? []) { - if (boxesOverlap(box, placed)) { - return true - } - } - } - } - return false -} - -/** Projects a centered label from its group's local units into world space - * through the same scale the scene applies to the group. */ -function centeredBox( - centerX: number, - anchorY: number, - scale: number, - width: number, - localTop: number, - localBottom: number -): LabelBox { - const halfWidth = (width / 2 + LABEL_GAP_X_PX) * scale - return { - left: centerX - halfWidth, - right: centerX + halfWidth, - top: anchorY + (localTop - LABEL_GAP_Y_PX) * scale, - bottom: anchorY + (localBottom + LABEL_GAP_Y_PX) * scale - } -} - -/** Box for a centered given its baseline in the group's local units. */ -function baselineBox( - centerX: number, - anchorY: number, - scale: number, - text: string, - fontPx: number, - baseline: number, - widthRatio = GLYPH_WIDTH_RATIO -): LabelBox { - return centeredBox( - centerX, - anchorY, - scale, - textWidth(text, fontPx, widthRatio), - baseline - fontPx * ASCENT_RATIO, - baseline + fontPx * DESCENT_RATIO - ) -} - -/** Attention outranks volume: a blocked workspace keeps its name when a large - * idle neighbour has to drop its own. */ -function labelPriority(worktree: AgentMapWorktreeRing): number { - const attention = worktree.statusCounts.blocked + worktree.statusCounts.waiting - return ( - attention * 1_000_000 + - worktree.statusCounts.working * 10_000 + - worktree.statusCounts.monitoring * 1_000 + - worktree.agents.length - ) -} - -/** Worth drawing before collisions are considered: all-idle workspaces stay - * silent until their ring is big enough on screen to be worth naming. */ -function isLabelCandidate(worktree: AgentMapWorktreeRing, mapScale: number): boolean { - return !worktree.quiet || worktree.radius * mapScale >= 56 -} - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -function addAgentExclusionBoxes(grid: LabelGrid, layout: AgentMapLayout, mapScale: number): void { - const clearance = AGENT_LABEL_CLEARANCE_PX / Math.max(mapScale, 0.001) - for (const project of layout.projects) { - for (const worktree of project.worktrees) { - for (const agent of worktree.agents) { - if (!agent) { - continue - } - const radius = agent.radius + clearance - addBox(grid, { - left: agent.x - radius, - right: agent.x + radius, - top: agent.y - radius, - bottom: agent.y + radius - }) - } - } - } -} - -/** - * Picks the labels that can render without stacking on each other. Labels draw - * at a fixed screen size, so which ones fit depends on zoom but never on pan — - * keeping this pan-independent is what lets the scene stay memoized during a - * drag. Project names claim space first as the map's coarsest landmark, - * workspace names next in priority order, and project counts take what is left. - */ -export function selectVisibleAgentMapLabels( - layout: AgentMapLayout, - labelScale: number, - mapScale: number -): AgentMapVisibleLabels { - const agentGrid: LabelGrid = new Map() - addAgentExclusionBoxes(agentGrid, layout, mapScale) - const grid: LabelGrid = new Map() - addAgentExclusionBoxes(grid, layout, mapScale) - for (const project of layout.projects) { - const name = project.name.toUpperCase() - addBox( - grid, - centeredBox( - project.x, - project.y - project.radius, - labelScale, - PROJECT_LABEL_ICON_PX + textWidth(name, PROJECT_LABEL_FONT_PX, UPPERCASE_GLYPH_WIDTH_RATIO), - PROJECT_NAME_TOP, - PROJECT_NAME_BOTTOM - ) - ) - } - - const candidates: AgentMapWorktreeRing[] = [] - for (const project of layout.projects) { - for (const worktree of project.worktrees) { - if (isLabelCandidate(worktree, mapScale)) { - candidates.push(worktree) - } - } - } - candidates.sort((a, b) => { - const byPriority = labelPriority(b) - labelPriority(a) - if (byPriority !== 0) { - return byPriority - } - const byRadius = b.radius - a.radius - return byRadius !== 0 ? byRadius : compareStable(a.id, b.id) - }) - - const worktreeIds = new Set() - for (const worktree of candidates.slice(0, MAX_LABEL_CANDIDATES)) { - const box = baselineBox( - worktree.x, - worktree.y - worktree.radius, - labelScale, - worktree.name, - WORKTREE_LABEL_FONT_PX, - WORKTREE_LABEL_BASELINE - ) - if (collides(agentGrid, box)) { - continue - } - if (collides(grid, box)) { - continue - } - addBox(grid, box) - worktreeIds.add(worktree.id) - } - - const projectCountIds = new Set() - for (const project of layout.projects) { - const count = `${project.agentCount} AGENTS · ${project.worktrees.length} WORKSPACES` - const box = baselineBox( - project.x, - project.y - project.radius, - labelScale, - count, - COUNT_FONT_PX, - COUNT_BASELINE, - UPPERCASE_GLYPH_WIDTH_RATIO - ) - if (collides(grid, box)) { - continue - } - addBox(grid, box) - projectCountIds.add(project.id) - } - - return { worktreeIds, projectCountIds } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-layout-metadata.ts b/src/renderer/src/components/dashboard-popout/agent-map-layout-metadata.ts deleted file mode 100644 index 93138ba9dce..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-layout-metadata.ts +++ /dev/null @@ -1,69 +0,0 @@ -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' -import type { AgentMapLayout } from './agent-map-layout' -import { agentMapWorkspaceIdentity } from './agent-map-workspace-identity' -import { - agentMapDurationMinutes, - agentMapNodeStatus, - agentMapQuietCount, - emptyAgentMapStatusCounts -} from './agent-map-node-metadata' - -export function refreshAgentMapMetadata( - geometry: AgentMapLayout, - cards: DashboardCard[], - workspaces: DashboardWorkspace[], - now: number -): AgentMapLayout { - const cardsByPaneKey = new Map(cards.map((card) => [card.paneKey, card])) - const workspacesById = new Map( - workspaces.map((workspace) => [agentMapWorkspaceIdentity(workspace), workspace]) - ) - const projects = geometry.projects.map((project) => { - let projectName = project.name - let agentCount = 0 - const worktrees = project.worktrees.map((worktree) => { - const workspace = workspacesById.get(worktree.id) - if (workspace) { - projectName = workspace.repoName - } - let worktreeName = workspace?.worktreeName ?? worktree.name - let workspaceKind = workspace?.workspaceKind ?? worktree.workspaceKind - let hostKind = workspace?.hostKind ?? worktree.hostKind - let hostLabel = workspace?.hostLabel ?? worktree.hostLabel - const statusCounts = emptyAgentMapStatusCounts() - const agents = worktree.agents.flatMap((agent) => { - const card = cardsByPaneKey.get(agent.card.paneKey) - if (!card) { - return [] - } - projectName = card.repoName - worktreeName = card.worktreeName - workspaceKind = card.workspaceKind ?? 'worktree' - hostKind = card.hostKind ?? hostKind - hostLabel = card.hostLabel ?? hostLabel - agentCount += 1 - statusCounts[agentMapNodeStatus(card)] += 1 - return [ - { - ...agent, - card, - durationMinutes: agentMapDurationMinutes(card, now), - status: agentMapNodeStatus(card) - } - ] - }) - return { - ...worktree, - name: worktreeName, - workspaceKind, - hostKind, - hostLabel, - agents, - statusCounts, - quiet: agentMapQuietCount(statusCounts) === agents.length - } - }) - return { ...project, name: projectName, worktrees, agentCount } - }) - return { ...geometry, projects } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts deleted file mode 100644 index 3304c45537f..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-layout.test.ts +++ /dev/null @@ -1,658 +0,0 @@ -import { describe, expect, it, vi } from 'vitest' -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' -import { - deriveAgentMapLayout, - AGENT_MAP_AGENT_RADIUS, - AGENT_MAP_RING_HEADER_HEIGHT, - AGENT_MAP_WORKTREE_GAP, - agentMapDurationMinutes, - agentMapNodeStatus, - updateAgentMapLayout -} from './agent-map-layout' -import type * as WorktreePackingModule from './agent-map-worktree-packing' - -const packWorktrees = vi.hoisted(() => vi.fn()) -vi.mock('./agent-map-worktree-packing', async (importOriginal) => { - const actual = await importOriginal() - return { - ...actual, - packAgentMapWorktrees: (...args: Parameters) => { - packWorktrees() - return actual.packAgentMapWorktrees(...args) - } - } -}) - -const NOW = 2_000_000_000 - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Build map', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: NOW - 10 * 60_000, - finishedAt: null, - stateChangedAt: NOW - 1_000, - unseen: false, - ...overrides - } -} - -function workspace(overrides: Partial = {}): DashboardWorkspace { - return { - repoId: 'repo-1', - worktreeId: 'empty-worktree', - repoName: 'Orca', - worktreeName: 'Empty worktree', - hostKind: 'local', - executionHostId: 'local', - workspaceKind: 'worktree', - ...overrides - } -} - -describe('agent map layout', () => { - it('lays out agentless workspaces and preserves their workspace lineage', () => { - const layout = deriveAgentMapLayout([], NOW, [ - workspace({ worktreeId: 'parent', worktreeName: 'Parent' }), - workspace({ - worktreeId: 'child', - worktreeName: 'Child', - parentWorktreeId: 'parent' - }) - ]) - const project = layout.projects[0] - const parent = project.worktrees.find((item) => item.worktreeId === 'parent')! - const child = project.worktrees.find((item) => item.worktreeId === 'child')! - - expect(project.agentCount).toBe(0) - expect(parent.agents).toEqual([]) - expect(child.parentId).toBe(parent.id) - expect(child.y).toBeGreaterThan(parent.y) - }) - - it('derives project containment, workspace containment, and every agent node', () => { - const cards = [ - card({ paneKey: 'a', repoId: 'repo-a', worktreeId: 'wt-a' }), - card({ paneKey: 'b', repoId: 'repo-a', worktreeId: 'wt-a' }), - card({ paneKey: 'c', repoId: 'repo-a', worktreeId: 'wt-b' }), - card({ - paneKey: 'd', - repoId: 'repo-b', - repoName: 'Mobile', - worktreeId: 'wt-c' - }) - ] - const layout = deriveAgentMapLayout(cards, NOW) - - expect(layout.projects.map((project) => project.id)).toEqual(['repo-a', 'repo-b']) - expect(layout.projects[0].worktrees.map((worktree) => worktree.worktreeId)).toEqual([ - 'wt-a', - 'wt-b' - ]) - expect( - layout.projects.flatMap((project) => - project.worktrees.flatMap((worktree) => worktree.agents.map((agent) => agent.card.paneKey)) - ) - ).toEqual(['a', 'b', 'c', 'd']) - - for (const project of layout.projects) { - for (const worktree of project.worktrees) { - expect( - Math.hypot(worktree.x - project.x, worktree.y - project.y) + worktree.radius - ).toBeLessThan(project.radius) - for (const agent of worktree.agents) { - expect( - Math.hypot(agent.x - worktree.x, agent.y - worktree.y) + agent.radius - ).toBeLessThan(worktree.radius) - } - } - } - }) - - it('keeps exact worktree IDs on different hosts in separate rings', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'local', executionHostId: 'local' }), - card({ paneKey: 'remote', executionHostId: 'runtime:env-1' }) - ], - NOW - ) - - expect(layout.projects[0].worktrees).toHaveLength(2) - expect( - layout.projects[0].worktrees.map(({ worktreeId, executionHostId }) => ({ - worktreeId, - executionHostId - })) - ).toEqual( - expect.arrayContaining([ - { worktreeId: 'worktree-1', executionHostId: 'local' }, - { worktreeId: 'worktree-1', executionHostId: 'runtime:env-1' } - ]) - ) - }) - - it('preserves remote host presentation on its workspace ring', () => { - const layout = deriveAgentMapLayout( - [ - card({ - executionHostId: 'ssh:opaque-target', - hostKind: 'ssh', - hostLabel: 'openclaw' - }) - ], - NOW - ) - - expect(layout.projects[0].worktrees[0]).toMatchObject({ - executionHostId: 'ssh:opaque-target', - hostKind: 'ssh', - hostLabel: 'openclaw' - }) - }) - - it('reserves project and workspace header bands above dense ring contents', () => { - const layout = deriveAgentMapLayout( - Array.from({ length: 24 }, (_unused, index) => - card({ paneKey: `dense-${index.toString().padStart(2, '0')}` }) - ), - NOW - ) - const project = layout.projects[0] - const worktree = project.worktrees[0] - const projectTop = project.y - project.radius - const worktreeTop = worktree.y - worktree.radius - const agentTop = Math.min(...worktree.agents.map((agent) => agent.y - agent.radius)) - - expect(worktreeTop - projectTop).toBeGreaterThanOrEqual(AGENT_MAP_RING_HEADER_HEIGHT) - expect(agentTop - worktreeTop).toBeGreaterThanOrEqual(AGENT_MAP_RING_HEADER_HEIGHT) - }) - - it('keeps sparse project and workspace rings compact around their header bands', () => { - const single = deriveAgentMapLayout([card()], NOW).projects[0] - const four = deriveAgentMapLayout( - Array.from({ length: 4 }, (_unused, index) => card({ paneKey: `agent-${index}` })), - NOW - ).projects[0] - - expect(single.worktrees[0].radius).toBeLessThanOrEqual(72) - expect(single.radius).toBeLessThanOrEqual(104) - expect(four.worktrees[0].radius).toBeLessThanOrEqual(100) - }) - - it.each([ - ['single', [card()]], - [ - 'sparse', - [ - card({ paneKey: 'a', repoId: 'repo-a' }), - card({ paneKey: 'b', repoId: 'repo-b', worktreeId: 'worktree-2' }) - ] - ] - ])('centers %s project content within the minimum world', (_, cards) => { - const layout = deriveAgentMapLayout(cards, NOW) - const left = Math.min(...layout.projects.map((project) => project.x - project.radius)) - const right = Math.max(...layout.projects.map((project) => project.x + project.radius)) - const top = Math.min(...layout.projects.map((project) => project.y - project.radius)) - const bottom = Math.max(...layout.projects.map((project) => project.y + project.radius)) - - expect(layout.width).toBe(900) - expect(layout.height).toBe(560) - expect((left + right) / 2).toBeCloseTo(layout.width / 2) - expect((top + bottom) / 2).toBeCloseTo(layout.height / 2) - }) - - it('places spawned descendants beneath their direct parent inside the workspace', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'parent' }), - card({ paneKey: 'child-a', parentPaneKey: 'parent' }), - card({ paneKey: 'child-b', parentPaneKey: 'parent' }), - card({ paneKey: 'grandchild', parentPaneKey: 'child-a' }) - ], - NOW - ) - const worktree = layout.projects[0].worktrees[0] - const agents = new Map(worktree.agents.map((agent) => [agent.card.paneKey, agent])) - const parent = agents.get('parent')! - const childA = agents.get('child-a')! - const childB = agents.get('child-b')! - const grandchild = agents.get('grandchild')! - - expect(childA.y).toBeGreaterThan(parent.y) - expect(childB.y).toBeGreaterThan(parent.y) - expect(grandchild.y).toBeGreaterThan(childA.y) - for (const agent of worktree.agents) { - expect(Math.hypot(agent.x - worktree.x, agent.y - worktree.y) + agent.radius).toBeLessThan( - worktree.radius - ) - } - }) - - it('packs high-fanout spawned children into a compact deterministic cluster', () => { - const cards = [ - card({ paneKey: 'parent' }), - ...Array.from({ length: 29 }, (_, index) => - card({ - paneKey: `child-${index.toString().padStart(2, '0')}`, - parentPaneKey: 'parent' - }) - ) - ] - const first = deriveAgentMapLayout(cards, NOW).projects[0].worktrees[0] - const second = deriveAgentMapLayout(cards, NOW).projects[0].worktrees[0] - const parent = first.agents.find((agent) => agent.card.paneKey === 'parent')! - const children = first.agents.filter((agent) => agent.card.parentPaneKey === 'parent') - - expect(new Set(children.map((child) => child.y.toFixed(3))).size).toBeGreaterThan(4) - expect(children.every((child) => child.y > parent.y)).toBe(true) - expect( - Math.max(...children.map((child) => child.x)) - Math.min(...children.map((child) => child.x)) - ).toBeLessThan(500) - expect(first.radius).toBeLessThan(350) - for (const [index, child] of children.entries()) { - for (const other of children.slice(index + 1)) { - expect(Math.hypot(child.x - other.x, child.y - other.y)).toBeGreaterThanOrEqual( - AGENT_MAP_AGENT_RADIUS * 2 - ) - } - } - expect(first.agents.map(({ card, x, y }) => ({ paneKey: card.paneKey, x, y }))).toEqual( - second.agents.map(({ card, x, y }) => ({ paneKey: card.paneKey, x, y })) - ) - }) - - it('places visible child worktrees beneath their direct parent', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'parent', worktreeId: 'parent-worktree' }), - card({ - paneKey: 'child-a', - worktreeId: 'child-a-worktree', - parentWorktreeId: 'parent-worktree' - }), - card({ - paneKey: 'child-b', - worktreeId: 'child-b-worktree', - parentWorktreeId: 'parent-worktree' - }), - card({ - paneKey: 'grandchild', - worktreeId: 'grandchild-worktree', - parentWorktreeId: 'child-a-worktree' - }) - ], - NOW - ) - const worktrees = new Map( - layout.projects[0].worktrees.map((worktree) => [worktree.worktreeId, worktree]) - ) - const parent = worktrees.get('parent-worktree')! - const childA = worktrees.get('child-a-worktree')! - const childB = worktrees.get('child-b-worktree')! - const grandchild = worktrees.get('grandchild-worktree')! - - expect(childA.y).toBeGreaterThan(parent.y) - expect(childB.y).toBeGreaterThan(parent.y) - expect(grandchild.y).toBeGreaterThan(childA.y) - for (const [index, worktree] of layout.projects[0].worktrees.entries()) { - for (const other of layout.projects[0].worktrees.slice(index + 1)) { - expect(Math.hypot(worktree.x - other.x, worktree.y - other.y)).toBeGreaterThanOrEqual( - worktree.radius + other.radius + AGENT_MAP_WORKTREE_GAP - 0.001 - ) - } - } - }) - - it('clusters cross-worktree spawned agents without inventing workspace lineage', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'parent', worktreeId: 'parent-worktree' }), - card({ - paneKey: 'child', - worktreeId: 'child-worktree', - parentPaneKey: 'parent' - }), - card({ paneKey: 'unrelated', worktreeId: 'unrelated-worktree' }) - ], - NOW - ) - const worktrees = new Map( - layout.projects[0].worktrees.map((worktree) => [worktree.worktreeId, worktree]) - ) - const parent = worktrees.get('parent-worktree')! - const child = worktrees.get('child-worktree')! - - expect(child.clusterParentId).toBe(parent.id) - expect(child.parentId).toBeUndefined() - expect(child.y).toBeGreaterThan(parent.y) - expect(Math.hypot(child.x - parent.x, child.y - parent.y)).toBeLessThan( - child.radius + parent.radius + 100 - ) - }) - - it('clusters spawned agents whose parent is in another project', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'parent', repoId: 'repo-parent', worktreeId: 'parent-worktree' }), - card({ - paneKey: 'child', - repoId: 'repo-child', - worktreeId: 'child-worktree', - parentPaneKey: 'parent' - }), - card({ paneKey: 'unrelated', repoId: 'repo-unrelated', worktreeId: 'unrelated-worktree' }) - ], - NOW - ) - const projects = new Map(layout.projects.map((project) => [project.id, project])) - const parent = projects.get('repo-parent')! - const child = projects.get('repo-child')! - - expect(child.y).toBeGreaterThan(parent.y) - expect(Math.hypot(child.x - parent.x, child.y - parent.y)).toBeLessThan( - child.radius + parent.radius + 100 - ) - }) - - it('repacks cached geometry when a worktree parent changes', () => { - const cards = [ - card({ paneKey: 'parent-a', worktreeId: 'parent-a' }), - card({ paneKey: 'parent-b', worktreeId: 'parent-b' }), - card({ paneKey: 'child', worktreeId: 'child', parentWorktreeId: 'parent-a' }) - ] - const initial = updateAgentMapLayout(null, cards, NOW) - const updated = updateAgentMapLayout( - initial.cache, - cards.map((candidate) => - candidate.worktreeId === 'child' - ? { ...candidate, parentWorktreeId: 'parent-b' } - : candidate - ), - NOW - ) - - expect(updated.cache).not.toBe(initial.cache) - expect(updated.cache.packingGeneration).toBe(2) - }) - - it('repacks cached geometry when a spawn parent changes', () => { - const cards = [ - card({ paneKey: 'parent-a' }), - card({ paneKey: 'parent-b' }), - card({ paneKey: 'child', parentPaneKey: 'parent-a' }) - ] - const initial = updateAgentMapLayout(null, cards, NOW) - const updated = updateAgentMapLayout( - initial.cache, - cards.map((candidate) => - candidate.paneKey === 'child' ? { ...candidate, parentPaneKey: 'parent-b' } : candidate - ), - NOW - ) - - expect(updated.cache).not.toBe(initial.cache) - expect(updated.cache.packingGeneration).toBe(2) - expect(updated.layout.topologyKey).not.toBe(initial.layout.topologyKey) - }) - - it('keeps positions stable across routine status and duration updates', () => { - const initialCards = [ - card({ paneKey: 'a', worktreeId: 'wt-a' }), - card({ paneKey: 'b', worktreeId: 'wt-a', startedAt: NOW - 2 * 60_000 }), - card({ paneKey: 'c', worktreeId: 'wt-b' }) - ] - const initial = deriveAgentMapLayout(initialCards, NOW) - const updated = deriveAgentMapLayout( - [ - { ...initialCards[0], bucket: 'attention', dotState: 'waiting' }, - { ...initialCards[1], startedAt: NOW - 45 * 60_000 }, - initialCards[2] - ], - NOW - ) - const initialAgents = initial.projects[0].worktrees[0].agents - const updatedAgents = updated.projects[0].worktrees[0].agents - const initialWorktrees = initial.projects[0].worktrees - const updatedWorktrees = updated.projects[0].worktrees - - expect(updated.topologyKey).toBe(initial.topologyKey) - expect(updatedWorktrees.map(({ x, y }) => ({ x, y }))).toEqual( - initialWorktrees.map(({ x, y }) => ({ x, y })) - ) - expect(updatedAgents.map(({ x, y }) => ({ x, y }))).toEqual( - initialAgents.map(({ x, y }) => ({ x, y })) - ) - expect(updatedAgents[1].radius).toBe(initialAgents[1].radius) - }) - - it('reuses packed geometry while refreshing live card metadata', () => { - const initialCards = [ - card({ paneKey: 'a', worktreeId: 'wt-a' }), - card({ paneKey: 'b', worktreeId: 'wt-b' }) - ] - const initial = updateAgentMapLayout(null, initialCards, NOW) - packWorktrees.mockClear() - const updatedCards = [ - { ...initialCards[0], dotState: 'waiting' as const, worktreeName: 'Renamed' }, - { ...initialCards[1], startedAt: NOW - 60 * 60_000 } - ] - const updated = updateAgentMapLayout(initial.cache, updatedCards, NOW + 60_000) - - expect(updated.cache).toBe(initial.cache) - expect(packWorktrees).not.toHaveBeenCalled() - expect(initial.cache.geometry).toBe(initial.layout) - expect(updated.cache.packingGeneration).toBe(1) - expect(updated.layout.projects[0].worktrees[0].name).toBe('Renamed') - expect(updated.layout.projects[0].worktrees[0].statusCounts.waiting).toBe(1) - expect(updated.layout.projects[0].worktrees[1].agents[0].durationMinutes).toBe(61) - - const topologyChanged = updateAgentMapLayout( - updated.cache, - [...updatedCards, card({ paneKey: 'c', worktreeId: 'wt-c' })], - NOW - ) - expect(topologyChanged.cache).not.toBe(updated.cache) - expect(packWorktrees).toHaveBeenCalled() - expect(topologyChanged.cache.packingGeneration).toBe(2) - }) - - it('refreshes saved host labels without repacking geometry', () => { - const cards = [ - card({ - executionHostId: 'ssh:builder', - hostKind: 'ssh', - hostLabel: 'Builder' - }) - ] - const workspaces = [ - workspace({ - worktreeId: 'worktree-1', - executionHostId: 'ssh:builder', - hostKind: 'ssh', - hostLabel: 'Builder' - }) - ] - const initial = updateAgentMapLayout(null, cards, NOW, workspaces) - packWorktrees.mockClear() - - const updated = updateAgentMapLayout( - initial.cache, - cards.map((candidate) => ({ ...candidate, hostLabel: 'CI Builder' })), - NOW, - workspaces.map((candidate) => ({ ...candidate, hostLabel: 'CI Builder' })) - ) - - expect(updated.cache).toBe(initial.cache) - expect(updated.cache.packingGeneration).toBe(1) - expect(packWorktrees).not.toHaveBeenCalled() - expect(updated.layout.projects[0].worktrees[0].hostLabel).toBe('CI Builder') - }) - - it('packs worktree rings tightly without a square grid', () => { - const layout = deriveAgentMapLayout( - Array.from({ length: 36 }, (_, index) => - card({ - paneKey: `agent-${index}`, - worktreeId: `worktree-${index.toString().padStart(2, '0')}` - }) - ), - NOW - ) - const project = layout.projects[0] - - expect(project.radius).toBeLessThan(700) - expect( - new Set(project.worktrees.map((worktree) => worktree.x.toFixed(3))).size - ).toBeGreaterThan(12) - expect( - new Set(project.worktrees.map((worktree) => worktree.y.toFixed(3))).size - ).toBeGreaterThan(12) - for (const [index, worktree] of project.worktrees.entries()) { - for (const other of project.worktrees.slice(index + 1)) { - expect(Math.hypot(worktree.x - other.x, worktree.y - other.y)).toBeGreaterThanOrEqual( - worktree.radius + other.radius + AGENT_MAP_WORKTREE_GAP - 0.001 - ) - } - } - }) - - it('uses one agent size while retaining elapsed duration', () => { - const finished = card({ - startedAt: NOW - 30 * 60_000, - finishedAt: NOW - 20 * 60_000 - }) - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'just-started', startedAt: NOW }), - card({ paneKey: 'long-running', startedAt: NOW - 24 * 60 * 60_000 }) - ], - NOW - ) - - expect(layout.projects[0].worktrees[0].agents.map((agent) => agent.radius)).toEqual([ - AGENT_MAP_AGENT_RADIUS, - AGENT_MAP_AGENT_RADIUS - ]) - expect(agentMapDurationMinutes(finished, NOW)).toBe(10) - }) - - it('maps acknowledged completions to done-seen independently from elapsed time', () => { - for (const dotState of ['working', 'blocked', 'waiting', 'idle'] as const) { - expect(agentMapNodeStatus(card({ dotState }))).toBe(dotState) - } - expect(agentMapNodeStatus(card({ dotState: 'working', workingMode: 'monitoring' }))).toBe( - 'monitoring' - ) - expect(agentMapNodeStatus(card({ dotState: 'done', unseen: true }))).toBe('done') - expect(agentMapNodeStatus(card({ dotState: 'done', unseen: false }))).toBe('done-seen') - const shortBlocked = card({ dotState: 'blocked', startedAt: NOW - 60_000 }) - const longBlocked = card({ dotState: 'blocked', startedAt: NOW - 45 * 60_000 }) - expect(agentMapNodeStatus(shortBlocked)).toBe(agentMapNodeStatus(longBlocked)) - }) - - it('marks only operationally quiet workspaces for semantic aggregation', () => { - const quiet = deriveAgentMapLayout( - Array.from({ length: 5 }, (_, index) => - card({ paneKey: `quiet-${index}`, dotState: index === 0 ? 'done' : 'idle' }) - ), - NOW - ) - const active = deriveAgentMapLayout([card({ paneKey: 'active', dotState: 'working' })], NOW) - const unseenDone = deriveAgentMapLayout( - Array.from({ length: 5 }, (_, index) => - card({ paneKey: `done-${index}`, dotState: 'done', unseen: true }) - ), - NOW - ) - - expect(quiet.projects[0].worktrees[0].quiet).toBe(true) - expect(active.projects[0].worktrees[0].quiet).toBe(false) - expect(unseenDone.projects[0].worktrees[0].quiet).toBe(false) - }) - - it('places hundreds of agents in one workspace without overlap', () => { - const layout = deriveAgentMapLayout( - Array.from({ length: 400 }, (_, index) => card({ paneKey: `agent-${index}` })), - NOW - ) - const worktree = layout.projects[0].worktrees[0] - - expect(worktree.agents).toHaveLength(400) - let minimumDistance = Number.POSITIVE_INFINITY - for (const [index, agent] of worktree.agents.entries()) { - expect(Math.hypot(agent.x - worktree.x, agent.y - worktree.y) + agent.radius).toBeLessThan( - worktree.radius - ) - for (const other of worktree.agents.slice(index + 1)) { - minimumDistance = Math.min( - minimumDistance, - Math.hypot(agent.x - other.x, agent.y - other.y) - ) - } - } - expect(minimumDistance).toBeGreaterThanOrEqual(AGENT_MAP_AGENT_RADIUS * 2) - }) - - it('keeps deeply nested spawn lineage finite without recursive stack growth', () => { - const layout = deriveAgentMapLayout( - Array.from({ length: 5_000 }, (_, index) => - card({ - paneKey: `agent-${index.toString().padStart(4, '0')}`, - parentPaneKey: - index === 0 ? undefined : `agent-${(index - 1).toString().padStart(4, '0')}` - }) - ), - NOW - ) - const worktree = layout.projects[0].worktrees[0] - const agents = new Map(worktree.agents.map((agent) => [agent.card.paneKey, agent])) - - expect(worktree.agents).toHaveLength(5_000) - expect(Number.isFinite(worktree.radius)).toBe(true) - expect(worktree.radius).toBeLessThan(1_000_000) - for (const agent of worktree.agents) { - if (agent.card.parentPaneKey) { - expect(agent.y).toBeGreaterThan(agents.get(agent.card.parentPaneKey)!.y) - } - } - }) - - it('wraps very large spawn fanout without overlap', () => { - const layout = deriveAgentMapLayout( - [ - card({ paneKey: 'parent' }), - ...Array.from({ length: 300 }, (_, index) => - card({ paneKey: `child-${index}`, parentPaneKey: 'parent' }) - ) - ], - NOW - ) - const worktree = layout.projects[0].worktrees[0] - const parent = worktree.agents.find((agent) => agent.card.paneKey === 'parent')! - const children = worktree.agents.filter((agent) => agent.card.parentPaneKey === 'parent') - let minimumDistance = Number.POSITIVE_INFINITY - - expect(children.every((child) => child.y > parent.y)).toBe(true) - expect(worktree.radius).toBeLessThan(1_000) - for (const [index, child] of children.entries()) { - for (const other of children.slice(index + 1)) { - minimumDistance = Math.min( - minimumDistance, - Math.hypot(child.x - other.x, child.y - other.y) - ) - } - } - expect(minimumDistance).toBeGreaterThanOrEqual(AGENT_MAP_AGENT_RADIUS * 2) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-layout.ts b/src/renderer/src/components/dashboard-popout/agent-map-layout.ts deleted file mode 100644 index 941b4613f35..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-layout.ts +++ /dev/null @@ -1,325 +0,0 @@ -import type * as DashboardSnapshotTypes from '../../../../shared/dashboard-snapshot' -import { placeAgentMapAgents } from './agent-map-agent-placement' -import { layoutAgentMapLineage } from './agent-map-lineage-layout' -import { refreshAgentMapMetadata } from './agent-map-layout-metadata' -import { - agentMapDurationMinutes, - agentMapNodeStatus, - agentMapQuietCount, - emptyAgentMapStatusCounts, - type AgentMapNodeStatus, - type AgentMapStatusCounts -} from './agent-map-node-metadata' -import { placeAgentMapProjects } from './agent-map-project-placement' -import { selectAgentMapSpawnParentContainer } from './agent-map-spawn-clustering' -import { - agentMapCardTopologyIdentity, - agentMapWorkspaceIdentity, - agentMapWorkspaceTopologyIdentity, - agentMapWorktreeIdentity, - agentMapWorktreeIdentityFromParts -} from './agent-map-workspace-identity' -import { layoutAgentMapWorktreeLineage } from './agent-map-worktree-lineage-layout' -import { agentMapWorktreeHost } from './agent-map-worktree-host' - -type DashboardCard = DashboardSnapshotTypes.DashboardCard -type DashboardWorkspace = DashboardSnapshotTypes.DashboardWorkspace - -export { AGENT_MAP_WORKTREE_GAP } from './agent-map-worktree-packing' -export { agentMapDurationMinutes, agentMapNodeStatus } from './agent-map-node-metadata' - -export const AGENT_MAP_AGENT_RADIUS = 20 -export const AGENT_MAP_AGGREGATE_ZOOM = 1.15 -export const AGENT_MAP_RING_HEADER_HEIGHT = 40 - -/** - * Every map node is a top-level pane agent — in-process subagent rows are folded - * into their parent card's `subagents` roster and never become cards themselves - * (`build-dashboard-snapshot.ts`). So an edge between two nodes is always an - * orchestration dispatch, and there is no second relation to distinguish. - */ -export const AGENT_MAP_LINEAGE_RELATION = 'orchestration' - -export type AgentMapMotionState = 'entering' | 'exiting' - -const PROJECT_PADDING = 12 -const WORLD_MARGIN = 32 -const RING_CONTENT_OFFSET = AGENT_MAP_RING_HEADER_HEIGHT / 2 - -export type AgentMapAgentNode = { - card: DashboardCard - x: number - y: number - radius: number - durationMinutes: number - status: AgentMapNodeStatus - motionState?: AgentMapMotionState -} - -export type AgentMapWorktreeRing = { - id: string - parentId?: string - /** Layout-only parent chosen from agent spawn edges; does not imply workspace lineage. */ - clusterParentId?: string - worktreeId: string - executionHostId: DashboardCard['executionHostId'] - hostKind?: DashboardCard['hostKind'] - hostLabel?: string - name: string - workspaceKind: NonNullable - x: number - y: number - radius: number - agents: AgentMapAgentNode[] - statusCounts: AgentMapStatusCounts - quiet: boolean - motionState?: AgentMapMotionState -} - -export type AgentMapProjectRing = { - id: string - name: string - x: number - y: number - radius: number - worktrees: AgentMapWorktreeRing[] - agentCount: number - motionState?: AgentMapMotionState -} - -export type AgentMapLayout = { - projects: AgentMapProjectRing[] - width: number - height: number - topologyKey: string -} - -export type AgentMapLayoutCache = { - topologyKey: string - geometry: AgentMapLayout - packingGeneration: number -} - -type LocalWorktree = Omit & { x: number; y: number } -type LocalProject = Omit & { - x: number - y: number - clusterParentId?: string - worktrees: LocalWorktree[] -} - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -export function agentMapTopologyKey( - cards: DashboardCard[], - workspaces: DashboardWorkspace[] = [] -): string { - return [ - ...cards.map((card) => `a:${agentMapCardTopologyIdentity(card)}`), - ...workspaces.map((workspace) => `w:${agentMapWorkspaceTopologyIdentity(workspace)}`) - ] - .sort(compareStable) - .join('|') -} - -export function shouldAggregateAgentMapWorktree( - worktree: AgentMapWorktreeRing, - zoom: number, - allowAggregation = true -): boolean { - return ( - allowAggregation && - zoom < AGENT_MAP_AGGREGATE_ZOOM && - worktree.quiet && - worktree.agents.length > 3 - ) -} - -function worktreeRadius(agentCount: number): number { - return Math.max( - 52, - 24 + Math.ceil(Math.sqrt(Math.max(1, agentCount))) * (AGENT_MAP_AGENT_RADIUS + 8) - ) -} - -function buildLocalWorktree( - id: string, - cards: DashboardCard[], - now: number, - workspace?: DashboardWorkspace -): LocalWorktree { - const lineageLayout = layoutAgentMapLineage(cards, AGENT_MAP_AGENT_RADIUS) - const contentRadius = lineageLayout?.radius ?? worktreeRadius(cards.length) - const radius = contentRadius + RING_CONTENT_OFFSET - const statusCounts = emptyAgentMapStatusCounts() - for (const card of cards) { - statusCounts[agentMapNodeStatus(card)] += 1 - } - const host = agentMapWorktreeHost(cards, workspace) - const executionHostId = host.executionHostId - const parentWorktreeId = workspace?.parentWorktreeId ?? cards[0]?.parentWorktreeId - return { - id, - parentId: parentWorktreeId - ? agentMapWorktreeIdentityFromParts(parentWorktreeId, executionHostId) - : undefined, - worktreeId: workspace?.worktreeId ?? cards[0]?.worktreeId ?? id, - ...host, - name: workspace?.worktreeName ?? cards[0]?.worktreeName ?? id, - workspaceKind: workspace?.workspaceKind ?? cards[0]?.workspaceKind ?? 'worktree', - x: 0, - y: 0, - radius, - agents: ( - lineageLayout?.agents.map(({ card, x, y }) => ({ - card, - x, - y, - radius: AGENT_MAP_AGENT_RADIUS, - durationMinutes: agentMapDurationMinutes(card, now), - status: agentMapNodeStatus(card) - })) ?? - placeAgentMapAgents({ - worktreeId: id, - cards, - radius: contentRadius, - agentRadius: AGENT_MAP_AGENT_RADIUS, - now - }) - ).map((agent) => ({ ...agent, y: agent.y + RING_CONTENT_OFFSET })), - statusCounts, - quiet: agentMapQuietCount(statusCounts) === cards.length - } -} - -function buildLocalProject( - id: string, - cards: DashboardCard[], - workspaces: DashboardWorkspace[], - cardsByPaneKey: ReadonlyMap, - now: number -): LocalProject { - const byWorktree = new Map() - for (const card of cards) { - const identity = agentMapWorktreeIdentity(card) - const current = byWorktree.get(identity) - if (current) { - current.push(card) - } else { - byWorktree.set(identity, [card]) - } - } - const workspacesById = new Map( - workspaces.map((workspace) => [agentMapWorkspaceIdentity(workspace), workspace]) - ) - for (const workspaceId of workspacesById.keys()) { - if (!byWorktree.has(workspaceId)) { - byWorktree.set(workspaceId, []) - } - } - const positionedWorktrees = layoutAgentMapWorktreeLineage( - [...byWorktree.entries()] - .sort(([a], [b]) => compareStable(a, b)) - .map(([worktreeId, worktreeCards]) => ({ - ...buildLocalWorktree(worktreeId, worktreeCards, now, workspacesById.get(worktreeId)), - clusterParentId: selectAgentMapSpawnParentContainer( - worktreeCards, - cardsByPaneKey, - agentMapWorktreeIdentity - ) - })) - ) - const contentRadius = Math.max( - 84, - ...positionedWorktrees.map( - (worktree) => Math.hypot(worktree.x, worktree.y) + worktree.radius + PROJECT_PADDING - ) - ) - const worktrees = positionedWorktrees.map((worktree) => ({ - ...worktree, - y: worktree.y + RING_CONTENT_OFFSET - })) - return { - id, - name: cards[0]?.repoName ?? workspaces[0]?.repoName ?? id, - x: 0, - y: 0, - clusterParentId: selectAgentMapSpawnParentContainer( - cards, - cardsByPaneKey, - (card) => card.repoId - ), - radius: contentRadius + RING_CONTENT_OFFSET, - worktrees, - agentCount: cards.length - } -} - -export function deriveAgentMapLayout( - cards: DashboardCard[], - now: number, - workspaces: DashboardWorkspace[] = [] -): AgentMapLayout { - const topologyKey = agentMapTopologyKey(cards, workspaces) - if (cards.length === 0 && workspaces.length === 0) { - return { projects: [], width: 900, height: 560, topologyKey } - } - const byProject = new Map() - for (const card of cards) { - const current = byProject.get(card.repoId) ?? { cards: [], workspaces: [] } - current.cards.push(card) - byProject.set(card.repoId, current) - } - for (const workspace of workspaces) { - const current = byProject.get(workspace.repoId) ?? { cards: [], workspaces: [] } - current.workspaces.push(workspace) - byProject.set(workspace.repoId, current) - } - const cardsByPaneKey = new Map(cards.map((card) => [card.paneKey, card])) - const localProjects = [...byProject.entries()] - .sort(([a], [b]) => compareStable(a, b)) - .map(([projectId, project]) => - buildLocalProject(projectId, project.cards, project.workspaces, cardsByPaneKey, now) - ) - const framed = placeAgentMapProjects(localProjects, 900, 560, WORLD_MARGIN) - const projects = framed.projects.map((project): AgentMapProjectRing => { - return { - ...project, - worktrees: project.worktrees.map((worktree) => ({ - ...worktree, - x: project.x + worktree.x, - y: project.y + worktree.y, - agents: worktree.agents.map((agent) => ({ - ...agent, - x: project.x + worktree.x + agent.x, - y: project.y + worktree.y + agent.y - })) - })) - } - }) - return { projects, width: framed.width, height: framed.height, topologyKey } -} - -export function updateAgentMapLayout( - cache: AgentMapLayoutCache | null, - cards: DashboardCard[], - now: number, - workspaces: DashboardWorkspace[] = [] -): { cache: AgentMapLayoutCache; layout: AgentMapLayout } { - const topologyKey = agentMapTopologyKey(cards, workspaces) - if (!cache || cache.topologyKey !== topologyKey) { - const geometry = deriveAgentMapLayout(cards, now, workspaces) - return { - cache: { - topologyKey, - geometry, - packingGeneration: (cache?.packingGeneration ?? 0) + 1 - }, - layout: geometry - } - } - const layout = refreshAgentMapMetadata(cache.geometry, cards, workspaces, now) - return { cache, layout } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts deleted file mode 100644 index 5b081e5dbc8..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.test.ts +++ /dev/null @@ -1,136 +0,0 @@ -import { afterEach, describe, expect, it, vi } from 'vitest' -import { - agentMapDirectLineageChevronPath, - agentMapLineageChevronPath -} from './agent-map-lineage-chevron-path' - -afterEach(() => { - vi.restoreAllMocks() -}) - -describe('agentMapDirectLineageChevronPath', () => { - it('runs every chevron directly from the parent toward the child', () => { - const path = agentMapDirectLineageChevronPath( - { x: 0, y: 0, radius: 4 }, - { x: 40, y: 40, radius: 4 } - ) - const tips = [...path.matchAll(/M [-\d.]+ [-\d.]+ L ([-\d.]+) ([-\d.]+) L/g)].map((match) => ({ - x: Number(match[1]), - y: Number(match[2]) - })) - - expect(tips.length).toBeGreaterThan(1) - expect(tips.every((tip) => tip.x === tip.y)).toBe(true) - expect(tips.at(-1)?.x).toBeGreaterThan(tips[0].x) - }) - - it('trims the path to unequal node radii', () => { - expect( - agentMapDirectLineageChevronPath({ x: 0, y: 0, radius: 2 }, { x: 20, y: 0, radius: 6 }) - ).toBe('M 4.5 2.25 L 8 0 L 4.5 -2.25') - }) - - it('does not reverse direction when node boundaries overlap', () => { - expect( - agentMapDirectLineageChevronPath({ x: 0, y: 0, radius: 10 }, { x: 15, y: 0, radius: 10 }) - ).toBe('M 0 0') - }) - - it('omits a chevron that cannot fit between trimmed node boundaries', () => { - expect( - agentMapDirectLineageChevronPath({ x: 0, y: 0, radius: 10 }, { x: 25, y: 0, radius: 10 }) - ).toBe('M 10 0') - }) - - it('caps decorative chevrons on long links', () => { - const path = agentMapDirectLineageChevronPath( - { x: 0, y: 0, radius: 0 }, - { x: 10_000, y: 0, radius: 0 } - ) - - expect(path.match(/\bM\b/g)).toHaveLength(256) - }) - - it('keeps the same chevron pitch however far apart the nodes are', () => { - const pitches = [60, 200, 900].map((distance) => { - const tips = [ - ...agentMapDirectLineageChevronPath( - { x: 0, y: 0, radius: 0 }, - { x: distance, y: 0, radius: 0 } - ).matchAll(/M [-\d.]+ [-\d.]+ L ([-\d.]+) [-\d.]+ L/g) - ].map((match) => Number(match[1])) - - expect(tips.length).toBeGreaterThan(2) - return tips.slice(1).map((tip, index) => tip - tips[index]) - }) - - expect(pitches.flat().every((pitch) => pitch === 8)).toBe(true) - }) - - it('keeps fixed pitch across degenerate and multi-segment paths', () => { - const path = agentMapLineageChevronPath([ - { x: 0, y: 0 }, - { x: 0, y: 0 }, - { x: 9, y: 0 }, - { x: 9, y: 23 }, - { x: 30, y: 23 } - ]) - const tips = [...path.matchAll(/M [-\d.]+ [-\d.]+ L ([-\d.]+) ([-\d.]+) L/g)].map((match) => ({ - x: Number(match[1]), - y: Number(match[2]) - })) - - expect(tips).toEqual([ - { x: 6.5, y: 0 }, - { x: 9, y: 5.5 }, - { x: 9, y: 13.5 }, - { x: 9, y: 21.5 }, - { x: 15.5, y: 23 }, - { x: 23.5, y: 23 } - ]) - }) - - it('serves an unmoved edge from cache instead of rebuilding it', async () => { - vi.resetModules() - const { agentMapDirectLineageChevronPath: cachedPath } = - await import('./agent-map-lineage-chevron-path') - const parent = { x: 3, y: 5, radius: 20 } - const child = { x: 903, y: 5, radius: 20 } - const hypot = vi.spyOn(Math, 'hypot') - const first = cachedPath(parent, child) - - expect(hypot).toHaveBeenCalled() - hypot.mockClear() - const second = cachedPath({ ...parent }, { ...child }) - - expect(hypot).not.toHaveBeenCalled() - expect(second).toBe(first) - }) - - it('keeps 512 recently used paths and evicts the least-recently-used path', async () => { - vi.resetModules() - const { agentMapDirectLineageChevronPath: cachedPath } = - await import('./agent-map-lineage-chevron-path') - const edge = (x: number) => - [ - { x, y: 1_000, radius: 2 }, - { x, y: 1_200, radius: 2 } - ] as const - for (let i = 0; i < 512; i += 1) { - cachedPath(...edge(i)) - } - - const hypot = vi.spyOn(Math, 'hypot') - cachedPath(...edge(0)) - expect(hypot).not.toHaveBeenCalled() - - cachedPath(...edge(512)) - hypot.mockClear() - cachedPath(...edge(1)) - expect(hypot).toHaveBeenCalled() - - hypot.mockClear() - cachedPath(...edge(0)) - expect(hypot).not.toHaveBeenCalled() - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.ts b/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.ts deleted file mode 100644 index 2a87f301e08..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-lineage-chevron-path.ts +++ /dev/null @@ -1,125 +0,0 @@ -export type AgentMapLineagePoint = { - x: number - y: number -} - -type AgentMapLineageNode = AgentMapLineagePoint & { - radius: number -} - -type LineageSegment = { - start: AgentMapLineagePoint - unitX: number - unitY: number - length: number -} - -const CHEVRON_SPACING = 8 -const CHEVRON_DEPTH = 3.5 -const CHEVRON_HALF_WIDTH = 2.25 -const MAX_CHEVRONS_PER_PATH = 256 - -function svgNumber(value: number): number { - return Math.round(value * 1_000) / 1_000 -} - -export function agentMapLineageChevronPath(points: AgentMapLineagePoint[]): string { - const segments: LineageSegment[] = [] - let totalLength = 0 - for (let index = 1; index < points.length; index += 1) { - const start = points[index - 1] - const end = points[index] - const dx = end.x - start.x - const dy = end.y - start.y - const length = Math.hypot(dx, dy) - if (length === 0) { - continue - } - segments.push({ start, unitX: dx / length, unitY: dy / length, length }) - totalLength += length - } - if (segments.length === 0 || totalLength < CHEVRON_DEPTH * 2) { - return points[0] ? `M ${svgNumber(points[0].x)} ${svgNumber(points[0].y)}` : '' - } - - const chevronCount = Math.min( - MAX_CHEVRONS_PER_PATH, - Math.max(1, Math.floor(totalLength / CHEVRON_SPACING)) - ) - // Fixed pitch, centered run: spacing must read identically on a short link and a long - // one. Dividing the length by the count instead stretched the gaps as nodes moved apart. - const firstDistance = (totalLength - (chevronCount - 1) * CHEVRON_SPACING) / 2 - const commands: string[] = [] - let segmentIndex = 0 - let segmentStartDistance = 0 - for (let index = 0; index < chevronCount; index += 1) { - const distance = firstDistance + index * CHEVRON_SPACING - while ( - segmentIndex < segments.length - 1 && - distance > segmentStartDistance + segments[segmentIndex].length - ) { - segmentStartDistance += segments[segmentIndex].length - segmentIndex += 1 - } - const segment = segments[segmentIndex] - const offset = distance - segmentStartDistance - const tipX = segment.start.x + segment.unitX * offset - const tipY = segment.start.y + segment.unitY * offset - const backX = tipX - segment.unitX * CHEVRON_DEPTH - const backY = tipY - segment.unitY * CHEVRON_DEPTH - const perpendicularX = -segment.unitY * CHEVRON_HALF_WIDTH - const perpendicularY = segment.unitX * CHEVRON_HALF_WIDTH - commands.push( - `M ${svgNumber(backX + perpendicularX)} ${svgNumber(backY + perpendicularY)} L ${svgNumber(tipX)} ${svgNumber(tipY)} L ${svgNumber(backX - perpendicularX)} ${svgNumber(backY - perpendicularY)}` - ) - } - return commands.join(' ') -} - -function buildDirectLineageChevronPath( - parent: AgentMapLineageNode, - child: AgentMapLineageNode -): string { - const dx = child.x - parent.x - const dy = child.y - parent.y - const distance = Math.hypot(dx, dy) - if (distance <= parent.radius + child.radius) { - return agentMapLineageChevronPath([parent]) - } - const unitX = dx / distance - const unitY = dy / distance - return agentMapLineageChevronPath([ - { x: parent.x + unitX * parent.radius, y: parent.y + unitY * parent.radius }, - { x: child.x - unitX * child.radius, y: child.y - unitY * child.radius } - ]) -} - -// Keyed on world coordinates, which a zoom gesture never changes — so the scene's -// per-frame rerender reuses every path instead of rebuilding kilobytes of `d` at -// 60fps. Only enter/exit motion, which really does move nodes, misses. LRU-bounded -// because a removed agent's key is never revisited. -const MAX_CACHED_LINEAGE_PATHS = 512 -const lineagePathCache = new Map() - -export function agentMapDirectLineageChevronPath( - parent: AgentMapLineageNode, - child: AgentMapLineageNode -): string { - const key = `${parent.x},${parent.y},${parent.radius},${child.x},${child.y},${child.radius}` - const cached = lineagePathCache.get(key) - if (cached !== undefined) { - lineagePathCache.delete(key) - lineagePathCache.set(key, cached) - return cached - } - const path = buildDirectLineageChevronPath(parent, child) - lineagePathCache.set(key, path) - while (lineagePathCache.size > MAX_CACHED_LINEAGE_PATHS) { - const oldest = lineagePathCache.keys().next().value - if (oldest === undefined) { - break - } - lineagePathCache.delete(oldest) - } - return path -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-lineage-layout.ts b/src/renderer/src/components/dashboard-popout/agent-map-lineage-layout.ts deleted file mode 100644 index f5d3665c483..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-lineage-layout.ts +++ /dev/null @@ -1,224 +0,0 @@ -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { packAgentMapWorktrees } from './agent-map-worktree-packing' - -const HORIZONTAL_GAP = 54 -const VERTICAL_GAP = 58 -const FAMILY_PADDING = 8 -const WORKTREE_PADDING = 6 -const COMPACT_FANOUT_THRESHOLD = 12 -const MAX_EXACT_LINEAGE_AGENTS = 256 - -export type AgentMapLineagePosition = { - card: DashboardCard - x: number - y: number -} - -type AgentMapAgentFamily = { - id: string - x: number - y: number - radius: number - agents: AgentMapLineagePosition[] -} - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -function encloseFamily( - id: string, - agents: AgentMapLineagePosition[], - nodeRadius: number -): AgentMapAgentFamily { - let left = Number.POSITIVE_INFINITY - let right = Number.NEGATIVE_INFINITY - let top = Number.POSITIVE_INFINITY - let bottom = Number.NEGATIVE_INFINITY - for (const agent of agents) { - left = Math.min(left, agent.x - nodeRadius) - right = Math.max(right, agent.x + nodeRadius) - top = Math.min(top, agent.y - nodeRadius) - bottom = Math.max(bottom, agent.y + nodeRadius) - } - const centerX = (left + right) / 2 - const centerY = (top + bottom) / 2 - let radius = 0 - for (const agent of agents) { - agent.x -= centerX - agent.y -= centerY - radius = Math.max(radius, Math.hypot(agent.x, agent.y) + nodeRadius + FAMILY_PADDING) - } - return { id, x: 0, y: 0, radius, agents } -} - -function buildCompactFanoutFamily( - root: DashboardCard, - children: DashboardCard[], - nodeRadius: number, - emitted: Set -): AgentMapAgentFamily { - const columns = Math.ceil(Math.sqrt(children.length)) - const width = (Math.min(columns, children.length) - 1) * HORIZONTAL_GAP - const agents: AgentMapLineagePosition[] = [{ card: root, x: 0, y: 0 }] - emitted.add(root.paneKey) - for (const [index, child] of children.entries()) { - emitted.add(child.paneKey) - agents.push({ - card: child, - x: (index % columns) * HORIZONTAL_GAP - width / 2, - y: (Math.floor(index / columns) + 1) * VERTICAL_GAP - }) - } - return encloseFamily(root.paneKey, agents, nodeRadius) -} - -function buildFamily( - root: DashboardCard, - childrenByParent: ReadonlyMap, - nodeRadius: number, - emitted: Set -): AgentMapAgentFamily { - const agents: AgentMapLineagePosition[] = [] - let leafIndex = 0 - const rootChildren = (childrenByParent.get(root.paneKey) ?? []).filter( - (child) => !emitted.has(child.paneKey) - ) - if ( - rootChildren.length >= COMPACT_FANOUT_THRESHOLD && - rootChildren.every((child) => (childrenByParent.get(child.paneKey) ?? []).length === 0) - ) { - return buildCompactFanoutFamily(root, rootChildren, nodeRadius, emitted) - } - - const placeSubtree = ( - card: DashboardCard, - depth: number, - ancestors: ReadonlySet - ): number => { - if (ancestors.has(card.paneKey) || emitted.has(card.paneKey)) { - return leafIndex++ * HORIZONTAL_GAP - } - emitted.add(card.paneKey) - const nextAncestors = new Set(ancestors) - nextAncestors.add(card.paneKey) - const children = (childrenByParent.get(card.paneKey) ?? []).filter( - (child) => !nextAncestors.has(child.paneKey) && !emitted.has(child.paneKey) - ) - const childXs = children.map((child) => placeSubtree(child, depth + 1, nextAncestors)) - const x = - childXs.length > 0 - ? (Math.min(...childXs) + Math.max(...childXs)) / 2 - : leafIndex++ * HORIZONTAL_GAP - agents.push({ card, x, y: depth * VERTICAL_GAP }) - return x - } - - placeSubtree(root, 0, new Set()) - return encloseFamily(root.paneKey, agents, nodeRadius) -} - -function layoutBoundedLineage( - sorted: DashboardCard[], - childrenByParent: ReadonlyMap, - childPaneKeys: ReadonlySet, - nodeRadius: number -): { agents: AgentMapLineagePosition[]; radius: number } { - const levels: DashboardCard[][] = [] - const emitted = new Set() - const roots = sorted.filter((card) => !childPaneKeys.has(card.paneKey)) - for (const seed of [...roots, ...sorted]) { - if (emitted.has(seed.paneKey)) { - continue - } - const stack = [{ card: seed, depth: 0 }] - while (stack.length > 0) { - const entry = stack.pop()! - if (emitted.has(entry.card.paneKey)) { - continue - } - emitted.add(entry.card.paneKey) - const level = levels[entry.depth] ?? [] - levels[entry.depth] = level - level.push(entry.card) - const children = childrenByParent.get(entry.card.paneKey) ?? [] - for (let index = children.length - 1; index >= 0; index -= 1) { - if (!emitted.has(children[index].paneKey)) { - stack.push({ card: children[index], depth: entry.depth + 1 }) - } - } - } - } - - const agents: AgentMapLineagePosition[] = [] - let rowIndex = 0 - for (const level of levels) { - const columns = Math.ceil(Math.sqrt(level.length)) - for (let rowStart = 0; rowStart < level.length; rowStart += columns) { - const row = level.slice(rowStart, rowStart + columns) - const width = (row.length - 1) * HORIZONTAL_GAP - for (const [index, card] of row.entries()) { - agents.push({ card, x: index * HORIZONTAL_GAP - width / 2, y: rowIndex * VERTICAL_GAP }) - } - rowIndex += 1 - } - } - const family = encloseFamily(sorted[0].paneKey, agents, nodeRadius) - family.agents.sort((a, b) => compareStable(a.card.paneKey, b.card.paneKey)) - return { agents: family.agents, radius: Math.max(52, family.radius + WORKTREE_PADDING) } -} - -export function layoutAgentMapLineage( - cards: DashboardCard[], - nodeRadius: number -): { agents: AgentMapLineagePosition[]; radius: number } | null { - const sorted = [...cards].sort((a, b) => compareStable(a.paneKey, b.paneKey)) - const cardsByPaneKey = new Map(sorted.map((card) => [card.paneKey, card])) - const childrenByParent = new Map() - const childPaneKeys = new Set() - - for (const card of sorted) { - const parentPaneKey = card.parentPaneKey - if (!parentPaneKey || parentPaneKey === card.paneKey || !cardsByPaneKey.has(parentPaneKey)) { - continue - } - childPaneKeys.add(card.paneKey) - childrenByParent.set(parentPaneKey, [...(childrenByParent.get(parentPaneKey) ?? []), card]) - } - if (childPaneKeys.size === 0) { - return null - } - if (sorted.length > MAX_EXACT_LINEAGE_AGENTS) { - return layoutBoundedLineage(sorted, childrenByParent, childPaneKeys, nodeRadius) - } - - const emitted = new Set() - const roots = sorted.filter((card) => !childPaneKeys.has(card.paneKey)) - const families: AgentMapAgentFamily[] = [] - for (const root of roots) { - if (!emitted.has(root.paneKey)) { - families.push(buildFamily(root, childrenByParent, nodeRadius, emitted)) - } - } - for (const card of sorted) { - if (!emitted.has(card.paneKey)) { - families.push(buildFamily(card, childrenByParent, nodeRadius, emitted)) - } - } - const packed = packAgentMapWorktrees(families) - return { - agents: packed - .flatMap((family) => - family.agents.map((agent) => ({ - ...agent, - x: family.x + agent.x, - y: family.y + agent.y - })) - ) - .sort((a, b) => compareStable(a.card.paneKey, b.card.paneKey)), - radius: Math.max( - 52, - ...packed.map((family) => Math.hypot(family.x, family.y) + family.radius + WORKTREE_PADDING) - ) - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts deleted file mode 100644 index d8c4baf6edc..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-navigation.test.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { describe, expect, it } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { deriveAgentMapLayout } from './agent-map-layout' -import { navigableAgentMapAgents } from './agent-map-navigation' - -const NOW = 2_000_000_000 - -function card(paneKey: string, worktreeId: string, idle: boolean): DashboardCard { - return { - paneKey, - ptyId: `pty-${paneKey}`, - agentType: 'codex', - bucket: idle ? 'idle' : 'working', - dotState: idle ? 'idle' : 'working', - task: '', - repoId: 'repo-1', - worktreeId, - tabId: `tab-${paneKey}`, - leafId: `leaf-${paneKey}`, - repoName: 'Orca', - worktreeName: worktreeId, - startedAt: NOW - 60_000, - finishedAt: idle ? NOW - 30_000 : null, - stateChangedAt: NOW - 30_000, - unseen: false - } -} - -describe('agent map keyboard navigation visibility', () => { - it('excludes every aggregated worktree and restores a selected quiet worktree', () => { - const quietCards = Array.from({ length: 5 }, (_, index) => - card(`quiet-${index}`, 'quiet-worktree', true) - ) - const active = card('active', 'active-worktree', false) - const layout = deriveAgentMapLayout([...quietCards, active], NOW) - - expect( - navigableAgentMapAgents(layout, 1, true, null).map((agent) => agent.card.paneKey) - ).toEqual(['active']) - expect(navigableAgentMapAgents(layout, 1, true, 'quiet-0')).toHaveLength(6) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-navigation.ts b/src/renderer/src/components/dashboard-popout/agent-map-navigation.ts deleted file mode 100644 index ae3cfdbea2b..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-navigation.ts +++ /dev/null @@ -1,53 +0,0 @@ -import type { AgentMapAgentNode, AgentMapLayout } from './agent-map-layout' -import { shouldAggregateAgentMapWorktree } from './agent-map-layout' - -type Direction = { x: number; y: number } - -export function agentMapAgents(layout: AgentMapLayout): AgentMapAgentNode[] { - return layout.projects.flatMap((project) => - project.worktrees.flatMap((worktree) => worktree.agents) - ) -} - -export function navigableAgentMapAgents( - layout: AgentMapLayout, - zoom: number, - allowAggregation: boolean, - selectedPaneKey: string | null -): AgentMapAgentNode[] { - return layout.projects.flatMap((project) => - project.worktrees.flatMap((worktree) => { - const containsSelection = worktree.agents.some( - (agent) => agent.card.paneKey === selectedPaneKey - ) - return !containsSelection && shouldAggregateAgentMapWorktree(worktree, zoom, allowAggregation) - ? [] - : worktree.agents - }) - ) -} - -export function nextDirectionalAgent( - current: AgentMapAgentNode, - agents: AgentMapAgentNode[], - direction: Direction -): AgentMapAgentNode | null { - let best: { agent: AgentMapAgentNode; score: number } | null = null - for (const candidate of agents) { - if (candidate.card.paneKey === current.card.paneKey) { - continue - } - const dx = candidate.x - current.x - const dy = candidate.y - current.y - const forward = dx * direction.x + dy * direction.y - if (forward <= 0) { - continue - } - const sideways = Math.abs(dx * direction.y - dy * direction.x) - const score = forward + sideways * 2 - if (!best || score < best.score) { - best = { agent: candidate, score } - } - } - return best?.agent ?? null -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts deleted file mode 100644 index c7234cc6223..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.test.ts +++ /dev/null @@ -1,163 +0,0 @@ -import { afterEach, describe, expect, it, vi } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { - AGENT_MAP_MAX_CONCURRENT_STATUS_FLARES, - AGENT_MAP_STATUS_FLARE_MS, - agentMapRecentFlareStatus, - agentMapNodeStatus, - agentMapQuietCount, - emptyAgentMapStatusCounts, - selectAgentMapRecentFlareStatuses -} from './agent-map-node-metadata' - -const NOW = 2_000_000_000 - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'done', - dotState: 'done', - task: '', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: NOW - 60_000, - finishedAt: NOW - 30_000, - stateChangedAt: NOW - 30_000, - unseen: false, - hostKind: 'local', - ...overrides - } -} - -describe('agentMapNodeStatus', () => { - it('splits a finish by whether it has been acknowledged', () => { - expect(agentMapNodeStatus(card({ unseen: true }))).toBe('done') - expect(agentMapNodeStatus(card({ unseen: false }))).toBe('done-seen') - }) - - it('never collapses an acknowledged finish into idle', () => { - // The shared `dashboardCardDisplayState` does exactly that for bucket counts, which - // would make finished-but-unlanded work indistinguishable from a workspace that - // never ran. The map keeps them apart. - expect(agentMapNodeStatus(card({ unseen: false }))).not.toBe('idle') - expect(agentMapNodeStatus(card({ bucket: 'idle', dotState: 'idle', finishedAt: null }))).toBe( - 'idle' - ) - }) - - it('leaves every non-done state on the shared display state', () => { - for (const dotState of ['working', 'blocked', 'waiting', 'idle'] as const) { - expect(agentMapNodeStatus(card({ dotState, unseen: true }))).toBe(dotState) - expect(agentMapNodeStatus(card({ dotState, unseen: false }))).toBe(dotState) - } - }) -}) - -describe('agentMapRecentFlareStatus', () => { - afterEach(() => { - vi.useRealTimers() - vi.restoreAllMocks() - }) - - it('flares on the transition into done, measured against the wall clock', () => { - vi.useFakeTimers() - vi.setSystemTime(NOW) - const justFinished = card({ dotState: 'done', unseen: true, stateChangedAt: NOW }) - - expect(agentMapRecentFlareStatus(justFinished)).toBe('done') - vi.setSystemTime(NOW + AGENT_MAP_STATUS_FLARE_MS - 1) - expect(agentMapRecentFlareStatus(justFinished)).toBe('done') - vi.setSystemTime(NOW + AGENT_MAP_STATUS_FLARE_MS + 1) - expect(agentMapRecentFlareStatus(justFinished)).toBeNull() - }) - - it('flares on the transition into a question', () => { - vi.useFakeTimers() - vi.setSystemTime(NOW) - - expect( - agentMapRecentFlareStatus( - card({ bucket: 'attention', dotState: 'waiting', unseen: true, stateChangedAt: NOW }) - ) - ).toBe('waiting') - }) - - it('does not reuse an earlier finish timestamp for a question with unknown timing', () => { - vi.useFakeTimers() - vi.setSystemTime(NOW) - - expect( - agentMapRecentFlareStatus( - card({ dotState: 'waiting', stateChangedAt: 0, finishedAt: NOW, unseen: true }) - ) - ).toBeNull() - }) - - it('samples the wall clock once and caps mixed bursty fleet updates', () => { - const clock = vi.spyOn(Date, 'now').mockReturnValue(NOW) - const selected = selectAgentMapRecentFlareStatuses( - Array.from({ length: 200 }, (_, index) => - card({ - paneKey: `pane-${index}`, - bucket: index % 2 === 0 ? 'done' : 'attention', - dotState: index % 2 === 0 ? 'done' : 'waiting', - unseen: true, - stateChangedAt: NOW - index - }) - ) - ) - - expect(clock).toHaveBeenCalledOnce() - expect(selected.size).toBe(AGENT_MAP_MAX_CONCURRENT_STATUS_FLARES) - expect([...selected]).toEqual([ - ['pane-0', 'done'], - ['pane-1', 'waiting'], - ['pane-2', 'done'], - ['pane-3', 'waiting'] - ]) - }) - - it('does not flare status changes from before this session', () => { - vi.useFakeTimers() - vi.setSystemTime(NOW) - expect( - agentMapRecentFlareStatus( - card({ dotState: 'done', unseen: true, stateChangedAt: NOW - 60_000 }) - ) - ).toBeNull() - // A clock skew that puts the finish in the future must not latch a flare on forever. - expect( - agentMapRecentFlareStatus( - card({ dotState: 'done', unseen: true, stateChangedAt: NOW + 5_000 }) - ) - ).toBeNull() - }) - - it('never flares a state that is not a question or unread finish', () => { - vi.useFakeTimers() - vi.setSystemTime(NOW) - expect( - agentMapRecentFlareStatus(card({ dotState: 'done', unseen: false, stateChangedAt: NOW })) - ).toBeNull() - expect( - agentMapRecentFlareStatus(card({ dotState: 'working', unseen: true, stateChangedAt: NOW })) - ).toBeNull() - }) -}) - -describe('agentMapQuietCount', () => { - it('treats an acknowledged finish as quiet so label declutter is unchanged', () => { - expect(agentMapQuietCount({ ...emptyAgentMapStatusCounts(), 'done-seen': 3, idle: 2 })).toBe(5) - }) - - it('keeps an unread finish loud', () => { - expect(agentMapQuietCount({ ...emptyAgentMapStatusCounts(), done: 4 })).toBe(0) - expect(agentMapQuietCount({ ...emptyAgentMapStatusCounts(), working: 4 })).toBe(0) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.ts b/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.ts deleted file mode 100644 index 34db8ccfc31..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-node-metadata.ts +++ /dev/null @@ -1,101 +0,0 @@ -import { - dashboardCardDisplayState, - type DashboardCard, - type DashboardCardDisplayState, - type DashboardCardDotState -} from '../../../../shared/dashboard-snapshot' - -/** Map-only refinement of the shared dot state. `dashboardCardDisplayState` folds an - * acknowledged finish into `idle`, which is right for bucket counts but loses the one - * distinction the map exists to show: finished-and-unread vs finished-and-still-yours. - * Kept local so `DashboardCardDotState` — which crosses the pop-out bridge — is unchanged. */ -export type AgentMapNodeStatus = DashboardCardDisplayState | 'done-seen' - -export function agentMapDurationMinutes(card: DashboardCard, now: number): number { - if (!Number.isFinite(card.startedAt) || card.startedAt <= 0) { - return 0 - } - const end = card.finishedAt && card.finishedAt >= card.startedAt ? card.finishedAt : now - return Math.max(0, (end - card.startedAt) / 60_000) -} - -export function agentMapNodeStatus(card: DashboardCard): AgentMapNodeStatus { - if (card.dotState === 'done') { - return card.unseen ? 'done' : 'done-seen' - } - return dashboardCardDisplayState(card) -} - -export type AgentMapFlareStatus = Extract - -/** How long a fresh question or finish keeps its one-shot flare. Long enough to catch - * the eye from across the map, short enough that a busy fleet is never permanently - * animating. Must stay in step with the `agent-map-status-flare` duration in - * `agent-map.css`, or the element unmounts mid-ripple. */ -export const AGENT_MAP_STATUS_FLARE_MS = 1_400 -// Static status emphasis remains uncapped; this bounds animated SVG paint only. -export const AGENT_MAP_MAX_CONCURRENT_STATUS_FLARES = 4 - -function agentMapFlareChangedAt(card: DashboardCard): number { - return card.stateChangedAt || (card.dotState === 'done' ? card.finishedAt : 0) || 0 -} - -/** Uses wall time because the map's relative-timestamp clock advances only every 30s. */ -export function agentMapRecentFlareStatus( - card: DashboardCard, - currentTime = Date.now() -): AgentMapFlareStatus | null { - if (card.dotState !== 'waiting' && (card.dotState !== 'done' || !card.unseen)) { - return null - } - const changedAt = agentMapFlareChangedAt(card) - if (changedAt <= 0) { - return null - } - const elapsed = currentTime - changedAt - // A fleet that loads with old status changes must not flare all at once. - return elapsed >= 0 && elapsed < AGENT_MAP_STATUS_FLARE_MS ? card.dotState : null -} - -/** Selects only the freshest question/finish changes so bursts cannot animate the fleet. */ -export function selectAgentMapRecentFlareStatuses( - cards: readonly DashboardCard[] -): ReadonlyMap { - const currentTime = Date.now() - const recent: { paneKey: string; changedAt: number; status: AgentMapFlareStatus }[] = [] - for (const card of cards) { - const status = agentMapRecentFlareStatus(card, currentTime) - if (!status) { - continue - } - const changedAt = agentMapFlareChangedAt(card) - const index = recent.findIndex( - (item) => - changedAt > item.changedAt || (changedAt === item.changedAt && card.paneKey < item.paneKey) - ) - if (index === -1) { - if (recent.length < AGENT_MAP_MAX_CONCURRENT_STATUS_FLARES) { - recent.push({ paneKey: card.paneKey, changedAt, status }) - } - continue - } - recent.splice(index, 0, { paneKey: card.paneKey, changedAt, status }) - if (recent.length > AGENT_MAP_MAX_CONCURRENT_STATUS_FLARES) { - recent.pop() - } - } - return new Map(recent.map((item) => [item.paneKey, item.status])) -} - -export type AgentMapStatusCounts = Record - -export function emptyAgentMapStatusCounts(): AgentMapStatusCounts { - return { working: 0, monitoring: 0, blocked: 0, waiting: 0, done: 0, 'done-seen': 0, idle: 0 } -} - -/** Finished work you have already opened is still yours to land, but it is not asking for - * attention. Counting it as quiet keeps ring aggregation and label declutter behaving - * exactly as they did when an acknowledged finish rendered as plain idle. */ -export function agentMapQuietCount(counts: AgentMapStatusCounts): number { - return counts.idle + counts['done-seen'] -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts deleted file mode 100644 index f02837497cb..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.test.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { describe, expect, it, vi } from 'vitest' -import { agentMapStatusLabel } from './agent-map-node-presentation' - -vi.mock('@/i18n/i18n', () => ({ - translate: (key: string, fallback: string) => `${key}:${fallback}` -})) - -describe('agentMapStatusLabel', () => { - it('localizes the map-only acknowledged completion state', () => { - expect(agentMapStatusLabel('done-seen')).toBe('dashboardPopout.map.status.doneSeen:Done, seen') - }) - - it('keeps shared agent states on their existing labels', () => { - expect(agentMapStatusLabel('working')).toBe('Working') - expect(agentMapStatusLabel('done')).toBe('Done') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.ts b/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.ts deleted file mode 100644 index 78910f64865..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-node-presentation.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { agentStateLabel } from '@/components/AgentStateDot' -import { translate } from '@/i18n/i18n' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { agentMapDirectLineageChevronPath } from './agent-map-lineage-chevron-path' -import type { AgentMapAgentNode } from './agent-map-layout' -import type { AgentMapNodeStatus } from './agent-map-node-metadata' - -/** Lives here, not in `agent-map-node-metadata`: `agentStateLabel` drags in React and - * lucide-react, and that module is on the layout and filter paths, which must stay - * free of component imports. `agentStateLabel` is shared with every other dot - * renderer, so the map's extra state gets its label here rather than widening - * `AgentDotState`. */ -export function agentMapStatusLabel(status: AgentMapNodeStatus): string { - return status === 'done-seen' - ? translate('dashboardPopout.map.status.doneSeen', 'Done, seen') - : agentStateLabel(status) -} - -export function formatDuration(minutes: number): string { - if (minutes < 1) { - return translate('dashboardPopout.card.time.justNow', 'just now') - } - if (minutes < 60) { - return translate('dashboardPopout.card.time.minutes', '{{count}}m', { - count: Math.floor(minutes) - }) - } - return translate('dashboardPopout.card.time.hours', '{{count}}h', { - count: Math.floor(minutes / 60) - }) -} - -export function lineagePath(parent: AgentMapAgentNode, child: AgentMapAgentNode): string { - return agentMapDirectLineageChevronPath(parent, child) -} - -export function agentName(card: DashboardCard): string { - return card.conversationName ?? (card.task.trim() || card.agentType) -} - -export function agentMapAttentionMarkerScale(mapScale: number): number { - const inverseScale = 1 / Math.max(mapScale, 0.001) - return Math.max(1, inverseScale ** 0.72, inverseScale * 0.5) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-packing-spatial-index.ts b/src/renderer/src/components/dashboard-popout/agent-map-packing-spatial-index.ts deleted file mode 100644 index 83aefde2f06..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-packing-spatial-index.ts +++ /dev/null @@ -1,94 +0,0 @@ -export const AGENT_MAP_WORKTREE_GAP = 8 -export const AGENT_MAP_PACKING_SCORE_TOLERANCE = 0.001 - -const PACKING_GRID_SIZE = 128 - -export type AgentMapPackableCircle = { - id: string - x: number - y: number - radius: number -} - -type PackingSpatialGrid = { - cells: Map> - cellSize: number -} - -export type AgentMapPackingSpatialIndex = Map - -function packingGridLevel(radius: number): number { - return Math.max( - 0, - Math.ceil(Math.log2((radius * 2 + AGENT_MAP_WORKTREE_GAP) / PACKING_GRID_SIZE)) - ) -} - -export function addAgentMapPackingCircle( - index: AgentMapPackingSpatialIndex, - circle: AgentMapPackableCircle -): void { - const level = packingGridLevel(circle.radius) - let grid = index.get(level) - if (!grid) { - grid = { cells: new Map(), cellSize: PACKING_GRID_SIZE * 2 ** level } - index.set(level, grid) - } - const left = Math.floor((circle.x - circle.radius) / grid.cellSize) - const right = Math.floor((circle.x + circle.radius) / grid.cellSize) - const top = Math.floor((circle.y - circle.radius) / grid.cellSize) - const bottom = Math.floor((circle.y + circle.radius) / grid.cellSize) - for (let x = left; x <= right; x += 1) { - let column = grid.cells.get(x) - if (!column) { - column = new Map() - grid.cells.set(x, column) - } - for (let y = top; y <= bottom; y += 1) { - const cell = column.get(y) - if (cell) { - cell.push(circle) - } else { - column.set(y, [circle]) - } - } - } -} - -export function agentMapPackingCircleOverlaps( - candidate: Pick, - index: AgentMapPackingSpatialIndex -): boolean { - const searchRadius = candidate.radius + AGENT_MAP_WORKTREE_GAP - const checked = new Set() - for (const grid of index.values()) { - const left = Math.floor((candidate.x - searchRadius) / grid.cellSize) - const right = Math.floor((candidate.x + searchRadius) / grid.cellSize) - const top = Math.floor((candidate.y - searchRadius) / grid.cellSize) - const bottom = Math.floor((candidate.y + searchRadius) / grid.cellSize) - for (let x = left; x <= right; x += 1) { - const column = grid.cells.get(x) - if (!column) { - continue - } - for (let y = top; y <= bottom; y += 1) { - for (const circle of column.get(y) ?? []) { - if (checked.has(circle)) { - continue - } - checked.add(circle) - if ( - Math.hypot(candidate.x - circle.x, candidate.y - circle.y) < - candidate.radius + - circle.radius + - AGENT_MAP_WORKTREE_GAP - - AGENT_MAP_PACKING_SCORE_TOLERANCE - ) { - return true - } - } - } - } - } - return false -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-project-placement.ts b/src/renderer/src/components/dashboard-popout/agent-map-project-placement.ts deleted file mode 100644 index 413102bb3f0..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-project-placement.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { layoutAgentMapWorktreeLineage } from './agent-map-worktree-lineage-layout' - -const PROJECT_GAP = 32 - -type ProjectCircle = { - id: string - x: number - y: number - radius: number - clusterParentId?: string -} - -function placeUnlinkedProjects(projects: T[]): T[] { - let cursorX = 0 - return projects.map((project) => { - const positioned = { ...project, x: cursorX + project.radius, y: 0 } - cursorX += project.radius * 2 + PROJECT_GAP - return positioned - }) -} - -export function placeAgentMapProjects( - projects: T[], - minimumWidth: number, - minimumHeight: number, - worldMargin: number -): { projects: T[]; width: number; height: number } { - const positioned = projects.some((project) => project.clusterParentId) - ? layoutAgentMapWorktreeLineage(projects) - : placeUnlinkedProjects(projects) - const left = Math.min(...positioned.map((project) => project.x - project.radius)) - const right = Math.max(...positioned.map((project) => project.x + project.radius)) - const top = Math.min(...positioned.map((project) => project.y - project.radius)) - const bottom = Math.max(...positioned.map((project) => project.y + project.radius)) - const naturalWidth = right - left + worldMargin * 2 - const naturalHeight = bottom - top + worldMargin * 2 - const width = Math.max(minimumWidth, naturalWidth) - const height = Math.max(minimumHeight, naturalHeight) - const offsetX = worldMargin - left + (width - naturalWidth) / 2 - const offsetY = worldMargin - top + (height - naturalHeight) / 2 - return { - projects: positioned.map((project) => ({ - ...project, - x: project.x + offsetX, - y: project.y + offsetY - })), - width, - height - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts deleted file mode 100644 index 0d83b3eeed4..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-quick-views.test.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { describe, expect, it } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { agentMapOrchestrationPaneKeys, filterAgentMapCards } from './agent-map-filter' -import { applyAgentMapQuickView, emptyAgentMapFilterState } from './agent-map-quick-views' - -const NOW = 2_000_000_000 -const MINUTE = 60_000 - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: null, - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: '', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: NOW - 60 * MINUTE, - finishedAt: null, - stateChangedAt: NOW - 5 * MINUTE, - statusUpdatedAt: NOW - 5 * MINUTE, - unseen: false, - hostKind: 'local', - ...overrides - } -} - -const TYPES = ['claude', 'codex'] - -function visible(cards: DashboardCard[], view: Parameters[0]) { - const state = applyAgentMapQuickView(view, TYPES) - return filterAgentMapCards({ - cards, - enabledStates: state.states, - enabledHosts: state.hosts, - enabledAgentTypes: state.agentTypes, - timeRanges: state.timeRanges, - orchestrationOnly: state.orchestrationOnly, - now: NOW - }).filter((c) => !state.unreadOnly || c.unseen) -} - -describe('agent map quick views', () => { - it('replaces the filters rather than stacking on what was set', () => { - const stuck = applyAgentMapQuickView('stuck', TYPES) - const everything = applyAgentMapQuickView('everything', TYPES) - - expect([...stuck.states]).toEqual(['working']) - expect([...everything.states].sort()).toEqual(['attention', 'done', 'idle', 'working']) - expect(everything.timeRanges).toEqual(emptyAgentMapFilterState(TYPES).timeRanges) - }) - - it('finds a working agent that has gone quiet, and ignores a chatty one', () => { - const quiet = card({ paneKey: 'quiet', statusUpdatedAt: NOW - 90 * MINUTE }) - const chatty = card({ paneKey: 'chatty', statusUpdatedAt: NOW - MINUTE }) - - expect(visible([quiet, chatty], 'stuck').map((c) => c.paneKey)).toEqual(['quiet']) - }) - - it('keeps only unread agents under the unread view', () => { - const seen = card({ paneKey: 'seen', unseen: false }) - const unseen = card({ paneKey: 'unseen', unseen: true }) - - expect(visible([seen, unseen], 'unread').map((c) => c.paneKey)).toEqual(['unseen']) - }) - - it('shows both ends of an orchestration flow, not just the dispatched child', () => { - const coordinator = card({ paneKey: 'coordinator' }) - const child = card({ paneKey: 'child', parentPaneKey: 'coordinator' }) - const unrelated = card({ paneKey: 'solo' }) - - expect(visible([coordinator, child, unrelated], 'orchestration').map((c) => c.paneKey)).toEqual( - ['coordinator', 'child'] - ) - }) - - it('ignores a parent that is not on the map, so no half-flow is drawn', () => { - const orphan = card({ paneKey: 'orphan', parentPaneKey: 'coordinator-elsewhere' }) - - expect(agentMapOrchestrationPaneKeys([orphan]).size).toBe(0) - expect(visible([orphan], 'orchestration')).toEqual([]) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-quick-views.ts b/src/renderer/src/components/dashboard-popout/agent-map-quick-views.ts deleted file mode 100644 index e635687fafa..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-quick-views.ts +++ /dev/null @@ -1,131 +0,0 @@ -import { translate } from '@/i18n/i18n' -import type { DashboardCardHostKind } from '../../../../shared/dashboard-snapshot' -import { ALL_AGENT_MAP_HOSTS, type AgentMapState } from './agent-map-filter' -import { - AGENT_MAP_TIME_MAX_INDEX, - fullAgentMapTimeRanges, - type AgentMapTimeRanges -} from './agent-map-time-filter' - -export type AgentMapQuickViewId = - | 'everything' - | 'attention' - | 'stuck' - | 'unread' - | 'recent' - | 'longRunning' - | 'stale' - | 'orchestration' - -export type AgentMapFilterState = { - states: ReadonlySet - hosts: ReadonlySet - agentTypes: ReadonlySet - timeRanges: AgentMapTimeRanges - unreadOnly: boolean - orchestrationOnly: boolean -} - -export const ALL_AGENT_MAP_STATES: readonly AgentMapState[] = [ - 'attention', - 'working', - 'done', - 'idle' -] - -/** Stop indices used by the quick views, named so the intent survives a re-scale. */ -const STOP_30_MIN = 4 -const STOP_1_DAY = 9 -const STOP_3_DAY = 11 - -export function emptyAgentMapFilterState(agentTypes: readonly string[]): AgentMapFilterState { - return { - states: new Set(ALL_AGENT_MAP_STATES), - hosts: new Set(ALL_AGENT_MAP_HOSTS), - agentTypes: new Set(agentTypes), - timeRanges: fullAgentMapTimeRanges(), - unreadOnly: false, - orchestrationOnly: false - } -} - -export const AGENT_MAP_QUICK_VIEWS: readonly { - id: AgentMapQuickViewId - label: () => string - apply: (base: AgentMapFilterState) => AgentMapFilterState -}[] = [ - { - id: 'everything', - label: () => translate('dashboardPopout.map.quickView.everything', 'Everything'), - apply: (base) => base - }, - { - id: 'attention', - label: () => translate('dashboardPopout.map.quickView.attention', 'Needs me'), - apply: (base) => ({ ...base, states: new Set(['attention', 'done']) }) - }, - { - id: 'stuck', - label: () => translate('dashboardPopout.map.quickView.stuck', 'Stuck'), - apply: (base) => ({ - ...base, - states: new Set(['working']), - timeRanges: { - ...base.timeRanges, - sinceMessage: { min: STOP_30_MIN, max: AGENT_MAP_TIME_MAX_INDEX } - } - }) - }, - { - id: 'unread', - label: () => translate('dashboardPopout.map.quickView.unread', 'Unread'), - apply: (base) => ({ ...base, unreadOnly: true }) - }, - { - id: 'recent', - label: () => translate('dashboardPopout.map.quickView.recent', 'Last 30 min'), - apply: (base) => ({ - ...base, - timeRanges: { ...base.timeRanges, sinceMessage: { min: 0, max: STOP_30_MIN } } - }) - }, - { - id: 'longRunning', - label: () => translate('dashboardPopout.map.quickView.longRunning', 'Long runners'), - apply: (base) => ({ - ...base, - states: new Set(['attention', 'working']), - timeRanges: { - ...base.timeRanges, - lifespan: { min: STOP_1_DAY, max: AGENT_MAP_TIME_MAX_INDEX } - } - }) - }, - { - id: 'stale', - label: () => translate('dashboardPopout.map.quickView.stale', 'Stale > 3d'), - apply: (base) => ({ - ...base, - timeRanges: { - ...base.timeRanges, - sinceMessage: { min: STOP_3_DAY, max: AGENT_MAP_TIME_MAX_INDEX } - } - }) - }, - { - id: 'orchestration', - label: () => translate('dashboardPopout.map.quickView.orchestration', 'Orchestration'), - apply: (base) => ({ ...base, orchestrationOnly: true }) - } -] - -/** Quick views replace the filters wholesale; they are a starting point, not a - * toggle stacked on whatever was already set. */ -export function applyAgentMapQuickView( - id: AgentMapQuickViewId, - agentTypes: readonly string[] -): AgentMapFilterState { - const view = AGENT_MAP_QUICK_VIEWS.find((candidate) => candidate.id === id) - const base = emptyAgentMapFilterState(agentTypes) - return view ? view.apply(base) : base -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-render-test-harness.tsx b/src/renderer/src/components/dashboard-popout/agent-map-render-test-harness.tsx deleted file mode 100644 index e6b84a0a20f..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-render-test-harness.tsx +++ /dev/null @@ -1,136 +0,0 @@ -import { cleanup, render } from '@testing-library/react' -import { afterEach, beforeEach, vi } from 'vitest' -import type { - DashboardCard, - DashboardCardHostKind, - DashboardSleepWorkspaceArgs, - DashboardSpawnAgentArgs -} from '../../../../shared/dashboard-snapshot' -import type { TuiAgent } from '../../../../shared/tui-agent' -import { TooltipProvider } from '@/components/ui/tooltip' -import { AgentMap } from './AgentMap' -import type { AgentMapState } from './agent-map-filter' - -export const NOW = 2_000_000_000 - -export function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: 'pty-1', - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: 'Build map', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - conversationName: 'Agent alpha', - startedAt: NOW - 10 * 60_000, - finishedAt: null, - stateChangedAt: NOW - 1_000, - unseen: false, - hostKind: 'local', - workspaceKind: 'worktree', - ...overrides - } -} - -export type RenderMapOptions = { - onOpenTerminal?: (card: DashboardCard) => void - selectedPaneKey?: string | null - workspaceContextMenusEnabled?: boolean - enabledStates?: ReadonlySet - enabledHosts?: ReadonlySet - showOrchestrationLinks?: boolean - launchableAgentsByWorktreeId?: Record - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void -} - -export function renderMap( - cards: DashboardCard[], - { - onOpenTerminal = vi.fn(), - selectedPaneKey = null, - workspaceContextMenusEnabled = false, - enabledStates, - enabledHosts, - showOrchestrationLinks, - launchableAgentsByWorktreeId, - onSpawnAgent, - onSleepWorkspace - }: RenderMapOptions = {} -): ReturnType { - return render( - , - { wrapper: TooltipProvider } - ) -} - -export type AgentMapTestEnvironment = { - /** Exposed so tests can assert the canvas does not re-read layout when idle. */ - boundsSpy: ReturnType -} - -const CANVAS_BOUNDS = { - x: 0, - y: 0, - left: 0, - top: 0, - right: 400, - bottom: 300, - width: 400, - height: 300, - toJSON: () => ({}) -} -const ZERO_BOUNDS = { ...CANVAS_BOUNDS, right: 0, bottom: 0, width: 0, height: 0 } - -/** Gives the map a measurable canvas and a non-Mac platform, the way every map - * suite needs it. Call once per describe block. */ -export function installAgentMapEnvironment(): AgentMapTestEnvironment { - const environment = {} as AgentMapTestEnvironment - const originalUserAgent = navigator.userAgent - - beforeEach(() => { - Object.defineProperty(navigator, 'userAgent', { configurable: true, value: 'Linux' }) - vi.stubGlobal( - 'matchMedia', - vi.fn(() => ({ matches: true, addEventListener: vi.fn(), removeEventListener: vi.fn() })) - ) - environment.boundsSpy = vi - .spyOn(Element.prototype, 'getBoundingClientRect') - .mockImplementation(function getBounds(this: Element) { - return this.classList.contains('agent-map-canvas') || this instanceof SVGSVGElement - ? CANVAS_BOUNDS - : ZERO_BOUNDS - }) - }) - - afterEach(() => { - cleanup() - vi.clearAllMocks() - vi.unstubAllGlobals() - environment.boundsSpy.mockRestore() - Object.defineProperty(navigator, 'userAgent', { - configurable: true, - value: originalUserAgent - }) - }) - - return environment -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-spawn-clustering.ts b/src/renderer/src/components/dashboard-popout/agent-map-spawn-clustering.ts deleted file mode 100644 index a341fdd1767..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-spawn-clustering.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -export function selectAgentMapSpawnParentContainer( - cards: readonly DashboardCard[], - cardsByPaneKey: ReadonlyMap, - containerIdentity: (card: DashboardCard) => string -): string | undefined { - const ownContainerId = cards[0] ? containerIdentity(cards[0]) : undefined - const linkCounts = new Map() - for (const card of cards) { - const parent = card.parentPaneKey ? cardsByPaneKey.get(card.parentPaneKey) : undefined - const parentContainerId = parent ? containerIdentity(parent) : undefined - if (!parentContainerId || parentContainerId === ownContainerId) { - continue - } - linkCounts.set(parentContainerId, (linkCounts.get(parentContainerId) ?? 0) + 1) - } - return [...linkCounts] - .sort(([leftId, leftCount], [rightId, rightCount]) => - rightCount !== leftCount ? rightCount - leftCount : compareStable(leftId, rightId) - ) - .at(0)?.[0] -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts deleted file mode 100644 index b485d308efd..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-time-filter.test.ts +++ /dev/null @@ -1,95 +0,0 @@ -import { describe, expect, it } from 'vitest' -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' -import { - AGENT_MAP_TIME_MAX_INDEX, - agentMapDurations, - agentMapTimeStopLabel, - fullAgentMapTimeRanges, - matchesAgentMapTimeRanges -} from './agent-map-time-filter' - -const NOW = 2_000_000_000_000 -const MINUTE = 60_000 -const HOUR = 60 * MINUTE - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: null, - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: '', - repoId: 'repo-1', - worktreeId: 'worktree-1', - tabId: 'tab-1', - leafId: 'leaf-1', - repoName: 'Orca', - worktreeName: 'Agent map', - startedAt: NOW - 2 * HOUR, - finishedAt: null, - stateChangedAt: NOW - 30 * MINUTE, - statusUpdatedAt: NOW - 10 * MINUTE, - unseen: false, - ...overrides - } -} - -describe('agent map time filtering', () => { - it('measures a finished agent to its finish, not to now', () => { - const finished = agentMapDurations( - card({ finishedAt: NOW - HOUR, startedAt: NOW - 3 * HOUR }), - NOW - ) - const running = agentMapDurations(card({ startedAt: NOW - 3 * HOUR }), NOW) - - expect(finished.lifespan).toBe(2 * HOUR) - expect(running.lifespan).toBe(3 * HOUR) - }) - - it('falls back to the state change when no hook update has landed', () => { - const durations = agentMapDurations( - card({ statusUpdatedAt: undefined, stateChangedAt: NOW - 45 * MINUTE }), - NOW - ) - - expect(durations.sinceMessage).toBe(45 * MINUTE) - expect(durations.timeInState).toBe(45 * MINUTE) - }) - - it('does not classify unknown timestamps as ancient', () => { - expect( - agentMapDurations(card({ startedAt: 0, stateChangedAt: 0, statusUpdatedAt: undefined }), NOW) - ).toEqual({ lifespan: 0, sinceMessage: 0, timeInState: 0 }) - }) - - it('keeps every card when the ranges are untouched', () => { - expect(matchesAgentMapTimeRanges(card(), fullAgentMapTimeRanges(), NOW)).toBe(true) - }) - - it('treats the top stop as unbounded so nothing falls off the end', () => { - const ancient = card({ startedAt: NOW - 400 * 24 * HOUR }) - const ranges = fullAgentMapTimeRanges() - ranges.lifespan = { min: 9, max: AGENT_MAP_TIME_MAX_INDEX } - - expect(matchesAgentMapTimeRanges(ancient, ranges, NOW)).toBe(true) - }) - - it('excludes a card quieter than the window and keeps one inside it', () => { - const ranges = fullAgentMapTimeRanges() - // Stop 4 is 30m: "stuck" means working with nothing said for half an hour. - ranges.sinceMessage = { min: 4, max: AGENT_MAP_TIME_MAX_INDEX } - - expect( - matchesAgentMapTimeRanges(card({ statusUpdatedAt: NOW - 5 * MINUTE }), ranges, NOW) - ).toBe(false) - expect(matchesAgentMapTimeRanges(card({ statusUpdatedAt: NOW - HOUR }), ranges, NOW)).toBe(true) - }) - - it('labels stops in the unit a human would say them in', () => { - expect(agentMapTimeStopLabel(0)).toBe('0') - expect(agentMapTimeStopLabel(4)).toBe('30m') - expect(agentMapTimeStopLabel(9)).toBe('1d') - expect(agentMapTimeStopLabel(AGENT_MAP_TIME_MAX_INDEX)).toBe('∞') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-time-filter.ts b/src/renderer/src/components/dashboard-popout/agent-map-time-filter.ts deleted file mode 100644 index 86478c93ebd..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-time-filter.ts +++ /dev/null @@ -1,113 +0,0 @@ -import type { DashboardCard } from '../../../../shared/dashboard-snapshot' - -export type AgentMapTimeField = 'lifespan' | 'sinceMessage' | 'timeInState' -/** Inclusive stop indices into `AGENT_MAP_TIME_STOPS`. */ -export type AgentMapTimeRange = { min: number; max: number } -export type AgentMapTimeRanges = Record - -const MINUTE = 60_000 -const HOUR = 60 * MINUTE -const DAY = 24 * HOUR - -/** Non-linear stops: minutes matter as much as days, so a linear axis would - * bury every useful threshold in the first pixel. */ -export const AGENT_MAP_TIME_STOPS: readonly number[] = [ - 0, - MINUTE, - 5 * MINUTE, - 15 * MINUTE, - 30 * MINUTE, - HOUR, - 3 * HOUR, - 6 * HOUR, - 12 * HOUR, - DAY, - 2 * DAY, - 3 * DAY, - 7 * DAY, - 14 * DAY, - Number.POSITIVE_INFINITY -] - -export const AGENT_MAP_TIME_MAX_INDEX = AGENT_MAP_TIME_STOPS.length - 1 -export const AGENT_MAP_TIME_FIELDS: readonly AgentMapTimeField[] = [ - 'lifespan', - 'sinceMessage', - 'timeInState' -] - -export const FULL_AGENT_MAP_TIME_RANGE: AgentMapTimeRange = { - min: 0, - max: AGENT_MAP_TIME_MAX_INDEX -} - -export function fullAgentMapTimeRanges(): AgentMapTimeRanges { - return { - lifespan: { ...FULL_AGENT_MAP_TIME_RANGE }, - sinceMessage: { ...FULL_AGENT_MAP_TIME_RANGE }, - timeInState: { ...FULL_AGENT_MAP_TIME_RANGE } - } -} - -export function isFullAgentMapTimeRange(range: AgentMapTimeRange): boolean { - return range.min <= 0 && range.max >= AGENT_MAP_TIME_MAX_INDEX -} - -export function agentMapTimeStopLabel(index: number): string { - const ms = AGENT_MAP_TIME_STOPS[Math.min(Math.max(index, 0), AGENT_MAP_TIME_MAX_INDEX)] - if (!Number.isFinite(ms)) { - return '∞' - } - if (ms === 0) { - return '0' - } - if (ms < HOUR) { - return `${Math.round(ms / MINUTE)}m` - } - if (ms < DAY) { - return `${Math.round(ms / HOUR)}h` - } - return `${Math.round(ms / DAY)}d` -} - -/** How long the agent has been alive, quiet, and sitting in its current state. */ -export function agentMapDurations( - card: DashboardCard, - now: number -): Record { - const startedAt = validTimestamp(card.startedAt) ? card.startedAt : null - const enteredState = validTimestamp(card.stateChangedAt) ? card.stateChangedAt : startedAt - const lastMessage = validTimestamp(card.statusUpdatedAt) ? card.statusUpdatedAt : enteredState - const finishedAt = validTimestamp(card.finishedAt) ? card.finishedAt : null - return { - lifespan: startedAt === null ? 0 : Math.max(0, (finishedAt ?? now) - startedAt), - // No per-message timestamp rides the snapshot; the last accepted hook update - // is the closest thing to "when this agent last said something". - sinceMessage: lastMessage === null ? 0 : Math.max(0, now - lastMessage), - timeInState: enteredState === null ? 0 : Math.max(0, now - enteredState) - } -} - -function validTimestamp(value: number | null | undefined): value is number { - return typeof value === 'number' && Number.isFinite(value) && value > 0 -} - -function withinRange(value: number, range: AgentMapTimeRange): boolean { - if (value < AGENT_MAP_TIME_STOPS[Math.max(0, range.min)]) { - return false - } - return range.max >= AGENT_MAP_TIME_MAX_INDEX || value <= AGENT_MAP_TIME_STOPS[range.max] -} - -export function matchesAgentMapTimeRanges( - card: DashboardCard, - ranges: AgentMapTimeRanges, - now: number -): boolean { - const durations = agentMapDurations(card, now) - return AGENT_MAP_TIME_FIELDS.every((field) => withinRange(durations[field], ranges[field])) -} - -export function activeAgentMapTimeFields(ranges: AgentMapTimeRanges): AgentMapTimeField[] { - return AGENT_MAP_TIME_FIELDS.filter((field) => !isFullAgentMapTimeRange(ranges[field])) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-viewport-transition.ts b/src/renderer/src/components/dashboard-popout/agent-map-viewport-transition.ts deleted file mode 100644 index 6fe03f6f585..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-viewport-transition.ts +++ /dev/null @@ -1,56 +0,0 @@ -export type AgentMapViewport = { - center: { x: number; y: number } - zoom: number -} - -type ViewportTransitionOptions = { - from: AgentMapViewport - to: AgentMapViewport - durationMs: number - onFrame: (viewport: AgentMapViewport) => void - onComplete?: () => void -} - -function interpolate(from: number, to: number, progress: number): number { - return from + (to - from) * progress -} - -export function startAgentMapViewportTransition({ - from, - to, - durationMs, - onFrame, - onComplete -}: ViewportTransitionOptions): () => void { - let frameId: number | null = null - let startedAt: number | null = null - let cancelled = false - const tick = (now: number): void => { - if (cancelled) { - return - } - startedAt ??= now - const progress = Math.min(1, (now - startedAt) / durationMs) - const eased = 1 - (1 - progress) ** 3 - onFrame({ - center: { - x: interpolate(from.center.x, to.center.x, eased), - y: interpolate(from.center.y, to.center.y, eased) - }, - zoom: interpolate(from.zoom, to.zoom, eased) - }) - if (progress < 1) { - frameId = requestAnimationFrame(tick) - } else { - frameId = null - onComplete?.() - } - } - frameId = requestAnimationFrame(tick) - return () => { - cancelled = true - if (frameId !== null) { - cancelAnimationFrame(frameId) - } - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-workspace-identity.ts b/src/renderer/src/components/dashboard-popout/agent-map-workspace-identity.ts deleted file mode 100644 index 5ceaf4e93eb..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-workspace-identity.ts +++ /dev/null @@ -1,29 +0,0 @@ -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' - -export function agentMapCardTopologyIdentity(card: DashboardCard): string { - const parentPaneKey = card.parentPaneKey ?? '' - const parentWorktreeId = card.parentWorktreeId ?? '' - const executionHostId = card.executionHostId ?? '' - return `${card.repoId.length}:${card.repoId}${card.worktreeId.length}:${card.worktreeId}${executionHostId.length}:${executionHostId}${card.paneKey.length}:${card.paneKey}${parentPaneKey.length}:${parentPaneKey}${parentWorktreeId.length}:${parentWorktreeId}` -} - -export function agentMapWorkspaceTopologyIdentity(workspace: DashboardWorkspace): string { - const parentWorktreeId = workspace.parentWorktreeId ?? '' - return `${workspace.repoId.length}:${workspace.repoId}${workspace.worktreeId.length}:${workspace.worktreeId}${workspace.executionHostId.length}:${workspace.executionHostId}${parentWorktreeId.length}:${parentWorktreeId}` -} - -export function agentMapWorktreeIdentityFromParts( - worktreeId: string, - executionHostId: DashboardCard['executionHostId'] -): string { - const hostId = executionHostId ?? '' - return `${worktreeId.length}:${worktreeId}${hostId.length}:${hostId}` -} - -export function agentMapWorktreeIdentity(card: DashboardCard): string { - return agentMapWorktreeIdentityFromParts(card.worktreeId, card.executionHostId) -} - -export function agentMapWorkspaceIdentity(workspace: DashboardWorkspace): string { - return agentMapWorktreeIdentityFromParts(workspace.worktreeId, workspace.executionHostId) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts deleted file mode 100644 index 1a9593af373..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.test.ts +++ /dev/null @@ -1,81 +0,0 @@ -import { describe, expect, it } from 'vitest' -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' -import { EMPTY_DASHBOARD_FILTERS } from './agent-board-filtering' -import { selectAgentlessMapWorkspaces } from './agent-map-workspace-visibility' - -function card(overrides: Partial = {}): DashboardCard { - return { - paneKey: 'pane-1', - ptyId: null, - agentType: 'codex', - bucket: 'working', - dotState: 'working', - task: '', - repoId: 'repo-1', - worktreeId: 'occupied', - tabId: 'tab-1', - leafId: null, - repoName: 'Orca', - worktreeName: 'Occupied', - executionHostId: 'local', - startedAt: 0, - finishedAt: null, - stateChangedAt: 0, - unseen: false, - ...overrides - } -} - -function workspace(overrides: Partial = {}): DashboardWorkspace { - return { - repoId: 'repo-1', - worktreeId: 'empty', - repoName: 'Orca', - worktreeName: 'Empty child', - hostKind: 'local', - executionHostId: 'local', - workspaceKind: 'worktree', - workspaceStatusId: 'planned', - ...overrides - } -} - -describe('agent map workspace visibility', () => { - it('returns only workspaces that have no dashboard card on the same host', () => { - const result = selectAgentlessMapWorkspaces({ - cards: [card()], - workspaces: [ - workspace({ worktreeId: 'occupied', worktreeName: 'Occupied' }), - workspace(), - workspace({ - worktreeId: 'occupied', - worktreeName: 'Remote twin', - hostKind: 'ssh', - executionHostId: 'ssh:build-box' - }) - ], - query: '', - filters: EMPTY_DASHBOARD_FILTERS - }) - - expect(result.map((item) => item.worktreeName)).toEqual(['Empty child', 'Remote twin']) - }) - - it('applies search and workspace filters to agentless workspaces', () => { - const result = selectAgentlessMapWorkspaces({ - cards: [], - workspaces: [ - workspace({ worktreeName: 'Listener security', review: { number: 42, state: 'open' } }), - workspace({ worktreeId: 'other', worktreeName: 'Unrelated', workspaceStatusId: 'active' }) - ], - query: 'listener', - filters: { - projects: ['repo-1'], - workspaceStatuses: ['planned'], - reviewStates: ['open'] - } - }) - - expect(result.map((item) => item.worktreeName)).toEqual(['Listener security']) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.ts b/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.ts deleted file mode 100644 index 311dd95e2f6..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-workspace-visibility.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' -import { filterDashboardWorkspaces, type DashboardFilters } from './agent-board-filtering' -import { agentMapWorktreeIdentityFromParts } from './agent-map-workspace-identity' - -export function selectAgentlessMapWorkspaces({ - cards, - workspaces, - query, - filters -}: { - cards: DashboardCard[] - workspaces: DashboardWorkspace[] - query: string - filters: DashboardFilters -}): DashboardWorkspace[] { - const occupiedWorkspaceIds = new Set( - cards.map((card) => agentMapWorktreeIdentityFromParts(card.worktreeId, card.executionHostId)) - ) - return filterDashboardWorkspaces(workspaces, query, filters).filter( - (workspace) => - !occupiedWorkspaceIds.has( - agentMapWorktreeIdentityFromParts(workspace.worktreeId, workspace.executionHostId) - ) - ) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts deleted file mode 100644 index 1ecbdb0beb1..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.test.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { emptyAgentMapStatusCounts, type AgentMapStatusCounts } from './agent-map-node-metadata' -import { agentMapWorktreeActiveStatus } from './agent-map-worktree-active-status' - -function counts(overrides: Partial = {}): AgentMapStatusCounts { - return { ...emptyAgentMapStatusCounts(), ...overrides } -} - -describe('agentMapWorktreeActiveStatus', () => { - it('turns the ring green only once the whole workspace has settled', () => { - expect(agentMapWorktreeActiveStatus(counts({ done: 1 }))).toBe('done') - // Anything still running outranks a finished sibling — the workspace is still working. - expect(agentMapWorktreeActiveStatus(counts({ done: 1, working: 1 }))).toBe('working') - expect(agentMapWorktreeActiveStatus(counts({ done: 1, waiting: 1 }))).toBe('waiting') - expect(agentMapWorktreeActiveStatus(counts({ done: 1, blocked: 1 }))).toBe('blocked') - }) - - it('leaves the ring unlit for acknowledged finishes and idle workspaces', () => { - // Acknowledging is what releases the attention, exactly as at the node level. - expect(agentMapWorktreeActiveStatus(counts({ 'done-seen': 3 }))).toBeNull() - expect(agentMapWorktreeActiveStatus(counts({ idle: 2 }))).toBeNull() - expect(agentMapWorktreeActiveStatus(counts())).toBeNull() - }) - - it('prioritizes attention over working', () => { - expect(agentMapWorktreeActiveStatus(counts({ working: 2, waiting: 1 }))).toBe('waiting') - expect(agentMapWorktreeActiveStatus(counts({ working: 2, waiting: 1, blocked: 1 }))).toBe( - 'blocked' - ) - }) - - it('uses working only when no agent needs attention', () => { - expect(agentMapWorktreeActiveStatus(counts({ working: 1, done: 2 }))).toBe('working') - // Was null before unread finishes lit the ring; idle siblings do not mute a finish. - expect(agentMapWorktreeActiveStatus(counts({ done: 2, idle: 1 }))).toBe('done') - expect(agentMapWorktreeActiveStatus(counts({ 'done-seen': 2, idle: 1 }))).toBeNull() - }) - - it('keeps passive monitoring out of the active-worktree glow', () => { - expect(agentMapWorktreeActiveStatus(counts({ monitoring: 1 }))).toBeNull() - expect(agentMapWorktreeActiveStatus(counts({ working: 1, monitoring: 1 }))).toBe('working') - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.ts deleted file mode 100644 index 853a41b38a9..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-active-status.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { AgentMapStatusCounts } from './agent-map-node-metadata' - -export type AgentMapWorktreeActiveStatus = 'blocked' | 'waiting' | 'working' | 'done' - -/** - * Most urgent first. `done` ranks last on purpose: a workspace with anything still - * running is a working workspace, even if a sibling agent already finished — the ring - * only turns green once the whole workspace has settled and a finish is still unread. - * `done-seen` never lights the ring, matching the node treatment where acknowledging a - * finish is what releases the attention. - */ -export function agentMapWorktreeActiveStatus( - counts: AgentMapStatusCounts -): AgentMapWorktreeActiveStatus | null { - if (counts.blocked > 0) { - return 'blocked' - } - if (counts.waiting > 0) { - return 'waiting' - } - if (counts.working > 0) { - return 'working' - } - return counts.done > 0 ? 'done' : null -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-host.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-host.ts deleted file mode 100644 index 247b3f5b08c..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-host.ts +++ /dev/null @@ -1,25 +0,0 @@ -import type { DashboardCard, DashboardWorkspace } from '../../../../shared/dashboard-snapshot' -import { parseExecutionHostId } from '../../../../shared/execution-host' - -export function agentMapWorktreeHost( - cards: DashboardCard[], - workspace?: DashboardWorkspace -): { - executionHostId: DashboardCard['executionHostId'] - hostKind: DashboardCard['hostKind'] - hostLabel: DashboardCard['hostLabel'] -} { - const executionHostId = workspace?.executionHostId ?? cards[0]?.executionHostId - const parsedHost = parseExecutionHostId(executionHostId) - const hostKind = - parsedHost?.kind === 'ssh' - ? 'ssh' - : parsedHost?.kind === 'runtime' - ? 'remote' - : (workspace?.hostKind ?? cards[0]?.hostKind) - return { - executionHostId, - hostKind, - hostLabel: workspace?.hostLabel ?? cards[0]?.hostLabel - } -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts deleted file mode 100644 index 3025aecad77..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.test.ts +++ /dev/null @@ -1,223 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { AGENT_MAP_WORKTREE_GAP } from './agent-map-worktree-packing' -import { layoutAgentMapWorktreeLineage } from './agent-map-worktree-lineage-layout' - -function buildChain(count: number) { - return Array.from({ length: count }, (_, index) => ({ - id: `worktree-${index.toString().padStart(4, '0')}`, - parentId: index === 0 ? undefined : `worktree-${(index - 1).toString().padStart(4, '0')}`, - radius: 32, - x: 0, - y: 0 - })) -} - -function buildComb(spineCount: number) { - const worktrees: ReturnType = [] - for (let index = 0; index < spineCount; index += 1) { - const suffix = index.toString().padStart(4, '0') - worktrees.push({ - id: `spine-${suffix}`, - parentId: index === 0 ? undefined : `spine-${(index - 1).toString().padStart(4, '0')}`, - radius: 32, - x: 0, - y: 0 - }) - if (index < spineCount - 1) { - worktrees.push({ - id: `leaf-${suffix}`, - parentId: `spine-${suffix}`, - radius: 24, - x: 0, - y: 0 - }) - } - } - return worktrees -} - -function layoutWithNumericMapSetCount(worktrees: ReturnType) { - const set = Map.prototype.set - let numericMapSets = 0 - Map.prototype.set = function (this: Map, key: unknown, value: unknown) { - if (typeof key === 'number') { - numericMapSets += 1 - } - return set.call(this, key, value) - } - try { - return { layout: layoutAgentMapWorktreeLineage(worktrees), numericMapSets } - } finally { - Map.prototype.set = set - } -} - -function layoutWithWorktreePushCount(count: number) { - const push = Array.prototype.push - let worktreePushes = 0 - Array.prototype.push = function (...items: unknown[]): number { - worktreePushes += items.filter( - (item) => - typeof item === 'object' && - item !== null && - 'id' in item && - typeof item.id === 'string' && - item.id.startsWith('worktree-') - ).length - return push.call(this, ...items) - } - try { - return { - layout: layoutAgentMapWorktreeLineage(buildChain(count)), - worktreePushes - } - } finally { - Array.prototype.push = push - } -} - -describe('layoutAgentMapWorktreeLineage', () => { - it('keeps branched and linear family coordinates deterministic', () => { - const layout = layoutAgentMapWorktreeLineage([ - { id: 'root', x: 0, y: 0, radius: 40 }, - { id: 'child-a', parentId: 'root', x: 0, y: 0, radius: 30 }, - { id: 'grandchild-a', parentId: 'child-a', x: 0, y: 0, radius: 25 }, - { id: 'child-b', parentId: 'root', x: 0, y: 0, radius: 45 }, - { id: 'second-root', x: 0, y: 0, radius: 35 }, - { id: 'second-child', parentId: 'second-root', x: 0, y: 0, radius: 20 } - ]) - - expect(layout).toEqual([ - { - id: 'child-a', - parentId: 'root', - radius: 30, - x: -7.740689238053122, - y: 42.47172405948656 - }, - { - id: 'child-b', - parentId: 'root', - radius: 45, - x: 69.93546272327787, - y: 175.54837055839306 - }, - { - id: 'grandchild-a', - parentId: 'child-a', - radius: 25, - x: -7.740689238053122, - y: 125.47172405948656 - }, - { id: 'root', radius: 40, x: 19.097386742612372, y: -55.52827594051344 }, - { - id: 'second-child', - parentId: 'second-root', - radius: 20, - x: -112.9872940755618, - y: -73.65876088400047 - }, - { - id: 'second-root', - radius: 35, - x: -112.9872940755618, - y: -156.65876088400046 - } - ]) - }) - - it('flattens a 1,000-worktree lineage once', () => { - const { layout, worktreePushes } = layoutWithWorktreePushCount(1_000) - - expect(layout).toHaveLength(1_000) - expect(worktreePushes).toBeLessThan(5_000) - for (let index = 1; index < layout.length; index += 1) { - expect(layout[index].y).toBeGreaterThan(layout[index - 1].y) - expect(layout[index].y - layout[index - 1].y).toBeGreaterThanOrEqual( - layout[index].radius + layout[index - 1].radius + AGENT_MAP_WORKTREE_GAP - ) - } - }) - - it.each([ - [399, 200], - [999, 500] - ])('avoids spatial-grid expansion for a %i-worktree comb', (expectedCount, spineCount) => { - const worktrees = buildComb(spineCount) - const { layout, numericMapSets } = layoutWithNumericMapSetCount(worktrees) - - expect(layout).toHaveLength(expectedCount) - expect(numericMapSets).toBeLessThan(10) - expect(layoutAgentMapWorktreeLineage(worktrees)).toEqual(layout) - }) - - it('keeps a deeply branched lineage finite without recursive stack growth', () => { - const worktrees = buildComb(2_500) - const layout = layoutAgentMapWorktreeLineage(worktrees) - const byId = new Map(layout.map((worktree) => [worktree.id, worktree])) - - expect(layout).toHaveLength(4_999) - expect( - layout.every( - (worktree) => - Number.isFinite(worktree.x) && - Number.isFinite(worktree.y) && - Math.abs(worktree.x) < 1_000_000 && - Math.abs(worktree.y) < 1_000_000 - ) - ).toBe(true) - for (const worktree of layout) { - if (worktree.parentId) { - expect(worktree.y).toBeGreaterThan(byId.get(worktree.parentId)!.y) - } - } - }) - - it('wraps very large worktree fanout without overlap', () => { - const layout = layoutAgentMapWorktreeLineage([ - { id: 'parent', x: 0, y: 0, radius: 32 }, - ...Array.from({ length: 300 }, (_, index) => ({ - id: `child-${index}`, - parentId: 'parent', - x: 0, - y: 0, - radius: 24 - })) - ]) - const parent = layout.find((worktree) => worktree.id === 'parent')! - const children = layout.filter( - (worktree) => 'parentId' in worktree && worktree.parentId === 'parent' - ) - let minimumGap = Number.POSITIVE_INFINITY - - expect(children.every((child) => child.y > parent.y)).toBe(true) - for (const [index, child] of children.entries()) { - for (const other of children.slice(index + 1)) { - minimumGap = Math.min( - minimumGap, - Math.hypot(child.x - other.x, child.y - other.y) - child.radius - other.radius - ) - } - } - expect(minimumGap).toBeGreaterThanOrEqual(AGENT_MAP_WORKTREE_GAP) - }) - - it('packs high-fanout spawn clusters without forcing every workspace below the coordinator', () => { - const layout = layoutAgentMapWorktreeLineage([ - { id: 'parent', x: 0, y: 0, radius: 32 }, - ...Array.from({ length: 13 }, (_, index) => ({ - id: `child-${index.toString().padStart(2, '0')}`, - clusterParentId: 'parent', - x: 0, - y: 0, - radius: 24 - })) - ]) - const parent = layout.find((worktree) => worktree.id === 'parent')! - const children = layout.filter( - (worktree) => 'clusterParentId' in worktree && worktree.clusterParentId === 'parent' - ) - - expect(children.some((child) => child.y <= parent.y)).toBe(true) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.ts deleted file mode 100644 index 1a6e2875b65..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-lineage-layout.ts +++ /dev/null @@ -1,279 +0,0 @@ -import { AGENT_MAP_WORKTREE_GAP, packAgentMapWorktrees } from './agent-map-worktree-packing' - -const LINEAGE_VERTICAL_GAP = 28 -const MAX_HIERARCHICAL_CLUSTER_FANOUT = 12 -const MAX_EXACT_LINEAGE_WORKTREES = 256 - -type LineageWorktree = { - id: string - parentId?: string - clusterParentId?: string - x: number - y: number - radius: number -} - -type WorktreeFamily = { - id: string - x: number - y: number - radius: number - worktrees: T[] -} - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -function encloseFamily(id: string, worktrees: T[]): WorktreeFamily { - const left = Math.min(...worktrees.map((worktree) => worktree.x - worktree.radius)) - const right = Math.max(...worktrees.map((worktree) => worktree.x + worktree.radius)) - const top = Math.min(...worktrees.map((worktree) => worktree.y - worktree.radius)) - const bottom = Math.max(...worktrees.map((worktree) => worktree.y + worktree.radius)) - const centerX = (left + right) / 2 - const centerY = (top + bottom) / 2 - for (const worktree of worktrees) { - worktree.x -= centerX - worktree.y -= centerY - } - return { - id, - x: 0, - y: 0, - radius: Math.max( - ...worktrees.map((worktree) => Math.hypot(worktree.x, worktree.y) + worktree.radius) - ), - worktrees - } -} - -function buildFamily( - root: T, - childrenByParent: ReadonlyMap, - emitted: Set, - ancestors: ReadonlySet -): WorktreeFamily { - emitted.add(root.id) - const nextAncestors = new Set(ancestors) - nextAncestors.add(root.id) - const children = (childrenByParent.get(root.id) ?? []).filter( - (child) => !nextAncestors.has(child.id) && !emitted.has(child.id) - ) - if (children.length === 0) { - return { - id: root.id, - x: 0, - y: 0, - radius: root.radius, - worktrees: [{ ...root, x: 0, y: 0 }] - } - } - - const childFamilies = packAgentMapWorktrees( - children.map((child) => buildExactFamily(child, childrenByParent, emitted)) - ) - const childLeft = Math.min(...childFamilies.map((family) => family.x - family.radius)) - const childRight = Math.max(...childFamilies.map((family) => family.x + family.radius)) - const childTop = Math.min(...childFamilies.map((family) => family.y - family.radius)) - const childOffsetX = -(childLeft + childRight) / 2 - const childOffsetY = root.radius + LINEAGE_VERTICAL_GAP - childTop - const worktrees = [{ ...root, x: 0, y: 0 }] - for (const family of childFamilies) { - for (const worktree of family.worktrees) { - worktrees.push({ - ...worktree, - x: worktree.x + family.x + childOffsetX, - y: worktree.y + family.y + childOffsetY - }) - } - } - return encloseFamily(root.id, worktrees) -} - -function collectLinearFamily( - root: T, - childrenByParent: ReadonlyMap, - emitted: ReadonlySet -): T[] | null { - const worktrees: T[] = [] - const ancestors = new Set() - let current: T | undefined = root - while (current) { - worktrees.push(current) - ancestors.add(current.id) - const children = (childrenByParent.get(current.id) ?? []).filter( - (child) => !ancestors.has(child.id) && !emitted.has(child.id) - ) - if (children.length > 1) { - return null - } - current = children[0] - } - return worktrees -} - -function buildLinearFamily(worktrees: T[]): WorktreeFamily { - const positioned = worktrees.map((worktree) => ({ ...worktree, x: 0, y: 0 })) - let radius = worktrees.at(-1)?.radius ?? 0 - for (let index = worktrees.length - 2; index >= 0; index -= 1) { - positioned[index].y = -(radius + LINEAGE_VERTICAL_GAP / 2) - radius += worktrees[index].radius + LINEAGE_VERTICAL_GAP / 2 - } - let familyCenterY = 0 - for (let index = 0; index < positioned.length; index += 1) { - positioned[index].y += familyCenterY - familyCenterY += worktrees[index].radius + LINEAGE_VERTICAL_GAP / 2 - } - return { id: worktrees[0].id, x: 0, y: 0, radius, worktrees: positioned } -} - -function buildExactFamily( - root: T, - childrenByParent: ReadonlyMap, - emitted: Set -): WorktreeFamily { - const linearFamily = collectLinearFamily(root, childrenByParent, emitted) - if (!linearFamily) { - return buildFamily(root, childrenByParent, emitted, new Set()) - } - for (const worktree of linearFamily) { - emitted.add(worktree.id) - } - return buildLinearFamily(linearFamily) -} - -function layoutBoundedLineage( - sorted: T[], - childrenByParent: ReadonlyMap, - childIds: ReadonlySet -): T[] { - const levels: T[][] = [] - const emitted = new Set() - const roots = sorted.filter((worktree) => !childIds.has(worktree.id)) - - for (const seed of [...roots, ...sorted]) { - if (emitted.has(seed.id)) { - continue - } - const stack = [{ depth: 0, worktree: seed }] - while (stack.length > 0) { - const entry = stack.pop()! - if (emitted.has(entry.worktree.id)) { - continue - } - emitted.add(entry.worktree.id) - const level = levels[entry.depth] ?? [] - levels[entry.depth] = level - level.push(entry.worktree) - const children = childrenByParent.get(entry.worktree.id) ?? [] - for (let index = children.length - 1; index >= 0; index -= 1) { - if (!emitted.has(children[index].id)) { - stack.push({ depth: entry.depth + 1, worktree: children[index] }) - } - } - } - } - - const positioned: T[] = [] - let y = 0 - let previousMaxRadius = 0 - let hasPositionedRow = false - for (const level of levels) { - const columns = Math.ceil(Math.sqrt(level.length)) - for (let rowStart = 0; rowStart < level.length; rowStart += columns) { - const row = level.slice(rowStart, rowStart + columns) - let maxRadius = 0 - let width = -AGENT_MAP_WORKTREE_GAP - for (const worktree of row) { - maxRadius = Math.max(maxRadius, worktree.radius) - width += worktree.radius * 2 + AGENT_MAP_WORKTREE_GAP - } - if (hasPositionedRow) { - y += previousMaxRadius + maxRadius + LINEAGE_VERTICAL_GAP - } - let x = -width / 2 - for (const worktree of row) { - positioned.push({ ...worktree, x: x + worktree.radius, y }) - x += worktree.radius * 2 + AGENT_MAP_WORKTREE_GAP - } - previousMaxRadius = maxRadius - hasPositionedRow = true - } - } - - let left = Number.POSITIVE_INFINITY - let right = Number.NEGATIVE_INFINITY - let top = Number.POSITIVE_INFINITY - let bottom = Number.NEGATIVE_INFINITY - for (const worktree of positioned) { - left = Math.min(left, worktree.x - worktree.radius) - right = Math.max(right, worktree.x + worktree.radius) - top = Math.min(top, worktree.y - worktree.radius) - bottom = Math.max(bottom, worktree.y + worktree.radius) - } - const centerX = (left + right) / 2 - const centerY = (top + bottom) / 2 - return positioned - .map((worktree) => ({ ...worktree, x: worktree.x - centerX, y: worktree.y - centerY })) - .sort((a, b) => compareStable(a.id, b.id)) -} - -export function layoutAgentMapWorktreeLineage(worktrees: T[]): T[] { - const sorted = [...worktrees].sort((a, b) => compareStable(a.id, b.id)) - const worktreesById = new Map(sorted.map((worktree) => [worktree.id, worktree])) - const clusterChildCounts = new Map() - for (const worktree of sorted) { - if (worktree.clusterParentId && worktreesById.has(worktree.clusterParentId)) { - clusterChildCounts.set( - worktree.clusterParentId, - (clusterChildCounts.get(worktree.clusterParentId) ?? 0) + 1 - ) - } - } - const childrenByParent = new Map() - const childIds = new Set() - for (const worktree of sorted) { - const clusterParentId = worktree.clusterParentId - const parentId = - clusterParentId && - (clusterChildCounts.get(clusterParentId) ?? 0) <= MAX_HIERARCHICAL_CLUSTER_FANOUT - ? clusterParentId - : worktree.parentId - if (!parentId || parentId === worktree.id || !worktreesById.has(parentId)) { - continue - } - childIds.add(worktree.id) - const siblings = childrenByParent.get(parentId) - if (siblings) { - siblings.push(worktree) - } else { - childrenByParent.set(parentId, [worktree]) - } - } - if (sorted.length > MAX_EXACT_LINEAGE_WORKTREES) { - return layoutBoundedLineage(sorted, childrenByParent, childIds) - } - - const emitted = new Set() - const families: WorktreeFamily[] = [] - for (const root of sorted.filter((worktree) => !childIds.has(worktree.id))) { - if (!emitted.has(root.id)) { - families.push(buildExactFamily(root, childrenByParent, emitted)) - } - } - for (const worktree of sorted) { - if (!emitted.has(worktree.id)) { - families.push(buildExactFamily(worktree, childrenByParent, emitted)) - } - } - - return packAgentMapWorktrees(families) - .flatMap((family) => - family.worktrees.map((worktree) => ({ - ...worktree, - x: worktree.x + family.x, - y: worktree.y + family.y - })) - ) - .sort((a, b) => compareStable(a.id, b.id)) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts deleted file mode 100644 index d074c30b2ad..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.test.ts +++ /dev/null @@ -1,168 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { AGENT_MAP_WORKTREE_GAP, packAgentMapWorktrees } from './agent-map-worktree-packing' - -function circles(count = 80): { id: string; x: number; y: number; radius: number }[] { - return Array.from({ length: count }, (_, index) => ({ - id: `worktree-${index.toString().padStart(2, '0')}`, - x: 0, - y: 0, - radius: 28 + (index % 7) * 13 - })) -} - -function measuredCircles(count = 80): { - worktrees: ReturnType - coordinateReads: () => number -} { - let reads = 0 - const worktrees = circles(count).map(({ id, radius }) => { - let x = 0 - let y = 0 - return { - id, - radius, - get x() { - reads += 1 - return x - }, - set x(value: number) { - x = value - }, - get y() { - reads += 1 - return y - }, - set y(value: number) { - y = value - } - } - }) - return { worktrees, coordinateReads: () => reads } -} - -describe('packAgentMapWorktrees', () => { - it('keeps variable-radius rings deterministic and non-overlapping', () => { - const first = packAgentMapWorktrees(circles()) - const second = packAgentMapWorktrees(circles()) - - expect(second).toEqual(first) - for (const [index, worktree] of first.entries()) { - for (const other of first.slice(index + 1)) { - expect(Math.hypot(worktree.x - other.x, worktree.y - other.y)).toBeGreaterThanOrEqual( - worktree.radius + other.radius + AGENT_MAP_WORKTREE_GAP - 0.001 - ) - } - } - }) - - it('indexes rings that span multiple positive and negative grid cells', () => { - const packed = packAgentMapWorktrees( - [380, 260, 170, 145, 90].map((radius, index) => ({ - id: `large-${index}`, - x: 0, - y: 0, - radius - })) - ) - - expect(packed.some((worktree) => worktree.x < 0 || worktree.y < 0)).toBe(true) - for (const [index, worktree] of packed.entries()) { - for (const other of packed.slice(index + 1)) { - expect(Math.hypot(worktree.x - other.x, worktree.y - other.y)).toBeGreaterThanOrEqual( - worktree.radius + other.radius + AGENT_MAP_WORKTREE_GAP - 0.001 - ) - } - } - }) - - it('keeps capped large-map packing deterministic and compact', () => { - const first = packAgentMapWorktrees(circles(300)) - const second = packAgentMapWorktrees(circles(300)) - - expect(second).toEqual(first) - expect( - Math.max(...first.map((worktree) => Math.hypot(worktree.x, worktree.y) + worktree.radius)) - ).toBeLessThan(1_500) - let minimumGap = Number.POSITIVE_INFINITY - for (const [index, worktree] of first.entries()) { - for (const other of first.slice(index + 1)) { - minimumGap = Math.min( - minimumGap, - Math.hypot(worktree.x - other.x, worktree.y - other.y) - worktree.radius - other.radius - ) - } - } - expect(minimumGap).toBeGreaterThanOrEqual(AGENT_MAP_WORKTREE_GAP - 0.001) - }) - - it('bounds deterministic coordinate checks for larger maps', () => { - const { worktrees, coordinateReads } = measuredCircles(300) - - packAgentMapWorktrees(worktrees) - - expect(coordinateReads()).toBeLessThan(13_200_000) - }) - - it('bounds packing work for a thousand rings', () => { - const { worktrees, coordinateReads } = measuredCircles(1_000) - const packed = packAgentMapWorktrees(worktrees) - const positions = packed.map(({ id, x, y, radius }) => ({ id, x, y, radius })) - - expect(packed).toHaveLength(1_000) - expect( - packed.every((worktree) => Number.isFinite(worktree.x) && Number.isFinite(worktree.y)) - ).toBe(true) - expect(coordinateReads()).toBeLessThan(10_000_000) - expect(packAgentMapWorktrees(circles(1_000))).toEqual(positions) - let minimumGap = Number.POSITIVE_INFINITY - for (const [index, worktree] of positions.entries()) { - for (const other of positions.slice(index + 1)) { - minimumGap = Math.min( - minimumGap, - Math.hypot(worktree.x - other.x, worktree.y - other.y) - worktree.radius - other.radius - ) - } - } - expect(minimumGap).toBeGreaterThanOrEqual(AGENT_MAP_WORKTREE_GAP - 0.001) - }) - - it('bounds packing work when one ring dwarfs the rest', () => { - const { worktrees, coordinateReads } = measuredCircles(1_000) - worktrees[0].radius = 50_000_000 - const packed = packAgentMapWorktrees(worktrees) - - expect(packed).toHaveLength(1_000) - expect( - packed.every((worktree) => Number.isFinite(worktree.x) && Number.isFinite(worktree.y)) - ).toBe(true) - expect(coordinateReads()).toBeLessThan(10_000_000) - }) - - it('keeps the spatial index bounded for very large rings', () => { - const set = Map.prototype.set - let numericMapSets = 0 - Map.prototype.set = function (this: Map, key: unknown, value: unknown) { - if (typeof key === 'number') { - numericMapSets += 1 - } - return set.call(this, key, value) - } - try { - const packed = packAgentMapWorktrees( - Array.from({ length: 5 }, (_, index) => ({ - id: `huge-${index}`, - x: 0, - y: 0, - radius: 50_000_000 - index * 1_000_000 - })) - ) - - expect( - packed.every((worktree) => Number.isFinite(worktree.x) && Number.isFinite(worktree.y)) - ).toBe(true) - expect(numericMapSets).toBeLessThan(100) - } finally { - Map.prototype.set = set - } - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.ts b/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.ts deleted file mode 100644 index 4dab5ac2346..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map-worktree-packing.ts +++ /dev/null @@ -1,267 +0,0 @@ -import { - addAgentMapPackingCircle, - agentMapPackingCircleOverlaps, - AGENT_MAP_PACKING_SCORE_TOLERANCE, - AGENT_MAP_WORKTREE_GAP, - type AgentMapPackableCircle, - type AgentMapPackingSpatialIndex -} from './agent-map-packing-spatial-index' - -export { AGENT_MAP_WORKTREE_GAP } from './agent-map-packing-spatial-index' - -const PACKING_ANGLE_STEPS = 72 -const MAX_PACKING_CANDIDATE_ANCHORS = 128 -const MAX_DIRECT_OVERLAP_WORKTREES = 4 -const LARGE_PACKING_THRESHOLD = 256 -const VERY_LARGE_PACKING_THRESHOLD = 512 -const SCORE_TOLERANCE = AGENT_MAP_PACKING_SCORE_TOLERANCE -const CENTER_DIRECTIONS = [ - [-1, -1], - [0, -1], - [1, -1], - [-1, 0], - [1, 0], - [-1, 1], - [0, 1], - [1, 1] -] as const - -type PackableWorktree = AgentMapPackableCircle - -type PackingCandidate = { - x: number - y: number - enclosingRadius: number - distanceFromCenter: number - neighborDistance?: number -} - -type PackingSearchBudget = { - angleSteps: number - candidateAnchors: number -} - -function compareStable(a: string, b: string): number { - return a < b ? -1 : a > b ? 1 : 0 -} - -function hashFraction(value: string): number { - let hash = 2166136261 - for (let index = 0; index < value.length; index += 1) { - hash ^= value.charCodeAt(index) - hash = Math.imul(hash, 16777619) - } - return (hash >>> 0) / 0xffffffff -} - -function placedWorktreesOverlap( - candidate: Pick, - placed: PackableWorktree[] -): boolean { - return placed.some( - (worktree) => - Math.hypot(candidate.x - worktree.x, candidate.y - worktree.y) < - candidate.radius + worktree.radius + AGENT_MAP_WORKTREE_GAP - SCORE_TOLERANCE - ) -} - -function comparePackingScores( - a: PackingCandidate, - b: PackingCandidate, - placed: PackableWorktree[] -): number { - for (const key of ['enclosingRadius', 'distanceFromCenter'] as const) { - if (Math.abs(a[key] - b[key]) > SCORE_TOLERANCE) { - return a[key] - b[key] - } - } - a.neighborDistance ??= placed.reduce( - (sum, other) => sum + Math.hypot(a.x - other.x, a.y - other.y), - 0 - ) - b.neighborDistance ??= placed.reduce( - (sum, other) => sum + Math.hypot(b.x - other.x, b.y - other.y), - 0 - ) - return Math.abs(a.neighborDistance - b.neighborDistance) > SCORE_TOLERANCE - ? a.neighborDistance - b.neighborDistance - : 0 -} - -function compareBoundaryAnchors(a: PackableWorktree, b: PackableWorktree): number { - return ( - Math.hypot(b.x, b.y) + b.radius - (Math.hypot(a.x, a.y) + a.radius) || compareStable(a.id, b.id) - ) -} - -function addBoundaryAnchor( - boundaryAnchors: PackableWorktree[], - worktree: PackableWorktree, - maxAnchors: number -): void { - let low = 0 - let high = boundaryAnchors.length - while (low < high) { - const middle = (low + high) >>> 1 - if (compareBoundaryAnchors(worktree, boundaryAnchors[middle]) < 0) { - high = middle - } else { - low = middle + 1 - } - } - boundaryAnchors.splice(low, 0, worktree) - if (boundaryAnchors.length > maxAnchors) { - boundaryAnchors.pop() - } -} - -function placePackedWorktree( - worktree: PackableWorktree, - placed: PackableWorktree[], - boundaryAnchors: PackableWorktree[], - spatialIndex: AgentMapPackingSpatialIndex | null, - currentRadius: number, - searchBudget: PackingSearchBudget -): void { - let best: PackingCandidate | undefined - - const anchors = placed.length <= searchBudget.candidateAnchors ? placed : boundaryAnchors - const scoreNeighbors = - searchBudget.candidateAnchors === MAX_PACKING_CANDIDATE_ANCHORS ? placed : anchors - for (const anchor of anchors) { - const orbit = anchor.radius + worktree.radius + AGENT_MAP_WORKTREE_GAP - const angleOffset = hashFraction(`${worktree.id}:${anchor.id}`) * Math.PI * 2 - for (let step = 0; step < searchBudget.angleSteps; step += 1) { - const angle = angleOffset + (step / searchBudget.angleSteps) * Math.PI * 2 - const x = anchor.x + Math.cos(angle) * orbit - const y = anchor.y + Math.sin(angle) * orbit - const overlapCandidate = { x, y, radius: worktree.radius } - if ( - spatialIndex - ? agentMapPackingCircleOverlaps(overlapCandidate, spatialIndex) - : placedWorktreesOverlap(overlapCandidate, placed) - ) { - continue - } - const distanceFromCenter = Math.hypot(x, y) - const candidate = { - x, - y, - enclosingRadius: Math.max(currentRadius, distanceFromCenter + worktree.radius), - distanceFromCenter - } - if (!best || comparePackingScores(candidate, best, scoreNeighbors) < 0) { - best = candidate - } - } - } - - if (best) { - worktree.x = best.x - worktree.y = best.y - return - } - let fallbackX = Number.NEGATIVE_INFINITY - for (const candidate of placed) { - fallbackX = Math.max(fallbackX, candidate.x + candidate.radius) - } - worktree.x = fallbackX + worktree.radius + AGENT_MAP_WORKTREE_GAP - worktree.y = 0 -} - -function enclosingRadius(worktrees: PackableWorktree[], x: number, y: number): number { - let radius = 0 - for (const worktree of worktrees) { - radius = Math.max(radius, Math.hypot(worktree.x - x, worktree.y - y) + worktree.radius) - } - return radius -} - -function packingSearchBudget(count: number): PackingSearchBudget { - if (count > VERY_LARGE_PACKING_THRESHOLD) { - return { angleSteps: 16, candidateAnchors: 12 } - } - if (count > LARGE_PACKING_THRESHOLD) { - return { angleSteps: 24, candidateAnchors: 64 } - } - return { - angleSteps: PACKING_ANGLE_STEPS, - candidateAnchors: MAX_PACKING_CANDIDATE_ANCHORS - } -} - -function findEnclosingCenter( - worktrees: PackableWorktree[], - bounds: { left: number; right: number; top: number; bottom: number } -): { x: number; y: number } { - let x = (bounds.left + bounds.right) / 2 - let y = (bounds.top + bounds.bottom) / 2 - let radius = enclosingRadius(worktrees, x, y) - let step = Math.max(bounds.right - bounds.left, bounds.bottom - bounds.top) / 4 - - while (step > SCORE_TOLERANCE) { - let improved = false - for (const [dx, dy] of CENTER_DIRECTIONS) { - const candidateX = x + dx * step - const candidateY = y + dy * step - const candidateRadius = enclosingRadius(worktrees, candidateX, candidateY) - if (candidateRadius < radius - SCORE_TOLERANCE) { - x = candidateX - y = candidateY - radius = candidateRadius - improved = true - } - } - if (!improved) { - step /= 2 - } - } - return { x, y } -} - -export function packAgentMapWorktrees(worktrees: T[]): T[] { - const packed = [...worktrees].sort((a, b) => b.radius - a.radius || compareStable(a.id, b.id)) - const placed: PackableWorktree[] = [] - const boundaryAnchors: PackableWorktree[] = [] - const searchBudget = packingSearchBudget(packed.length) - const spatialIndex: AgentMapPackingSpatialIndex | null = - packed.length > MAX_DIRECT_OVERLAP_WORKTREES ? new Map() : null - let currentRadius = 0 - for (const worktree of packed) { - if (placed.length > 0) { - placePackedWorktree( - worktree, - placed, - boundaryAnchors, - spatialIndex, - currentRadius, - searchBudget - ) - } - placed.push(worktree) - addBoundaryAnchor(boundaryAnchors, worktree, searchBudget.candidateAnchors) - if (spatialIndex) { - addAgentMapPackingCircle(spatialIndex, worktree) - } - currentRadius = Math.max(currentRadius, Math.hypot(worktree.x, worktree.y) + worktree.radius) - } - if (packed.length === 0) { - return packed - } - let left = Number.POSITIVE_INFINITY - let right = Number.NEGATIVE_INFINITY - let top = Number.POSITIVE_INFINITY - let bottom = Number.NEGATIVE_INFINITY - for (const worktree of packed) { - left = Math.min(left, worktree.x - worktree.radius) - right = Math.max(right, worktree.x + worktree.radius) - top = Math.min(top, worktree.y - worktree.radius) - bottom = Math.max(bottom, worktree.y + worktree.radius) - } - const center = findEnclosingCenter(packed, { left, right, top, bottom }) - for (const worktree of packed) { - worktree.x -= center.x - worktree.y -= center.y - } - return packed.sort((a, b) => compareStable(a.id, b.id)) -} diff --git a/src/renderer/src/components/dashboard-popout/agent-map.css b/src/renderer/src/components/dashboard-popout/agent-map.css deleted file mode 100644 index 189540305a7..00000000000 --- a/src/renderer/src/components/dashboard-popout/agent-map.css +++ /dev/null @@ -1,595 +0,0 @@ -.agent-map-canvas { - background-image: radial-gradient( - color-mix(in srgb, var(--muted-foreground) 16%, transparent) 0.6px, - transparent 0.6px - ); - background-size: 20px 20px; -} - -.agent-map-canvas::before { - position: absolute; - inset: 0; - background: radial-gradient( - circle at 45% 48%, - color-mix(in srgb, var(--muted) 34%, transparent), - transparent 70% - ); - content: ''; - pointer-events: none; -} - -.agent-map-project-ring { - fill: color-mix(in srgb, var(--card) 22%, transparent); - stroke: color-mix(in srgb, var(--ring) 58%, transparent); - stroke-width: 1.25; - transform-box: fill-box; - transform-origin: center; - transition: - fill 160ms ease, - stroke 160ms ease, - transform 220ms cubic-bezier(0.2, 1.35, 0.4, 1); - vector-effect: non-scaling-stroke; -} - -/* Group hover includes nested contents; held state bridges pointer capture. */ -:where( - .agent-map-project-node:hover, - .agent-map-project-node:focus-within, - .agent-map-project-node.is-held - ) - .agent-map-project-ring { - fill: color-mix(in srgb, var(--card) 42%, transparent); - stroke: var(--ring); - transform: scale(1.018); -} - -.agent-map-project-node, -.agent-map-worktree-group { - transform-box: fill-box; - transform-origin: center; -} - -.agent-map-project-node.is-entering, -.agent-map-worktree-group.is-entering { - animation: agent-map-ring-enter 420ms cubic-bezier(0.2, 1.35, 0.4, 1) both; -} - -.agent-map-project-node.is-exiting, -.agent-map-worktree-group.is-exiting { - opacity: 0; - pointer-events: none; - transform: scale(0.86); - transition: - opacity 220ms ease-in, - transform 260ms cubic-bezier(0.4, 0, 1, 1); -} - -.agent-map-worktree-label { - fill: var(--foreground); - font-family: Geist, var(--font-sans); - font-weight: 600; - letter-spacing: 0.05em; - paint-order: stroke fill; - pointer-events: none; - stroke: var(--background); - stroke-linejoin: round; - stroke-width: 4px; -} - -.agent-map-project-label-frame { - overflow: visible; - pointer-events: none; -} - -.agent-map-project-label { - display: flex; - width: max-content; - max-width: calc(100% - 8px); - height: 100%; - align-items: center; - justify-content: center; - gap: 4px; - margin-inline: auto; - color: var(--foreground); - font-family: Geist, var(--font-sans); - font-size: 13px; - font-weight: 600; - letter-spacing: 0.05em; - line-height: 1; - white-space: nowrap; -} - -.agent-map-project-name { - min-width: 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - -webkit-text-stroke: 4px var(--background); - paint-order: stroke fill; -} - -.agent-map-project-count, -.agent-map-worktree-count { - fill: var(--muted-foreground); - font-family: Geist, var(--font-sans); - letter-spacing: 0.05em; - paint-order: stroke fill; - pointer-events: none; - stroke: var(--background); - stroke-linejoin: round; - stroke-width: 4px; -} - -.agent-map-project-count { - font-size: 11px; - text-anchor: middle; -} - -.agent-map-worktree-ring { - cursor: pointer; - fill: color-mix(in srgb, var(--card) 48%, transparent); - outline: none; - stroke: color-mix(in srgb, var(--muted-foreground) 42%, transparent); - stroke-width: 1; - transform-box: fill-box; - transform-origin: center; - transition: - fill 160ms ease, - stroke 160ms ease, - stroke-width 160ms ease, - transform 210ms cubic-bezier(0.2, 1.35, 0.4, 1); - vector-effect: non-scaling-stroke; -} - -.agent-map-worktree-status-glow { - fill: none; - pointer-events: none; - stroke-width: 9; - vector-effect: non-scaling-stroke; -} - -.agent-map-worktree-status-glow.fleet-status-blocked { - stroke: color-mix(in srgb, var(--color-red-500) 28%, transparent); -} - -.agent-map-worktree-status-glow.fleet-status-waiting { - stroke: color-mix(in srgb, var(--agent-question) 32%, transparent); -} - -.agent-map-worktree-status-glow.fleet-status-working { - stroke: color-mix(in srgb, var(--color-yellow-500) 28%, transparent); -} - -.agent-map-worktree-status-glow.fleet-status-done { - stroke: color-mix(in srgb, var(--color-emerald-500) 34%, transparent); -} - -:where( - .agent-map-worktree-group:hover, - .agent-map-worktree-group:focus-within, - .agent-map-worktree-group.is-held - ) - .agent-map-worktree-ring { - fill: color-mix(in srgb, var(--card) 72%, transparent); - stroke: var(--ring); - transform: scale(1.035); -} - -.agent-map-worktree-ring:focus-visible { - fill: color-mix(in srgb, var(--ring) 8%, var(--card)); - outline: none; - stroke: var(--ring); - stroke-width: 2; -} - -.agent-map-worktree-ring.is-selected { - fill: color-mix(in srgb, var(--ring) 6%, var(--card)); - stroke: var(--ring); - stroke-width: 1.5; -} - -.agent-map-worktree-ring.is-open { - fill: color-mix(in srgb, var(--ring) 18%, var(--card)); - stroke: var(--ring); - stroke-width: 2.5; -} - -.agent-map-worktree-ring.is-working { - stroke: var(--color-yellow-500); -} - -.agent-map-worktree-ring.is-waiting { - stroke: var(--agent-question); -} - -.agent-map-worktree-ring.is-blocked { - stroke: var(--color-red-500); -} - -/* Whole workspace has settled and something in it is still unread. */ -.agent-map-worktree-ring.is-done { - stroke: var(--color-emerald-500); -} - -.agent-map-worktree-label { - font-size: 12px; - font-weight: 500; - letter-spacing: 0.01em; - text-anchor: middle; -} - -.agent-map-worktree-count { - font-size: 11px; - text-anchor: middle; -} - -.agent-map-worktree-label-layer, -.agent-map-worktree-hover-label-layer { - pointer-events: none; -} - -.agent-map-worktree-label-group { - opacity: 0; - pointer-events: none; - transition: opacity 180ms ease; -} - -.agent-map-worktree-label-group.is-visible, -.agent-map-worktree-label-group.is-active { - opacity: 1; -} - -.agent-map-worktree-count { - opacity: 0; -} - -.agent-map-worktree-label-group.is-count-visible .agent-map-worktree-count { - opacity: 1; -} - -.agent-map-worktree-label-group.is-exiting { - opacity: 0; -} - -.agent-map-agent-node { - cursor: pointer; - outline: none; - transition: - filter 180ms ease-in, - opacity 180ms ease-in; -} - -.agent-map-agent-visual { - transform-box: fill-box; - transform-origin: center; - transition: transform 200ms cubic-bezier(0.2, 1.35, 0.4, 1); -} - -.agent-map-agent-node:hover .agent-map-agent-visual, -.agent-map-agent-node:focus-visible .agent-map-agent-visual { - transform: scale(1.12); -} - -.agent-map-agent-node.is-entering .agent-map-agent-visual { - animation: agent-map-agent-enter 420ms cubic-bezier(0.2, 1.35, 0.4, 1) both; -} - -.agent-map-agent-node.is-exiting { - filter: blur(1px); - opacity: 0; - pointer-events: none; -} - -.agent-map-agent-node.is-exiting .agent-map-agent-visual { - transform: scale(0.58); - transition-timing-function: cubic-bezier(0.4, 0, 1, 1); -} - -.agent-map-worktree-lineage-link { - fill: none; - pointer-events: none; - stroke: color-mix(in srgb, var(--muted-foreground) 34%, transparent); - stroke-linecap: round; - stroke-width: 1.25; - transition: opacity 180ms ease; - vector-effect: non-scaling-stroke; -} - -.agent-map-lineage-link { - fill: none; - pointer-events: none; - stroke: color-mix(in srgb, var(--muted-foreground) 42%, transparent); - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 1; - transition: opacity 180ms ease; - vector-effect: non-scaling-stroke; -} - -.agent-map-worktree-lineage-link.is-entering, -.agent-map-lineage-link.is-entering { - animation: agent-map-link-enter 260ms ease-out both; -} - -.agent-map-worktree-lineage-link.is-exiting, -.agent-map-lineage-link.is-exiting { - opacity: 0; -} - -.agent-map-agent-hit { - fill: transparent; - stroke: transparent; - stroke-width: 1.5; - vector-effect: non-scaling-stroke; -} - -.agent-map-agent-mark { - fill: var(--background); - stroke-width: 1.5; - vector-effect: non-scaling-stroke; -} - -.agent-map-agent-status-flare { - fill: none; - pointer-events: none; - stroke-width: 2; - transform-box: fill-box; - transform-origin: center; - vector-effect: non-scaling-stroke; - /* Keep in step with AGENT_MAP_STATUS_FLARE_MS, which gates how long the element stays - mounted. The performance test asserts the two agree. */ - animation: agent-map-status-flare 1400ms cubic-bezier(0.25, 0.5, 0.25, 1) both; -} - -.agent-map-agent-status-flare.fleet-status-waiting { - stroke: var(--agent-question); -} - -.agent-map-agent-status-flare.fleet-status-done { - stroke: var(--color-emerald-500); -} - -@keyframes agent-map-status-flare { - 0% { - opacity: 0.9; - transform: scale(0.62); - } - - 100% { - opacity: 0; - transform: scale(2.5); - } -} - -.agent-map-agent-status-glow { - fill: none; - pointer-events: none; - stroke-width: 7; - vector-effect: non-scaling-stroke; -} - -.agent-map-agent-status-glow.fleet-status-working { - stroke: color-mix(in srgb, var(--color-yellow-500) 32%, transparent); -} - -.agent-map-agent-status-glow.fleet-status-waiting { - stroke: color-mix(in srgb, var(--agent-question) 48%, transparent); -} - -.agent-map-agent-status-glow.fleet-status-blocked { - stroke: color-mix(in srgb, var(--color-red-500) 38%, transparent); -} - -/* Unread finishes only. `fleet-status-done-seen` gets no glow — that is the whole - difference between "you have not looked at this" and "you have". */ -.agent-map-agent-status-glow.fleet-status-done { - stroke: color-mix(in srgb, var(--color-emerald-500) 46%, transparent); -} - -.agent-map-agent-icon { - overflow: visible; - pointer-events: none; -} - -.agent-map-agent-icon > div { - display: flex; - width: 100%; - height: 100%; - align-items: center; - justify-content: center; - color: var(--foreground); -} - -.agent-map-agent-node:hover .agent-map-agent-hit, -.agent-map-agent-node:focus-visible .agent-map-agent-hit { - fill: color-mix(in srgb, var(--ring) 10%, transparent); - stroke: var(--ring); -} - -.agent-map-agent-node.is-selected .agent-map-agent-hit { - fill: color-mix(in srgb, var(--ring) 18%, transparent); - stroke: var(--ring); - stroke-width: 3; -} - -.agent-map-agent-node.is-selected .agent-map-agent-mark { - fill: color-mix(in srgb, var(--ring) 10%, var(--background)); -} - -.fleet-status-working .agent-map-agent-mark { - stroke: var(--color-yellow-500); -} - -.fleet-status-monitoring .agent-map-agent-mark { - stroke: var(--color-yellow-500); -} - -.fleet-status-blocked .agent-map-agent-mark { - stroke: var(--color-red-500); -} - -.fleet-status-waiting .agent-map-agent-mark { - stroke: var(--agent-question); -} - -/* Unread: filled core. Fill survives zoom-out further than a halo does, and it is the - one channel still legible once the node is a few pixels wide. */ -.fleet-status-done .agent-map-agent-mark { - fill: color-mix(in srgb, var(--color-emerald-500) 38%, var(--background)); - stroke: var(--color-emerald-500); - stroke-width: 2; -} - -/* Seen: hollow, and still unmistakably green — you read it, you have not landed it. */ -.fleet-status-done-seen .agent-map-agent-mark { - stroke: color-mix(in srgb, var(--color-emerald-500) 62%, transparent); -} - -.fleet-status-idle .agent-map-agent-mark { - stroke: color-mix(in srgb, var(--color-neutral-500) 55%, transparent); -} - -.agent-map-agent-unread-mark { - fill: var(--color-amber-500); - pointer-events: none; - stroke: var(--background); - stroke-width: 2; -} - -/* Shape cue for 'waiting': hue alone can't carry it at low zoom or for - red-green CVD, where orange and blocked-red converge. */ -.agent-map-agent-question-backdrop { - fill: var(--background); - pointer-events: none; - stroke: none; -} - -.agent-map-agent-question-icon { - overflow: visible; - pointer-events: none; -} - -.agent-map-aggregate-node circle { - fill: color-mix(in srgb, var(--muted-foreground) 12%, var(--card)); - stroke: color-mix(in srgb, var(--muted-foreground) 46%, transparent); - stroke-width: 1; - vector-effect: non-scaling-stroke; -} - -.agent-map-aggregate-node text { - fill: var(--muted-foreground); - font-family: Geist, var(--font-sans); - font-size: 11px; - font-weight: 600; - text-anchor: middle; -} - -.agent-map-legend-dot { - display: block; - width: 7px; - height: 7px; - border-radius: 9999px; - background: var(--muted-foreground); - opacity: 0.42; -} - -.agent-map-legend-dot.fleet-status-working { - border: 2px solid var(--color-yellow-500); - border-top-color: transparent; - background: transparent; - opacity: 1; -} - -.agent-map-legend-dot.fleet-status-blocked { - background: var(--color-red-500); - opacity: 1; -} - -.agent-map-legend-dot.fleet-status-waiting { - background: var(--agent-question); - box-shadow: 0 0 4px color-mix(in srgb, var(--agent-question) 72%, transparent); - opacity: 1; -} - -.agent-map-legend-dot.fleet-status-done { - background: var(--color-emerald-500); - opacity: 1; -} - -@keyframes agent-map-agent-enter { - 0% { - opacity: 0; - transform: scale(0.45); - } - 65% { - opacity: 1; - transform: scale(1.08); - } - 100% { - opacity: 1; - transform: scale(1); - } -} - -@keyframes agent-map-ring-enter { - 0% { - opacity: 0; - transform: scale(0.76); - } - 72% { - opacity: 1; - transform: scale(1.025); - } - 100% { - opacity: 1; - transform: scale(1); - } -} - -@keyframes agent-map-link-enter { - from { - opacity: 0; - } - to { - opacity: 1; - } -} - -@media (prefers-reduced-motion: reduce) { - .agent-map-project-ring, - .agent-map-project-node, - .agent-map-worktree-ring, - .agent-map-worktree-group, - .agent-map-worktree-label-group, - .agent-map-agent-node, - .agent-map-agent-visual, - .agent-map-agent-mark, - .agent-map-agent-status-flare, - .agent-map-lineage-link, - .agent-map-worktree-lineage-link { - animation: none; - transition: none; - } - - /* No flare without motion — the halo and filled core already carry the state. */ - .agent-map-agent-status-flare { - display: none; - } - - :where( - .agent-map-project-node:hover, - .agent-map-project-node:focus-within, - .agent-map-project-node.is-held - ) - .agent-map-project-ring, - :where( - .agent-map-worktree-group:hover, - .agent-map-worktree-group:focus-within, - .agent-map-worktree-group.is-held - ) - .agent-map-worktree-ring, - .agent-map-agent-node:hover .agent-map-agent-visual, - .agent-map-agent-node:focus-visible .agent-map-agent-visual { - transform: none; - } -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapCanvasSize.ts b/src/renderer/src/components/dashboard-popout/useAgentMapCanvasSize.ts deleted file mode 100644 index c44843802f8..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapCanvasSize.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { useEffect, useState, type RefObject } from 'react' - -export type AgentMapCanvasSize = { width: number; height: number } - -export function useAgentMapCanvasSize( - containerRef: RefObject, - onResize: () => void -): AgentMapCanvasSize { - const [size, setSize] = useState({ width: 800, height: 560 }) - - useEffect(() => { - const container = containerRef.current - if (!container || typeof ResizeObserver === 'undefined') { - return - } - const measure = (): void => { - const next = container.getBoundingClientRect() - if (next.width <= 0 || next.height <= 0) { - return - } - onResize() - setSize((current) => - current.width === next.width && current.height === next.height - ? current - : { width: next.width, height: next.height } - ) - } - measure() - const observer = new ResizeObserver(measure) - observer.observe(container) - return () => observer.disconnect() - }, [containerRef, onResize]) - - return size -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapContextMenus.tsx b/src/renderer/src/components/dashboard-popout/useAgentMapContextMenus.tsx deleted file mode 100644 index 198885bdf67..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapContextMenus.tsx +++ /dev/null @@ -1,156 +0,0 @@ -import { useCallback, useRef, useState } from 'react' -import type { - DashboardSleepWorkspaceArgs, - DashboardSpawnAgentArgs -} from '../../../../shared/dashboard-snapshot' -import type { TuiAgent } from '../../../../shared/tui-agent' -import type { AgentMapProjectRing, AgentMapWorktreeRing } from './agent-map-layout' -import { - AgentMapSnapshotWorkspaceMenu, - type AgentMapSnapshotWorkspaceMenuRequest -} from './AgentMapSnapshotWorkspaceMenu' -import { - AgentMapProjectContextMenuLoader, - type AgentMapProjectContextMenuRequest -} from './AgentMapProjectContextMenuLoader' -import { - AgentMapWorkspaceContextMenuLoader, - type AgentMapWorkspaceContextMenuRequest -} from './AgentMapWorkspaceContextMenuLoader' - -type UseAgentMapContextMenusArgs = { - /** True only where the app store lives; the pop-out gets the snapshot menu. */ - enabled: boolean - launchableAgentsByWorktreeId?: Record - onOpenChange?: (open: boolean) => void - onSpawnAgent?: (args: DashboardSpawnAgentArgs) => void - onSleepWorkspace?: (args: DashboardSleepWorkspaceArgs) => void -} - -export function useAgentMapContextMenus({ - enabled, - launchableAgentsByWorktreeId, - onOpenChange, - onSpawnAgent, - onSleepWorkspace -}: UseAgentMapContextMenusArgs): { - contextMenus: React.JSX.Element | null - onOpenProjectContextMenu?: ( - event: React.MouseEvent, - project: AgentMapProjectRing - ) => void - onOpenWorkspaceContextMenu?: ( - event: React.MouseEvent, - worktree: AgentMapWorktreeRing - ) => void -} { - const requestIdRef = useRef(0) - const [workspaceRequest, setWorkspaceRequest] = - useState(null) - const [projectRequest, setProjectRequest] = useState( - null - ) - const [snapshotRequest, setSnapshotRequest] = - useState(null) - const snapshotMenuEnabled = - !enabled && (onSpawnAgent !== undefined || onSleepWorkspace !== undefined) - const openSnapshotWorkspaceMenu = useCallback( - (event: React.MouseEvent, worktree: AgentMapWorktreeRing): void => { - requestIdRef.current += 1 - setSnapshotRequest({ - id: requestIdRef.current, - worktreeId: worktree.worktreeId, - worktreeName: worktree.name, - launchableAgents: launchableAgentsByWorktreeId?.[worktree.worktreeId] ?? [], - clientX: event.clientX, - clientY: event.clientY - }) - }, - [launchableAgentsByWorktreeId] - ) - const openWorkspaceContextMenu = useCallback( - (event: React.MouseEvent, worktree: AgentMapWorktreeRing): void => { - requestIdRef.current += 1 - setProjectRequest(null) - setWorkspaceRequest({ - id: requestIdRef.current, - worktreeId: worktree.worktreeId, - executionHostId: worktree.executionHostId, - clientX: event.clientX, - clientY: event.clientY, - altKey: event.altKey - }) - }, - [] - ) - const openProjectContextMenu = useCallback( - (event: React.MouseEvent, project: AgentMapProjectRing): void => { - requestIdRef.current += 1 - setWorkspaceRequest(null) - setProjectRequest({ - id: requestIdRef.current, - projectId: project.id, - clientX: event.clientX, - clientY: event.clientY - }) - }, - [] - ) - const handleWorkspaceLifecycleComplete = useCallback((): void => { - setWorkspaceRequest(null) - }, []) - const handleProjectOpenChange = useCallback( - (open: boolean): void => { - onOpenChange?.(open) - if (!open) { - setProjectRequest(null) - } - }, - [onOpenChange] - ) - const handleSnapshotOpenChange = useCallback( - (open: boolean): void => { - onOpenChange?.(open) - if (!open) { - setSnapshotRequest(null) - } - }, - [onOpenChange] - ) - const contextMenus = snapshotMenuEnabled ? ( - snapshotRequest ? ( - - ) : null - ) : enabled ? ( - <> - {workspaceRequest ? ( - - ) : null} - {projectRequest ? ( - - ) : null} - - ) : null - - return { - contextMenus, - onOpenProjectContextMenu: enabled ? openProjectContextMenu : undefined, - onOpenWorkspaceContextMenu: enabled - ? openWorkspaceContextMenu - : snapshotMenuEnabled - ? openSnapshotWorkspaceMenu - : undefined - } -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx b/src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx deleted file mode 100644 index 1cdddd5570a..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapFilters.test.tsx +++ /dev/null @@ -1,69 +0,0 @@ -// @vitest-environment happy-dom - -import { act, renderHook } from '@testing-library/react' -import { describe, expect, it } from 'vitest' -import { AGENT_MAP_TIME_FIELDS, AGENT_MAP_TIME_MAX_INDEX } from './agent-map-time-filter' -import { useAgentMapFilters } from './useAgentMapFilters' - -describe('useAgentMapFilters', () => { - it('resets states without clearing the other map filters', () => { - const hook = renderHook(() => useAgentMapFilters(['claude', 'codex'])) - - act(() => hook.result.current.applyQuickView('stuck')) - act(() => hook.result.current.resetStates()) - - expect([...hook.result.current.states]).toEqual(['attention', 'working', 'done', 'idle']) - expect(hook.result.current.timeRanges.sinceMessage).toEqual({ - min: 4, - max: AGENT_MAP_TIME_MAX_INDEX - }) - expect(hook.result.current.activeCount).toBe(1) - }) - - it('preserves a muted agent type across disappearance and reappearance', () => { - let agentTypes = ['claude', 'codex'] - const hook = renderHook(() => useAgentMapFilters(agentTypes)) - - act(() => hook.result.current.toggleAgentType('claude')) - agentTypes = ['codex'] - hook.rerender() - - expect([...hook.result.current.agentTypes]).toEqual(['codex']) - expect(hook.result.current.activeCount).toBe(0) - - agentTypes = ['claude', 'codex'] - hook.rerender() - - expect([...hook.result.current.agentTypes]).toEqual(['codex']) - expect(hook.result.current.activeCount).toBe(1) - }) - - it('enables a newly discovered agent type', () => { - let agentTypes = ['claude'] - const hook = renderHook(() => useAgentMapFilters(agentTypes)) - - agentTypes = ['claude', 'grok'] - hook.rerender() - - expect([...hook.result.current.agentTypes]).toEqual(['claude', 'grok']) - }) - - it('preserves each time-range identity across unrelated facet updates', () => { - let agentTypes = ['claude', 'codex'] - const hook = renderHook(() => useAgentMapFilters(agentTypes)) - const ranges = hook.result.current.timeRanges - const fields = AGENT_MAP_TIME_FIELDS.map((field) => ranges[field]) - - act(() => hook.result.current.toggleState('done')) - act(() => hook.result.current.toggleAgentType('claude')) - act(() => hook.result.current.setUnreadOnly(true)) - act(() => hook.result.current.setOrchestrationOnly(true)) - agentTypes = ['claude', 'codex', 'grok'] - hook.rerender() - - expect(hook.result.current.timeRanges).toBe(ranges) - AGENT_MAP_TIME_FIELDS.forEach((field, index) => { - expect(hook.result.current.timeRanges[field]).toBe(fields[index]) - }) - }) -}) diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapFilters.ts b/src/renderer/src/components/dashboard-popout/useAgentMapFilters.ts deleted file mode 100644 index 330a05947e9..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapFilters.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { useCallback, useMemo, useState } from 'react' -import type { AgentMapState } from './agent-map-filter' -import { - applyAgentMapQuickView, - emptyAgentMapFilterState, - ALL_AGENT_MAP_STATES, - type AgentMapFilterState, - type AgentMapQuickViewId -} from './agent-map-quick-views' -import { - activeAgentMapTimeFields, - fullAgentMapTimeRanges, - type AgentMapTimeField, - type AgentMapTimeRange -} from './agent-map-time-filter' - -export type AgentMapFilterControls = AgentMapFilterState & { - activeCount: number - toggleState: (state: AgentMapState) => void - resetStates: () => void - toggleAgentType: (agentType: string) => void - setTimeRange: (field: AgentMapTimeField, range: AgentMapTimeRange) => void - resetTimeRanges: () => void - setUnreadOnly: (only: boolean) => void - setOrchestrationOnly: (only: boolean) => void - applyQuickView: (id: AgentMapQuickViewId) => void - reset: () => void -} - -type AgentMapFacetState = Omit - -function toggle(current: ReadonlySet, value: T): Set { - const next = new Set(current) - if (!next.delete(value)) { - next.add(value) - } - return next -} - -function mapFacets(state: AgentMapFilterState): AgentMapFacetState { - const { agentTypes: _agentTypes, ...facets } = state - return facets -} - -/** Map-only filter state. It lives on the board rather than inside the map so - * the shared toolbar filter — the map has no rail of its own — can drive it. */ -export function useAgentMapFilters(agentTypes: readonly string[]): AgentMapFilterControls { - const [filters, setFilters] = useState(() => - mapFacets(emptyAgentMapFilterState(agentTypes)) - ) - const [mutedAgentTypes, setMutedAgentTypes] = useState>(() => new Set()) - const enabledAgentTypes = useMemo( - () => new Set(agentTypes.filter((agentType) => !mutedAgentTypes.has(agentType))), - [agentTypes, mutedAgentTypes] - ) - - const patch = useCallback( - (next: Partial) => setFilters((current) => ({ ...current, ...next })), - [] - ) - - const activeCount = - (filters.states.size === ALL_AGENT_MAP_STATES.length ? 0 : 1) + - (enabledAgentTypes.size === agentTypes.length ? 0 : 1) + - activeAgentMapTimeFields(filters.timeRanges).length + - (filters.unreadOnly ? 1 : 0) + - (filters.orchestrationOnly ? 1 : 0) - - return { - ...filters, - agentTypes: enabledAgentTypes, - activeCount, - toggleState: useCallback( - (state) => setFilters((c) => ({ ...c, states: toggle(c.states, state) })), - [] - ), - resetStates: useCallback( - () => patch({ states: new Set(ALL_AGENT_MAP_STATES) }), - [patch] - ), - toggleAgentType: useCallback( - (agentType) => setMutedAgentTypes((current) => toggle(current, agentType)), - [] - ), - setTimeRange: useCallback( - (field, range) => - setFilters((c) => ({ ...c, timeRanges: { ...c.timeRanges, [field]: range } })), - [] - ), - resetTimeRanges: useCallback(() => patch({ timeRanges: fullAgentMapTimeRanges() }), [patch]), - setUnreadOnly: useCallback((only) => patch({ unreadOnly: only }), [patch]), - setOrchestrationOnly: useCallback((only) => patch({ orchestrationOnly: only }), [patch]), - applyQuickView: useCallback( - (id) => { - setFilters(mapFacets(applyAgentMapQuickView(id, agentTypes))) - setMutedAgentTypes(new Set()) - }, - [agentTypes] - ), - reset: useCallback(() => { - setFilters(mapFacets(emptyAgentMapFilterState(agentTypes))) - setMutedAgentTypes(new Set()) - }, [agentTypes]) - } -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapMotionLayout.ts b/src/renderer/src/components/dashboard-popout/useAgentMapMotionLayout.ts deleted file mode 100644 index 6694c95cf51..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapMotionLayout.ts +++ /dev/null @@ -1,279 +0,0 @@ -import { useEffect, useMemo, useRef, useState } from 'react' -import type { - AgentMapAgentNode, - AgentMapLayout, - AgentMapProjectRing, - AgentMapWorktreeRing -} from './agent-map-layout' - -export const AGENT_MAP_EXIT_DURATION_MS = 260 -export const AGENT_MAP_ENTER_DURATION_MS = 420 - -function allAgentIds(layout: AgentMapLayout): Set { - return new Set( - layout.projects.flatMap((project) => - project.worktrees.flatMap((worktree) => worktree.agents.map((agent) => agent.card.paneKey)) - ) - ) -} - -function allWorktreeIds(layout: AgentMapLayout): Set { - return new Set( - layout.projects.flatMap((project) => project.worktrees.map((worktree) => worktree.id)) - ) -} - -function retainMotionState( - previous: T | undefined, - next: T -): T { - return { - ...next, - motionState: !previous - ? 'entering' - : previous.motionState === 'entering' - ? 'entering' - : undefined - } -} - -function reconcileAgents( - previous: AgentMapWorktreeRing, - next: AgentMapWorktreeRing, - nextAgentIds: ReadonlySet -): AgentMapAgentNode[] { - const previousById = new Map(previous.agents.map((agent) => [agent.card.paneKey, agent])) - const nextIds = new Set(next.agents.map((agent) => agent.card.paneKey)) - const agents = next.agents.map((agent) => - retainMotionState(previousById.get(agent.card.paneKey), agent) - ) - - for (const agent of previous.agents) { - if (!nextIds.has(agent.card.paneKey) && !nextAgentIds.has(agent.card.paneKey)) { - agents.push({ ...agent, motionState: 'exiting' }) - } - } - return agents -} - -function enteringWorktree(worktree: AgentMapWorktreeRing): AgentMapWorktreeRing { - return { - ...worktree, - motionState: 'entering', - agents: worktree.agents.map((agent) => ({ ...agent, motionState: undefined })) - } -} - -function exitingWorktree(worktree: AgentMapWorktreeRing): AgentMapWorktreeRing { - return { - ...worktree, - motionState: 'exiting', - agents: worktree.agents.map((agent) => ({ ...agent, motionState: undefined })) - } -} - -function reconcileWorktrees( - previous: AgentMapProjectRing, - next: AgentMapProjectRing, - nextAgentIds: ReadonlySet, - nextWorktreeIds: ReadonlySet -): AgentMapWorktreeRing[] { - const previousById = new Map(previous.worktrees.map((worktree) => [worktree.id, worktree])) - const nextIds = new Set(next.worktrees.map((worktree) => worktree.id)) - const worktrees = next.worktrees.map((worktree) => { - const previousWorktree = previousById.get(worktree.id) - if (!previousWorktree) { - return enteringWorktree(worktree) - } - return { - ...retainMotionState(previousWorktree, worktree), - agents: reconcileAgents(previousWorktree, worktree, nextAgentIds) - } - }) - - for (const worktree of previous.worktrees) { - if (!nextIds.has(worktree.id) && !nextWorktreeIds.has(worktree.id)) { - worktrees.push(exitingWorktree(worktree)) - } - } - return worktrees -} - -function enteringProject(project: AgentMapProjectRing): AgentMapProjectRing { - return { - ...project, - motionState: 'entering', - worktrees: project.worktrees.map((worktree) => ({ - ...worktree, - motionState: undefined, - agents: worktree.agents.map((agent) => ({ ...agent, motionState: undefined })) - })) - } -} - -function exitingProject(project: AgentMapProjectRing): AgentMapProjectRing { - return { - ...project, - motionState: 'exiting', - worktrees: project.worktrees.map((worktree) => ({ - ...worktree, - motionState: undefined, - agents: worktree.agents.map((agent) => ({ ...agent, motionState: undefined })) - })) - } -} - -export function reconcileAgentMapMotionLayout( - previous: AgentMapLayout, - next: AgentMapLayout -): AgentMapLayout { - const previousById = new Map(previous.projects.map((project) => [project.id, project])) - const nextProjectIds = new Set(next.projects.map((project) => project.id)) - const nextAgentIds = allAgentIds(next) - const nextWorktreeIds = allWorktreeIds(next) - const projects = next.projects.map((project) => { - const previousProject = previousById.get(project.id) - if (!previousProject) { - return enteringProject(project) - } - return { - ...retainMotionState(previousProject, project), - worktrees: reconcileWorktrees(previousProject, project, nextAgentIds, nextWorktreeIds) - } - }) - - for (const project of previous.projects) { - if (!nextProjectIds.has(project.id)) { - projects.push(exitingProject(project)) - } - } - return { - ...next, - projects - } -} - -function motionNodeSignature(layout: AgentMapLayout, motionState: 'entering' | 'exiting'): string { - const nodeIds = layout.projects.flatMap((project) => [ - ...(project.motionState === motionState ? [`project:${project.id}`] : []), - ...project.worktrees.flatMap((worktree) => [ - ...(worktree.motionState === motionState ? [`worktree:${worktree.id}`] : []), - ...worktree.agents - .filter((agent) => agent.motionState === motionState) - .map((agent) => `agent:${agent.card.paneKey}`) - ]) - ]) - return nodeIds.length > 0 ? JSON.stringify(nodeIds) : '' -} - -function clearEnteringAgentMapLayout(layout: AgentMapLayout): AgentMapLayout { - return { - ...layout, - projects: layout.projects.map((project) => ({ - ...project, - motionState: project.motionState === 'entering' ? undefined : project.motionState, - worktrees: project.worktrees.map((worktree) => ({ - ...worktree, - motionState: worktree.motionState === 'entering' ? undefined : worktree.motionState, - agents: worktree.agents.map((agent) => ({ - ...agent, - motionState: agent.motionState === 'entering' ? undefined : agent.motionState - })) - })) - })) - } -} - -export function pruneExitingAgentMapLayout(layout: AgentMapLayout): AgentMapLayout { - return { - ...layout, - projects: layout.projects - .filter((project) => project.motionState !== 'exiting') - .map((project) => ({ - ...project, - worktrees: project.worktrees - .filter((worktree) => worktree.motionState !== 'exiting') - .map((worktree) => ({ - ...worktree, - agents: worktree.agents.filter((agent) => agent.motionState !== 'exiting') - })) - })) - } -} - -export function useAgentMapMotionLayout( - layout: AgentMapLayout, - reducedMotion: boolean -): AgentMapLayout { - const [motionState, setMotionState] = useState(() => ({ - inputLayout: layout, - reducedMotion, - motionLayout: layout - })) - const enterTimerRef = useRef | null>(null) - const exitTimerRef = useRef | null>(null) - let motionLayout = motionState.motionLayout - // Reconcile before commit so metadata refreshes do not render the full scene twice. - if (motionState.inputLayout !== layout || motionState.reducedMotion !== reducedMotion) { - motionLayout = reducedMotion - ? layout - : reconcileAgentMapMotionLayout(motionState.motionLayout, layout) - setMotionState({ inputLayout: layout, reducedMotion, motionLayout }) - } - - const { enteringSignature, exitingSignature } = useMemo( - () => ({ - enteringSignature: motionNodeSignature(motionLayout, 'entering'), - exitingSignature: motionNodeSignature(motionLayout, 'exiting') - }), - [motionLayout] - ) - - useEffect(() => { - if (enterTimerRef.current) { - clearTimeout(enterTimerRef.current) - enterTimerRef.current = null - } - if (reducedMotion || !enteringSignature) { - return - } - enterTimerRef.current = setTimeout(() => { - enterTimerRef.current = null - setMotionState((previous) => ({ - ...previous, - motionLayout: clearEnteringAgentMapLayout(previous.motionLayout) - })) - }, AGENT_MAP_ENTER_DURATION_MS) - return () => { - if (enterTimerRef.current) { - clearTimeout(enterTimerRef.current) - enterTimerRef.current = null - } - } - }, [enteringSignature, reducedMotion]) - - useEffect(() => { - if (exitTimerRef.current) { - clearTimeout(exitTimerRef.current) - exitTimerRef.current = null - } - if (reducedMotion || !exitingSignature) { - return - } - exitTimerRef.current = setTimeout(() => { - exitTimerRef.current = null - setMotionState((previous) => ({ - ...previous, - motionLayout: pruneExitingAgentMapLayout(previous.motionLayout) - })) - }, AGENT_MAP_EXIT_DURATION_MS) - return () => { - if (exitTimerRef.current) { - clearTimeout(exitTimerRef.current) - exitTimerRef.current = null - } - } - }, [exitingSignature, reducedMotion]) - - return motionLayout -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapPointerHold.ts b/src/renderer/src/components/dashboard-popout/useAgentMapPointerHold.ts deleted file mode 100644 index 924c18d6586..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapPointerHold.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { useCallback, useState, type RefObject } from 'react' - -export type AgentMapPointerHold = { - projectId: string | null - worktreeId: string | null -} - -type AgentMapPointerDragRef = RefObject<{ pointerId: number } | null> - -function closestId(target: Element, attribute: string): string | null { - return target.closest(`[${attribute}]`)?.getAttribute(attribute) ?? null -} - -/** - * Remembers which rings a pan drag started in. Pointer capture retargets - * `:hover` to the `` for the whole gesture, so the ring under the pointer - * would otherwise collapse until the gesture ends. - */ -export function useAgentMapPointerHold(dragRef: AgentMapPointerDragRef): { - held: AgentMapPointerHold | null - hold: (target: Element) => void - release: () => void - clearDrag: (pointerId: number) => boolean -} { - const [held, setHeld] = useState(null) - const hold = useCallback((target: Element): void => { - const projectId = closestId(target, 'data-agent-map-project-id') - const worktreeId = closestId(target, 'data-agent-map-worktree-id') - // A pan off empty canvas holds nothing, so leave the memoized scene alone. - setHeld(projectId === null && worktreeId === null ? null : { projectId, worktreeId }) - }, []) - const release = useCallback((): void => { - setHeld((current) => (current === null ? current : null)) - }, []) - const clearDrag = useCallback( - (pointerId: number): boolean => { - if (dragRef.current?.pointerId !== pointerId) { - return false - } - dragRef.current = null - release() - return true - }, - [dragRef, release] - ) - return { held, hold, release, clearDrag } -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapSelectedFocus.ts b/src/renderer/src/components/dashboard-popout/useAgentMapSelectedFocus.ts deleted file mode 100644 index 2f22f63747e..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapSelectedFocus.ts +++ /dev/null @@ -1,63 +0,0 @@ -import { useEffect, useRef } from 'react' -import type { AgentMapAgentNode } from './agent-map-layout' -import type { AgentMapViewport } from './agent-map-viewport-transition' - -type AgentMapSelectedFocusOptions = { - agents: AgentMapAgentNode[] - selectedPaneKey: string | null - viewportRef: { current: AgentMapViewport } - resolveFocusZoom: () => number - animateViewport: (from: AgentMapViewport, to: AgentMapViewport) => void - stopViewportTransition: () => void -} - -export function useAgentMapSelectedFocus({ - agents, - selectedPaneKey, - viewportRef, - resolveFocusZoom, - animateViewport, - stopViewportTransition -}: AgentMapSelectedFocusOptions): void { - const focusedAgentRef = useRef<{ - paneKey: string - x: number - y: number - zoom: number - } | null>(null) - useEffect(() => { - const selected = agents.find((agent) => agent.card.paneKey === selectedPaneKey) - if (!selectedPaneKey || !selected) { - focusedAgentRef.current = null - stopViewportTransition() - return - } - const targetZoom = resolveFocusZoom() - const focused = focusedAgentRef.current - if ( - focused?.paneKey === selectedPaneKey && - focused.x === selected.x && - focused.y === selected.y && - focused.zoom === targetZoom - ) { - return - } - focusedAgentRef.current = { - paneKey: selectedPaneKey, - x: selected.x, - y: selected.y, - zoom: targetZoom - } - animateViewport(viewportRef.current, { - center: { x: selected.x, y: selected.y }, - zoom: targetZoom - }) - }, [ - agents, - animateViewport, - resolveFocusZoom, - selectedPaneKey, - stopViewportTransition, - viewportRef - ]) -} diff --git a/src/renderer/src/components/dashboard-popout/useAgentMapViewportTransition.ts b/src/renderer/src/components/dashboard-popout/useAgentMapViewportTransition.ts deleted file mode 100644 index 91a8e6e1af1..00000000000 --- a/src/renderer/src/components/dashboard-popout/useAgentMapViewportTransition.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { useCallback, useEffect, useRef } from 'react' -import { - startAgentMapViewportTransition, - type AgentMapViewport -} from './agent-map-viewport-transition' - -type AgentMapViewportTransitionOptions = { - durationMs: number - reducedMotion: boolean - onFrame: (viewport: AgentMapViewport) => void -} - -export function useAgentMapViewportTransition({ - durationMs, - reducedMotion, - onFrame -}: AgentMapViewportTransitionOptions): { - animate: (from: AgentMapViewport, to: AgentMapViewport) => void - stop: () => void -} { - const cancelRef = useRef<(() => void) | null>(null) - const stop = useCallback((): void => { - cancelRef.current?.() - cancelRef.current = null - }, []) - const animate = useCallback( - (from: AgentMapViewport, to: AgentMapViewport): void => { - stop() - if (reducedMotion) { - onFrame(to) - return - } - let cancel = (): void => {} - cancel = startAgentMapViewportTransition({ - from, - to, - durationMs, - onFrame, - onComplete: () => { - if (cancelRef.current === cancel) { - cancelRef.current = null - } - } - }) - cancelRef.current = cancel - }, - [durationMs, onFrame, reducedMotion, stop] - ) - useEffect(() => stop, [stop]) - return { animate, stop } -} diff --git a/src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx b/src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx index 97c31c4747a..371281b167f 100644 --- a/src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx +++ b/src/renderer/src/components/dashboard/AgentDashboardDrawer.test.tsx @@ -93,16 +93,6 @@ describe('AgentDashboardDrawer', () => { expect(useAppStore.getState().agentDashboardDrawerOpen).toBe(false) }) - it('does not hand the drawer over to an agent map popout', () => { - render() - expect(mocks.boardProps).toBeNull() - - act(() => useAppStore.setState({ agentDashboardDrawerOpen: true })) - expect(mocks.boardProps).not.toBeNull() - expect(mocks.boardProps?.onOpenMap).toBeUndefined() - expect(mocks.boardProps?.initialView).toBeUndefined() - }) - type RevealAgent = (args: { repoId: string worktreeId: string diff --git a/src/renderer/src/components/dashboard/agent-dashboard-performance-isolation.test.ts b/src/renderer/src/components/dashboard/agent-dashboard-performance-isolation.test.ts index 3232cacfa4f..5bb1f88b240 100644 --- a/src/renderer/src/components/dashboard/agent-dashboard-performance-isolation.test.ts +++ b/src/renderer/src/components/dashboard/agent-dashboard-performance-isolation.test.ts @@ -22,16 +22,4 @@ describe('agent dashboard performance isolation', () => { expect(nav).not.toContain('shared/dashboard-snapshot') expect(nav).toContain("import('./AgentDashboardSidebarEntry')") }) - - it('keeps map computation out of the main-renderer drawer', () => { - const board = source('components/dashboard-popout/AgentKanbanBoard.tsx') - const drawer = source('components/dashboard/AgentDashboardDrawer.tsx') - const toolbar = source('components/dashboard-popout/AgentDashboardToolbar.tsx') - - expect(board).not.toContain("import('./AgentDashboardMapView')") - expect(board).not.toMatch(/from ['"].\/(?:AgentMap|useAgentMap|agent-map-)/) - expect(toolbar).not.toMatch(/from ['"].\/(?:AgentMap|useAgentMap|agent-map-)/) - expect(drawer).not.toContain("openPopout?.('map')") - expect(drawer).not.toContain('onOpenMap') - }) }) diff --git a/src/renderer/src/i18n/en-runtime-required.json b/src/renderer/src/i18n/en-runtime-required.json index 41eedcf389a..f9c1d6e80d5 100644 --- a/src/renderer/src/i18n/en-runtime-required.json +++ b/src/renderer/src/i18n/en-runtime-required.json @@ -2732,28 +2732,9 @@ "subagents_one": "{{count}} subagent", "subagents_other": "{{count}} subagents" }, - "map": { - "agentCount": "{{count}} agents", - "agentCount_one": "{{count}} agent", - "agentCount_other": "{{count}} agents", - "host": { - "local": "Local", - "remote": "Remote", - "ssh": "SSH", - "wsl": "WSL" - }, - "liveContainmentMap": "Live containment map", - "worktreeSummary_one": "{{total}} agent · {{active}} active · {{done}} done", - "worktreeSummary_other": "{{total}} agents · {{active}} active · {{done}} done" - }, "placeholder": { "description": "This is where all your agents will show up at a glance. The board is coming soon.", "title": "Agent dashboard" - }, - "view": { - "board": "Dashboard", - "label": "Dashboard view", - "map": "Agent Map" } }, "runtimeRpc": { diff --git a/src/renderer/src/i18n/locales/en.json b/src/renderer/src/i18n/locales/en.json index 9be44123070..f452788ac95 100644 --- a/src/renderer/src/i18n/locales/en.json +++ b/src/renderer/src/i18n/locales/en.json @@ -17675,78 +17675,6 @@ } }, "dashboardPopout": { - "view": { - "label": "Dashboard view", - "board": "Dashboard", - "map": "Agent Map" - }, - "map": { - "host": { - "local": "Local", - "ssh": "SSH", - "wsl": "WSL", - "remote": "Remote" - }, - "filters": { - "showStates": "Agent states", - "agentlessWorkspaces": "Workspaces without agents", - "orchestrationLinks": "Orchestration links", - "orchestrationLinksHidden": "Orchestration links hidden", - "workspaceVisibility": "Map content", - "title": "Map controls", - "reset": "Reset", - "ofTotalAgents": "of {{total}} agents shown", - "quickViews": "Quick views", - "agents": "Agents", - "time": "Time", - "lifespan": "Session lifespan", - "sinceMessage": "Since last message", - "timeInState": "Time in current state", - "timeMinimum": "{{label}} minimum", - "timeMaximum": "{{label}} maximum", - "timeAny": "any", - "timeRangeCount": "{{count}} ranges", - "resetRanges": "Reset ranges", - "summaryAll": "All", - "summaryCount": "{{shown}} of {{total}}", - "summarySelected": "{{count}} selected", - "workspace": "Workspace", - "stateChip": "State: {{states}}" - }, - "liveContainmentMap": "Live containment map", - "empty": "No agents match the current filters.", - "canvasLabel": "Nested project, workspace, and agent map", - "zoomOut": "Zoom out", - "zoomIn": "Zoom in", - "fit": "Fit", - "openWorktree": "Open {{worktree}} worktree details", - "openFolderWorkspace": "Open {{workspace}} folder workspace details", - "worktreeSummary": "{{total}} agents · {{active}} active · {{done}} done", - "worktreeSummary_one": "{{total}} agent · {{active}} active · {{done}} done", - "worktreeSummary_other": "{{total}} agents · {{active}} active · {{done}} done", - "runningAgents": "Agents", - "spawnAgent": "Start a new agent", - "noLaunchableAgents": "No enabled agents detected.", - "sleepWorkspace": "Sleep", - "projectCount": "{{agents}} agents · {{workspaces}} workspaces", - "agentCount": "{{count}} agents", - "agentCount_one": "{{count}} agent", - "agentCount_other": "{{count}} agents", - "noWorkspaceAgents": "No agents in this workspace.", - "status": { - "doneSeen": "Done, seen" - }, - "quickView": { - "everything": "Everything", - "attention": "Needs me", - "stuck": "Stuck", - "unread": "Unread", - "recent": "Last 30 min", - "longRunning": "Long runners", - "stale": "Stale > 3d", - "orchestration": "Orchestration" - } - }, "placeholder": { "title": "Agent dashboard", "description": "This is where all your agents will show up at a glance. The board is coming soon." @@ -17809,8 +17737,7 @@ "project": "Project", "workspaceStatus": "Workspace status", "reviewStatus": "PR / MR status", - "clearAll": "Clear all filters", - "removeChip": "Remove {{filter}}" + "clearAll": "Clear all filters" }, "search": { "placeholder": "Search worktree, project, or agent…", diff --git a/src/renderer/src/i18n/locales/es.json b/src/renderer/src/i18n/locales/es.json index 2a47a73502d..b4d425180b8 100644 --- a/src/renderer/src/i18n/locales/es.json +++ b/src/renderer/src/i18n/locales/es.json @@ -14769,27 +14769,6 @@ } }, "dashboardPopout": { - "view": { - "label": "Vista del panel", - "board": "Panel", - "map": "Mapa de agentes" - }, - "map": { - "host": { - "local": "Local", - "ssh": "SSH", - "wsl": "WSL", - "remote": "Remoto" - }, - "liveContainmentMap": "Mapa de contención en vivo", - "empty": "Ningún agente coincide con los filtros actuales.", - "canvasLabel": "Mapa anidado de proyectos, espacios de trabajo y agentes", - "zoomOut": "Alejar", - "zoomIn": "Acercar", - "fit": "Ajustar", - "projectCount": "{{agents}} agentes · {{workspaces}} espacios de trabajo", - "agentCount": "{{count}} agentes" - }, "placeholder": { "title": "Agent dashboard", "description": "This is where all your agents will show up at a glance. The board is coming soon." diff --git a/src/renderer/src/i18n/locales/fr.json b/src/renderer/src/i18n/locales/fr.json index 3a56fce87a6..71183387390 100644 --- a/src/renderer/src/i18n/locales/fr.json +++ b/src/renderer/src/i18n/locales/fr.json @@ -16404,78 +16404,6 @@ } }, "dashboardPopout": { - "view": { - "label": "Vue tableau de bord", - "board": "Tableau de bord", - "map": "Carte des agents" - }, - "map": { - "host": { - "local": "Local", - "ssh": "SSH", - "wsl": "WSL", - "remote": "Distant" - }, - "filters": { - "showStates": "États des agents", - "agentlessWorkspaces": "Espaces de travail sans agents", - "orchestrationLinks": "Liens d'orchestration", - "orchestrationLinksHidden": "Liens d'orchestration masqués", - "workspaceVisibility": "Contenu de la carte", - "title": "Contrôles de la carte", - "reset": "Réinitialiser", - "ofTotalAgents": "sur {{total}} agents affichés", - "quickViews": "Vues rapides", - "agents": "Agents", - "time": "Heure", - "lifespan": "Durée de vie de la session", - "sinceMessage": "Depuis le dernier message", - "timeInState": "Temps dans l'état actuel", - "timeMinimum": "{{label}} minimum", - "timeMaximum": "{{label}} maximum", - "timeAny": "tous", - "timeRangeCount": "{{count}} plages", - "resetRanges": "Réinitialiser les plages", - "summaryAll": "Tous", - "summaryCount": "{{shown}} sur {{total}}", - "summarySelected": "{{count}} sélectionnés", - "workspace": "Espace de travail", - "stateChip": "État : {{states}}" - }, - "liveContainmentMap": "Carte d'imbrication en temps réel", - "empty": "Aucun agent ne correspond aux filtres actuels.", - "canvasLabel": "Carte imbriquée des projets, espaces de travail et agents", - "zoomOut": "Zoom arrière", - "zoomIn": "Zoom avant", - "fit": "Ajuster", - "openWorktree": "Ouvrir les détails du worktree {{worktree}}", - "openFolderWorkspace": "Ouvrir les détails de l'espace de travail de type dossier {{workspace}}", - "worktreeSummary": "{{total}} agents · {{active}} actifs · {{done}} terminés", - "worktreeSummary_one": "{{total}} agent · {{active}} actif · {{done}} terminé", - "worktreeSummary_other": "{{total}} agents · {{active}} actifs · {{done}} terminés", - "runningAgents": "Agents", - "spawnAgent": "Démarrer un nouvel agent", - "noLaunchableAgents": "Aucun agent activé détecté.", - "sleepWorkspace": "Veille", - "projectCount": "{{agents}} agents · {{workspaces}} workspaces", - "agentCount": "{{count}} agents", - "agentCount_one": "{{count}} agent", - "agentCount_other": "{{count}} agents", - "noWorkspaceAgents": "Aucun agent dans cet espace de travail.", - "status": { - "doneSeen": "Terminé, vu" - }, - "quickView": { - "everything": "Tout", - "attention": "Me concerne", - "stuck": "Bloqué", - "unread": "Non lus", - "recent": "30 dernières minutes", - "longRunning": "Exécutions longues", - "stale": "Inactif > 3 j", - "orchestration": "Orchestration" - } - }, "placeholder": { "title": "Tableau de bord des agents", "description": "C'est ici que tous vos agents s'afficheront d'un coup d'œil. Le tableau arrive bientôt." @@ -16537,8 +16465,7 @@ "project": "Projet", "workspaceStatus": "Statut de l'espace de travail", "reviewStatus": "Statut PR / MR", - "clearAll": "Effacer tous les filtres", - "removeChip": "Retirer {{filter}}" + "clearAll": "Effacer tous les filtres" }, "search": { "placeholder": "Rechercher un worktree, un projet ou un agent…", diff --git a/src/renderer/src/i18n/locales/ja.json b/src/renderer/src/i18n/locales/ja.json index 696135a7669..ba36240b2f1 100644 --- a/src/renderer/src/i18n/locales/ja.json +++ b/src/renderer/src/i18n/locales/ja.json @@ -14804,27 +14804,6 @@ } }, "dashboardPopout": { - "view": { - "label": "ダッシュボード表示", - "board": "ダッシュボード", - "map": "Agent マップ" - }, - "map": { - "host": { - "local": "ローカル", - "ssh": "SSH", - "wsl": "WSL", - "remote": "リモート" - }, - "liveContainmentMap": "ライブ包含マップ", - "empty": "現在のフィルターに一致する Agent はありません。", - "canvasLabel": "プロジェクト、ワークスペース、Agent の入れ子マップ", - "zoomOut": "ズームアウト", - "zoomIn": "ズームイン", - "fit": "全体表示", - "projectCount": "{{agents}}件の Agent · {{workspaces}}件のワークスペース", - "agentCount": "{{count}}件の Agent" - }, "placeholder": { "title": "Agent ダッシュボード", "description": "ここに、すべての Agent が一覧で表示されます。ボードは近日公開です。" diff --git a/src/renderer/src/i18n/locales/ko.json b/src/renderer/src/i18n/locales/ko.json index 5fd1e6addb8..9f9f38bb565 100644 --- a/src/renderer/src/i18n/locales/ko.json +++ b/src/renderer/src/i18n/locales/ko.json @@ -14943,27 +14943,6 @@ } }, "dashboardPopout": { - "view": { - "label": "대시보드 보기", - "board": "대시보드", - "map": "에이전트 맵" - }, - "map": { - "host": { - "local": "로컬", - "ssh": "SSH", - "wsl": "WSL", - "remote": "원격" - }, - "liveContainmentMap": "실시간 포함 관계 맵", - "empty": "현재 필터와 일치하는 에이전트가 없습니다.", - "canvasLabel": "프로젝트, 작업 공간, 에이전트의 중첩 맵", - "zoomOut": "축소", - "zoomIn": "확대", - "fit": "맞춤", - "projectCount": "에이전트 {{agents}}개 · 작업 공간 {{workspaces}}개", - "agentCount": "에이전트 {{count}}개" - }, "placeholder": { "title": "에이전트 대시보드", "description": "모든 에이전트를 한눈에 볼 수 있는 곳입니다. 보드는 곧 제공됩니다." diff --git a/src/renderer/src/i18n/locales/zh.json b/src/renderer/src/i18n/locales/zh.json index 125876be1a0..f44bc5972e1 100644 --- a/src/renderer/src/i18n/locales/zh.json +++ b/src/renderer/src/i18n/locales/zh.json @@ -14908,27 +14908,6 @@ } }, "dashboardPopout": { - "view": { - "label": "仪表盘视图", - "board": "仪表盘", - "map": "智能体地图" - }, - "map": { - "host": { - "local": "本地", - "ssh": "SSH", - "wsl": "WSL", - "remote": "远程" - }, - "liveContainmentMap": "实时包含关系图", - "empty": "没有智能体符合当前筛选条件。", - "canvasLabel": "项目、工作区和智能体的嵌套关系图", - "zoomOut": "缩小", - "zoomIn": "放大", - "fit": "适配屏幕", - "projectCount": "{{agents}} 个智能体 · {{workspaces}} 个工作区", - "agentCount": "{{count}} 个智能体" - }, "placeholder": { "title": "智能体仪表盘", "description": "你的所有智能体都会在这里一览无余。看板即将上线。" diff --git a/src/shared/agent-status-store-snapshot-budget.ts b/src/shared/agent-status-store-snapshot-budget.ts index dfb4665a01a..e8a40971d50 100644 --- a/src/shared/agent-status-store-snapshot-budget.ts +++ b/src/shared/agent-status-store-snapshot-budget.ts @@ -1,13 +1,11 @@ import { AGENT_STATUS_STORE_LIMITS, - AGENT_STATUS_STORE_SNAPSHOT_VERSION + AGENT_STATUS_STORE_SNAPSHOT_VERSION, + type AgentStatusFactRecord, + type AgentStatusTombstoneRecord } from './agent-status-store-contract' import type { AgentChildWorkAliasRecord } from './agent-status-child-work-alias' import type { AgentChildWorkRecord } from './agent-status-child-work' -import type { - AgentStatusFactRecord, - AgentStatusTombstoneRecord -} from './agent-status-store-contract' import type { AgentStatusParentRecord } from './agent-status-store-parent' import type { AgentStatusStoreState } from './agent-status-store-state' import { getUtf8ByteLength } from './utf8-byte-limits' diff --git a/src/shared/dashboard-snapshot.ts b/src/shared/dashboard-snapshot.ts index a4026e2eeac..bfd41984f81 100644 --- a/src/shared/dashboard-snapshot.ts +++ b/src/shared/dashboard-snapshot.ts @@ -103,11 +103,11 @@ export type DashboardCard = { leafId: string | null /** Agent pane that spawned this agent, when both are visible. */ parentPaneKey?: string - /** Direct workspace parent. The map uses it only when both workspace rings are visible. */ + /** Direct workspace parent. */ parentWorktreeId?: string repoName: string worktreeName: string - /** Optional for preload compatibility with snapshots produced before Agent Map. */ + /** Optional for preload compatibility with snapshots produced by older hosts. */ hostKind?: DashboardCardHostKind /** Exact owner used by in-window workspace actions when IDs collide across hosts. */ executionHostId?: ExecutionHostId diff --git a/src/shared/pane-agent-identity-inventory.test.ts b/src/shared/pane-agent-identity-inventory.test.ts index e71cc8def32..23657cf0fbe 100644 --- a/src/shared/pane-agent-identity-inventory.test.ts +++ b/src/shared/pane-agent-identity-inventory.test.ts @@ -59,8 +59,6 @@ const INVENTORY: readonly InventoryGroup[] = [ ['src/renderer/src/components/automations/AutomationListLocalRow.tsx', 2], 'src/renderer/src/components/automations/automation-draft-model.ts', ['src/renderer/src/components/automations/automation-list-search-rows.ts', 2], - ['src/renderer/src/components/dashboard-popout/AgentMapSnapshotWorkspaceMenu.tsx', 2], - ['src/renderer/src/components/dashboard-popout/AgentMapWorktreeRingNode.tsx', 2], ['src/renderer/src/components/settings/NativeChatSupportedAgents.tsx', 2], ['src/renderer/src/components/settings/QuickCommandsList.tsx', 2], ['src/renderer/src/components/tab-bar/TabBarQuickCommandItem.tsx', 2], From 9ed561c1d2505184946b39a27614002f0145de40 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 21:56:49 -0700 Subject: [PATCH 15/28] fix(claude): judge Stop against the turn the journal published (#20921) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(claude): judge Stop against the turn the journal published A Stop could be refused for the turn the user was actually looking at. The client derives the id it sends from the published journal rows, but the host compared it against the adapter's own in-memory turn. The journal sink drains asynchronously, so that in-memory value can already name a turn whose row has not landed — an id no client has been shown, and one the client's Stop can therefore never match. The user pressed Stop and nothing stopped. Fix the guard's source rather than the guard. ownsRequestedTurn stays: it is what stops a delayed request from interrupting a later turn, and without it a stale Stop would reach a session-scoped interrupt that settles every queued send as durably rejected. The host now resolves the live turn from the journal projection and hands it to the adapter, which prefers it and falls back to its in-memory read for direct callers that have no journal. It is passed as a read rather than a value because the guard re-checks after the delivery fence may have waited seconds; a value captured at request time would interrupt whatever turn ran next. Both callers supply it. The handoff's own Stop bypasses performCancel, so its body moves into stopNativeHandoffTurn beside the file's other extracted flows, which is also what lets it be tested on its own. * fix(claude): fall back to the in-memory turn while the journal drains The journal drains through a serialized async queue, so a live turn routinely has no published row yet. Judging a Stop only against the journal refused in that window, which gates a user action on bookkeeping. The journal stays authoritative while it HAS an answer; a null read falls through to the in-memory turn, and the nothing-dispatched clause is unchanged. Both call sites now read the live turn through `journal.activeTurnId()`, which folds reduced items instead of rendering and sorting a whole snapshot. --- .../claude-structured-prompt-ownership.ts | 17 ++- src/main/claude/claude-turn-ownership.test.ts | 108 ++++++++++++++++++ .../journal-store.test.ts | 40 +++++++ .../agent-session-journal/journal-store.ts | 6 + .../structured-agent-session-adapter.ts | 4 + ...ed-agent-session-host-handoff-stop.test.ts | 81 +++++++++++++ .../structured-agent-session-host-handoff.ts | 37 +++--- ...ctured-agent-session-prompt-cancel.test.ts | 1 + .../structured-agent-session-turns.test.ts | 53 +++++++++ .../structured-agent-session-turns.ts | 2 + .../structured-agent-session-live-turn.ts | 24 +++- 11 files changed, 349 insertions(+), 24 deletions(-) create mode 100644 src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff-stop.test.ts diff --git a/src/main/claude/claude-structured-prompt-ownership.ts b/src/main/claude/claude-structured-prompt-ownership.ts index a76825887e1..399dd98506a 100644 --- a/src/main/claude/claude-structured-prompt-ownership.ts +++ b/src/main/claude/claude-structured-prompt-ownership.ts @@ -110,17 +110,14 @@ export async function cancelClaudeStructuredTurn(input: { session.prompts.releaseClaim(claim) return { cancelled: false } } - // The translator owns turn identity. A session with no journal has published no - // turn row for a client to name, so it holds no identity this request can contradict. + // Judge against the published journal, because that is the only turn a client could have been + // shown — but only while it HAS an answer. The journal drains through a serialized async queue, + // so a null read means the row has not landed yet, not that nothing is running; falling back to + // the in-memory turn there keeps Stop from being gated on bookkeeping. No live turn either way + // means nothing has published an identity this request can contradict. const ownsRequestedTurn = (): boolean => { - const translator = session.translator - if (!translator) { - return session.dispatchSequence === 0 - } - const currentTurnId = translator.currentTurnId - return currentTurnId === null - ? session.dispatchSequence === 0 - : currentTurnId === request.turnId + const liveTurnId = request.resolveLiveTurnId?.() ?? session.translator?.currentTurnId ?? null + return liveTurnId === null ? session.dispatchSequence === 0 : liveTurnId === request.turnId } // The host supplies the durable latest submission; direct adapter callers fall back to // the current in-memory waiter so an unknown dispatch remains fenced without a latch. diff --git a/src/main/claude/claude-turn-ownership.test.ts b/src/main/claude/claude-turn-ownership.test.ts index 661138daf96..05c8aa97a3c 100644 --- a/src/main/claude/claude-turn-ownership.test.ts +++ b/src/main/claude/claude-turn-ownership.test.ts @@ -90,6 +90,33 @@ function providerOutput(connection: FakeConnection, uuid: string): void { }) } +/** A session whose in-memory turn is `turnId`, standing in for the adapter's own read. */ +function sessionHoldingTurn(turnId: string | null): ReturnType { + const session = sessionFor() + session.dispatchSequence = 1 + session.translator = { + handle: vi.fn(), + journalPrompts: { cancel: vi.fn(), resolve: vi.fn() }, + currentTurnId: turnId, + flush: vi.fn(), + pendingStreamedBlocks: 0, + dispose: vi.fn() + } + return session +} + +function cancellationOf( + session: ReturnType, + request: Parameters[0]['request'] +): Promise<{ cancelled: boolean }> { + return cancelClaudeStructuredTurn({ + request, + sessions: new Map([['session-1', session]]), + compactions: new StructuredSessionCompaction(), + admitPromptCancellation: () => true + }) +} + describe('Claude turn ownership', () => { it('stops a turn the provider opened after the session already dispatched once', async () => { const claude = fakeClaude({ replayUuid: 'echo-turn' }) @@ -349,6 +376,87 @@ describe('Claude turn ownership', () => { expect(connection.calls.some((call) => call.subtype === 'interrupt')).toBe(true) }) + // The sink drains asynchronously, so the adapter's own turn can already name a row no client + // has been shown. The published journal is what a Stop is derived from, so it is what judges it. + it('admits a Stop for the published turn while the adapter already holds an undrained one', async () => { + const session = sessionHoldingTurn('turn-undrained') + const interrupt = vi.fn().mockResolvedValue(undefined) + session.connection.interrupt = interrupt + + await expect( + cancellationOf(session, { + sessionId: 'session-1', + turnId: 'turn-shown', + fence: 1, + resolveLiveTurnId: () => 'turn-shown' + }) + ).resolves.toEqual({ cancelled: true }) + expect(interrupt).toHaveBeenCalledOnce() + }) + + // The journal drains through a serialized async queue, so a live turn routinely has no published + // row yet. Refusing there would gate a user's Stop on bookkeeping, so the in-memory turn covers + // the lag — the journal is authoritative only while it has an answer. + it('admits a Stop for the live turn while the journal has not drained its row', async () => { + const session = sessionHoldingTurn('turn-live') + const interrupt = vi.fn().mockResolvedValue(undefined) + session.connection.interrupt = interrupt + + await expect( + cancellationOf(session, { + sessionId: 'session-1', + turnId: 'turn-live', + fence: 1, + resolveLiveTurnId: () => null + }) + ).resolves.toEqual({ cancelled: true }) + expect(interrupt).toHaveBeenCalledOnce() + }) + + it('refuses a Stop the adapter still holds once the journal published a newer turn', async () => { + const session = sessionHoldingTurn('turn-stale') + const interrupt = vi.fn().mockResolvedValue(undefined) + session.connection.interrupt = interrupt + + await expect( + cancellationOf(session, { + sessionId: 'session-1', + turnId: 'turn-stale', + fence: 1, + resolveLiveTurnId: () => 'turn-newer' + }) + ).resolves.toEqual({ cancelled: false }) + expect(interrupt).not.toHaveBeenCalled() + }) + + // The guard re-checks after the delivery fence may have waited seconds, so the journal read + // has to happen then — a value captured at request time would interrupt whatever ran next. + it('re-reads the published turn after the delivery fence waits', async () => { + vi.useFakeTimers() + try { + let publishedTurnId = 'turn-shown' + const session = sessionHoldingTurn('turn-shown') + const interrupt = vi.fn().mockResolvedValue(undefined) + session.connection.interrupt = interrupt + + const cancellation = cancellationOf(session, { + sessionId: 'session-1', + turnId: 'turn-shown', + fence: 1, + dispatchStatus: { state: 'unknown', recovered: false }, + resolveLiveTurnId: () => publishedTurnId + }) + await vi.advanceTimersByTimeAsync(CLAUDE_DISPATCH_ADMISSION_TIMEOUT_MS - 1) + publishedTurnId = 'turn-next' + await vi.advanceTimersByTimeAsync(1) + + await expect(cancellation).resolves.toEqual({ cancelled: false }) + expect(interrupt).not.toHaveBeenCalled() + } finally { + vi.useRealTimers() + } + }) + it('refuses a stale turn id once the provider opened a newer turn', async () => { const claude = fakeClaude({ replayUuid: 'echo-turn' }) const { adapter, bodies, connection } = await acquiredWithJournal(claude) diff --git a/src/main/native-chat/agent-session-journal/journal-store.test.ts b/src/main/native-chat/agent-session-journal/journal-store.test.ts index 3592947faaa..ffaea5c5d6f 100644 --- a/src/main/native-chat/agent-session-journal/journal-store.test.ts +++ b/src/main/native-chat/agent-session-journal/journal-store.test.ts @@ -18,6 +18,7 @@ import { boundPayload, DEFAULT_JOURNAL_PAYLOAD_LIMITS } from './journal-payload-bounds' +import { activeStructuredAgentSessionTurnId } from '../../../shared/structured-agent-session-live-turn' import { journalDatabaseFile, journalDirectoryFor, journalPathSegment } from './journal-paths' import { AgentSessionJournalError, type AgentSessionJournal } from './journal-store' import type { openAgentSessionJournal } from './journal-store-factory' @@ -112,6 +113,45 @@ describe('sequences', () => { ]) }) + it('reads the live turn off reduced items, agreeing with the rendered snapshot', async () => { + const journal = await open() + const turnItem = (turnId: string): AgentJournalItemIdentity => ({ + provider: 'legacy', + agent: 'codex', + sessionId: 'session-1', + recordId: `turn-lifecycle:${turnId}` + }) + const rendered = (): string | null => + activeStructuredAgentSessionTurnId(journal.snapshot().items) + const bothAgreeOn = async (turnId: string | null): Promise => { + expect(journal.activeTurnId()).toBe(turnId) + expect(rendered()).toBe(turnId) + } + + await journal.appendItem( + turnItem('turn-1'), + { kind: 'turn', turnId: 'turn-1', state: 'running' }, + { fence: 1 } + ) + await journal.appendItem(item(0), body('work'), { fence: 1 }) + await bothAgreeOn('turn-1') + + // The completion is a revision, so it keeps the row's creation sequence rather than moving it. + await journal.appendItem( + turnItem('turn-1'), + { kind: 'turn', turnId: 'turn-1', state: 'completed' }, + { fence: 1 } + ) + await bothAgreeOn(null) + + await journal.appendItem( + turnItem('turn-2'), + { kind: 'turn', turnId: 'turn-2', state: 'running' }, + { fence: 1 } + ) + await bothAgreeOn('turn-2') + }) + it('preserves an oversized identity and its raw digest-form mimic across reopen', async () => { const oversizedTurnId = 'a'.repeat(MAX_JOURNAL_KEY_COMPONENT_CHARS + 1) const digestFormMimic = boundJournalKeyComponent(oversizedTurnId) diff --git a/src/main/native-chat/agent-session-journal/journal-store.ts b/src/main/native-chat/agent-session-journal/journal-store.ts index 2e372f9abae..b3aab6b1e3b 100644 --- a/src/main/native-chat/agent-session-journal/journal-store.ts +++ b/src/main/native-chat/agent-session-journal/journal-store.ts @@ -11,6 +11,7 @@ import type { AgentSessionJournalIdentity } from '../../../shared/agent-session-journal-types' import { agentJournalItemKey } from '../../../shared/agent-session-journal-item-key' +import { activeStructuredAgentSessionTurnIdBySequence } from '../../../shared/structured-agent-session-live-turn' import { agentSessionJournalCloseRetries } from './journal-close-retry' import { openJournalDatabase, type OpenJournalDatabase } from './journal-database' import type { JournalReplacementItem } from './journal-epoch-replacement' @@ -169,6 +170,11 @@ export class AgentSessionJournal { } } + /** The turn this journal has published as running — the same read a client's snapshot gives, + * without materialising one. */ + activeTurnId = (): string | null => + activeStructuredAgentSessionTurnIdBySequence(this.state.items.values()) + /** Includes revisions and completion tombstones, whose timestamps disappear from render items. */ lastActivityAt = (): number => this.state.lastActivityAt diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts index 729b0e212f1..f8876d96ee7 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-adapter.ts @@ -207,6 +207,10 @@ export type StructuredAgentSessionAdapter = { prompt?: { itemId: string } /** Latest journal submission for this fence, when the host has one. */ dispatchStatus?: { state: AgentJournalDispatchState; recovered: boolean } | null + /** Re-reads the turn the published journal says is running — the only turn a client + * could have named. A function, not a value, because the guard re-checks after the + * delivery fence may have waited. Absent for direct callers with no journal. */ + resolveLiveTurnId?: () => string | null }): Promise<{ cancelled: boolean }> stopBackgroundTasks?(input: { sessionId: string diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff-stop.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff-stop.test.ts new file mode 100644 index 00000000000..f1dc020340e --- /dev/null +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff-stop.test.ts @@ -0,0 +1,81 @@ +// The handoff's own Stop bypasses performCancel, so it has to carry the same journal-derived +// live-turn read; without it this caller silently keeps judging against the adapter's copy. + +import { mkdtemp, rm } from 'node:fs/promises' +import { tmpdir } from 'node:os' +import { join } from 'node:path' +import { afterEach, describe, expect, it, vi } from 'vitest' +import type { AgentSessionJournalIdentity } from '../../../shared/agent-session-journal-types' +import { createTrackedJournalOpener } from '../agent-session-journal/journal-store-test-open' +import type { StructuredAgentSessionAdapter } from './structured-agent-session-adapter' +import { stopNativeHandoffTurn } from './structured-agent-session-host-handoff' + +const IDENTITY: AgentSessionJournalIdentity = { + sessionId: 'session-1', + workspaceId: 'workspace-1', + hostId: 'host-1', + agent: 'claude', + providerHandle: { kind: 'claude', sessionId: 'provider-session', leafUuid: null } +} + +const LIFECYCLE_IDENTITY = { + provider: 'legacy' as const, + agent: 'claude' as const, + sessionId: 'session-1', + recordId: 'turn-lifecycle:turn-1' +} + +let root: string | null = null +const journals = createTrackedJournalOpener() + +afterEach(async () => { + await journals.closeAll() + if (root) { + await rm(root, { recursive: true, force: true }) + root = null + } +}) + +describe('stopNativeHandoffTurn', () => { + it('judges its Stop against the turn the journal published', async () => { + root = await mkdtemp(join(tmpdir(), 'orca-handoff-stop-')) + const journal = await journals.open({ identity: IDENTITY, journalDir: root }) + await journal.appendItem( + LIFECYCLE_IDENTITY, + { + kind: 'status', + text: 'Agent is working…', + turnLifecycle: { turnId: 'turn-1', state: 'running' } + }, + { fence: 3 } + ) + let resolveLiveTurnId: (() => string | null) | undefined + const cancelTurn = vi.fn( + async (input: Parameters[0]) => { + resolveLiveTurnId = input.resolveLiveTurnId + return { cancelled: true } + } + ) + + const stopped = await stopNativeHandoffTurn( + { cancelTurn }, + { journal }, + { + sessionId: 'session-1', + turnId: 'turn-1', + fence: 3 + } + ) + + expect(stopped).toBe(true) + expect(cancelTurn).toHaveBeenCalledOnce() + expect(resolveLiveTurnId?.()).toBe('turn-1') + // Re-read, not captured: the turn ending is what the guard has to see. + await journal.appendItem( + LIFECYCLE_IDENTITY, + { kind: 'status', text: 'Done.', turnLifecycle: { turnId: 'turn-1', state: 'completed' } }, + { fence: 3 } + ) + expect(resolveLiveTurnId?.()).toBeNull() + }) +}) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts index 4fad01d32a4..2720a97784c 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-host-handoff.ts @@ -4,7 +4,10 @@ import type { AgentSessionRecord } from '../../../shared/agent-session-record' import type { LegacyImportOptions } from '../agent-session-journal/journal-legacy-import' import { importLegacyTranscriptIntoJournal } from '../agent-session-journal/journal-legacy-import' import { journalIdentityFor } from './structured-agent-session-attach' -import { rethrowAfterAgentSessionAcquisitionCleanup } from './structured-agent-session-adapter' +import { + rethrowAfterAgentSessionAcquisitionCleanup, + type StructuredAgentSessionAdapter +} from './structured-agent-session-adapter' import { canRestoreLiveTuiOwner } from './structured-agent-session-handoff-restart' import type { DeferredStructuredAgentSessionEventSink } from './structured-agent-session-event-sink' import type { StructuredAgentSessionHostDeps } from './structured-agent-session-host' @@ -102,18 +105,8 @@ export function createStructuredAgentSessionHostHandoff( }, acknowledgeNativeRelease: (sessionId) => deps.adapter.acknowledgeSessionRelease?.(sessionId), acquireNative: (input) => acquireNativeHandoffOwner(deps, host, input), - acquireNativeStop: async (sessionId, turnId, fence) => { - const session = host.session(sessionId) - const dispatchStatus = latestJournalDispatchObservation(session.journal, fence) - return ( - await deps.adapter.cancelTurn({ - sessionId, - turnId, - fence, - ...(dispatchStatus ? { dispatchStatus } : {}) - }) - ).cancelled - }, + acquireNativeStop: (sessionId, turnId, fence) => + stopNativeHandoffTurn(deps.adapter, host.session(sessionId), { sessionId, turnId, fence }), importTuiHistory: (input) => importTuiHistory(deps, host, input), retryPendingSettlement: (sessionId) => retryLoadedStructuredAgentSessionSettlement({ @@ -168,6 +161,24 @@ export function createStructuredAgentSessionHostHandoff( }) } +/** Handoff's own Stop, which never passes through `performCancel` and so has to carry the + * journal reads that judge a cancellation itself. */ +export async function stopNativeHandoffTurn( + adapter: Pick, + session: Pick, + input: { sessionId: string; turnId: string; fence: number } +): Promise { + const dispatchStatus = latestJournalDispatchObservation(session.journal, input.fence) + return ( + await adapter.cancelTurn({ + ...input, + // The journal is what the client read to name a turn, so it is what judges the request. + resolveLiveTurnId: () => session.journal.activeTurnId(), + ...(dispatchStatus ? { dispatchStatus } : {}) + }) + ).cancelled +} + async function importTuiHistory( deps: StructuredAgentSessionHostDeps, host: HostHandoffAccess, diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-prompt-cancel.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-prompt-cancel.test.ts index aeb2c41095f..a9e32b026e6 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-prompt-cancel.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-prompt-cancel.test.ts @@ -134,6 +134,7 @@ describe('performCancel for a pending prompt', () => { sessionId: 'session-1', turnId: 'turn-1', fence: 1, + resolveLiveTurnId: expect.any(Function), prompt: { itemId } }) expect(journal.snapshot().items.map((item) => item.body)).toEqual([ diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.test.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.test.ts index 59b1e74898c..576743ebac4 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.test.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.test.ts @@ -75,6 +75,59 @@ describe('performCancel', () => { ]) }) + it('hands the adapter a live-turn read of the published journal', async () => { + root = await mkdtemp(join(tmpdir(), 'orca-turn-cancel-live-turn-')) + const journal = await journals.open({ identity: IDENTITY, journalDir: root }) + const lifecycleIdentity = { + provider: 'legacy' as const, + agent: 'codex' as const, + sessionId: 'session-1', + recordId: 'turn-lifecycle:turn-1' + } + await journal.appendItem( + lifecycleIdentity, + { + kind: 'status', + text: 'Agent is working…', + turnLifecycle: { turnId: 'turn-1', state: 'running' } + }, + { fence: 1 } + ) + let resolveLiveTurnId: (() => string | null) | undefined + const cancelTurn = vi.fn( + async (input: Parameters[0]) => { + resolveLiveTurnId = input.resolveLiveTurnId + return { cancelled: true } + } + ) + const ctx: AgentSessionTurnContext = { + sessionId: 'session-1', + journal, + fence: 1, + adapter: { cancelTurn } as unknown as StructuredAgentSessionAdapter, + persistOptions: async () => undefined, + resolvedBy: 'client-1', + publish: vi.fn(), + flushStreamedEvents: async () => undefined, + now: () => 1 + } + + await performCancel(ctx, { clientOperationId: 'cancel-live-1', turnId: 'turn-1' }) + + expect(resolveLiveTurnId?.()).toBe('turn-1') + // Re-read, not captured: the turn ending is what the guard has to see. + await journal.appendItem( + lifecycleIdentity, + { + kind: 'status', + text: 'Done.', + turnLifecycle: { turnId: 'turn-1', state: 'completed' } + }, + { fence: 1 } + ) + expect(resolveLiveTurnId?.()).toBeNull() + }) + it('keeps the running lifecycle when cancellation cannot be confirmed', async () => { root = await mkdtemp(join(tmpdir(), 'orca-turn-cancel-unconfirmed-')) const journal = await journals.open({ identity: IDENTITY, journalDir: root }) diff --git a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts index fb254bbf1e5..2b10b6dba41 100644 --- a/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts +++ b/src/main/native-chat/agent-session-wire/structured-agent-session-turns.ts @@ -216,6 +216,8 @@ export async function performCancel( sessionId: ctx.sessionId, turnId: input.turnId, fence: ctx.fence, + // The journal is what the client read to name a turn, so it is what judges the request. + resolveLiveTurnId: () => ctx.journal.activeTurnId(), ...(dispatchStatus ? { dispatchStatus } : {}), ...(input.prompt ? { prompt: { itemId: input.prompt.itemId } } : {}) }) diff --git a/src/shared/structured-agent-session-live-turn.ts b/src/shared/structured-agent-session-live-turn.ts index 319a6d7d579..52f3ee6a549 100644 --- a/src/shared/structured-agent-session-live-turn.ts +++ b/src/shared/structured-agent-session-live-turn.ts @@ -5,7 +5,8 @@ import type { AgentJournalRenderItem, - AgentJournalToolCallItem + AgentJournalToolCallItem, + AgentJournalTurnLifecycle } from './agent-session-journal-types' import { readAgentJournalTurn } from './agent-session-turn-record' @@ -21,6 +22,27 @@ export function activeStructuredAgentSessionTurnId( return null } +/** The same verdict for reduced items a caller holds unordered, so a reader that already has them + * need not render and sort a whole snapshot to ask. Sequence is the ordering key the render pass + * sorts on, and ties resolve to the later-reduced item exactly as that stable sort would. */ +export function activeStructuredAgentSessionTurnIdBySequence( + items: Iterable +): string | null { + let newestSequence = 0 + let newest: AgentJournalTurnLifecycle | null = null + for (const item of items) { + if (item.sequence < newestSequence) { + continue + } + const turn = readAgentJournalTurn(item.body) + if (turn) { + newestSequence = item.sequence + newest = turn + } + } + return newest?.state === 'running' ? newest.turnId : null +} + /** * Whether the newest thing the active turn produced is the model's own reasoning. * From bfc297df9933e5e4e419ad8519a67f86ba1a9496 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:03:16 -0700 Subject: [PATCH 16/28] fix(settings): keep integration connect dialog drafts on backdrop click (#20932) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(settings): keep integration connect dialog drafts on backdrop click A backdrop click in the Settings → Integrations Jira/Linear/Bitbucket connect dialogs dismissed the Radix modal, and each dialog's reset-on-open then wiped the typed credential. Generalize SshTargetForm's dirty-gated outside dismissal into a shared preventOutsideDismissWhenDirty factory and wire it into the three dialogs (and SshTargetForm), so an accidental backdrop click no longer discards a draft while Escape / Cancel / × remain the explicit discard paths. Bitbucket compares email/baseUrl against a props-seeded baseline and only counts the active auth mode's fields, so a mid-edit status refresh and a mode toggle cannot make the form sticky. STA-7332 * test(e2e): drop ticket id from dismiss spec comment --- .../connect-dialog-outside-dismiss.test.tsx | 378 ++++++++++++++++++ .../src/components/jira-connect-dialog.tsx | 8 + .../src/components/linear-api-key-dialog.tsx | 7 + .../settings/SshTargetForm.test.tsx | 28 ++ .../src/components/settings/SshTargetForm.tsx | 18 +- .../settings/bitbucket-credentials-dialog.tsx | 23 +- .../src/lib/outside-dismiss-guard.test.ts | 32 ++ src/renderer/src/lib/outside-dismiss-guard.ts | 21 + ...ettings-integration-dialog-dismiss.spec.ts | 91 +++++ 9 files changed, 593 insertions(+), 13 deletions(-) create mode 100644 src/renderer/src/components/connect-dialog-outside-dismiss.test.tsx create mode 100644 src/renderer/src/lib/outside-dismiss-guard.test.ts create mode 100644 src/renderer/src/lib/outside-dismiss-guard.ts create mode 100644 tests/e2e/settings-integration-dialog-dismiss.spec.ts diff --git a/src/renderer/src/components/connect-dialog-outside-dismiss.test.tsx b/src/renderer/src/components/connect-dialog-outside-dismiss.test.tsx new file mode 100644 index 00000000000..5a7802d35b1 --- /dev/null +++ b/src/renderer/src/components/connect-dialog-outside-dismiss.test.tsx @@ -0,0 +1,378 @@ +// @vitest-environment happy-dom + +import { act } from 'react' +import type { ReactElement } from 'react' +import { createRoot, type Root } from 'react-dom/client' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import { JiraConnectDialog } from './jira-connect-dialog' +import { LinearApiKeyDialog } from './linear-api-key-dialog' +import { BitbucketCredentialsDialog } from './settings/bitbucket-credentials-dialog' + +type StoreState = { + settings: { activeRuntimeEnvironmentId: string | null } + connectJira: (input: unknown) => Promise<{ ok: boolean; error?: string }> + connectLinear: (apiKey: string) => Promise<{ ok: boolean; error?: string }> +} + +const mocks = vi.hoisted(() => { + const store: { current: StoreState | null } = { current: null } + return { store } +}) + +vi.mock('@/store', () => ({ + useAppStore: (selector: (state: StoreState) => unknown) => { + if (!mocks.store.current) { + throw new Error('Store state was not installed') + } + return selector(mocks.store.current) + } +})) + +vi.mock('@/runtime/runtime-rpc-client', () => ({ + getActiveRuntimeTarget: () => ({ kind: 'local' }) +})) + +let root: Root | null = null + +beforeEach(() => { + mocks.store.current = { + settings: { activeRuntimeEnvironmentId: null }, + connectJira: vi.fn(async () => ({ ok: true })), + connectLinear: vi.fn(async () => ({ ok: true })) + } +}) + +afterEach(async () => { + if (root) { + await act(async () => { + root?.unmount() + }) + } + root = null + document.body.innerHTML = '' + mocks.store.current = null +}) + +async function renderDialog(ui: ReactElement, existingRoot?: Root): Promise { + const targetRoot = existingRoot ?? createRoot(appendContainer()) + root = targetRoot + await act(async () => { + targetRoot.render(ui) + }) + // Why: Radix attaches its document pointerdown listener on a setTimeout(0), so a + // synchronous dispatch right after mount is missed. + await act(async () => { + await new Promise((resolve) => setTimeout(resolve, 0)) + }) + return targetRoot +} + +function appendContainer(): HTMLDivElement { + const container = document.createElement('div') + document.body.appendChild(container) + return container +} + +async function outsideClick(): Promise { + await act(async () => { + // Why: modal DialogContent sets deferPointerDownOutside, so the dismissal resolves on the + // click that follows the outside pointerdown. Events must bubble to reach the document listeners. + document.body.dispatchEvent(new MouseEvent('pointerdown', { bubbles: true, cancelable: true })) + document.body.dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true })) + }) +} + +async function pressEscape(): Promise { + await act(async () => { + document.dispatchEvent(new KeyboardEvent('keydown', { key: 'Escape', bubbles: true })) + }) +} + +async function click(element: HTMLElement): Promise { + await act(async () => { + element.dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true })) + }) +} + +async function type(input: HTMLInputElement, value: string): Promise { + await act(async () => { + Object.getOwnPropertyDescriptor(HTMLInputElement.prototype, 'value')?.set?.call(input, value) + input.dispatchEvent(new Event('input', { bubbles: true })) + }) +} + +function inputByPlaceholder(placeholder: string): HTMLInputElement { + const input = document.querySelector(`input[placeholder="${placeholder}"]`) + if (!input) { + throw new Error(`missing input with placeholder ${placeholder}`) + } + return input +} + +function buttonByText(label: string): HTMLButtonElement { + const match = Array.from(document.querySelectorAll('button')).find( + (candidate) => candidate.textContent?.trim() === label + ) + if (!match) { + throw new Error(`missing ${label} button`) + } + return match +} + +describe('JiraConnectDialog outside dismiss', () => { + it('keeps a typed site URL when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + const siteUrl = inputByPlaceholder('https://example.atlassian.net') + + await type(siteUrl, 'https://acme.atlassian.net') + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + expect(siteUrl.value).toBe('https://acme.atlassian.net') + }) + + it('keeps a typed email and API token when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('you@example.com'), 'dev@example.com') + await outsideClick() + expect(onOpenChange).not.toHaveBeenCalled() + + await type(inputByPlaceholder('Atlassian API token'), 'jira-token') + await outsideClick() + expect(onOpenChange).not.toHaveBeenCalled() + }) + + it('still dismisses on a backdrop click while the form is clean', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + // Why: mode switches clear the credential fields, so a toggle alone leaves nothing to lose. + it('still dismisses on a backdrop click after a mode toggle with nothing typed', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await click(buttonByText('Self-hosted')) + expect(inputByPlaceholder('https://jira.example.com')).not.toBeNull() + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + it('still discards a typed draft on Escape', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('https://example.atlassian.net'), 'https://acme.atlassian.net') + await pressEscape() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) +}) + +describe('LinearApiKeyDialog outside dismiss', () => { + it('keeps a typed key when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + const key = inputByPlaceholder('lin_api_...') + + await type(key, 'lin_api_secret') + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + expect(key.value).toBe('lin_api_secret') + }) + + it('still dismisses on a backdrop click while the key is empty', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + it('still discards a typed key on Escape', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('lin_api_...'), 'lin_api_secret') + await pressEscape() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) +}) + +describe('BitbucketCredentialsDialog outside dismiss', () => { + it('keeps a typed email when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + const email = inputByPlaceholder('you@example.com') + + await type(email, 'dev@example.com') + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + expect(email.value).toBe('dev@example.com') + }) + + it('keeps a typed API token and base URL when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('Atlassian API token'), 'bb-token') + await outsideClick() + expect(onOpenChange).not.toHaveBeenCalled() + + await type(inputByPlaceholder('https://api.bitbucket.org/2.0'), 'https://api.internal/2.0') + await outsideClick() + expect(onOpenChange).not.toHaveBeenCalled() + }) + + it('keeps a typed access token in token mode when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await click(buttonByText('Access token')) + await type(inputByPlaceholder('Repository, project, or workspace access token'), 'bb-access') + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + }) + + // Why: the base URL is submitted in both auth modes, so it must block dismissal in token mode too. + it('keeps a typed base URL in token mode when the backdrop is clicked', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await click(buttonByText('Access token')) + await type(inputByPlaceholder('https://api.bitbucket.org/2.0'), 'https://api.internal/2.0') + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + }) + + it('still dismisses on a backdrop click while the form is clean', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + // Why: the baseline is seeded from the initial props, so an untouched prefilled edit form is + // clean and must still dismiss on a backdrop click. + it('still dismisses on a backdrop click for an untouched prefilled edit', async () => { + const onOpenChange = vi.fn() + await renderDialog( + + ) + + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + // Why: a status refresh may rewrite the stored metadata mid-edit; the baseline must stay at the + // values captured at open so an untouched form does not become sticky. + it('stays clean when the stored metadata is refreshed mid-edit', async () => { + const onOpenChange = vi.fn() + const targetRoot = await renderDialog( + + ) + + await renderDialog( + , + targetRoot + ) + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + expect(inputByPlaceholder('you@example.com').value).toBe('first@example.com') + }) + + it('keeps a typed draft when the stored metadata is refreshed mid-edit', async () => { + const onOpenChange = vi.fn() + const targetRoot = await renderDialog( + + ) + const email = inputByPlaceholder('you@example.com') + await type(email, 'typed@example.com') + + await renderDialog( + , + targetRoot + ) + await outsideClick() + + expect(onOpenChange).not.toHaveBeenCalled() + expect(email.value).toBe('typed@example.com') + }) + + // Why: mode switches clear the secret fields, so a toggle alone leaves nothing to lose. + it('still dismisses on a backdrop click after a mode toggle with nothing typed', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await click(buttonByText('Access token')) + expect(inputByPlaceholder('Repository, project, or workspace access token')).not.toBeNull() + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + // Why: a basic-mode email is not submitted in token mode, so it must not make the token form + // sticky — only the fields the active mode submits count as the draft. + it('dismisses after switching to token mode with only a basic-mode email typed', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('you@example.com'), 'dev@example.com') + await click(buttonByText('Access token')) + expect(inputByPlaceholder('Repository, project, or workspace access token')).not.toBeNull() + await outsideClick() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) + + it('still discards a typed draft on Escape', async () => { + const onOpenChange = vi.fn() + await renderDialog() + + await type(inputByPlaceholder('you@example.com'), 'dev@example.com') + await pressEscape() + + expect(onOpenChange).toHaveBeenCalledWith(false) + }) +}) diff --git a/src/renderer/src/components/jira-connect-dialog.tsx b/src/renderer/src/components/jira-connect-dialog.tsx index 0de9093185c..3db503ebac8 100644 --- a/src/renderer/src/components/jira-connect-dialog.tsx +++ b/src/renderer/src/components/jira-connect-dialog.tsx @@ -16,6 +16,7 @@ import { Label } from '@/components/ui/label' import { ToggleGroup, ToggleGroupItem } from '@/components/ui/toggle-group' import { cn } from '@/lib/utils' import { hasRemoteProviderRuntime } from '@/lib/provider-runtime-context' +import { preventOutsideDismissWhenDirty } from '@/lib/outside-dismiss-guard' import { translate } from '@/i18n/i18n' type JiraConnectDialogProps = { @@ -112,6 +113,11 @@ export function JiraConnectDialog({ } } + // Why: a stray backdrop click must not discard typed credentials. Mode switches clear the + // credential fields, so a toggle alone is not dirty. Escape / Cancel / × stay explicit. + const isDraftDirty = (): boolean => siteUrl !== '' || email !== '' || apiToken !== '' + const guardOutsideDismiss = preventOutsideDismissWhenDirty(isDraftDirty) + const handleConnect = async (): Promise => { const trimmedSite = siteUrl.trim() const trimmedEmail = email.trim() @@ -164,6 +170,8 @@ export function JiraConnectDialog({ diff --git a/src/renderer/src/components/linear-api-key-dialog.tsx b/src/renderer/src/components/linear-api-key-dialog.tsx index 272814e901b..9e463ead652 100644 --- a/src/renderer/src/components/linear-api-key-dialog.tsx +++ b/src/renderer/src/components/linear-api-key-dialog.tsx @@ -20,6 +20,7 @@ import { import { Input } from '@/components/ui/input' import { Label } from '@/components/ui/label' import { cn } from '@/lib/utils' +import { preventOutsideDismissWhenDirty } from '@/lib/outside-dismiss-guard' import { createLinearApiKeyDialogState, resolveLinearApiKeyDialogState @@ -74,6 +75,10 @@ export function LinearApiKeyDialog({ } } + // Why: a stray backdrop click must not discard a typed API key. Escape / Cancel / × stay explicit. + const isDraftDirty = (): boolean => apiKeyDraft !== '' + const guardOutsideDismiss = preventOutsideDismissWhenDirty(isDraftDirty) + const handleConnect = async (): Promise => { const apiKey = apiKeyDraft.trim() if (!apiKey || connectState === 'connecting') { @@ -125,6 +130,8 @@ export function LinearApiKeyDialog({ { if (event.key === 'Enter' && apiKeyDraft.trim() && connectState !== 'connecting') { event.preventDefault() diff --git a/src/renderer/src/components/settings/SshTargetForm.test.tsx b/src/renderer/src/components/settings/SshTargetForm.test.tsx index d58001caa48..6c70f89feda 100644 --- a/src/renderer/src/components/settings/SshTargetForm.test.tsx +++ b/src/renderer/src/components/settings/SshTargetForm.test.tsx @@ -184,6 +184,34 @@ describe('SshTargetForm', () => { act(() => root.unmount()) }) + it('blocks a backdrop dismissal while the draft differs from the baseline', async () => { + const editTarget: EditingTarget = { ...EMPTY_FORM, label: 'dev-box', host: 'dev-box.lan' } + const onOpenChange = vi.fn() + const root = await renderForm({ open: false, onOpenChange }) + await renderForm({ open: true, editingId: 'target-1', form: editTarget, onOpenChange }, root) + await renderForm( + { + open: true, + editingId: 'target-1', + form: { ...editTarget, host: 'other.lan' }, + onOpenChange + }, + root + ) + + await act(async () => { + await new Promise((resolve) => setTimeout(resolve, 0)) + }) + await act(async () => { + document.body.dispatchEvent( + new MouseEvent('pointerdown', { bubbles: true, cancelable: true }) + ) + document.body.dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true })) + }) + expect(onOpenChange).not.toHaveBeenCalled() + act(() => root.unmount()) + }) + it('opens Advanced by default when the target already has advanced values', async () => { const root = await renderForm({ editingId: 'target-1', diff --git a/src/renderer/src/components/settings/SshTargetForm.tsx b/src/renderer/src/components/settings/SshTargetForm.tsx index 071fd5be88f..b2eeb096b43 100644 --- a/src/renderer/src/components/settings/SshTargetForm.tsx +++ b/src/renderer/src/components/settings/SshTargetForm.tsx @@ -19,6 +19,7 @@ import { type EditingTarget } from './ssh-target-draft' import { translate } from '@/i18n/i18n' +import { preventOutsideDismissWhenDirty } from '@/lib/outside-dismiss-guard' export { EMPTY_FORM, type EditingTarget } from './ssh-target-draft' type SshTargetFormProps = { @@ -90,21 +91,18 @@ export function SshTargetForm({ isEditing && (editingLabel !== '' || (endpointSummary !== '' && endpointSummary !== editingLabel)) - const preventOutsideDismiss = (event: Event): void => { - // Why: outside click is easy to hit by accident with a long multi-field form; - // keep Escape / Cancel / × as explicit discard paths. Read both refs at call - // time — the session effect can rewrite the baseline without a re-render. - if (isSshTargetFormDirty(formRef.current, baselineRef.current)) { - event.preventDefault() - } - } + // Why: outside click is easy to hit by accident with a long multi-field form; keep Escape / + // Cancel / × as explicit discard paths. Read both refs at call time — the session effect can + // rewrite the baseline without a re-render. + const isDraftDirty = (): boolean => isSshTargetFormDirty(formRef.current, baselineRef.current) + const guardOutsideDismiss = preventOutsideDismissWhenDirty(isDraftDirty) return (
('idle') const [connectError, setConnectError] = useState(null) + // Why: the form is seeded from `initial*` props that a status refresh may rewrite mid-edit, so + // compare text fields against the values captured at open rather than the live props. + const baselineRef = useRef({ email: '', baseUrl: '' }) // Re-sync from the latest stored metadata on every open, not just on mount, so // the Edit flow never shows values from a previous connection. Secrets always @@ -71,9 +75,12 @@ export function BitbucketCredentialsDialog({ if (!open) { return } + const seedEmail = initialEmail ?? '' + const seedBaseUrl = initialBaseUrl ?? '' + baselineRef.current = { email: seedEmail, baseUrl: seedBaseUrl } setAuthMode(initialAuthMode ?? 'basic') - setEmail(initialEmail ?? '') - setBaseUrl(initialBaseUrl ?? '') + setEmail(seedEmail) + setBaseUrl(seedBaseUrl) setApiToken('') setAccessToken('') setConnectState('idle') @@ -106,6 +113,14 @@ export function BitbucketCredentialsDialog({ } } + // Why: a stray backdrop click must not discard typed credentials. Only the active mode's fields + // are submitted, so compare just those — a stale basic-mode email is not submitted in token mode + // and must not make the form sticky. Escape / Cancel / × stay explicit. + const isDraftDirty = (): boolean => + baseUrl !== baselineRef.current.baseUrl || + (isTokenMode ? accessToken !== '' : email !== baselineRef.current.email || apiToken !== '') + const guardOutsideDismiss = preventOutsideDismissWhenDirty(isDraftDirty) + const handleConnect = async (): Promise => { if (!canSubmit) { return @@ -153,6 +168,8 @@ export function BitbucketCredentialsDialog({ { // Only from a text field: Enter on Cancel or the docs link must do // what that control does, not submit the form. diff --git a/src/renderer/src/lib/outside-dismiss-guard.test.ts b/src/renderer/src/lib/outside-dismiss-guard.test.ts new file mode 100644 index 00000000000..702419209f3 --- /dev/null +++ b/src/renderer/src/lib/outside-dismiss-guard.test.ts @@ -0,0 +1,32 @@ +import { describe, expect, it, vi } from 'vitest' +import { preventOutsideDismissWhenDirty } from './outside-dismiss-guard' + +describe('preventOutsideDismissWhenDirty', () => { + it('prevents the outside dismiss while the draft is dirty', () => { + const event = { preventDefault: vi.fn() } + + preventOutsideDismissWhenDirty(() => true)(event) + + expect(event.preventDefault).toHaveBeenCalledOnce() + }) + + it('allows the outside dismiss while the draft is clean', () => { + const event = { preventDefault: vi.fn() } + + preventOutsideDismissWhenDirty(() => false)(event) + + expect(event.preventDefault).not.toHaveBeenCalled() + }) + + it('reads the predicate at event time, not when the handler is created', () => { + let dirty = false + const guard = preventOutsideDismissWhenDirty(() => dirty) + const event = { preventDefault: vi.fn() } + + guard(event) + dirty = true + guard(event) + + expect(event.preventDefault).toHaveBeenCalledOnce() + }) +}) diff --git a/src/renderer/src/lib/outside-dismiss-guard.ts b/src/renderer/src/lib/outside-dismiss-guard.ts new file mode 100644 index 00000000000..c28083afa18 --- /dev/null +++ b/src/renderer/src/lib/outside-dismiss-guard.ts @@ -0,0 +1,21 @@ +// Why a structural event shape and not Radix's event type: this module stays dependency-free and +// the handler only needs `preventDefault`, which every outside-dismiss event provides. +type PreventableOutsideEvent = { preventDefault: () => void } + +/** + * Block Radix outside-dismiss while `isDirty()` is true, so an accidental backdrop click cannot + * discard a draft. Escape / Cancel / × stay the explicit discard paths. + * + * Why a predicate instead of a boolean: callers that mutate their dirty baseline in an effect + * need the check evaluated at event time, not captured at render. Do not memoize the returned + * handler — it must be recreated each render so Radix reads the latest predicate. + */ +export function preventOutsideDismissWhenDirty( + isDirty: () => boolean +): (event: PreventableOutsideEvent) => void { + return (event) => { + if (isDirty()) { + event.preventDefault() + } + } +} diff --git a/tests/e2e/settings-integration-dialog-dismiss.spec.ts b/tests/e2e/settings-integration-dialog-dismiss.spec.ts new file mode 100644 index 00000000000..97102c8babf --- /dev/null +++ b/tests/e2e/settings-integration-dialog-dismiss.spec.ts @@ -0,0 +1,91 @@ +/** + * A backdrop click in the Settings → Integrations Linear and Jira connect dialogs must + * not close the dialog and discard typed credentials. Escape / Cancel stay the explicit discard + * paths. (Bitbucket's baseline-seeded predicate is covered by the component tests.) + * + * Mirrors the SSH host form modal guard (tests/e2e/ssh-host-form-modal.spec.ts). + */ + +import type { Page } from '@stablyai/playwright-test' +import { expect, test } from './helpers/orca-app' +import { dismissTransientAnnouncement } from './helpers/ssh-config-host-picker' +import { waitForSessionReady } from './helpers/store' + +async function openIntegrationsSettings(page: Page): Promise { + await page.evaluate(async () => { + const store = window.__store + if (!store) { + throw new Error('window.__store is not available') + } + // Why: the spec asserts on English strings; the host may run a non-English locale. + await store.getState().updateSettings({ uiLanguage: 'en' }) + store.getState().openSettingsTarget({ pane: 'integrations', repoId: null }) + store.getState().openSettingsPage() + }) + await expect(page.getByPlaceholder('Search settings')).toBeVisible({ timeout: 10_000 }) + await dismissTransientAnnouncement(page) +} + +async function clickBackdrop(page: Page): Promise { + // Why: the overlay is fixed inset-0 and the dialog sits over its center, so click near a corner. + await page.locator('[data-slot="dialog-overlay"]').click({ position: { x: 8, y: 8 } }) +} + +test.describe('Settings integrations connect dialogs', () => { + test.beforeEach(async ({ orcaPage }) => { + await waitForSessionReady(orcaPage) + await openIntegrationsSettings(orcaPage) + }) + + test('Linear API key draft survives a backdrop click but clears on cancel', async ({ + orcaPage + }) => { + const card = orcaPage.locator('[data-settings-section="integrations-linear"]') + // Why: the button label depends on connection state; a fresh profile is disconnected. + const openButton = card.getByRole('button', { + name: /^(Add Linear access|Add workspace access)$/ + }) + await expect(openButton).toBeVisible({ timeout: 15_000 }) + await openButton.click() + + const dialog = orcaPage.getByRole('dialog', { name: 'Add Linear access' }) + await expect(dialog).toBeVisible() + const keyInput = dialog.locator('input[type="password"]') + await keyInput.fill('lin_api_e2e_secret') + + await clickBackdrop(orcaPage) + // Why: assert the settled open state, not the exit-animation frame a broken guard would leave. + await expect(dialog).toHaveAttribute('data-state', 'open') + await expect(keyInput).toHaveValue('lin_api_e2e_secret') + + await dialog.getByRole('button', { name: 'Cancel' }).click() + await expect(dialog).toBeHidden() + + // Explicit cancel discards; reopening starts empty. + await openButton.click() + await expect(dialog.locator('input[type="password"]')).toHaveValue('') + await dialog.getByRole('button', { name: 'Cancel' }).click() + await expect(dialog).toBeHidden() + }) + + test('Jira site URL draft survives a backdrop click', async ({ orcaPage }) => { + const card = orcaPage.locator('[data-settings-section="integrations-jira"]') + // Why: the button label depends on connection state; a fresh profile is disconnected. + const openButton = card.getByRole('button', { name: /^(Connect Jira|Add Jira site)$/ }) + await expect(openButton).toBeVisible({ timeout: 15_000 }) + await openButton.click() + + const dialog = orcaPage.getByRole('dialog', { name: 'Connect Jira site' }) + await expect(dialog).toBeVisible() + const siteUrlInput = dialog.locator('input[placeholder="https://example.atlassian.net"]') + await siteUrlInput.fill('https://acme.atlassian.net') + + await clickBackdrop(orcaPage) + // Why: assert the settled open state, not the exit-animation frame a broken guard would leave. + await expect(dialog).toHaveAttribute('data-state', 'open') + await expect(siteUrlInput).toHaveValue('https://acme.atlassian.net') + + await dialog.getByRole('button', { name: 'Cancel' }).click() + await expect(dialog).toBeHidden() + }) +}) From b0d46e2d3d7940548346bc6bf8af6c4e6d3266d2 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:08:40 -0700 Subject: [PATCH 17/28] fix(settings): preserve multiline proxy bypass rules (#20957) --- ...etworkSettingsSection.interaction.test.tsx | 63 +++++++++++++++++++ .../AdvancedNetworkSettingsSection.test.ts | 21 +++++++ .../AdvancedNetworkSettingsSection.tsx | 9 +-- tests/e2e/network-proxy-bypass-rules.spec.ts | 41 ++++++++++++ 4 files changed, 128 insertions(+), 6 deletions(-) create mode 100644 src/renderer/src/components/settings/AdvancedNetworkSettingsSection.interaction.test.tsx create mode 100644 tests/e2e/network-proxy-bypass-rules.spec.ts diff --git a/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.interaction.test.tsx b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.interaction.test.tsx new file mode 100644 index 00000000000..513c2ed4e4e --- /dev/null +++ b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.interaction.test.tsx @@ -0,0 +1,63 @@ +// @vitest-environment happy-dom + +import { cleanup, fireEvent, render } from '@testing-library/react' +import { afterEach, describe, expect, it, vi } from 'vitest' +import { getDefaultSettings } from '../../../../shared/constants' +import { AdvancedNetworkSettingsSection } from './AdvancedNetworkSettingsSection' + +afterEach(() => cleanup()) + +describe('AdvancedNetworkSettingsSection bypass rules control', () => { + it('keeps newline input and canonicalizes it when focus leaves the textarea', async () => { + const updateSettings = vi.fn() + + const { container } = render( + + ) + + const configureButton = Array.from(container.querySelectorAll('button')).find((button) => + button.textContent?.includes('Configure proxy') + ) + expect(configureButton).not.toBeUndefined() + fireEvent.click(configureButton!) + + const textarea = container.querySelector( + '#settings-http-proxy-bypass-rules' + ) + expect(textarea).not.toBeNull() + + fireEvent.change(textarea!, { target: { value: 'localhost\n127.0.0.1\n*.internal.corp' } }) + fireEvent.blur(textarea!) + + expect(updateSettings).toHaveBeenCalledWith({ + httpProxyBypassRules: 'localhost;127.0.0.1;*.internal.corp' + }) + }) + + it('does not commit when Enter is pressed inside the textarea', () => { + const updateSettings = vi.fn() + const { container } = render( + + ) + fireEvent.click( + Array.from(container.querySelectorAll('button')).find((button) => + button.textContent?.includes('Configure proxy') + )! + ) + const textarea = container.querySelector( + '#settings-http-proxy-bypass-rules' + )! + + textarea.focus() + fireEvent.keyDown(textarea, { key: 'Enter', code: 'Enter' }) + + expect(document.activeElement).toBe(textarea) + expect(updateSettings).not.toHaveBeenCalled() + }) +}) diff --git a/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.test.ts b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.test.ts index 08a392fdecc..cdbe8d446f3 100644 --- a/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.test.ts +++ b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.test.ts @@ -1,6 +1,10 @@ +import { renderToStaticMarkup } from 'react-dom/server' +import { createElement } from 'react' import { describe, expect, it } from 'vitest' import type { GlobalSettings } from '../../../../shared/global-settings-types' +import { getDefaultSettings } from '../../../../shared/constants' import { + AdvancedNetworkSettingsSection, createHttpProxyBypassRulesDraftState, createHttpProxyUrlDraftState, hasConfiguredNetworkProxy, @@ -11,6 +15,23 @@ import { } from './AdvancedNetworkSettingsSection' describe('AdvancedNetworkSettingsSection proxy drafts', () => { + it('renders bypass rules as a multiline textarea', () => { + const markup = renderToStaticMarkup( + createElement(AdvancedNetworkSettingsSection, { + settings: { + ...getDefaultSettings('/tmp'), + httpProxyBypassRules: 'localhost\n127.0.0.1\n*.internal.corp' + }, + updateSettings: () => undefined + }) + ) + + expect(markup).toMatch(/]*id="settings-http-proxy-bypass-rules"[^>]*>/) + expect(markup).toContain('localhost') + expect(markup).toContain('127.0.0.1') + expect(markup).toContain('*.internal.corp') + }) + it('keeps a committed proxy URL draft tied to the current persisted source', () => { const current = createHttpProxyUrlDraftState(undefined) diff --git a/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.tsx b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.tsx index 6597dd1e15b..34939b067f4 100644 --- a/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.tsx +++ b/src/renderer/src/components/settings/AdvancedNetworkSettingsSection.tsx @@ -9,6 +9,7 @@ import { Button } from '../ui/button' import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../ui/collapsible' import { Input } from '../ui/input' import { Label } from '../ui/label' +import { Textarea } from '../ui/textarea' import { getAdvancedNetworkSearchEntries } from './advanced-network-search' import { SearchableSetting } from './SearchableSetting' import { matchesSettingsSearch, normalizeSettingsSearchQuery } from './settings-search' @@ -304,16 +305,11 @@ export function AdvancedNetworkSettingsSection({ 'Proxy Bypass Rules' )} -

diff --git a/tests/e2e/network-proxy-bypass-rules.spec.ts b/tests/e2e/network-proxy-bypass-rules.spec.ts new file mode 100644 index 00000000000..9db71f2fe60 --- /dev/null +++ b/tests/e2e/network-proxy-bypass-rules.spec.ts @@ -0,0 +1,41 @@ +import { test, expect } from './helpers/orca-app' +import { waitForSessionReady } from './helpers/store' + +test.describe('network proxy bypass rules', () => { + test('preserves newline-separated hosts and canonicalizes them on blur', async ({ orcaPage }) => { + await waitForSessionReady(orcaPage) + + const original = await orcaPage.evaluate(() => window.api.settings.get()) + try { + await orcaPage.evaluate(() => { + const state = window.__store?.getState() + state?.openSettingsTarget({ pane: 'advanced', repoId: null }) + state?.openSettingsPage() + }) + + await expect(orcaPage.getByRole('heading', { name: 'Advanced', exact: true })).toBeVisible() + await orcaPage.getByRole('button', { name: 'Configure proxy' }).click() + const bypassRules = orcaPage.locator('#settings-http-proxy-bypass-rules') + await expect(bypassRules).toBeVisible() + await expect(bypassRules).toHaveJSProperty('tagName', 'TEXTAREA') + + await bypassRules.fill('localhost\n127.0.0.1\n*.internal.corp') + await expect(bypassRules).toHaveValue('localhost\n127.0.0.1\n*.internal.corp') + await orcaPage.locator('#settings-http-proxy-url').focus() + + await expect + .poll( + async () => + (await orcaPage.evaluate(() => window.api.settings.get())).httpProxyBypassRules + ) + .toBe('localhost;127.0.0.1;*.internal.corp') + await expect(bypassRules).toHaveValue('localhost;127.0.0.1;*.internal.corp') + } finally { + await orcaPage.evaluate( + (settings) => + window.api.settings.set({ httpProxyBypassRules: settings.httpProxyBypassRules ?? '' }), + original + ) + } + }) +}) From feb04ec254585ba69587699d41f80a72dda2cb27 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:21:38 -0700 Subject: [PATCH 18/28] Virtualize automations run history table for large histories (#20916) * refactor(automations): virtualize run history table - Add virtual scrolling to AutomationRunHistory for efficient rendering of large run lists - Implement sticky table header that stays visible during scroll - Update keyboard navigation and focus management for virtualized rows - Move AutomationRunsTable header inside scroll container for visual consistency - Add virtualizer-test-stub for testing virtual scroll behavior without DOM measurement - Cache DateTimeFormat to avoid per-cell allocation overhead * test(automations): add coverage for virtualized run table - Tests verify row content renders spend, tokens, and workspace labels correctly - Keyboard navigation guards prevent operations during failed host reads - Load-more pagination triggers at scroll end and respects page boundaries - New fixtures support flexible automation run and usage test scenarios * test(automations): verify scroll-to-focus path in virtualized runs - Implement scrollToIndex in virtualizer stub to move viewport window - Optimize row-size estimation to use predicate instead of labels - Test validates keyboard navigation scrolls rows into view before focus * add more tests --- .../automations/AutomationRunHistory.test.tsx | 280 ++++++++++++- .../automations/AutomationRunHistory.tsx | 382 ++++++++++++------ .../automations/AutomationRunsTable.test.tsx | 256 +++++++++++- .../automations/AutomationRunsTable.tsx | 47 ++- .../automations/AutomationsDetailPane.tsx | 39 +- .../automations/automation-page-parts.tsx | 16 +- .../automations/automation-run-occurrences.ts | 9 +- .../automations/automations-page-fixtures.ts | 42 +- .../automations/virtualizer-test-stub.ts | 72 ++++ 9 files changed, 951 insertions(+), 192 deletions(-) create mode 100644 src/renderer/src/components/automations/virtualizer-test-stub.ts diff --git a/src/renderer/src/components/automations/AutomationRunHistory.test.tsx b/src/renderer/src/components/automations/AutomationRunHistory.test.tsx index d835d530890..1083e90acf0 100644 --- a/src/renderer/src/components/automations/AutomationRunHistory.test.tsx +++ b/src/renderer/src/components/automations/AutomationRunHistory.test.tsx @@ -13,7 +13,13 @@ import { createRoot, type Root } from 'react-dom/client' import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' import type { AutomationRun } from '../../../../shared/automations-types' import { AutomationRunHistory } from './AutomationRunHistory' -import { makeRun } from './automations-page-fixtures' +import { WORKSPACE_ID, makeRun, makeRunUsage, makeWorktree } from './automations-page-fixtures' +import { VIRTUALIZER_STUB_WINDOW_SIZE } from './virtualizer-test-stub' + +vi.mock('@tanstack/react-virtual', async () => { + const { createVirtualizerStub } = await import('./virtualizer-test-stub') + return { useVirtualizer: createVirtualizerStub() } +}) const roots: Root[] = [] @@ -132,6 +138,81 @@ describe('AutomationRunHistory unanswered history', () => { }) }) +describe('AutomationRunHistory virtualization', () => { + async function renderRuns(runs: AutomationRun[]): Promise { + const container = document.createElement('div') + document.body.appendChild(container) + const root = createRoot(container) + roots.push(root) + await act(async () => { + root.render( + + ) + }) + return container + } + + async function pressArrow(key: 'ArrowDown' | 'ArrowUp', times: number): Promise { + for (let move = 0; move < times; move += 1) { + await act(async () => { + window.dispatchEvent(new KeyboardEvent('keydown', { key, bubbles: true, cancelable: true })) + }) + } + } + + function makeRuns(count: number): AutomationRun[] { + return Array.from({ length: count }, (_, index) => + makeRun({ id: `run-${index}`, scheduledFor: FIRST + index }) + ) + } + + it('keeps a long history to a bounded number of mounted rows', async () => { + const container = await renderRuns(makeRuns(5_000)) + + expect(container.querySelectorAll('button[data-automation-run-id]').length).toBeLessThan(50) + // The count above the table still speaks for the whole history, not the window. + expect(container.textContent).toContain('5000 runs') + }) + + it('scrolls a selected row below the fold into the window and then focuses it', async () => { + const container = await renderRuns(makeRuns(VIRTUALIZER_STUB_WINDOW_SIZE * 2)) + + const belowFold = `run-${VIRTUALIZER_STUB_WINDOW_SIZE}` + expect(container.querySelector(`[data-automation-run-id="${belowFold}"]`)).toBeNull() + + // Selection starts on the first row, so this many moves lands one row past the + // window — the case where focus has to wait for the scroll to mount the row. + await pressArrow('ArrowDown', VIRTUALIZER_STUB_WINDOW_SIZE) + + const selected = container.querySelector( + `[data-automation-run-id="${belowFold}"]` + ) + expect(selected?.getAttribute('data-current')).toBe('true') + expect(document.activeElement).toBe(selected) + // The window moved rather than grew: the row it scrolled past is unmounted. + expect(container.querySelector('[data-automation-run-id="run-0"]')).toBeNull() + }) + + it('scrolls a selected row above the fold back into the window and then focuses it', async () => { + const container = await renderRuns(makeRuns(VIRTUALIZER_STUB_WINDOW_SIZE * 2)) + + await pressArrow('ArrowDown', VIRTUALIZER_STUB_WINDOW_SIZE) + expect(container.querySelector('[data-automation-run-id="run-0"]')).toBeNull() + + // Back to the top: the window now has to move the other way before focus can land. + await pressArrow('ArrowUp', VIRTUALIZER_STUB_WINDOW_SIZE) + + const selected = container.querySelector('[data-automation-run-id="run-0"]') + expect(selected?.getAttribute('data-current')).toBe('true') + expect(document.activeElement).toBe(selected) + }) +}) + describe('AutomationRunHistory keyboard navigation', () => { it('navigates runs with ArrowDown and ArrowUp and opens on Enter', async () => { const onOpenRun = vi.fn() @@ -237,3 +318,200 @@ describe('AutomationRunHistory keyboard navigation', () => { expect(onOpenRun).toHaveBeenCalledWith(run2) }) }) + +describe('AutomationRunHistory row content', () => { + let container: HTMLDivElement + let root: Root + + beforeEach(() => { + globalThis.IS_REACT_ACT_ENVIRONMENT = true + container = document.createElement('div') + document.body.appendChild(container) + root = createRoot(container) + roots.push(root) + }) + + function renderHistory(props: { + runs: AutomationRun[] + automationId?: string + worktreeMap?: ReadonlyMap> + onOpenRun?: (run: AutomationRun) => void + }): void { + act(() => { + root.render( + + ) + }) + } + + function rows(): NodeListOf { + return container.querySelectorAll('button[data-automation-run-id]') + } + + it('reports spend and tokens a host actually measured', () => { + renderHistory({ + runs: [ + makeRun({ + usage: makeRunUsage({ estimatedCostUsd: 1.5, totalTokens: 12_345 }) + }) + ] + }) + + expect(rows()[0].textContent).toContain('$1.50') + expect(rows()[0].textContent).toContain('12k') + }) + + it('says n/a rather than zero when usage is unavailable', () => { + renderHistory({ runs: [makeRun({ usage: null })] }) + + // A run whose usage nobody could read has not been measured at $0.00. + expect(rows()[0].textContent).toContain('n/a') + expect(rows()[0].textContent).not.toContain('$0.00') + }) + + it('names the workspace a run is still attached to', () => { + renderHistory({ + runs: [makeRun({ workspaceId: WORKSPACE_ID })], + worktreeMap: new Map([[WORKSPACE_ID, makeWorktree({ displayName: 'nightly-check' })]]) + }) + + expect(rows()[0].textContent).toContain('nightly-check') + }) + + it('keeps the remembered name of a workspace that is gone, and says it is gone', () => { + renderHistory({ + runs: [makeRun({ workspaceId: WORKSPACE_ID, workspaceDisplayName: 'nightly-check' })], + worktreeMap: new Map() + }) + + expect(rows()[0].textContent).toContain('nightly-check') + expect(rows()[0].textContent).toContain('no longer available') + }) + + it('counts the whole history but only the completed runs as completed', () => { + renderHistory({ + runs: [ + makeRun({ id: 'run-1', status: 'completed' }), + makeRun({ id: 'run-2', status: 'dispatch_failed' }), + makeRun({ id: 'run-3', status: 'completed' }) + ] + }) + + expect(container.textContent).toContain('3 runs · 2 completed') + }) + + it('says "1 run" rather than "1 runs"', () => { + renderHistory({ runs: [makeRun()] }) + + expect(container.textContent).toContain('1 run · 1 completed') + }) + + it('opens and selects the clicked run', () => { + const onOpenRun = vi.fn() + const second = makeRun({ id: 'run-2' }) + renderHistory({ runs: [makeRun({ id: 'run-1' }), second], onOpenRun }) + + act(() => rows()[1].click()) + + expect(onOpenRun).toHaveBeenCalledExactlyOnceWith(second) + expect(rows()[1].getAttribute('data-current')).toBe('true') + expect(rows()[0].getAttribute('data-current')).toBe('false') + }) + + it('drops a selection that belonged to the automation before this one', () => { + const runs = [makeRun({ id: 'run-1' }), makeRun({ id: 'run-2' })] + renderHistory({ runs, automationId: 'a-1' }) + act(() => rows()[1].click()) + + expect(rows()[1].getAttribute('data-current')).toBe('true') + + // Same row IDs, different automation: carrying the old selection over would + // highlight a row the user never picked. + renderHistory({ runs, automationId: 'a-2' }) + + expect(rows()[0].getAttribute('data-current')).toBe('true') + expect(rows()[1].getAttribute('data-current')).toBe('false') + }) +}) + +describe('AutomationRunHistory keyboard navigation guards', () => { + let container: HTMLDivElement + let root: Root + + beforeEach(() => { + globalThis.IS_REACT_ACT_ENVIRONMENT = true + container = document.createElement('div') + document.body.appendChild(container) + root = createRoot(container) + roots.push(root) + }) + + async function pressEnter(): Promise { + await act(async () => { + window.dispatchEvent( + new KeyboardEvent('keydown', { key: 'Enter', bubbles: true, cancelable: true }) + ) + }) + } + + it('opens nothing while rows are on screen under an unanswered read', async () => { + const onOpenRun = vi.fn() + await act(async () => { + root.render( + + ) + }) + + await pressEnter() + + // The notice says these rows are not the host's answer, so Enter must not act + // on them however many of them are still painted. + expect(onOpenRun).not.toHaveBeenCalled() + }) + + it('follows the runs it was last given, not the ones it mounted with', async () => { + const onOpenRun = vi.fn() + const replacement = makeRun({ id: 'run-9', scheduledFor: LATEST }) + await act(async () => { + root.render( + + ) + }) + // The listener subscribes once and reads the current runs through a ref; a + // refreshed history has to reach it without a resubscribe. + await act(async () => { + root.render( + + ) + }) + + await pressEnter() + + expect(onOpenRun).toHaveBeenCalledExactlyOnceWith(replacement) + }) +}) diff --git a/src/renderer/src/components/automations/AutomationRunHistory.tsx b/src/renderer/src/components/automations/AutomationRunHistory.tsx index cc36d416f14..3f5a7eb2ee1 100644 --- a/src/renderer/src/components/automations/AutomationRunHistory.tsx +++ b/src/renderer/src/components/automations/AutomationRunHistory.tsx @@ -1,4 +1,5 @@ -import React, { useMemo, useState } from 'react' +import React, { useCallback, useLayoutEffect, useMemo, useRef, useState } from 'react' +import { useVirtualizer } from '@tanstack/react-virtual' import { Badge } from '@/components/ui/badge' import { cn } from '@/lib/utils' import type { AutomationRun } from '../../../../shared/automations-types' @@ -13,7 +14,7 @@ import { formatAutomationTokens, getAutomationUsageStatusLabel } from './automation-usage-model' -import { automationRunOccurrenceLabel } from './automation-run-occurrences' +import { automationRunOccurrenceLabel, isAutomationRunFolded } from './automation-run-occurrences' import { getAutomationRunWorkspaceDisplay } from './automation-run-workspace-display' import { AutomationOwnerConflictNotice } from './AutomationOwnerConflictNotice' import type { AutomationActionNotice } from './automation-row-action-dispatch' @@ -25,6 +26,22 @@ import { } from './automation-run-history-keyboard-navigation' import { translate } from '@/i18n/i18n' +// Date line + workspace detail line inside the row padding; the occurrence line +// is the only optional one, so the estimate can be exact without measuring. +const RUN_ROW_HEIGHT_PX = 57 +const RUN_ROW_OCCURRENCE_LINE_PX = 20 +const RUN_ROW_OVERSCAN = 10 +// happy-dom and the first paint both report a zero-height scroll element; without +// a starting viewport the first render would mount no rows at all. +const RUNS_VIEWPORT_INITIAL_RECT = { width: 1024, height: 600 } + +const RUN_ROW_GRID_CLASS = + 'grid w-full grid-cols-[minmax(9rem,1fr)_minmax(10rem,1.1fr)_minmax(5rem,.55fr)_minmax(5rem,.55fr)_minmax(6rem,auto)] gap-3' +// Sticky inside the scroller so the header shares the rows' content width when a +// classic scrollbar takes gutter space; opaque so scrolled rows don't bleed through. +const RUN_ROW_HEADER_SURFACE_CLASS = + '[background:color-mix(in_srgb,var(--muted)_20%,var(--background))]' + type AutomationRunHistoryProps = { runs: AutomationRun[] automationId: string @@ -44,6 +61,13 @@ export function AutomationRunHistory({ onOpenRun }: AutomationRunHistoryProps): React.JSX.Element { const containerRef = React.useRef(null) + const scrollRef = useRef(null) + const headerRef = useRef(null) + const rowsRef = useRef(null) + // The sticky header sits above the virtual rows in the same scroller, so every + // item is offset by the header height; without scrollMargin the virtualizer's + // coordinates (and scrollToIndex) are short by that offset. + const [scrollMargin, setScrollMargin] = useState(0) const [selectedRunState, setSelectedRunState] = useState<{ automationId: string runId: string | null @@ -58,7 +82,67 @@ export function AutomationRunHistory({ const selectedRunId = selectedRunState.automationId === automationId ? selectedRunState.runId : null - const selectedRun = runs.find((run) => run.id === selectedRunId) ?? runs[0] ?? null + const selectedIndex = selectedRunId ? runs.findIndex((run) => run.id === selectedRunId) : -1 + const selectedRun = (selectedIndex >= 0 ? runs[selectedIndex] : undefined) ?? runs[0] ?? null + + // Both options must be stable across renders: virtual-core memoizes its + // measurements on measuringOptions, which closes over getItemKey, and an inline + // estimateSize re-walks every uncached index (up to the whole history) per render. + const estimateRunRowSize = useCallback( + (index: number): number => { + const run = runs[index] + // The predicate, not the label: estimateSize is asked for unmounted indexes too, + // and building the label there would translate and format a date per run. + return run && isAutomationRunFolded(run) + ? RUN_ROW_HEIGHT_PX + RUN_ROW_OCCURRENCE_LINE_PX + : RUN_ROW_HEIGHT_PX + }, + [runs] + ) + const getRunRowKey = useCallback( + (index: number): string | number => runs[index]?.id ?? index, + [runs] + ) + + const virtualizer = useVirtualizer({ + count: runs.length, + getScrollElement: () => scrollRef.current, + estimateSize: estimateRunRowSize, + overscan: RUN_ROW_OVERSCAN, + initialRect: RUNS_VIEWPORT_INITIAL_RECT, + getItemKey: getRunRowKey, + scrollMargin, + // The sticky header covers the top of the scrollport, so a row aligned to the + // top must land below it; scrollPaddingStart is that viewport inset. + scrollPaddingStart: scrollMargin + }) + + // Measure the rows container's offset inside the scroller (its top equals the + // header height) and keep it current across zoom/font changes. + useLayoutEffect(() => { + const rows = rowsRef.current + const scrollElement = scrollRef.current + if (!rows || !scrollElement) { + return + } + const measure = (): void => { + const next = Math.round( + rows.getBoundingClientRect().top - + scrollElement.getBoundingClientRect().top + + scrollElement.scrollTop + ) + setScrollMargin((current) => (current === next ? current : next)) + } + measure() + if (typeof ResizeObserver === 'undefined' || !headerRef.current) { + return + } + // Only the header can shift the rows container's offset; observing the rows + // container too would fire on every row mount for no offset change. + const observer = new ResizeObserver(measure) + observer.observe(headerRef.current) + return () => observer.disconnect() + }, []) const findRunRow = React.useCallback( (runId: string): HTMLElement | null => @@ -67,162 +151,222 @@ export function AutomationRunHistory({ [] ) + // The window listener reads the latest runs and selection through this ref so it + // subscribes once, instead of on every render the page above it causes. + const keyboardInputRef = useRef({ runs, selectedRun, automationId, notice, onOpenRun }) React.useEffect(() => { - if (runs.length === 0 || notice) { - return - } + keyboardInputRef.current = { runs, selectedRun, automationId, notice, onOpenRun } + }) + const pendingFocusRunIdRef = useRef(null) + // A refresh can drop the row a keyboard move was waiting to focus; without this + // the stale id would steal focus if that run ever reappeared. + React.useEffect(() => { + const pendingRunId = pendingFocusRunIdRef.current + if (pendingRunId && !runs.some((run) => run.id === pendingRunId)) { + pendingFocusRunIdRef.current = null + } + }, [runs]) + + React.useEffect(() => { const handleKeyDown = (event: KeyboardEvent): void => { - if (!shouldHandleAutomationRunHistoryKey(event)) { + const input = keyboardInputRef.current + if (input.runs.length === 0 || input.notice || !shouldHandleAutomationRunHistoryKey(event)) { return } if (event.key === 'Enter') { - if (selectedRun) { + if (input.selectedRun) { event.preventDefault() - onOpenRun(selectedRun) + input.onOpenRun(input.selectedRun) } return } if (isAutomationRunHistoryArrowKey(event.key)) { const targetRun = getAutomationRunHistoryArrowTarget({ - runs, - selectedRunId: selectedRun?.id ?? null, + runs: input.runs, + selectedRunId: input.selectedRun?.id ?? null, key: event.key }) if (targetRun) { event.preventDefault() - setSelectedRunState({ automationId, runId: targetRun.id }) - // Enter is left to the focused control, so focus has to follow the selection. - findRunRow(targetRun.id)?.focus?.({ preventScroll: true }) + setSelectedRunState({ automationId: input.automationId, runId: targetRun.id }) + // Enter is left to the focused control, so focus has to follow the selection — + // but the target row may still be outside the virtual window, so focus waits + // for the scroll below to mount it. + pendingFocusRunIdRef.current = targetRun.id } } } window.addEventListener('keydown', handleKeyDown) return () => window.removeEventListener('keydown', handleKeyDown) - }, [automationId, findRunRow, notice, onOpenRun, runs, selectedRun]) + }, []) React.useEffect(() => { - if (!selectedRunId) { + if (selectedIndex >= 0) { + virtualizer.scrollToIndex(selectedIndex, { align: 'auto' }) + } + }, [selectedIndex, virtualizer]) + + // Unconditional: the row a keyboard move selected can take an extra scroll-driven + // render to mount, and only then can it take focus. + React.useEffect(() => { + const pendingRunId = pendingFocusRunIdRef.current + if (!pendingRunId) { return } - const element = findRunRow(selectedRunId) - if (element && typeof element.scrollIntoView === 'function') { - element.scrollIntoView({ block: 'nearest' }) + const element = findRunRow(pendingRunId) + if (element) { + pendingFocusRunIdRef.current = null + element.focus?.({ preventScroll: true }) } - }, [findRunRow, selectedRunId]) + }) return ( -

-
+
+
{translate('auto.components.automations.AutomationRunHistory.53fc5f07ab', 'Run history')}
{/* A failed read knows no counts; "0 runs" would answer a question nobody asked the host. */} {notice ? null :
{runCountLabel}
}
-
-
-
- {translate('auto.components.automations.AutomationRunHistory.8faaa00726', 'Run')} +
+
+
+
+ {translate('auto.components.automations.AutomationRunHistory.8faaa00726', 'Run')} +
+
+ {translate( + 'auto.components.automations.AutomationRunHistory.149c0b49c7', + 'Workspace' + )} +
+
+ {translate('auto.components.automations.AutomationRunHistory.86a248187e', 'Spend')} +
+
+ {translate('auto.components.automations.AutomationRunHistory.13988187b3', 'Tokens')} +
+
+ {translate('auto.components.automations.AutomationRunHistory.9974a2b429', 'Status')} +
-
- {translate('auto.components.automations.AutomationRunHistory.149c0b49c7', 'Workspace')} -
-
- {translate('auto.components.automations.AutomationRunHistory.86a248187e', 'Spend')} -
-
- {translate('auto.components.automations.AutomationRunHistory.13988187b3', 'Tokens')} -
-
- {translate('auto.components.automations.AutomationRunHistory.9974a2b429', 'Status')} -
-
-
- {runs.map((run) => { - const runWorktree = run.workspaceId ? (worktreeMap.get(run.workspaceId) ?? null) : null - const workspaceLabel = getAutomationRunWorkspaceDisplay({ - run, - worktree: runWorktree - }) - const usageLabel = getAutomationUsageStatusLabel(run.usage) - const occurrenceLabel = automationRunOccurrenceLabel(run) - return ( -
-
- {workspaceLabel.rowLabel} -
-
- {formatAutomationCost(run.usage?.estimatedCostUsd)} -
-
- {run.usage?.status === 'known' - ? formatAutomationTokens(run.usage.totalTokens) - : translate( - 'auto.components.automations.AutomationRunHistory.a00e38d1a3', - 'n/a' - )} -
-
- - {getAutomationRunStatusLabel(run.status)} - -
- - ) - })} + ) + })} +
{notice ? (

diff --git a/src/renderer/src/components/automations/AutomationRunsTable.test.tsx b/src/renderer/src/components/automations/AutomationRunsTable.test.tsx index b5c8a70aa8b..3ef348977b7 100644 --- a/src/renderer/src/components/automations/AutomationRunsTable.test.tsx +++ b/src/renderer/src/components/automations/AutomationRunsTable.test.tsx @@ -7,32 +7,21 @@ import type { Automation, AutomationRun } from '../../../../shared/automations-t import type { AutomationRunsDashboardEntry } from './automation-runs-dashboard-model' import { AutomationRunsTable } from './AutomationRunsTable' -vi.mock('@tanstack/react-virtual', () => ({ - useVirtualizer: ({ - count, - getItemKey - }: { - count: number - getItemKey: (index: number) => string - }) => ({ - getTotalSize: () => count * 59, - getVirtualItems: () => - Array.from({ length: Math.min(count, 21) }, (_, index) => ({ - index, - key: getItemKey(index), - start: index * 59 - })), - measureElement: () => undefined - }) -})) +vi.mock('@tanstack/react-virtual', async () => { + const { createVirtualizerStub } = await import('./virtualizer-test-stub') + return { useVirtualizer: createVirtualizerStub() } +}) -function entries(count: number): AutomationRunsDashboardEntry[] { +function entries( + count: number, + overrides: { hostLabel?: string; scope?: AutomationRunsDashboardEntry['scope'] } = {} +): AutomationRunsDashboardEntry[] { const automation = { id: 'automation', name: 'Daily check' } as Automation const row = { key: 'row', automation, catalogRef: { authority: { kind: 'desktop' }, selector: { kind: 'self' } }, - hostLabel: 'Local Mac', + hostLabel: overrides.hostLabel ?? 'Local Mac', usageSummary: null } as const return Array.from({ length: count }, (_, index) => ({ @@ -48,10 +37,23 @@ function entries(count: number): AutomationRunsDashboardEntry[] { trigger: 'scheduled', status: 'completed' } as AutomationRun, - scope: 'local' + scope: overrides.scope ?? 'local' })) } +/** The load-more guard reads the scroller's geometry, which happy-dom leaves at 0. */ +function scrollTo( + scroller: HTMLElement, + geometry: { scrollTop: number; scrollHeight: number; clientHeight: number } +): void { + for (const [property, value] of Object.entries(geometry)) { + Object.defineProperty(scroller, property, { value, configurable: true }) + } + act(() => { + scroller.dispatchEvent(new Event('scroll', { bubbles: true })) + }) +} + describe('AutomationRunsTable virtualization', () => { let container: HTMLDivElement let root: Root @@ -85,3 +87,215 @@ describe('AutomationRunsTable virtualization', () => { expect(mountedRows).toHaveLength(21) }) }) + +describe('AutomationRunsTable rows', () => { + let container: HTMLDivElement + let root: Root + + beforeEach(() => { + globalThis.IS_REACT_ACT_ENVIRONMENT = true + container = document.createElement('div') + document.body.appendChild(container) + root = createRoot(container) + }) + + afterEach(() => { + act(() => root.unmount()) + container.remove() + }) + + function render(node: React.JSX.Element): void { + act(() => root.render(node)) + } + + function rows(): NodeListOf { + return container.querySelectorAll('[data-testid="automation-runs-row"]') + } + + it('fills every column of a row from the entry it stands for', () => { + render( + {}} + onOpenRun={() => {}} + /> + ) + + const row = rows()[0] + expect(row.textContent).toContain('Daily check') + expect(row.textContent).toContain('Run 0') + expect(row.textContent).toContain('Local Mac') + expect(row.textContent).toContain('scheduled') + expect(row.textContent).toContain('Done') + }) + + it('names the scope when the row carries no host label', () => { + render( + {}} + onOpenRun={() => {}} + /> + ) + + // An unlabeled host still has to say where the run happened. + expect(rows()[0].textContent).toContain('Remote') + }) + + it('opens the entry belonging to the clicked row, not the first one', () => { + const onOpenRun = vi.fn() + const rendered = entries(5) + render( + {}} + onOpenRun={onOpenRun} + /> + ) + + act(() => rows()[3].click()) + + expect(onOpenRun).toHaveBeenCalledExactlyOnceWith(rendered[3]) + }) + + it('shows the spinner only until the first page arrives', () => { + render( + {}} + onOpenRun={() => {}} + /> + ) + + expect(container.textContent).toContain('Loading runs') + expect(rows()).toHaveLength(0) + + // A refresh over rows already on screen must not blank them back to a spinner. + render( + {}} + onOpenRun={() => {}} + /> + ) + + expect(container.textContent).not.toContain('Loading runs') + expect(rows()).toHaveLength(3) + }) + + it('distinguishes an empty history from one still loading', () => { + render( + {}} + onOpenRun={() => {}} + /> + ) + + expect(container.textContent).toContain('No runs yet') + expect(container.textContent).not.toContain('Loading runs') + }) +}) + +describe('AutomationRunsTable load more', () => { + let container: HTMLDivElement + let root: Root + + beforeEach(() => { + globalThis.IS_REACT_ACT_ENVIRONMENT = true + container = document.createElement('div') + document.body.appendChild(container) + root = createRoot(container) + }) + + afterEach(() => { + act(() => root.unmount()) + container.remove() + }) + + function renderTable(props: { + loading: boolean + hasMore: boolean + onLoadMore: () => void + }): void { + act(() => + root.render( + {}} + /> + ) + ) + } + + function scroller(): HTMLElement { + const element = container.querySelector('.scrollbar-sleek') + if (!element) { + throw new Error('runs table has no scroll container') + } + return element + } + + it('asks for the next page once the scroll reaches the end', () => { + const onLoadMore = vi.fn() + renderTable({ loading: false, hasMore: true, onLoadMore }) + + scrollTo(scroller(), { scrollTop: 1760, scrollHeight: 2360, clientHeight: 600 }) + + expect(onLoadMore).toHaveBeenCalledTimes(1) + }) + + it('stays quiet while the scroll is still far from the end', () => { + const onLoadMore = vi.fn() + renderTable({ loading: false, hasMore: true, onLoadMore }) + + scrollTo(scroller(), { scrollTop: 0, scrollHeight: 2360, clientHeight: 600 }) + + expect(onLoadMore).not.toHaveBeenCalled() + }) + + it('stays quiet when the host has no further pages', () => { + const onLoadMore = vi.fn() + renderTable({ loading: false, hasMore: false, onLoadMore }) + + scrollTo(scroller(), { scrollTop: 1760, scrollHeight: 2360, clientHeight: 600 }) + + expect(onLoadMore).not.toHaveBeenCalled() + }) + + it('asks once per page, not once per scroll event the same page fires', () => { + const onLoadMore = vi.fn() + const geometry = { scrollTop: 1760, scrollHeight: 2360, clientHeight: 600 } + renderTable({ loading: false, hasMore: true, onLoadMore }) + + scrollTo(scroller(), geometry) + // Scroll momentum keeps firing before the request settles; a second ask would + // fetch the same cursor twice. + renderTable({ loading: true, hasMore: true, onLoadMore }) + scrollTo(scroller(), geometry) + scrollTo(scroller(), geometry) + + expect(onLoadMore).toHaveBeenCalledTimes(1) + + // Once the page settles the next stretch of scrolling may ask again. + renderTable({ loading: false, hasMore: true, onLoadMore }) + scrollTo(scroller(), geometry) + + expect(onLoadMore).toHaveBeenCalledTimes(2) + }) +}) diff --git a/src/renderer/src/components/automations/AutomationRunsTable.tsx b/src/renderer/src/components/automations/AutomationRunsTable.tsx index e4ec4f565eb..eaff918c855 100644 --- a/src/renderer/src/components/automations/AutomationRunsTable.tsx +++ b/src/renderer/src/components/automations/AutomationRunsTable.tsx @@ -45,27 +45,9 @@ export function AutomationRunsTable({ return (

-
-
- {translate( - 'auto.components.automations.AutomationRunsDashboard.automation', - 'Automation' - )} -
-
- {translate('auto.components.automations.AutomationRunsDashboard.triggered', 'Triggered')} -
-
- {translate('auto.components.automations.AutomationRunsDashboard.trigger', 'Trigger')} -
-
{translate('auto.components.automations.AutomationRunsDashboard.host', 'Host')}
-
- {translate('auto.components.automations.AutomationRunsDashboard.status', 'Status')} -
-
{ const { clientHeight, scrollHeight, scrollTop } = event.currentTarget const nearEnd = scrollHeight - scrollTop - clientHeight < RUN_ROW_HEIGHT_PX * 10 @@ -75,8 +57,29 @@ export function AutomationRunsTable({ } }} > +
+
+ {translate( + 'auto.components.automations.AutomationRunsDashboard.automation', + 'Automation' + )} +
+
+ {translate( + 'auto.components.automations.AutomationRunsDashboard.triggered', + 'Triggered' + )} +
+
+ {translate('auto.components.automations.AutomationRunsDashboard.trigger', 'Trigger')} +
+
{translate('auto.components.automations.AutomationRunsDashboard.host', 'Host')}
+
+ {translate('auto.components.automations.AutomationRunsDashboard.status', 'Status')} +
+
{loading && entries.length === 0 ? ( -
+
{translate( 'auto.components.automations.AutomationRunsDashboard.loading', @@ -84,7 +87,7 @@ export function AutomationRunsTable({ )}
) : entries.length === 0 ? ( -
+
{translate( 'auto.components.automations.AutomationRunsDashboard.noRuns', @@ -99,7 +102,7 @@ export function AutomationRunsTable({
) : ( -
+
{virtualizer.getVirtualItems().map((virtualRow) => { const entry = entries[virtualRow.index] if (!entry) { diff --git a/src/renderer/src/components/automations/AutomationsDetailPane.tsx b/src/renderer/src/components/automations/AutomationsDetailPane.tsx index 72c60463ea3..38e9311288c 100644 --- a/src/renderer/src/components/automations/AutomationsDetailPane.tsx +++ b/src/renderer/src/components/automations/AutomationsDetailPane.tsx @@ -258,24 +258,27 @@ export function AutomationsDetailPane({ /> - - {selected ? ( - - ) : ( -
- {translate( - 'auto.components.automations.AutomationsPage.c3a28c9793', - 'Select an automation to view runs.' - )} -
- )} + + {/* The history owns the scrolling, so the padding rides a wrapper it can size against. */} +
+ {selected ? ( + + ) : ( +
+ {translate( + 'auto.components.automations.AutomationsPage.c3a28c9793', + 'Select an automation to view runs.' + )} +
+ )} +
)} diff --git a/src/renderer/src/components/automations/automation-page-parts.tsx b/src/renderer/src/components/automations/automation-page-parts.tsx index 4ffd81001bb..03ba4d5738d 100644 --- a/src/renderer/src/components/automations/automation-page-parts.tsx +++ b/src/renderer/src/components/automations/automation-page-parts.tsx @@ -3,16 +3,20 @@ import type { Badge } from '@/components/ui/badge' import { cn } from '@/lib/utils' import type { AutomationRun } from '../../../../shared/automations-types' +// Frozen at module scope: every run row formats a date, and constructing a +// DateTimeFormat per cell dominates the render of a long runs table. +const automationDateTimeFormatter = new Intl.DateTimeFormat(undefined, { + month: 'short', + day: 'numeric', + hour: 'numeric', + minute: '2-digit' +}) + export function formatAutomationDateTime(value: number | null | undefined): string { if (!value) { return 'Never' } - return new Intl.DateTimeFormat(undefined, { - month: 'short', - day: 'numeric', - hour: 'numeric', - minute: '2-digit' - }).format(value) + return automationDateTimeFormatter.format(value) } export function formatAutomationRelativeTime( diff --git a/src/renderer/src/components/automations/automation-run-occurrences.ts b/src/renderer/src/components/automations/automation-run-occurrences.ts index 71af9043eb8..fc90937853f 100644 --- a/src/renderer/src/components/automations/automation-run-occurrences.ts +++ b/src/renderer/src/components/automations/automation-run-occurrences.ts @@ -13,12 +13,17 @@ import { translate } from '@/i18n/i18n' type AutomationRunOccurrences = Pick +/** The label's condition without its cost; row-size estimation asks it per history item. */ +export function isAutomationRunFolded(run: AutomationRunOccurrences): boolean { + return (run.occurrenceCount ?? 1) > 1 +} + /** Null for the single-occurrence rows, which is every row written before folding. */ export function automationRunOccurrenceLabel(run: AutomationRunOccurrences): string | null { - const count = run.occurrenceCount ?? 1 - if (count <= 1) { + if (!isAutomationRunFolded(run)) { return null } + const count = run.occurrenceCount ?? 1 // Not named `count`: i18next reserves it for plural selection, which would send // these keys looking for `_one`/`_other` variants the catalog does not carry. // The label only renders above 1, so the plural is always right. diff --git a/src/renderer/src/components/automations/automations-page-fixtures.ts b/src/renderer/src/components/automations/automations-page-fixtures.ts index 16c28c28145..a5a3175e467 100644 --- a/src/renderer/src/components/automations/automations-page-fixtures.ts +++ b/src/renderer/src/components/automations/automations-page-fixtures.ts @@ -10,6 +10,7 @@ import type { Automation, AutomationRun, + AutomationRunUsage, ExternalAutomationManager } from '../../../../shared/automations-types' import type { ProjectHostSetup } from '../../../../shared/project-types' @@ -94,6 +95,28 @@ export function makeRun(overrides: Partial = {}): AutomationRun { } } +export function makeRunUsage(overrides: Partial = {}): AutomationRunUsage { + return { + status: 'known', + provider: 'claude', + model: 'claude-opus-5', + inputTokens: 1_000, + outputTokens: 500, + cacheReadTokens: null, + cacheWriteTokens: null, + reasoningOutputTokens: null, + totalTokens: 1_500, + estimatedCostUsd: 0.25, + estimatedCostSource: 'api_equivalent', + providerSessionId: 'session-1', + attribution: 'provider_session_time_window', + collectedAt: 10, + unavailableReason: null, + unavailableMessage: null, + ...overrides + } +} + export function makeExternalManager( overrides: Partial = {} ): ExternalAutomationManager { @@ -179,14 +202,27 @@ function makeProjectHostSetup(): ProjectHostSetup { } } -function makeWorktree(): Worktree { +export function makeWorktree(overrides: Partial = {}): Worktree { return { id: WORKSPACE_ID, repoId: REPO_ID, displayName: 'main', path: '/repos/orca', - branch: 'main' - } as Worktree + branch: 'main', + head: 'abc123', + isBare: false, + isMainWorktree: true, + comment: '', + linkedIssue: null, + linkedPR: null, + linkedLinearIssue: null, + isArchived: false, + isUnread: false, + isPinned: false, + sortOrder: 0, + lastActivityAt: 0, + ...overrides + } } export type AutomationsPageStoreFixtures = { diff --git a/src/renderer/src/components/automations/virtualizer-test-stub.ts b/src/renderer/src/components/automations/virtualizer-test-stub.ts new file mode 100644 index 00000000000..43eed088ecd --- /dev/null +++ b/src/renderer/src/components/automations/virtualizer-test-stub.ts @@ -0,0 +1,72 @@ +/** + * happy-dom reports a zero-height scroll element, and `observeElementRect` hands + * that measurement straight to the virtualizer — so the real `useVirtualizer` + * renders no rows at all under test. This stub renders a bounded window instead, + * which is what the virtualization assertions are actually about. + * + * The window starts at index 0 and only moves when `scrollToIndex` names an index + * outside it, so a row below the fold stays unmounted until the component scrolls + * to it — the sequence a deferred-focus path depends on. + */ + +import { useState } from 'react' + +export const VIRTUALIZER_STUB_WINDOW_SIZE = 21 + +type VirtualizerStubOptions = { + count: number + estimateSize: (index: number) => number + getItemKey?: (index: number) => string | number +} + +type VirtualizerStub = { + getTotalSize: () => number + getVirtualItems: () => { index: number; key: string | number; start: number; size: number }[] + measureElement: (element: Element | null) => void + scrollToIndex: (index: number) => void +} + +export function createVirtualizerStub( + windowSize = VIRTUALIZER_STUB_WINDOW_SIZE +): (options: VirtualizerStubOptions) => VirtualizerStub { + return ({ count, estimateSize, getItemKey }) => { + const [windowStart, setWindowStart] = useState(0) + const sizes = Array.from({ length: count }, (_, index) => estimateSize(index)) + let offset = 0 + const starts = sizes.map((size) => { + const start = offset + offset += size + return start + }) + return { + getTotalSize: () => sizes.reduce((total, size) => total + size, 0), + getVirtualItems: () => + Array.from( + { length: Math.max(0, Math.min(windowSize, count - windowStart)) }, + (_, position) => { + const index = windowStart + position + return { + index, + key: getItemKey?.(index) ?? index, + start: starts[index] ?? 0, + size: sizes[index] ?? 0 + } + } + ), + measureElement: () => undefined, + // Scrolls the least the target allows, like `align: 'auto'`. + scrollToIndex: (index: number) => { + setWindowStart((current) => { + const lastStart = Math.max(0, count - windowSize) + if (index < current) { + return Math.min(index, lastStart) + } + if (index >= current + windowSize) { + return Math.min(index - windowSize + 1, lastStart) + } + return current + }) + } + } + } +} From 4948afc2ece386c59667b4979cec678074569055 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:53:48 -0700 Subject: [PATCH 19/28] fix(linear): show 'Cannot verify' when skill scan is inconclusive (#20964) A scan that encounters an error before discovering skills, or hits an unreadable root, cannot vouch for "not installed". Previously these cases were conflated with proven absence, so the checklist would claim the skill step incomplete even when all three steps had been finished. Now the UI distinguishes between confirmed states and unknown ones, showing "Cannot verify" instead of listing the skill as an unfinished step. --- .../settings/LinearAgentSkillGuide.test.tsx | 113 ++++++++------- .../settings/LinearAgentSkillGuide.tsx | 133 +++++++++++++----- .../settings/LinearAgentSkillPane.test.tsx | 14 ++ .../settings/LinearAgentSkillPane.tsx | 7 +- .../settings/TaskSourceProviderCard.test.tsx | 19 +++ .../settings/TaskSourceProviderCard.tsx | 5 + .../settings/task-source-setup-state.test.ts | 41 ++++++ .../settings/task-source-setup-state.ts | 8 ++ .../settings/use-linear-agent-skill-setup.ts | 4 + ...se-task-source-provider-readiness.test.tsx | 12 ++ .../use-task-source-provider-readiness.ts | 5 +- .../installed-agent-skill-verdict.test.ts | 114 +++++++++++++++ .../hooks/installed-agent-skill-verdict.ts | 65 +++++++++ .../useInstalledAgentSkills.react.test.tsx | 30 ++++ .../src/hooks/useInstalledAgentSkills.test.ts | 45 +----- .../src/hooks/useInstalledAgentSkills.ts | 48 +++---- src/renderer/src/i18n/locales/en.json | 6 +- src/renderer/src/i18n/locales/zh.json | 4 +- ...settings-status-label-localization.test.ts | 3 + 19 files changed, 511 insertions(+), 165 deletions(-) create mode 100644 src/renderer/src/hooks/installed-agent-skill-verdict.test.ts create mode 100644 src/renderer/src/hooks/installed-agent-skill-verdict.ts diff --git a/src/renderer/src/components/settings/LinearAgentSkillGuide.test.tsx b/src/renderer/src/components/settings/LinearAgentSkillGuide.test.tsx index 75da65cd885..d362fc1218b 100644 --- a/src/renderer/src/components/settings/LinearAgentSkillGuide.test.tsx +++ b/src/renderer/src/components/settings/LinearAgentSkillGuide.test.tsx @@ -1,25 +1,30 @@ import { renderToStaticMarkup } from 'react-dom/server' import { describe, expect, it, vi } from 'vitest' -import { LinearAgentSkillGuide } from './LinearAgentSkillGuide' +import { LinearAgentSkillGuide, type LinearSetupReadiness } from './LinearAgentSkillGuide' -const baseStatus = { +const baseReadiness: LinearSetupReadiness = { connected: true, - connectionChecking: false, + checking: false, skillInstalled: false, skillChecking: false, - visibleInTasks: true + skillUnverifiable: false, + visible: true +} + +function renderGuide(readiness: Partial): string { + return renderToStaticMarkup( + Skill install panel
} + /> + ) } describe('LinearAgentSkillGuide', () => { it('renders the setup checklist with an inlined skill panel', () => { - const markup = renderToStaticMarkup( - Skill install panel
} - /> - ) + const markup = renderGuide({}) expect(markup).toContain('Setup checklist') expect(markup).toContain('2 of 3 ready') @@ -32,34 +37,11 @@ describe('LinearAgentSkillGuide', () => { }) it('marks the checklist complete when every step is done', () => { - const markup = renderToStaticMarkup( - Skill panel
} - /> - ) - - expect(markup).toContain('All set') + expect(renderGuide({ skillInstalled: true })).toContain('All set') }) it('keeps durable progress while a skill recheck is in flight', () => { - const markup = renderToStaticMarkup( - Skill panel
} - /> - ) + const markup = renderGuide({ skillInstalled: true, skillChecking: true }) expect(markup).toContain('Checking…') expect(markup).not.toContain('2 of 3 ready') @@ -67,20 +49,53 @@ describe('LinearAgentSkillGuide', () => { }) it('keeps durable progress while a connection check is in flight', () => { - const markup = renderToStaticMarkup( - Skill panel
} - /> - ) + const markup = renderGuide({ skillInstalled: true, checking: true }) expect(markup).toContain('Checking…') expect(markup).not.toContain('2 of 3 ready') }) + + // The reported bug: a scan that could not vouch for "not installed" was counted + // as a step the user had left undone. + it('reports an unverifiable skill scan as unknown instead of an unfinished step', () => { + const markup = renderGuide({ skillUnverifiable: true }) + + expect(markup).toContain('Cannot verify') + expect(markup).toContain('2/3') + expect(markup).toContain('bg-amber-500') + expect(markup).not.toContain('2 of 3 ready') + expect(markup).not.toContain('All set') + }) + + it('still claims nothing while a rescan of an unverifiable step runs', () => { + const markup = renderGuide({ skillUnverifiable: true, skillChecking: true }) + + expect(markup).toContain('Checking…') + expect(markup).not.toContain('Cannot verify') + }) + + it('lets a found skill outrank a stale unverifiable flag', () => { + const markup = renderGuide({ skillInstalled: true, skillUnverifiable: true }) + + expect(markup).toContain('All set') + expect(markup).not.toContain('Cannot verify') + }) + + // The unknown-skill label is only the headline when the skill is the sole open + // question; a plainly unfinished step must still read as the count. + it('keeps the confirmed count when the unfinished step is the connection', () => { + const markup = renderGuide({ connected: false, skillUnverifiable: true }) + + expect(markup).toContain('1 of 3 ready') + expect(markup).not.toContain('Cannot verify') + }) + + it('does not headline an unknown skill over an unfinished visibility step', () => { + const markup = renderGuide({ visible: false, skillUnverifiable: true }) + + expect(markup).toContain('1 of 3 ready') + expect(markup).not.toContain('Cannot verify') + // Hiding Linear is deliberate, so the shared table keeps this pill neutral. + expect(markup).not.toContain('bg-amber-500') + }) }) diff --git a/src/renderer/src/components/settings/LinearAgentSkillGuide.tsx b/src/renderer/src/components/settings/LinearAgentSkillGuide.tsx index 0bbcc77ec5f..ca3b6a5f165 100644 --- a/src/renderer/src/components/settings/LinearAgentSkillGuide.tsx +++ b/src/renderer/src/components/settings/LinearAgentSkillGuide.tsx @@ -1,19 +1,27 @@ import type { ReactNode } from 'react' -import { Check, Circle } from 'lucide-react' +import { Check, Circle, TriangleAlert } from 'lucide-react' import { Button } from '@/components/ui/button' -import { IntegrationStatusPill } from '@/components/integration-status-pill' +import { + IntegrationStatusPill, + type IntegrationStatusTone +} from '@/components/integration-status-pill' +import { + TASK_PROVIDER_SETUP_STATUS_TONE, + getTaskProviderCompletedSteps, + getTaskProviderSetupStatus, + type TaskProviderReadiness +} from './task-source-setup-state' import { translate } from '@/i18n/i18n' -export type LinearSetupStepStatus = { - connected: boolean - connectionChecking: boolean +/** The guide renders the skill row, so unlike other providers those facts are required. */ +export type LinearSetupReadiness = TaskProviderReadiness & { skillInstalled: boolean skillChecking: boolean - visibleInTasks: boolean + skillUnverifiable: boolean } type LinearAgentSkillGuideProps = { - status: LinearSetupStepStatus + readiness: LinearSetupReadiness onOpenTaskSources: () => void onManageLinearAccess: () => void // Why: skill install/update lives once under step 2 so the page does not @@ -23,10 +31,12 @@ type LinearAgentSkillGuideProps = { function SetupStatusIcon({ done, - checking + checking, + unverifiable }: { done: boolean checking: boolean + unverifiable?: boolean }): React.JSX.Element { // Keep a fixed size-5 slot so checking/done/pending never shift the column. if (checking) { @@ -36,6 +46,15 @@ function SetupStatusIcon({ ) } + // Why above `done`: an unvouched-for scan says nothing about the step either + // way, and painting it as pending is the claim this checklist got wrong. + if (unverifiable) { + return ( + + + + ) + } if (done) { return ( @@ -50,21 +69,64 @@ function SetupStatusIcon({ ) } +type LinearSetupPill = { tone: IntegrationStatusTone; label: string; showCount: boolean } + +function getLinearSetupPill(readiness: LinearSetupReadiness): LinearSetupPill { + const { completed, total } = getTaskProviderCompletedSteps(readiness) + // Why: route through the card's status so the two Linear surfaces share one + // precedence. Reading `skillUnverifiable` directly here headlined "Cannot verify" + // over a step the user had plainly not done (or before they had even connected). + const status = getTaskProviderSetupStatus(readiness) + // Tone is the shared table's call, not this surface's; only the copy differs. + const tone = TASK_PROVIDER_SETUP_STATUS_TONE[status] + if (status === 'checking') { + return { + tone, + label: translate('auto.components.settings.LinearAgentSkillGuide.setupChecking', 'Checking…'), + showCount: false + } + } + if (status === 'ready') { + return { + tone, + label: translate('auto.components.settings.LinearAgentSkillGuide.setupReady', 'All set'), + showCount: false + } + } + // Why: a scan that cannot vouch for "not installed" must not be counted against + // the user, so the label reports what was confirmed instead of asserting a failure. + if (status === 'skill-unverified') { + return { + tone, + label: translate( + 'auto.components.settings.LinearAgentSkillGuide.setupUnverified', + 'Cannot verify' + ), + showCount: true + } + } + return { + tone, + label: translate( + 'auto.components.settings.LinearAgentSkillGuide.setupProgress', + '{{done}} of {{total}} ready', + { done: completed, total } + ), + showCount: false + } +} + // Connect, skill, and Tasks visibility in one checklist — skill UI is inlined. export function LinearAgentSkillGuide({ - status, + readiness, onOpenTaskSources, onManageLinearAccess, skillPanel }: LinearAgentSkillGuideProps): React.JSX.Element { - // Count durable outcomes even while a recheck runs so the pill does not flash - // from "All set" down to "2 of 3 ready" during skill/connection scans. - const checking = status.connectionChecking || status.skillChecking - const completed = [status.connected, status.skillInstalled, status.visibleInTasks].filter( - Boolean - ).length - const total = 3 - const allReady = completed === total && !checking + // Share the Task Sources card's arithmetic so the two Linear setup surfaces + // cannot disagree about the same three facts; the copy stays count-based here. + const pill = getLinearSetupPill(readiness) + const { completed, total } = getTaskProviderCompletedSteps(readiness) return (
@@ -83,23 +145,22 @@ export function LinearAgentSkillGuide({ )}

- - {checking - ? translate('auto.components.settings.LinearAgentSkillGuide.setupChecking', 'Checking…') - : allReady - ? translate('auto.components.settings.LinearAgentSkillGuide.setupReady', 'All set') - : translate( - 'auto.components.settings.LinearAgentSkillGuide.setupProgress', - '{{done}} of {{total}} ready', - { done: completed, total } - )} - + + {pill.label} + {pill.showCount ? ( + // Mirrors the Task Sources card so the confirmed count survives a label + // that no longer carries it. + + {`${completed}/${total}`} + + ) : null} +
- +

@@ -118,11 +179,11 @@ export function LinearAgentSkillGuide({ ') expect(markup).not.toContain('>Hide') }) + + it('labels an unverifiable skill scan as unknown while keeping the confirmed count', () => { + const markup = renderToStaticMarkup( + } + name="Linear" + description="Linear setup" + readiness={{ ...readiness, connected: true, skillUnverifiable: true }} + visible + canHide + defaultExpanded={false} + onToggleVisible={vi.fn()} + /> + ) + + expect(markup).toContain('Cannot verify') + expect(markup).toContain('2/3') + expect(markup).not.toContain('Skill required') + }) }) diff --git a/src/renderer/src/components/settings/TaskSourceProviderCard.tsx b/src/renderer/src/components/settings/TaskSourceProviderCard.tsx index 56e77fa5931..fa77b71c699 100644 --- a/src/renderer/src/components/settings/TaskSourceProviderCard.tsx +++ b/src/renderer/src/components/settings/TaskSourceProviderCard.tsx @@ -45,6 +45,11 @@ function getSetupStatusLabel(status: TaskProviderSetupStatus): string { 'auto.components.settings.TaskSourceProviderCard.statusSkillRequired', 'Skill required' ) + case 'skill-unverified': + return translate( + 'auto.components.settings.TaskSourceProviderCard.statusUnverified', + 'Cannot verify' + ) case 'unavailable': return translate( 'auto.components.settings.TaskSourceProviderCard.statusUnavailable', diff --git a/src/renderer/src/components/settings/task-source-setup-state.test.ts b/src/renderer/src/components/settings/task-source-setup-state.test.ts index 6eec46a34db..40bccf9f73e 100644 --- a/src/renderer/src/components/settings/task-source-setup-state.test.ts +++ b/src/renderer/src/components/settings/task-source-setup-state.test.ts @@ -1,6 +1,7 @@ import { describe, expect, it } from 'vitest' import type { TaskProvider } from '../../../../shared/task-providers' import { + TASK_PROVIDER_SETUP_STATUS_TONE, getAutoExpandedTaskProvider, getIncompleteVisibleTaskProviders, getStalledVisibleTaskProviders, @@ -84,6 +85,46 @@ describe('task-source-setup-state', () => { expect(isTaskProviderReady({ connected: true, checking: true, visible: true })).toBe(false) }) + // A skill scan that could not vouch for "not installed" is not a step the user + // left undone, so it must not read as `skill-required`. + it('reports an unverifiable skill scan as unknown rather than as a missing step', () => { + const unverifiable = { + connected: true, + checking: false, + skillInstalled: false, + skillChecking: false, + skillUnverifiable: true, + visible: true + } + + expect(getTaskProviderSetupStatus(unverifiable)).toBe('skill-unverified') + expect(TASK_PROVIDER_SETUP_STATUS_TONE['skill-unverified']).toBe('attention') + expect(isTaskProviderReady(unverifiable)).toBe(false) + // The count reports confirmed steps, so it is unchanged by the unknown. + expect(getTaskProviderCompletedSteps(unverifiable)).toEqual({ completed: 2, total: 3 }) + }) + + it('keeps an in-flight check and an unconnected provider ahead of an unverifiable scan', () => { + expect( + getTaskProviderSetupStatus({ + connected: true, + checking: true, + skillInstalled: false, + skillUnverifiable: true, + visible: true + }) + ).toBe('checking') + expect( + getTaskProviderSetupStatus({ + connected: false, + checking: false, + skillInstalled: false, + skillUnverifiable: true, + visible: true + }) + ).toBe('connect-required') + }) + it('reports the first unmet step as the status', () => { expect(getTaskProviderSetupStatus({ connected: false, checking: true, visible: true })).toBe( 'checking' diff --git a/src/renderer/src/components/settings/task-source-setup-state.ts b/src/renderer/src/components/settings/task-source-setup-state.ts index 628de69dbf0..bc6babe07ea 100644 --- a/src/renderer/src/components/settings/task-source-setup-state.ts +++ b/src/renderer/src/components/settings/task-source-setup-state.ts @@ -8,6 +8,8 @@ export type TaskProviderReadiness = { /** Linear only — agent skill install. Other providers leave this undefined. */ skillInstalled?: boolean skillChecking?: boolean + /** The scan could not vouch for `skillInstalled: false`: an unread root, or an error before any answer. */ + skillUnverifiable?: boolean visible: boolean } @@ -16,6 +18,7 @@ export type TaskProviderSetupStatus = | 'ready' | 'connect-required' | 'skill-required' + | 'skill-unverified' | 'unavailable' | 'hidden' | 'incomplete' @@ -30,6 +33,7 @@ export const TASK_PROVIDER_SETUP_STATUS_TONE: Record< hidden: 'neutral', 'connect-required': 'attention', 'skill-required': 'attention', + 'skill-unverified': 'attention', unavailable: 'attention', incomplete: 'attention' } @@ -83,6 +87,10 @@ export function getTaskProviderSetupStatus( if (!readiness.connected) { return 'connect-required' } + // Why before `skill-required`: that status offers Install, which reinstalls a skill that may be present. + if (readiness.skillUnverifiable) { + return 'skill-unverified' + } if (readiness.skillInstalled === false) { return 'skill-required' } diff --git a/src/renderer/src/components/settings/use-linear-agent-skill-setup.ts b/src/renderer/src/components/settings/use-linear-agent-skill-setup.ts index 46c7ea2b932..f3a32534fe4 100644 --- a/src/renderer/src/components/settings/use-linear-agent-skill-setup.ts +++ b/src/renderer/src/components/settings/use-linear-agent-skill-setup.ts @@ -30,6 +30,8 @@ export function useLinearAgentSkillSetup(): { // Status surfaces (step badges, checklist pills) read this so a focus-triggered // rescan does not flip a known result back to "checking". skillChecking: boolean + /** The scan could not vouch for "not installed", so no surface may claim it. */ + skillUnverifiable: boolean installDisabled: boolean error: string | null terminalShellOverride: string | undefined @@ -44,6 +46,7 @@ export function useLinearAgentSkillSetup(): { installed: skillInstalled, loading: skillLoading, settled: skillSettled, + installedUnverifiable: skillUnverifiable, error: skillError, skills: linearSkills, refresh: refreshSkill @@ -98,6 +101,7 @@ export function useLinearAgentSkillSetup(): { skillInstalled, skillLoading, skillChecking: skillLoading && !skillSettled, + skillUnverifiable, installDisabled, error: activeSkillRuntime.installDisabledReason ?? skillError, terminalShellOverride: activeSkillRuntime.terminalShellOverride, diff --git a/src/renderer/src/components/settings/use-task-source-provider-readiness.test.tsx b/src/renderer/src/components/settings/use-task-source-provider-readiness.test.tsx index d00a358996f..ac1df506058 100644 --- a/src/renderer/src/components/settings/use-task-source-provider-readiness.test.tsx +++ b/src/renderer/src/components/settings/use-task-source-provider-readiness.test.tsx @@ -13,8 +13,10 @@ const mocks = vi.hoisted(() => ({ installed: false, loading: false, settled: true, + installedUnverifiable: false, error: null, skills: [], + sources: [], refresh: vi.fn() } })) @@ -91,8 +93,10 @@ beforeEach(() => { installed: true, loading: false, settled: true, + installedUnverifiable: false, error: null, skills: [], + sources: [], refresh: vi.fn() } }) @@ -169,4 +173,12 @@ describe('useTaskSourceProviderReadiness', () => { await renderProbe(['github', 'linear', 'jira']) expect(latest?.jira.visible).toBe(true) }) + + it('carries an unverifiable skill scan through to Linear readiness', async () => { + mocks.skill = { ...mocks.skill, installed: false, installedUnverifiable: true } + await renderProbe() + + expect(latest?.linear.skillInstalled).toBe(false) + expect(latest?.linear.skillUnverifiable).toBe(true) + }) }) diff --git a/src/renderer/src/components/settings/use-task-source-provider-readiness.ts b/src/renderer/src/components/settings/use-task-source-provider-readiness.ts index 6b9fa6171ba..d669248eb4d 100644 --- a/src/renderer/src/components/settings/use-task-source-provider-readiness.ts +++ b/src/renderer/src/components/settings/use-task-source-provider-readiness.ts @@ -36,7 +36,8 @@ export function useTaskSourceProviderReadiness( const { installed: linearSkillInstalled, loading: linearSkillLoading, - settled: linearSkillSettled + settled: linearSkillSettled, + installedUnverifiable: linearSkillUnverifiable } = useInstalledAgentSkillNames(LINEAR_AGENT_SKILL_NAMES, { discoveryTarget: activeSkillRuntime.discoveryTarget, sourceKinds: GLOBAL_AGENT_SKILL_SOURCE_KINDS @@ -83,6 +84,7 @@ export function useTaskSourceProviderReadiness( checking: linearChecking, skillInstalled: linearSkillInstalled, skillChecking: linearSkillLoading && !linearSkillSettled, + skillUnverifiable: linearSkillUnverifiable, visible: visible.has('linear') }, jira: { @@ -101,6 +103,7 @@ export function useTaskSourceProviderReadiness( linearSkillInstalled, linearSkillLoading, linearSkillSettled, + linearSkillUnverifiable, reviewChecking, reviewUnavailable, visibleProvidersKey diff --git a/src/renderer/src/hooks/installed-agent-skill-verdict.test.ts b/src/renderer/src/hooks/installed-agent-skill-verdict.test.ts new file mode 100644 index 00000000000..93956f54220 --- /dev/null +++ b/src/renderer/src/hooks/installed-agent-skill-verdict.test.ts @@ -0,0 +1,114 @@ +import { describe, expect, it } from 'vitest' +import type { SkillDiscoverySource, SkillSourceKind } from '../../../shared/skills' +import { GLOBAL_AGENT_SKILL_SOURCE_KINDS } from './useInstalledAgentSkills' +import { + getInstalledAgentSkillVerdict, + hasUnreadableAgentSkillSource, + type InstalledAgentSkillScan +} from './installed-agent-skill-verdict' + +function source( + sourceKind: SkillSourceKind, + skippedReason?: SkillDiscoverySource['skippedReason'] +): SkillDiscoverySource { + return { + id: `${sourceKind}-root`, + label: sourceKind, + path: `/roots/${sourceKind}`, + sourceKind, + providers: ['claude'], + owner: null, + // An unread root reports `exists`: the host could not prove otherwise. + exists: true, + ...(skippedReason ? { skippedReason } : {}) + } +} + +function scan(overrides: Partial = {}): InstalledAgentSkillScan { + return { + enabled: true, + installed: false, + settled: true, + error: null, + sources: [], + sourceKinds: ['home'], + ...overrides + } +} + +const unverifiable = (overrides: Partial): boolean => + getInstalledAgentSkillVerdict(scan(overrides)).installedUnverifiable +const error = (overrides: Partial): string | null => + getInstalledAgentSkillVerdict(scan(overrides)).error + +describe('hasUnreadableAgentSkillSource', () => { + it('flags a root that did not answer even though it reports as present', () => { + expect(hasUnreadableAgentSkillSource([source('home', 'unavailable')])).toBe(true) + }) + + it('ignores roots that were scanned or are genuinely absent', () => { + expect( + hasUnreadableAgentSkillSource([ + source('home'), + { ...source('home'), id: 'gone', exists: false, skippedReason: 'missing' } + ]) + ).toBe(false) + }) + + it('ignores an unread root outside the scopes the caller asked about', () => { + expect( + hasUnreadableAgentSkillSource( + [source('repo', 'unavailable')], + GLOBAL_AGENT_SKILL_SOURCE_KINDS + ) + ).toBe(false) + }) +}) + +describe('getInstalledAgentSkillVerdict', () => { + it('treats a complete scan that found nothing as proof of absence', () => { + expect(unverifiable({ sources: [source('home')] })).toBe(false) + }) + + it('cannot vouch for a negative when a root this query cares about did not answer', () => { + expect(unverifiable({ sources: [source('home', 'unavailable')] })).toBe(true) + }) + + it('ignores an unreadable root outside the queried source kinds', () => { + expect(unverifiable({ sources: [source('repo', 'unavailable')] })).toBe(false) + }) + + // The reported bug: `sources` is empty until a result lands, so a scan that + // errored before answering is invisible to the unreadable-root check. + it('cannot vouch for a negative when the scan errored before ever answering', () => { + expect(unverifiable({ settled: false, error: 'scan failed' })).toBe(true) + }) + + it('keeps an answer it already holds when a later refresh fails', () => { + expect(unverifiable({ settled: true, error: 'scan failed' })).toBe(false) + }) + + it('stays silent while a first scan is still pending with no error', () => { + expect(unverifiable({ settled: false })).toBe(false) + }) + + it('takes finding the skill as proof, whatever else failed', () => { + expect(unverifiable({ installed: true, settled: false, error: 'scan failed' })).toBe(false) + }) + + it('says nothing about a query that is switched off', () => { + expect(unverifiable({ enabled: false, sources: [source('home', 'unavailable')] })).toBe(false) + }) + + it("prefers the scan's own failure over the advisory", () => { + expect(error({ settled: false, error: 'scan failed' })).toBe('scan failed') + }) + + it('advises when an unreadable root is the only reason the answer is empty', () => { + expect(error({ sources: [source('home', 'unavailable')] })).toContain('did not respond') + }) + + it('stays quiet for a trustworthy negative', () => { + expect(error({ sources: [source('home')] })).toBeNull() + }) +}) diff --git a/src/renderer/src/hooks/installed-agent-skill-verdict.ts b/src/renderer/src/hooks/installed-agent-skill-verdict.ts new file mode 100644 index 00000000000..025781c8644 --- /dev/null +++ b/src/renderer/src/hooks/installed-agent-skill-verdict.ts @@ -0,0 +1,65 @@ +import type { SkillDiscoverySource, SkillSourceKind } from '../../../shared/skills' +import { translate } from '@/i18n/i18n' + +/** + * True when a root this query cares about did not answer, so its skills are + * unknown rather than absent. The host serves such a root's last answer, but a + * root that has never answered has none to serve, and a bare "Not installed" + * there offers Install for a skill that may already be present. + */ +export function hasUnreadableAgentSkillSource( + sources: readonly SkillDiscoverySource[], + sourceKinds?: readonly SkillSourceKind[] +): boolean { + return sources.some( + (source) => + source.skippedReason === 'unavailable' && + (!sourceKinds || sourceKinds.includes(source.sourceKind)) + ) +} + +export type InstalledAgentSkillScan = { + enabled: boolean + installed: boolean + /** A scan answered for this target; a cached answer counts. */ + settled: boolean + /** The scan's own failure, before the advisory below is folded in. */ + error: string | null + sources: readonly SkillDiscoverySource[] + sourceKinds?: readonly SkillSourceKind[] +} + +export type InstalledAgentSkillVerdict = { + /** Nothing proves the skill absent, so no surface may render it as undone. */ + installedUnverifiable: boolean + /** The scan's own failure, else the advisory an unverifiable negative earns. */ + error: string | null +} + +/** + * Finding the skill is proof, so only a negative is ever doubted. Two shapes + * qualify: a scan that answered without reading a root this query cares about, + * and a scan that never answered at all — invisible to `sources`, which stay + * empty until a result lands. A failed refresh over an answer already held is + * neither: that answer still stands. + */ +export function getInstalledAgentSkillVerdict( + scan: InstalledAgentSkillScan +): InstalledAgentSkillVerdict { + const installedUnverifiable = + scan.enabled && + !scan.installed && + (hasUnreadableAgentSkillSource(scan.sources, scan.sourceKinds) || + (!scan.settled && scan.error !== null)) + return { + installedUnverifiable, + error: + scan.error ?? + (installedUnverifiable + ? translate( + 'auto.hooks.useInstalledAgentSkills.unreadableSkillSource', + 'A skill folder did not respond, so this status may be incomplete.' + ) + : null) + } +} diff --git a/src/renderer/src/hooks/useInstalledAgentSkills.react.test.tsx b/src/renderer/src/hooks/useInstalledAgentSkills.react.test.tsx index f8fd67e6b43..6a682fb0f1e 100644 --- a/src/renderer/src/hooks/useInstalledAgentSkills.react.test.tsx +++ b/src/renderer/src/hooks/useInstalledAgentSkills.react.test.tsx @@ -735,6 +735,8 @@ describe('useInstalledAgentSkill', () => { // fresh discovery per store write for as long as the host stays unreachable. expect(discover).toHaveBeenCalledTimes(1) expect(latestState?.error).toBe('runtime host unreachable') + // No result ever landed, so "not installed" is a claim this scan cannot back. + expect(latestState?.installedUnverifiable).toBe(true) }) it('hydrates from the warm cache on its very first render pass', async () => { @@ -882,6 +884,34 @@ describe('useInstalledAgentSkill', () => { expect(latestState?.installed).toBe(false) }) + it('keeps a landed answer authoritative when a later refresh fails', async () => { + const discover = vi + .fn<(target?: SkillDiscoveryTarget) => Promise>() + .mockResolvedValueOnce(discoveryResult([])) + .mockRejectedValue(new Error('refresh failed')) + Object.defineProperty(window, 'api', { + configurable: true, + value: { skills: { discover } } + }) + + await renderProbe() + await flushMicrotasks() + expect(discover).toHaveBeenCalledTimes(1) + expect(latestState?.settled).toBe(true) + expect(latestState?.installedUnverifiable).toBe(false) + + await act(async () => { + notifyInstalledAgentSkillsChanged() + }) + await flushMicrotasks() + + // The refresh failed, but the answer the scan already landed still stands. + expect(discover).toHaveBeenCalledTimes(2) + expect(latestState?.error).toBe('refresh failed') + expect(latestState?.settled).toBe(true) + expect(latestState?.installedUnverifiable).toBe(false) + }) + it('empties the discovery cache when an install notification fires', async () => { // Why: assert the cache directly — a mounted component forces a rescan and // would hide a missing invalidation. diff --git a/src/renderer/src/hooks/useInstalledAgentSkills.test.ts b/src/renderer/src/hooks/useInstalledAgentSkills.test.ts index a3340a104e2..6e82faab9a0 100644 --- a/src/renderer/src/hooks/useInstalledAgentSkills.test.ts +++ b/src/renderer/src/hooks/useInstalledAgentSkills.test.ts @@ -1,16 +1,11 @@ import { afterEach, describe, expect, it, vi } from 'vitest' -import type { - DiscoveredSkill, - SkillDiscoveryResult, - SkillDiscoverySource -} from '../../../shared/skills' +import type { DiscoveredSkill, SkillDiscoveryResult } from '../../../shared/skills' import type { ProjectExecutionRuntimeResolution } from '../../../shared/project-execution-runtime' import { GLOBAL_AGENT_SKILL_SOURCE_KINDS, _installedAgentSkillDiscoveryInternalsForTests, hasInstalledAgentSkill, hasInstalledAgentSkillNamed, - hasUnreadableAgentSkillSource, notifyInstalledAgentSkillsRefreshed } from './useInstalledAgentSkills' @@ -162,44 +157,6 @@ describe('hasInstalledAgentSkill', () => { }) }) -describe('hasUnreadableAgentSkillSource', () => { - function source(overrides: Partial): SkillDiscoverySource { - return { - id: 'home', - label: 'Agent skills home', - path: '/Users/test/.agents/skills', - sourceKind: 'home', - providers: ['agent-skills'], - owner: null, - // An unread root reports `exists`: the host could not prove otherwise. - exists: true, - ...overrides - } - } - - it('flags a root that did not answer even though it reports as present', () => { - expect(hasUnreadableAgentSkillSource([source({ skippedReason: 'unavailable' })])).toBe(true) - }) - - it('ignores roots that were scanned or are genuinely absent', () => { - expect( - hasUnreadableAgentSkillSource([ - source({}), - source({ id: 'gone', exists: false, skippedReason: 'missing' }) - ]) - ).toBe(false) - }) - - it('ignores an unread root outside the scopes the caller asked about', () => { - expect( - hasUnreadableAgentSkillSource( - [source({ id: 'repo', sourceKind: 'repo', skippedReason: 'unavailable' })], - GLOBAL_AGENT_SKILL_SOURCE_KINDS - ) - ).toBe(false) - }) -}) - describe('isOrchestrationSkillName', () => { it('matches only the orchestration skill name', () => { expect( diff --git a/src/renderer/src/hooks/useInstalledAgentSkills.ts b/src/renderer/src/hooks/useInstalledAgentSkills.ts index d7ac999a873..42115bf8206 100644 --- a/src/renderer/src/hooks/useInstalledAgentSkills.ts +++ b/src/renderer/src/hooks/useInstalledAgentSkills.ts @@ -8,7 +8,6 @@ import type { } from '../../../shared/skills' import { ORCHESTRATION_SKILL_NAME } from '@/lib/agent-feature-install-commands' import { markOrchestrationSetupComplete } from '@/lib/orchestration-setup-state' -import { translate } from '@/i18n/i18n' import { discoverInstalledAgentSkills, getCachedSkillDiscovery, @@ -16,6 +15,10 @@ import { getSkillDiscoveryTargetKey, resetSkillDiscoveryCacheForTests } from './installed-agent-skill-discovery' +import { + getInstalledAgentSkillVerdict, + type InstalledAgentSkillScan +} from './installed-agent-skill-verdict' import { INSTALLED_AGENT_SKILLS_CHANGED_EVENT, INSTALLED_AGENT_SKILLS_REFRESHED_EVENT @@ -48,6 +51,8 @@ export type InstalledAgentSkillState = { // Why: a forced rescan keeps the previous result, so only the first scan per // runtime-scoped target is genuinely unknown. settled: boolean + // A negative this scan cannot vouch for: render it as unknown, not as undone. + installedUnverifiable: boolean error: string | null skills: readonly DiscoveredSkill[] sources: readonly SkillDiscoverySource[] @@ -94,23 +99,6 @@ export function hasInstalledAgentSkillNamed( }) } -/** - * True when a root this query cares about did not answer, so its skills are - * unknown rather than absent. The host serves such a root's last answer, but a - * root that has never answered has none to serve, and a bare "Not installed" - * there offers Install for a skill that may already be present. - */ -export function hasUnreadableAgentSkillSource( - sources: readonly SkillDiscoverySource[], - sourceKinds?: readonly SkillSourceKind[] -): boolean { - return sources.some( - (source) => - source.skippedReason === 'unavailable' && - (!sourceKinds || sourceKinds.includes(source.sourceKind)) - ) -} - export function notifyInstalledAgentSkillsRefreshed(): void { if (typeof window !== 'undefined') { window.dispatchEvent(new CustomEvent(INSTALLED_AGENT_SKILLS_REFRESHED_EVENT)) @@ -323,10 +311,15 @@ export function useInstalledAgentSkillNames( [candidateSkillNames, enabled, skills, sourceKinds] ) - const incompleteScan = useMemo( - () => enabled && !installed && hasUnreadableAgentSkillSource(sources, sourceKinds), - [enabled, installed, sources, sourceKinds] - ) + const settled = enabled && resultForRender !== null + const scan: InstalledAgentSkillScan = { + enabled, + installed, + settled, + error: errorForRender, + sources, + sourceKinds + } useEffect(() => { if (installed && candidateSkillNames.some(isOrchestrationSkillName)) { @@ -341,15 +334,8 @@ export function useInstalledAgentSkillNames( return { installed, loading: loadingForRender, - settled: enabled && resultForRender !== null, - error: - errorForRender ?? - (incompleteScan - ? translate( - 'auto.hooks.useInstalledAgentSkills.unreadableSkillSource', - 'A skill folder did not respond, so this status may be incomplete.' - ) - : null), + settled, + ...getInstalledAgentSkillVerdict(scan), skills, sources, refresh: forceRefresh diff --git a/src/renderer/src/i18n/locales/en.json b/src/renderer/src/i18n/locales/en.json index f452788ac95..277b5c626eb 100644 --- a/src/renderer/src/i18n/locales/en.json +++ b/src/renderer/src/i18n/locales/en.json @@ -11519,7 +11519,8 @@ "noteKeysBody": "API keys and workspaces are stored for the active runtime.", "noteVisibilityTitle": "Hiding ≠ disconnect", "noteVisibilityBody": "Hiding Linear in Task Sources only removes it from the picker. It does not remove your key or skill.", - "setupChecking": "Checking…" + "setupChecking": "Checking…", + "setupUnverified": "Cannot verify" }, "TaskSourceLinearSetup": { "connectTitle": "Connect Linear", @@ -11545,7 +11546,8 @@ "statusHidden": "Hidden from Tasks", "statusIncomplete": "Needs setup", "collapseSetup": "Collapse {{provider}} setup steps", - "expandSetup": "Show {{provider}} setup steps" + "expandSetup": "Show {{provider}} setup steps", + "statusUnverified": "Cannot verify" }, "TaskSourceShowInTasksStep": { "shown": "Shown", diff --git a/src/renderer/src/i18n/locales/zh.json b/src/renderer/src/i18n/locales/zh.json index f44bc5972e1..5eda823d4a2 100644 --- a/src/renderer/src/i18n/locales/zh.json +++ b/src/renderer/src/i18n/locales/zh.json @@ -10269,7 +10269,8 @@ "noteKeysBody": "API 密钥和工作区存储在当前运行环境中。", "noteVisibilityTitle": "隐藏不等于断开连接", "noteVisibilityBody": "在任务来源中隐藏 Linear 只会将其从选择器中移除,不会删除密钥或技能。", - "setupChecking": "检查中…" + "setupChecking": "检查中…", + "setupUnverified": "无法验证" }, "TaskSourceLinearSetup": { "connectTitle": "连接 Linear", @@ -10291,6 +10292,7 @@ "statusReady": "已就绪", "statusConnectRequired": "需要连接", "statusSkillRequired": "需要技能", + "statusUnverified": "无法验证", "statusUnavailable": "状态不可用", "statusHidden": "已从任务中隐藏", "statusIncomplete": "需要设置", diff --git a/src/renderer/src/i18n/settings-status-label-localization.test.ts b/src/renderer/src/i18n/settings-status-label-localization.test.ts index bcbb0837090..1bb8fa312c0 100644 --- a/src/renderer/src/i18n/settings-status-label-localization.test.ts +++ b/src/renderer/src/i18n/settings-status-label-localization.test.ts @@ -52,6 +52,9 @@ const REQUIRED_KEYS: Record = { 'auto.components.settings.ComputerUsePane.statusGranted': 'Granted', 'auto.components.settings.ComputerUsePane.statusUnsupported': 'macOS only', 'auto.components.settings.ComputerUsePane.statusNotEnabled': 'Not enabled', + // Linear setup checklist — unverifiable skill scan (Settings pane + Task Sources card) + 'auto.components.settings.LinearAgentSkillGuide.setupUnverified': 'Cannot verify', + 'auto.components.settings.TaskSourceProviderCard.statusUnverified': 'Cannot verify', // Source-control CLI integration cards 'auto.components.settings.cli.source.control.integration.cards.statusConnected': 'Connected', 'auto.components.settings.cli.source.control.integration.cards.statusUnavailable': 'Unavailable', From f78483ec29891ab11f49bb25e6cd628837b1242e Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Wed, 16 Sep 2026 01:59:55 -0400 Subject: [PATCH 20/28] refactor(mobile): send the subscription-gated holdouts through typed RpcOperations (step 6, migration 1) (#20954) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(mobile): record the three step-6 families at the pin, and record a stream listener that dies Step 6 migrates the requests step 4 left behind because they share an effect with a `client.subscribe`. This records them first, from the pinned baseline, so the refactor that follows has a parity oracle. Three new families, one adapter module each: - `session.native-chat-page` — the older-history page. The read is a callback, but only the mount effect's `nativeChat.subscribe` arms what it pages against, so the frames are the setup: the snapshot's `beforeOffset` decides whether the request carries a cursor or asks for a growing tail. A cutover and a second snapshot pin the reconnect replay merging into paged-in history instead of collapsing the window. - `notifications.desktop-stream` — the desktop notification socket: the subscribe, the catch-up read its `ready` arms, the tray dismissals its events drive, and the server unsubscribe the disposer sends. Split in two so the base scenario's matrix sites all have partition-stable params: a variant that answers the second `ready` differently leaves the unsubscribe carrying the first subscription id, which the base's scripted params could not assert. - `session.terminal-gesture-input` — the debounced gesture flush and the menu's clear-buffer. Neither rides a subscription; a mount holding no terminal ref reaches both. The engine change is what makes the first two recordable at all. `ScriptedRpcTransport.frame` now returns what the product listener threw instead of throwing it on, and the runner records it as a `stream-listener-crash` effect. Only the two `runtime.clientEvents` listeners check that a frame payload is an object before reading its `type`; every other subscribing family took the matrix's `result-absent` and `result-null` partitions as an uncaught TypeError, which failed the suite rather than recording what a malformed frame does to a subscription. That is the same rule the crash boundary already holds for a screen and the unhandled-rejection window for a detached effect. The scenario's own faults stay loud: a missing subscribe payload, a params mismatch and a closed stream are all raised outside the caught region. `recorderSha256` therefore moves, so all 679 pre-existing goldens are re-recorded from the pin with this branch's recorder laid over it. Every one of them moves exactly one line and that line is `recorderSha256`: no `adapterSha256`, no `scenarioSha256` and no observation moved. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): send the subscription-gated holdouts through typed RpcOperations (step 6) Five references over four files leave the raw request port. Each was held out of step 4 because a request-only recorder could not mount it; the recordings landed in the previous commit and no golden moves here. - `use-live-worktree-name.ts` — `worktree.show` inside the focus effect that opens `runtime.clientEvents`. It reuses `sessionWorktreeRecordRead`, which is the diff-comment loader's reader renamed: both consumers read the `worktree` member whole and narrow their own field off it, so a second family would have been a second name for the same wire. The resolution still comes off the raw reply, because `selector_not_found` is what proves the worktree is gone and no acceptance policy carries a refusal code; the skip that follows is the same verdict main's `!response.ok` reached, since a refusal is the only reply this policy declines. - `use-mobile-native-chat-session.ts` — `nativeChat.readSession` in the paging callback. The payload stays whole because the reply is a union: an older runtime answers `{ error }` in place of a window, and the caller discriminates before reading a message list. - `mobile-notifications.ts` — `notifications.unsubscribe` in the `ready` branch of the subscription callback, in its own module rather than beside the push-route sends: one is the route this device holds with a gateway, the other the socket the paired connection holds. - `use-mobile-session-terminal-input.ts` — the gesture flush reuses `terminalInputSend`, which already carried the four other terminal-input call sites and the same accepted-verdict, and the menu's clear gets `terminalBufferClear` beside it. The clear is a skip because main never read the envelope: it toasted success on any fulfilled reply, so only a transport rejection reached the failure toast. That is preserved, not repaired. `mobile-session-route-parity.test.ts` refreshes three pins with their reason: the callback bodies and the twelve nested-function bodies moved where those send expressions were rewritten, and the runtime-string count drops by two because `terminal.send` and `terminal.clearBuffer` are now fixed at their operation's definition instead of spelled at the call site. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): hold the subscription coverage as a checked inventory instead of a README paragraph Every product `client.subscribe` is now an entry in `mobile/src/transport/rpc-subscription-inventory.ts`, classified as recorded (naming its family), an unwritten scenario, or walled with the wall named. `rpc-subscription-boundary.test.ts` fails on a new site with no entry, an entry whose file no longer subscribes, an entry naming a method the file does not open, and a `recorded` entry whose family the scenario manifest does not have. Both the unlisted-site and unresolved-family gates were checked by removing an entry and by misspelling a family; each fails on its own assertion. The paragraph this replaces said nine sites when there were ten. It counted over `mobile/src`, and the host screen's `accounts.subscribe` lives under `app/` — so the scan here covers both roots, the way the raw-port ratchet next door does. Ten sites today: four recorded, two unwritten scenarios, four walled (two on the webview ref, one on the multi-host client context, one on two unsubstituted view members). Unlike the raw-port inventory this list does not count down to zero. A typed operation fixes one method, one acceptance and one reader for one reply; a stream has many, and replacing a subscribe is not what this is asking for. The question it holds is the other one — which stream a golden actually has, and for the rest, what exactly stops it. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): pin the notification stream close, which writes nothing to the wire Deleting `unsubscribeStream()` from the notification cleanup — the local close, not the `notifications.unsubscribe` RPC beside it — survived all 810 tests. Neither unsubscribe builder in the stream registry knows `notifications.subscribe`, so closing that stream sends no frame; the mutant leaks a live subscription record instead, and the leak only surfaces when the logical client replays it onto the next session. `notifications-desktop-stream-closed` stops the stream and then cuts over, where the leak becomes a second `notifications.subscribe` payload. Recorded at the pin. No existing golden moves: the new scenario is appended, so it is not the family's matrix base, and every notification matrix site already had a fulfilled reply to replay. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * fix(mobile): name the accounts screen's real wall, which is ScrollView and Alert The entry blamed `expo-router.useFocusEffect`, which is substituted, and the inventory's own `use-live-worktree-name` is recorded while importing it. Probed by mounting the screen through the trap: the first refusal is `Unsubstituted native member: react-native.ScrollView`, and `Alert` refuses too. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): drop the terminal-send response reader that lost its last caller `isTerminalSendRpcAccepted` read the verdict off a whole envelope, which is what the raw call site did. Both callers now send through an operation and read the admitted payload, so the response form had only its own test left. The three cases move onto `isTerminalSendResultAccepted`, with the refusal envelope's missing result standing in for the failed response. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): attribute a frame crash to the listener that threw, not to the registry The try wrapped `stream.deliver`, so anything the registry raised on its way to the listener was recorded as a `stream-listener-crash` effect and blamed on the product. A reply like `{ok:false}` with no error object throws reaching for `error.message` before any listener runs, and that is a scenario that stopped matching, not an observation. Only the product's own `onData` is wrapped now. The throw is stashed and rethrown unchanged, so the registry still sees it the way a device's message handler does and what it skips after a dead listener stays recorded rather than invented; `frame` reports it only when the error it caught is the one the listener raised. `FrameListenerCrash` is local to the file again. Engine change, so every golden re-records: 694 files, every changed line the `recorderSha256` header, no body movement. Against main the set is 679 modified header-only and the same 15 added. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * fix(mobile): read the frame listener stash through a method, not a narrowed field `this.listenerCrash = null` before the try narrows the property to `null` for the rest of `frame`, so the catch compared against `never` and mobile's own `tsc --noEmit` failed. A private taker returns the declared type. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * fix(mobile): abort a registry throw that stashed nothing, and fold the last native-chat read module in The frame catch compared `crashed?.error !== error`, which is false when nothing was stashed and the registry threw `undefined`, so that abort was swallowed and `frame` reported a clean delivery. It now asks whether a listener crashed at all. Also: `nativeChatSessionPageRead` moves beside the three other `nativeChat.*` reads and its one-export module goes; the session read header names the whole `worktree.show` record rather than review notes; the guarded-listener count is three, not two; the README names the ten subscribing sites blur is unrecorded across; and the gesture flush reads the send verdict as `=== true` like the other four sites. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * chore(mobile): drop an oxlint disable the rule never needed `no-throw-literal` is not enabled here, so the directive read as unused and failed the changed-code quality gate. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- .../aivault-history-scan-fulfilled.json | 2 +- .../aivault-history-scan-unsupported.json | 2 +- .../aivault-history-scan-worktrees-late.json | 2 +- .../aivault-history-screen-listed.json | 2 +- .../aivault-history-screen-worktrees.json | 2 +- .../aivault-resume-launch-create-refused.json | 2 +- .../aivault-resume-launch-invalid-tab.json | 2 +- .../goldens/aivault-resume-launch-locked.json | 2 +- .../goldens/aivault-resume-launch-sent.json | 2 +- .../aivault-resume-prepare-refused.json | 2 +- .../goldens/aivault-resume-prepare-repin.json | 2 +- .../aivault-resume-prepare-skipped.json | 2 +- .../aivault-resume-prepare-unavailable.json | 2 +- mobile/rpc-foundation/goldens/b1.json | 2 +- mobile/rpc-foundation/goldens/b2.json | 2 +- mobile/rpc-foundation/goldens/b3.json | 2 +- .../goldens/browser-dialog-accepted.json | 2 +- .../goldens/browser-dialog-dismissed.json | 2 +- .../goldens/browser-keyboard-input.json | 2 +- .../browser-pointer-click-accepted.json | 2 +- .../browser-pointer-click-fallback.json | 2 +- .../goldens/browser-wheel-scrolled.json | 2 +- .../clipboard-image-attachment-anonymous.json | 2 +- ...-image-attachment-blocked-before-send.json | 2 +- .../clipboard-image-attachment-cancelled.json | 2 +- .../clipboard-image-attachment-pasted.json | 2 +- ...board-image-attachment-upload-refused.json | 2 +- ...-image-upload-aborts-on-chunk-failure.json | 2 +- .../clipboard-image-upload-chunked.json | 2 +- ...rd-image-upload-single-frame-fallback.json | 2 +- .../clipboard-image-upload-start-refused.json | 2 +- .../goldens/codex-reset-credit-consumed.json | 2 +- .../goldens/codex-reset-credit-resumed.json | 2 +- .../goldens/components-codex-capability.json | 2 +- .../goldens/components-setup-ask.json | 2 +- .../goldens/components-target-local.json | 2 +- .../goldens/components-target-ssh.json | 2 +- .../goldens/diff-review-branch-compare.json | 2 +- .../goldens/diff-review-branch-file-diff.json | 2 +- ...f-review-notes-refused-before-compare.json | 2 +- .../diff-review-refused-file-diff.json | 2 +- .../goldens/diff-review-snapshot.json | 2 +- .../diff-review-status-unavailable.json | 2 +- .../diff-review-worktree-file-diff.json | 2 +- .../goldens/file-tap-open-refused.json | 2 +- .../goldens/file-tap-opens-worktree-file.json | 2 +- .../file-tap-previews-absolute-artifact.json | 2 +- .../goldens/file-tap-resolve-miss.json | 2 +- .../goldens/file-tap-resolve-refused.json | 2 +- .../files-explorer-legacy-fallback.json | 2 +- .../goldens/files-explorer-readdir.json | 2 +- .../goldens/files-ownership-local.json | 2 +- .../goldens/files-ownership-ssh.json | 2 +- .../files-preview-artifact-direct.json | 2 +- .../goldens/files-preview-artifact-image.json | 2 +- .../goldens/files-preview-grant-refresh.json | 2 +- .../goldens/files-preview-worktree-image.json | 2 +- .../goldens/files-preview-worktree.json | 2 +- .../goldens/files-save-blind.json | 2 +- .../goldens/files-save-verified.json | 2 +- .../goldens/files-tab-doc-shapes.json | 2 +- .../goldens/home-host-accounts.json | 2 +- .../goldens/home-host-stats.json | 2 +- .../goldens/host-view-settings-sync.json | 2 +- ...host-worktree-actions-pin-open-delete.json | 2 +- .../goldens/host-worktree-delete-refused.json | 2 +- .../goldens/host-worktree-refresh-stream.json | 2 +- .../interruptions-inventory-lifecycle.json | 2 +- ...ions-settings-bot-overrides-fulfilled.json | 2 +- .../goldens/inventory-lifecycle.json | 2 +- .../goldens/inventory-repeat-query.json | 2 +- .../rpc-foundation/goldens/lifecycle-b3.json | 2 +- .../lifecycle-inventory-lifecycle.json | 2 +- ...ycle-settings-bot-overrides-fulfilled.json | 2 +- ...cle-settings-task-hydration-fulfilled.json | 2 +- ...-settings-workspace-context-fulfilled.json | 2 +- .../goldens/linear-select-workspace.json | 2 +- .../goldens/live-worktree-name-stream.json | 2 +- ...d-launch-agentsession.createsupport-1.json | 2 +- ...ivault.history-aivault.listsessions-1.json | 2 +- ...ivault.history-screen-platform-status.json | 2 +- ...x-aivault.history-screen-status.get-2.json | 2 +- ...-aivault.history-screen-worktree.ps-1.json | 2 +- .../matrix-aivault.history-status.get-1.json | 2 +- ...-launch-session.tabs.createterminal-1.json | 2 +- ...aivault.resume-launch-terminal.send-1.json | 2 +- ...ration-aivault.preparesessionresume-1.json | 2 +- ...browser.dialog-browser.dialogaccept-1.json | 2 +- ...keyboard-browser.keyboardinserttext-1.json | 2 +- ...x-browser.keyboard-browser.keypress-1.json | 2 +- ...er.pointer-click-browser.mouseclick-1.json | 2 +- ...ser.pointer-click-browser.mousedown-1.json | 2 +- ...ser.pointer-click-browser.mousemove-1.json | 2 +- ...owser.pointer-click-browser.mouseup-1.json | 2 +- ...rix-browser.wheel-browser.mousemove-1.json | 2 +- ...ix-browser.wheel-browser.mousewheel-1.json | 2 +- ...tachment-clipboard.startimageupload-1.json | 2 +- ...pload-clipboard.saveimageastempfile-1.json | 2 +- ...e-upload-clipboard.startimageupload-1.json | 2 +- ...s.codex-reset-capability-status.get-1.json | 2 +- ...it-accounts.consumecodexresetcredit-1.json | 2 +- ...target-local-preflight.detectagents-1.json | 2 +- ...target-preflight.detectremoteagents-1.json | 2 +- ...onents.execution-target-ssh.connect-1.json | 2 +- ...nents.execution-target-ssh.getstate-1.json | 2 +- ...ew-workspace-repositories-repo.list-1.json | 2 +- ...-components.setup-script-repo.hooks-1.json | 2 +- ...ix-files.explorer-screen-files.list-1.json | 2 +- ...files.explorer-screen-files.readdir-1.json | 2 +- ...les.mutation-ownership-ssh.getstate-1.json | 2 +- ...files.mutation-ownership-status.get-1.json | 2 +- ...es.mutation-ownership-worktree.show-1.json | 2 +- ...iew-load-files.readterminalartifact-1.json | 2 +- ...iew-load-files.readterminalartifact-2.json | 2 +- ...view-load-files.resolveterminalpath-1.json | 2 +- ...iew-save-files.readterminalartifact-1.json | 2 +- ...ew-save-files.writeterminalartifact-1.json | 2 +- .../matrix-files.tab-doc-files.read-1.json | 2 +- ...rix-files.tab-doc-files.readpreview-1.json | 2 +- .../matrix-files.tab-doc-git.diff-1.json | 2 +- ...-files.terminal-path-tap-files.open-1.json | 2 +- ...-path-tap-files.resolveterminalpath-1.json | 2 +- ....base-ref-chain-repo.baserefdefault-1.json | 2 +- ...matrix-git.base-ref-chain-repo.list-1.json | 2 +- ...ix-git.base-ref-chain-worktree.show-1.json | 2 +- ...essage-ai-git.generatecommitmessage-1.json | 2 +- ...matrix-git.history-read-git.history-1.json | 2 +- ...ix-git.remote-prerequisite-git.push-1.json | 2 +- ...x-git.review-preparation-git.status-1.json | 2 +- ...ent-mutation-github.addissuecomment-1.json | 2 +- ...tion-github.addprreviewcommentreply-1.json | 2 +- ...ub.project.deleteissuecommentbyslug-1.json | 2 +- ...ub.project.updateissuecommentbyslug-1.json | 2 +- ...mutation-github.resolvereviewthread-1.json | 2 +- ...x-github.pr-mutation-github.mergepr-1.json | 2 +- ...r-mutation-github.removeprreviewers-1.json | 2 +- ...-mutation-github.requestprreviewers-1.json | 2 +- ...ub.pr-mutation-github.rerunprchecks-1.json | 2 +- ...b.pr-mutation-github.setprautomerge-1.json | 2 +- ...ub.pr-mutation-github.updateprstate-1.json | 2 +- ....pr-read-github.listassignableusers-1.json | 2 +- ...ithub.pr-read-github.prcheckdetails-1.json | 2 +- ...trix-github.pr-read-github.prchecks-1.json | 2 +- ...x-github.pr-read-github.prforbranch-1.json | 2 +- ...trix-github.pr-read-github.reposlug-1.json | 2 +- ...thub.pr-read-github.workitemdetails-1.json | 2 +- ...thub.pr-read-hostedreview.forbranch-1.json | 2 +- ...title-mutation-github.updateprtitle-1.json | 2 +- ...ix-home.host-accounts-accounts.list-1.json | 2 +- ...atrix-home.host-stats-stats.summary-1.json | 2 +- ...sh-runtime.clientevents.subscribe-1-1.json | 2 +- ...sh-runtime.clientevents.subscribe-1-2.json | 2 +- ...sh-runtime.clientevents.subscribe-1-3.json | 2 +- ...sh-runtime.clientevents.subscribe-2-1.json | 2 +- .../matrix-host.view-settings-ui.get-1.json | 2 +- .../matrix-host.view-settings-ui.set-1.json | 2 +- ....worktree-actions-worktree.activate-1.json | 2 +- ...x-host.worktree-actions-worktree.rm-1.json | 2 +- ...-host.worktree-actions-worktree.set-1.json | 2 +- ...-hostedreview.create-chain-git.push-1.json | 2 +- ...ew.create-chain-hostedreview.create-1.json | 2 +- ...tedreview.create-chain-worktree.set-1.json | 2 +- ...dreview.create-intent-git.bulkstage-1.json | 2 +- ...stedreview.create-intent-git.commit-1.json | 2 +- ...te-intent-git.generatecommitmessage-1.json | 2 +- ...hostedreview.create-intent-git.push-1.json | 2 +- ...stedreview.create-intent-git.status-1.json | 2 +- ...stedreview.create-intent-git.status-2.json | 2 +- ...stedreview.create-intent-git.status-3.json | 2 +- ...stedreview.create-intent-git.status-4.json | 2 +- ...w.create-intent-hostedreview.create-1.json | 2 +- ...hostedreview.getcreationeligibility-1.json | 2 +- ...hostedreview.getcreationeligibility-2.json | 2 +- ...edreview.create-intent-worktree.set-1.json | 2 +- ...hostedreview.getcreationeligibility-1.json | 2 +- ...-legacy-inventory-files.searchpaths-1.json | 2 +- ...-legacy-inventory-files.searchpaths-2.json | 2 +- ...trix-legacy-inventory-fresh-inventory.json | 2 +- ...matrix-legacy-inventory-old-inventory.json | 2 +- ...near-detail-barrier-linear.getissue-1.json | 2 +- ...detail-barrier-linear.issuecomments-1.json | 2 +- ...space-picker-linear.selectworkspace-1.json | 2 +- ...me-runtime.clientevents.subscribe-1-1.json | 2 +- ...me-runtime.clientevents.subscribe-1-2.json | 2 +- ...me-runtime.clientevents.subscribe-2-1.json | 2 +- ...ix-live-worktree-name-worktree.show-1.json | 2 +- ...ix-live-worktree-name-worktree.show-2.json | 2 +- ...ix-live-worktree-name-worktree.show-3.json | 2 +- ...ativechat.image-paste-terminal.send-1.json | 2 +- ...ativechat.image-paste-terminal.send-2.json | 2 +- ...e-upload-clipboard.startimageupload-1.json | 2 +- ...ings.mutatenativechatsessionoptions-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...vechat.terminal-write-terminal.send-1.json | 2 +- ...stream-notifications.getmissedsince-1.json | 1251 +++++++++++++++ ...op-stream-notifications.subscribe-1-1.json | 836 ++++++++++ ...op-stream-notifications.subscribe-1-2.json | 629 ++++++++ ...op-stream-notifications.unsubscribe-1.json | 761 +++++++++ ...-test-screen-notifications.testpush-1.json | 2 +- ...missal-notifications.getmissedsince-1.json | 2 +- ...stration-notifications.registerpush-1.json | 2 +- ...ration-notifications.unregisterpush-1.json | 2 +- ...rix-pairing.pre-profile-direct-status.json | 2 +- ...ng.pre-profile-pairing.getendpoints-1.json | 2 +- ....pre-profile-pairing.provisionrelay-1.json | 2 +- ...trix-pairing.pre-profile-relay-status.json | 2 +- ...se-github.project.updateissuebyslug-1.json | 2 +- ...ntial-rotation-pairing.getendpoints-1.json | 2 +- ...ntial-rotation-pairing.getendpoints-2.json | 2 +- ...ial-rotation-pairing.provisionrelay-1.json | 2 +- ...direct-upgrade-pairing.getendpoints-1.json | 2 +- ...direct-upgrade-pairing.getendpoints-2.json | 2 +- ...rect-upgrade-pairing.provisionrelay-1.json | 2 +- ...iring-recovery-pairing.getendpoints-1.json | 2 +- ...ion.content-create-files.createfile-1.json | 2 +- ...x-session.content-create-files.open-1.json | 2 +- ...x-session.content-create-status.get-1.json | 2 +- ...ession.content-create-worktree.show-1.json | 2 +- ...ix-session.diff-notes-worktree.show-1.json | 2 +- ...on.diff-review-actions-worktree.set-1.json | 2 +- ...rix-session.diff-review-base-ref-show.json | 2 +- ...ssion.diff-review-git.branchcompare-1.json | 2 +- ...trix-session.diff-review-git.status-1.json | 2 +- ...atrix-session.diff-review-repo.list-1.json | 2 +- ...atrix-session.diff-review-review-show.json | 2 +- ...sion.markdown-save-markdown.savetab-1.json | 2 +- ...ve-chat-page-nativechat.readsession-1.json | 1413 +++++++++++++++++ ...ve-chat-page-nativechat.subscribe-1-1.json | 1078 +++++++++++++ ...ve-chat-page-nativechat.subscribe-2-1.json | 631 ++++++++ ...n.native-chat-readability-repo.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...sion.native-chat-stop-terminal.send-1.json | 2 +- ...sion.native-chat-stop-terminal.send-2.json | 2 +- ...pr-branch-context-git.branchcompare-1.json | 2 +- ...ession.pr-branch-context-git.status-1.json | 2 +- ...session.pr-branch-context-repo.list-1.json | 2 +- ...ion.pr-branch-context-worktree.show-1.json | 2 +- ...-triage-session.tabs.createterminal-1.json | 2 +- ...rix-session.pr-triage-terminal.send-1.json | 2 +- ...ab-activation-session.tabs.activate-1.json | 2 +- ...ssion.tab-activation-terminal.focus-1.json | 2 +- ...ix-session.tab-close-terminal.close-1.json | 2 +- ...sion.tab-documents-markdown.readtab-1.json | 2 +- ...on.tab-reveal-session.tabs.activate-1.json | 2 +- ...ession.tab-reveal-session.tabs.list-1.json | 2 +- ...abs-stream-health-session.tabs.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 1134 +++++++++++++ ...-gesture-input-terminal.clearbuffer-1.json | 897 +++++++++++ ...erminal-gesture-input-terminal.send-1.json | 1352 ++++++++++++++++ ...chestration.workerterminaluserinput-1.json | 2 +- ...n.terminal-input-send-terminal.send-1.json | 2 +- ...on.terminal-inventory-terminal.list-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...session.terminal-paste-settings.get-1.json | 2 +- ...ession.terminal-paste-terminal.send-1.json | 2 +- ...ssion.worktree-connection-repo.list-1.json | 2 +- ...on.worktree-connection-settings.get-1.json | 2 +- ...t-read-preflight.detectremoteagents-1.json | 2 +- ...atrix-settings-agent-read-repo.list-1.json | 2 +- ...ix-settings-agent-read-settings.get-1.json | 2 +- ...ettings-best-effort-settings.update-1.json | 2 +- ...settings.bot-overrides-settings.get-1.json | 2 +- ...ttings.home-providers-linear.status-1.json | 2 +- ...ings.home-providers-preflight.check-1.json | 2 +- ...ettings.home-providers-settings.get-1.json | 2 +- ...s-settings.getterminalquickcommands-1.json | 2 +- ...ettings.updateterminalquickcommands-1.json | 2 +- ...ettings.repo-metadata-host.platform-1.json | 2 +- ...ix-settings.repo-metadata-repo.list-1.json | 2 +- ...settings.repo-metadata-settings.get-1.json | 2 +- ...po-metadata-ssh.listtargetsummaries-1.json | 2 +- ...esume-metadata-folderworkspace.list-1.json | 2 +- ...s.resume-metadata-projectgroup.list-1.json | 2 +- ...-settings.resume-metadata-repo.list-1.json | 2 +- ...ttings.resume-metadata-settings.get-1.json | 2 +- ...ettings.resume-metadata-worktree.ps-1.json | 2 +- ...ttings.task-hydration-linear.status-1.json | 2 +- ...ings.task-hydration-preflight.check-1.json | 2 +- ...ettings.task-hydration-settings.get-1.json | 2 +- ...-settings.task-hydration-status.get-1.json | 2 +- ...trix-settings.task-hydration-ui.get-1.json | 2 +- ....task-workspace-create-settings.get-1.json | 2 +- ...sk-workspace-create-worktree.create-1.json | 2 +- ...ettings.task-workspace-settings.get-1.json | 2 +- ...ngs.workspace-context-linear.status-1.json | 2 +- ...s.workspace-context-preflight.check-1.json | 2 +- ...ings.workspace-context-settings.get-1.json | 2 +- ...x-settings.workspace-context-ui.get-1.json | 2 +- ...tings.workspace-submit-settings.get-1.json | 2 +- ...tation-chunk-speech.dictation.chunk-1.json | 2 +- ...ion-session-speech.dictation.finish-1.json | 2 +- ...tion-session-speech.dictation.start-1.json | 2 +- ...ation-start-speech.dictation.cancel-1.json | 2 +- ...tation-start-speech.dictation.start-1.json | 2 +- ....setup-sheet-speech.dictation.setup-1.json | 2 +- ...ch.setup-sheet-speech.models.delete-1.json | 2 +- ....setup-sheet-speech.models.download-1.json | 2 +- ...eech.setup-sheet-speech.models.list-1.json | 2 +- ...cks-files-github.addprreviewcomment-1.json | 2 +- ...-checks-files-github.prfilecontents-1.json | 2 +- ...m-checks-files-github.rerunprchecks-1.json | 2 +- ...ks-files-github.resolvereviewthread-1.json | 2 +- ...checks-files-github.setprfileviewed-1.json | 2 +- ...mment-github-github.addissuecomment-1.json | 2 +- ...mment-gitlab-gitlab.addissuecomment-1.json | 2 +- ...mment-gitlab-mr-gitlab.addmrcomment-1.json | 2 +- ...etail-github-github.workitemdetails-1.json | 2 +- ...etail-gitlab-gitlab.workitemdetails-1.json | 2 +- ....item-detail-linear-linear.getissue-1.json | 2 +- ...-detail-linear-linear.issuecomments-1.json | 2 +- ...metadata-github.listassignableusers-1.json | 2 +- ...m-detail-metadata-github.listlabels-1.json | 2 +- ...ks.item-merge-gitlab-gitlab.mergemr-1.json | 2 +- ...tem-metadata-github-github.updatepr-1.json | 2 +- ...-metadata-gitlab-gitlab.updateissue-1.json | 2 +- ...-metadata-gitlab-mr-gitlab.updatemr-1.json | 2 +- ...-reply-merge-github.addissuecomment-1.json | 2 +- ...erge-github.addprreviewcommentreply-1.json | 2 +- ...sks.item-reply-merge-github.mergepr-1.json | 2 +- ...item-reply-merge-linear.updateissue-1.json | 2 +- ....item-review-github-github.prchecks-1.json | 2 +- ...ew-github-github.requestprreviewers-1.json | 2 +- ...em-status-gitlab-github.updateissue-1.json | 2 +- ...em-status-gitlab-gitlab.updateissue-1.json | 2 +- ...atus-gitlab-mr-gitlab.updatemrstate-1.json | 2 +- ...tasks.linear-connect-linear.connect-1.json | 2 +- ....linear-item-linear.addissuecomment-1.json | 2 +- ...asks.linear-item-linear.createissue-1.json | 2 +- ...x-tasks.linear-item-linear.getissue-1.json | 2 +- ...inear-team-context-linear.listteams-1.json | 2 +- ...near-team-context-linear.teamstates-1.json | 2 +- ...-tasks.paste-lookup-github.reposlug-1.json | 2 +- ...-tasks.paste-lookup-github.workitem-1.json | 2 +- ...e-lookup-github.workitembyownerrepo-1.json | 2 +- ....paste-lookup-gitlab.workitembypath-1.json | 2 +- ...-load-github.project.listaccessible-1.json | 2 +- ...board-load-github.project.listviews-1.json | 2 +- ...board-load-github.project.listviews-2.json | 2 +- ...oard-load-github.project.resolveref-1.json | 2 +- ...board-load-github.project.viewtable-1.json | 2 +- ....project-repo-slugs-github.reposlug-1.json | 2 +- ...ithub.project.addissuecommentbyslug-1.json | 2 +- ...ue-github.project.updateissuebyslug-1.json | 2 +- ...ub.project.updateissuecommentbyslug-1.json | 2 +- ...hub.project.updatepullrequestbyslug-1.json | 2 +- ...ithub.project.workitemdetailsbyslug-1.json | 2 +- ...ields-github.project.clearitemfield-1.json | 2 +- ...ithub.project.updateissuetypebyslug-1.json | 2 +- ...elds-github.project.updateitemfield-1.json | 2 +- ...les-merge-github.addprreviewcomment-1.json | 2 +- ...ject-row-files-merge-github.mergepr-1.json | 2 +- ...w-files-merge-github.prfilecontents-1.json | 2 +- ...-row-files-merge-github.updateissue-1.json | 2 +- ...ow-files-merge-github.updateprstate-1.json | 2 +- ...b.project.listassignableusersbyslug-1.json | 2 +- ...github.project.listissuetypesbyslug-1.json | 2 +- ...oad-github.project.listlabelsbyslug-1.json | 2 +- ...t-row-review-checks-github.prchecks-1.json | 2 +- ...ew-checks-github.requestprreviewers-1.json | 2 +- ...-review-checks-github.rerunprchecks-1.json | 2 +- ...eview-checks-github.setprfileviewed-1.json | 2 +- ...-row-threads-github.addissuecomment-1.json | 2 +- ...eads-github.addprreviewcommentreply-1.json | 2 +- ...ub.project.deleteissuecommentbyslug-1.json | 2 +- ...-threads-github.resolvereviewthread-1.json | 2 +- ...provider-load-github.countworkitems-1.json | 2 +- ....provider-load-github.listworkitems-1.json | 2 +- ...asks.provider-load-linear.listteams-1.json | 2 +- ...x-tasks.provider-load-linear.status-1.json | 2 +- ...tasks.provider-load-settings.update-1.json | 2 +- ...rix-tasks.route-repo-list-repo.list-1.json | 2 +- ...-source-search-github.listworkitems-1.json | 2 +- ...-source-search-gitlab.listworkitems-1.json | 2 +- ...art-source-search-linear.listissues-1.json | 2 +- ...t-source-search-linear.searchissues-1.json | 2 +- ...smart-source-search-repo.searchrefs-1.json | 2 +- ...sk-create-github-github.createissue-1.json | 2 +- ...asks.task-create-github-repo.update-1.json | 2 +- ...sk-create-gitlab-gitlab.createissue-1.json | 2 +- ...sk-create-linear-linear.createissue-1.json | 2 +- ...t-gitlab-items-gitlab.listworkitems-1.json | 2 +- ...task-list-gitlab-todos-gitlab.todos-1.json | 2 +- ....task-list-linear-linear.listissues-1.json | 2 +- ...ask-list-linear-linear.searchissues-1.json | 2 +- ...ks.workspace-source-repo.searchrefs-1.json | 2 +- ...workspace-source-repo.sparsepresets-1.json | 2 +- ...kspace-sparse-repo.savesparsepreset-1.json | 2 +- ...tasks.workspace-sparse-ssh.getstate-1.json | 2 +- ...ce-ssh-local-preflight.detectagents-1.json | 2 +- ...ce-ssh-preflight.detectremoteagents-1.json | 2 +- ...trix-tasks.workspace-ssh-repo.hooks-1.json | 2 +- ...rix-tasks.workspace-ssh-ssh.connect-1.json | 2 +- ...-terminal.query-reply-terminal.send-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...ix-terminal.raw-input-terminal.send-1.json | 2 +- ...chestration.workerterminaluserinput-1.json | 2 +- ...chestration.workerterminaluserinput-2.json | 2 +- ...wport-refit-terminal.updateviewport-1.json | 2 +- ...ansport.capability-probe-status.get-1.json | 2 +- ...nsport.host-status-gates-status.get-1.json | 2 +- ...-transport.pairing-race-direct-status.json | 2 +- ...x-transport.pairing-race-relay-status.json | 2 +- ...rktree.catalog-snapshot-worktree.ps-1.json | 2 +- ...rktree.create-retry-worktree.create-1.json | 2 +- ...x-worktree.home-catalog-worktree.ps-1.json | 2 +- ....hosted-base-worktree.resolvemrbase-1.json | 2 +- ....hosted-base-worktree.resolveprbase-1.json | 2 +- ...red-names-worktree.listretirednames-1.json | 2 +- ...x-worktree.review-link-worktree.set-1.json | 2 +- ...ree.runtime-capabilities-status.get-1.json | 2 +- ...ix-worktree.setup-hook-trust-ui.set-1.json | 2 +- .../native-chat-image-paste-single.json | 2 +- ...e-chat-image-paste-stops-on-rejection.json | 2 +- ...ative-chat-image-paste-trailing-image.json | 2 +- .../native-chat-image-paste-two-images.json | 2 +- .../native-chat-image-upload-cancelled.json | 2 +- ...native-chat-image-upload-second-fails.json | 2 +- .../native-chat-image-upload-single.json | 2 +- ...ative-chat-image-upload-start-refused.json | 2 +- .../goldens/native-chat-image-upload-two.json | 2 +- .../goldens/native-chat-page-earlier.json | 312 ++++ .../native-chat-readability-local-repo.json | 2 +- .../native-chat-readability-refused.json | 2 +- .../native-chat-readability-remote-repo.json | 2 +- ...native-chat-session-option-pick-empty.json | 2 +- ...tive-chat-session-option-pick-refused.json | 2 +- ...tive-chat-session-option-pick-written.json | 2 +- .../goldens/native-chat-stop-accepted.json | 2 +- .../native-chat-stop-both-rejected.json | 2 +- .../native-chat-stop-delivery-unknown.json | 2 +- .../goldens/native-chat-write-accepted.json | 2 +- .../goldens/native-chat-write-clear-line.json | 2 +- .../native-chat-write-delivery-unknown.json | 2 +- .../goldens/native-chat-write-rejected.json | 2 +- .../native-chat-write-typed-command.json | 2 +- .../new-workspace-repositories-fulfilled.json | 2 +- .../notifications-desktop-stream-closed.json | 168 ++ ...notifications-desktop-stream-replayed.json | 263 +++ .../goldens/notifications-desktop-stream.json | 301 ++++ .../notifications-display-test-accepted.json | 2 +- .../notifications-push-gateway-rejected.json | 2 +- .../notifications-push-registered.json | 2 +- ...re-profile-direct-wins-and-provisions.json | 2 +- ...ovision-unsupported-saves-direct-host.json | 2 +- .../pairing-pre-profile-times-out.json | 2 +- .../goldens/pr-branch-identity.json | 2 +- .../goldens/pr-branch-repo-context.json | 2 +- .../goldens/pr-comment-mutation.json | 2 +- .../pr-comment-resolve-unconfirmed.json | 2 +- .../goldens/pr-mutation-in-band-failure.json | 2 +- .../goldens/pr-mutation-status.json | 2 +- .../goldens/pr-read-fork-routing.json | 2 +- .../goldens/pr-read-surface.json | 2 +- .../goldens/pr-read-upstream-error.json | 2 +- .../goldens/pr-title-mutation.json | 2 +- .../goldens/pr-title-unconfirmed.json | 2 +- .../goldens/pr-triage-invalid-terminal.json | 2 +- .../goldens/pr-triage-launch.json | 2 +- .../goldens/pr-triage-send-locked.json | 2 +- .../goldens/probe-new-tab-both-refused.json | 2 +- .../probe-new-tab-null-sibling-refused.json | 2 +- ...probe-new-tab-refused-sibling-rejects.json | 2 +- ...probe-new-tab-rejects-sibling-refused.json | 2 +- .../push-dismissal-tray-reconciled.json | 2 +- .../goldens/quick-commands-load-refused.json | 2 +- .../quick-commands-loaded-and-saved.json | 2 +- ...uick-commands-save-refused-rolls-back.json | 2 +- .../goldens/relay-direct-upgrade-commits.json | 2 +- ...ect-upgrade-unsupported-host-declines.json | 2 +- ...ay-pairing-recovery-invite-authorizes.json | 2 +- ...lay-pairing-recovery-resume-committed.json | 2 +- .../relay-rotation-installs-and-commits.json | 2 +- ...ay-rotation-resumes-committed-pending.json | 2 +- .../review-create-terminal-refused.json | 2 +- .../review-mark-reviewed-persists.json | 2 +- .../review-mark-reviewed-rolls-back.json | 2 +- .../goldens/review-open-in-session.json | 2 +- .../review-send-notes-heals-stale-input.json | 2 +- .../goldens/review-stage-file.json | 2 +- .../goldens/review-stage-refused.json | 2 +- .../goldens/sc-base-ref-default.json | 2 +- .../goldens/sc-base-ref-repo-fallback.json | 2 +- .../goldens/sc-base-ref-unavailable.json | 2 +- .../goldens/sc-base-ref-worktree-hit.json | 2 +- .../sc-commit-message-cancel-rejected.json | 2 +- .../goldens/sc-commit-message-canceled.json | 2 +- .../goldens/sc-commit-message-generated.json | 2 +- .../goldens/sc-create-existing-review.json | 2 +- ...reate-intent-stage-commit-push-create.json | 2 +- .../sc-create-link-failure-is-non-fatal.json | 2 +- .../sc-create-pushes-then-creates.json | 2 +- .../sc-create-refused-empty-message.json | 2 +- .../sc-create-rejected-empty-message.json | 2 +- .../goldens/sc-eligibility-fetched.json | 2 +- .../goldens/sc-history-loaded.json | 2 +- .../goldens/sc-pr-link-hosted-review.json | 2 +- .../goldens/sc-pr-link-read.json | 2 +- .../goldens/sc-pr-link-set.json | 2 +- .../sc-prefill-unavailable-on-refusal.json | 2 +- .../sc-prefill-unavailable-on-rejection.json | 2 +- .../sc-prerequisite-force-with-lease.json | 2 +- .../goldens/sc-prerequisite-publish.json | 2 +- .../goldens/sc-prerequisite-push.json | 2 +- .../goldens/sc-prerequisite-skipped.json | 2 +- .../goldens/sc-reveal-first-poll.json | 2 +- .../goldens/sc-reveal-timeout.json | 2 +- .../sc-review-commit-inner-failure.json | 2 +- ...c-review-commit-refused-empty-message.json | 2 +- .../goldens/sc-review-commit-rejected.json | 2 +- .../goldens/sc-review-commit.json | 2 +- .../sc-review-status-entries-not-array.json | 2 +- .../goldens/sc-review-status-normalized.json | 2 +- .../rpc-foundation/goldens/schedules-b3.json | 2 +- ...les-settings-home-providers-fulfilled.json | 2 +- .../schedules-settings-new-tab-ssh.json | 2 +- ...ules-settings-repo-metadata-fulfilled.json | 2 +- ...es-settings-resume-metadata-fulfilled.json | 2 +- ...les-settings-task-hydration-fulfilled.json | 2 +- ...-settings-workspace-context-fulfilled.json | 2 +- .../session-create-browser-refused.json | 2 +- .../goldens/session-create-browser-tab.json | 2 +- ...ession-create-markdown-name-collision.json | 2 +- .../goldens/session-create-markdown-note.json | 2 +- .../session-diff-notes-load-refused.json | 2 +- .../goldens/session-diff-notes-loaded.json | 2 +- .../goldens/session-file-tab-read.json | 2 +- .../session-markdown-save-conflict.json | 2 +- .../goldens/session-markdown-saved.json | 2 +- .../session-markdown-tab-disk-fallback.json | 2 +- .../goldens/session-markdown-tab-read.json | 2 +- .../goldens/session-markdown-tab-refused.json | 2 +- ...ion-tab-activation-focus-and-activate.json | 2 +- .../session-tab-activation-refused.json | 2 +- ...ession-tab-activation-transport-error.json | 2 +- .../session-tab-close-refused-keeps-tab.json | 2 +- .../session-tab-close-session-tab.json | 2 +- .../goldens/session-tab-close-terminal.json | 2 +- .../goldens/session-tab-rename.json | 2 +- .../goldens/session-tabs-health-errored.json | 2 +- .../session-tabs-health-reconciled.json | 2 +- .../goldens/session-tabs-health-refused.json | 2 +- ...abs-health-stale-application-revision.json | 2 +- ...session-terminal-list-dedupes-handles.json | 2 +- .../session-terminal-list-empty-guarded.json | 2 +- .../goldens/session-terminal-list-merged.json | 2 +- .../session-terminal-list-refused.json | 2 +- .../settings-bot-overrides-fulfilled.json | 2 +- ...ettings-bot-overrides-refresh-refused.json | 2 +- .../settings-bot-overrides-refused.json | 2 +- ...ettings-bot-overrides-transport-error.json | 2 +- .../goldens/settings-home-coalesced.json | 2 +- .../settings-home-providers-fulfilled.json | 2 +- ...ings-home-providers-refuse-after-data.json | 2 +- .../settings-home-providers-refused.json | 2 +- ...ttings-home-providers-transport-error.json | 2 +- .../goldens/settings-new-tab-refused.json | 2 +- .../goldens/settings-new-tab-ssh.json | 2 +- .../settings-new-tab-transport-error.json | 2 +- .../goldens/settings-repo-cache-expiry.json | 2 +- .../settings-repo-metadata-fulfilled.json | 2 +- ...tings-repo-metadata-refuse-after-data.json | 2 +- .../settings-repo-metadata-refused.json | 2 +- .../settings-repo-metadata-single-host.json | 2 +- ...ettings-repo-metadata-transport-error.json | 2 +- .../settings-resume-metadata-fulfilled.json | 2 +- ...ngs-resume-metadata-refuse-after-data.json | 2 +- .../settings-resume-metadata-refused.json | 2 +- ...tings-resume-metadata-transport-error.json | 2 +- .../settings-task-hydration-fulfilled.json | 2 +- ...ings-task-hydration-refuse-after-data.json | 2 +- .../settings-task-hydration-refused.json | 2 +- ...ttings-task-hydration-transport-error.json | 2 +- ...settings-task-workspace-create-linear.json | 2 +- ...-task-workspace-create-pr-start-point.json | 2 +- .../settings-task-workspace-fulfilled.json | 2 +- .../settings-task-workspace-refused.json | 2 +- ...ttings-task-workspace-transport-error.json | 2 +- .../goldens/settings-task-write.json | 2 +- .../settings-workspace-context-fulfilled.json | 2 +- ...s-workspace-context-refuse-after-data.json | 2 +- .../settings-workspace-context-refused.json | 2 +- ...ngs-workspace-context-transport-error.json | 2 +- .../settings-workspace-submit-fulfilled.json | 2 +- .../settings-workspace-submit-refused.json | 2 +- ...ings-workspace-submit-transport-error.json | 2 +- .../speech-audio-chunk-acknowledged.json | 2 +- .../speech-desktop-start-fulfilled.json | 2 +- ...speech-desktop-start-recording-failed.json | 2 +- .../speech-desktop-start-superseded.json | 2 +- .../speech-dictation-session-cancelled.json | 2 +- .../speech-dictation-session-transcript.json | 2 +- .../speech-setup-sheet-denied-to-mobile.json | 2 +- .../goldens/speech-setup-sheet-fulfilled.json | 2 +- .../speech-setup-sheet-legacy-desktop.json | 2 +- .../goldens/structured-launch-created.json | 2 +- .../structured-launch-definitive-refusal.json | 2 +- ...uctured-launch-replays-dropped-create.json | 2 +- .../structured-launch-support-refused.json | 2 +- .../structured-launch-unsupported.json | 2 +- .../goldens/tasks-route-repo-list.json | 2 +- .../terminal-gesture-flush-and-clear.json | 374 +++++ .../goldens/terminal-input-send-accepted.json | 2 +- .../goldens/terminal-input-send-refused.json | 2 +- .../goldens/terminal-live-input-accepted.json | 2 +- .../goldens/terminal-paste-accepted.json | 2 +- .../goldens/terminal-paste-refused.json | 2 +- .../terminal-query-reply-accepted.json | 2 +- .../terminal-query-reply-unsubscribed.json | 2 +- .../goldens/terminal-raw-input-refused.json | 2 +- .../goldens/terminal-raw-input-reported.json | 2 +- .../terminal-takeover-report-accepted.json | 2 +- .../terminal-takeover-report-retried.json | 2 +- .../terminal-viewport-refit-applied.json | 2 +- ...erminal-viewport-refit-legacy-desktop.json | 2 +- ...terminal-worktree-connection-resolved.json | 2 +- .../goldens/tk-create-github.json | 2 +- .../goldens/tk-create-gitlab.json | 2 +- .../goldens/tk-create-linear.json | 2 +- .../goldens/tk-item-checks-files.json | 2 +- .../goldens/tk-item-comment-github.json | 2 +- .../goldens/tk-item-comment-gitlab-mr.json | 2 +- .../goldens/tk-item-comment-gitlab.json | 2 +- .../goldens/tk-item-detail-github.json | 2 +- .../goldens/tk-item-detail-gitlab.json | 2 +- .../goldens/tk-item-detail-linear.json | 2 +- .../goldens/tk-item-detail-metadata.json | 2 +- .../goldens/tk-item-merge-gitlab.json | 2 +- .../goldens/tk-item-metadata-github.json | 2 +- .../goldens/tk-item-metadata-gitlab-mr.json | 2 +- .../goldens/tk-item-metadata-gitlab.json | 2 +- .../goldens/tk-item-reply-merge.json | 2 +- .../goldens/tk-item-review-github.json | 2 +- .../goldens/tk-item-status-gitlab-mr.json | 2 +- .../goldens/tk-item-status-gitlab.json | 2 +- .../goldens/tk-linear-connect.json | 2 +- .../goldens/tk-linear-item.json | 2 +- .../goldens/tk-linear-team-context.json | 2 +- .../goldens/tk-list-gitlab-items.json | 2 +- .../goldens/tk-list-gitlab-todos.json | 2 +- .../goldens/tk-list-linear.json | 2 +- .../goldens/tk-project-board-load.json | 2 +- .../goldens/tk-project-repo-slugs.json | 2 +- .../tk-project-row-comments-issue.json | 2 +- .../goldens/tk-project-row-comments-pr.json | 2 +- .../goldens/tk-project-row-detail.json | 2 +- .../goldens/tk-project-row-fields.json | 2 +- .../goldens/tk-project-row-files-merge.json | 2 +- .../goldens/tk-project-row-metadata-load.json | 2 +- .../goldens/tk-project-row-review-checks.json | 2 +- .../goldens/tk-project-row-threads.json | 2 +- .../goldens/tk-provider-load.json | 2 +- ...-capability-probe-cutover-reasks-fast.json | 2 +- ...ty-probe-non-string-capabilities-drop.json | 2 +- .../transport-capability-probe-publishes.json | 2 +- ...rt-capability-probe-refused-backs-off.json | 2 +- ...-status-gates-drop-keeps-capabilities.json | 2 +- .../transport-host-status-gates-ready.json | 2 +- ...rt-host-status-gates-refused-degrades.json | 2 +- .../transport-pairing-race-both-refused.json | 2 +- ...t-pairing-race-direct-completes-first.json | 2 +- ...rt-pairing-race-relay-completes-first.json | 2 +- ...g-race-relay-wins-when-direct-refused.json | 2 +- .../goldens/tw-capabilities-advertised.json | 2 +- .../tw-capabilities-cutover-retried.json | 2 +- .../tw-capabilities-legacy-idempotency.json | 2 +- .../tw-create-retry-ambiguous-after-drop.json | 2 +- ...reate-retry-ambiguous-while-connected.json | 2 +- ...e-retry-ambiguous-without-idempotency.json | 2 +- .../goldens/tw-create-retry-created.json | 2 +- .../tw-create-retry-name-collision.json | 2 +- .../tw-create-retry-unretryable-refusal.json | 2 +- .../goldens/tw-create-retry-warning-kept.json | 2 +- .../goldens/tw-hosted-base-resolved.json | 2 +- .../goldens/tw-hosted-base-soft-error.json | 2 +- .../goldens/tw-paste-lookup-resolved.json | 2 +- .../goldens/tw-paste-lookup-slug-refused.json | 2 +- .../tw-paste-lookup-slug-unsupported.json | 2 +- .../goldens/tw-setup-hook-trust-always.json | 2 +- .../goldens/tw-setup-hook-trust-approved.json | 2 +- .../tw-smart-search-all-providers.json | 2 +- ...tw-smart-search-gitlab-provider-error.json | 2 +- .../tw-smart-search-linear-listed.json | 2 +- .../tw-task-preferences-resume-write.json | 2 +- .../tw-workspace-source-presets-refused.json | 2 +- .../goldens/tw-workspace-source-presets.json | 2 +- .../tw-workspace-sparse-missing-preset.json | 2 +- .../goldens/tw-workspace-sparse-saved.json | 2 +- .../tw-workspace-ssh-connect-refused.json | 2 +- .../goldens/tw-workspace-ssh-connected.json | 2 +- .../tw-workspace-ssh-local-agents.json | 2 +- .../goldens/tw-workspace-ssh-not-ready.json | 2 +- .../goldens/worktree-catalog-snapshot.json | 2 +- .../goldens/worktree-home-catalog.json | 2 +- .../goldens/worktree-retired-names.json | 2 +- mobile/rpc-foundation/pilot-scenarios.json | 707 +++++++++ .../desktop-notification-stream-operations.ts | 24 + .../src/notifications/mobile-notifications.ts | 4 +- .../session/mobile-session-read-operations.ts | 51 +- .../mobile-session-route-parity.test.ts | 16 +- mobile/src/session/use-live-worktree-name.ts | 21 +- .../session/use-mobile-native-chat-session.ts | 9 +- .../use-mobile-session-diff-comments.ts | 6 +- .../use-mobile-session-terminal-input.ts | 13 +- .../terminal/mobile-terminal-operations.ts | 20 +- .../terminal-send-rpc-response.test.ts | 50 +- .../terminal/terminal-send-rpc-response.ts | 8 +- .../src/test-support/rpc-recording/README.md | 57 +- ...ktop-notification-stream-mount-adapters.ts | 46 + .../adapters/mounted-operation-modules.ts | 12 + .../native-chat-paging-mount-adapters.ts | 66 + ...session-terminal-gesture-mount-adapters.ts | 114 ++ .../rpc-recording/recording-runner.test.ts | 79 + .../rpc-recording/run-recording.ts | 12 +- .../rpc-recording/scripted-rpc-transport.ts | 64 +- .../rpc-subscription-boundary.test.ts | 195 +++ .../transport/rpc-subscription-inventory.ts | 102 ++ .../unvalidated-rpc-request-port-inventory.ts | 38 +- 717 files changed, 13661 insertions(+), 811 deletions(-) create mode 100644 mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.getmissedsince-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.subscribe-1-2.json create mode 100644 mobile/rpc-foundation/goldens/matrix-notifications.desktop-stream-notifications.unsubscribe-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.readsession-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-1-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.native-chat-page-nativechat.subscribe-2-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-orchestration.workerterminaluserinput-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.clearbuffer-1.json create mode 100644 mobile/rpc-foundation/goldens/matrix-session.terminal-gesture-input-terminal.send-1.json create mode 100644 mobile/rpc-foundation/goldens/native-chat-page-earlier.json create mode 100644 mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json create mode 100644 mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json create mode 100644 mobile/rpc-foundation/goldens/notifications-desktop-stream.json create mode 100644 mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json create mode 100644 mobile/src/notifications/desktop-notification-stream-operations.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/desktop-notification-stream-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/native-chat-paging-mount-adapters.ts create mode 100644 mobile/src/test-support/rpc-recording/adapters/session-terminal-gesture-mount-adapters.ts create mode 100644 mobile/src/transport/rpc-subscription-boundary.test.ts create mode 100644 mobile/src/transport/rpc-subscription-inventory.ts 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 { return typeof value === 'object' && value !== null } -/** The same verdict read off an admitted payload, for a call site that sends through an operation. */ +/** Whether an admitted terminal-send payload reports the write as accepted. */ export function isTerminalSendResultAccepted(result: unknown): boolean { return isRecord(result) && isRecord(result.send) && result.send.accepted === true } - -export function isTerminalSendRpcAccepted(response: RpcResponse): boolean { - return response.ok && isTerminalSendResultAccepted(response.result) -} diff --git a/mobile/src/test-support/rpc-recording/README.md b/mobile/src/test-support/rpc-recording/README.md index 2484d969935..0c945fcc135 100644 --- a/mobile/src/test-support/rpc-recording/README.md +++ b/mobile/src/test-support/rpc-recording/README.md @@ -97,6 +97,17 @@ and which the registry reports to the listener as an error. A streaming frame ar is accepted and observes nothing, because the opener path answers for an id it no longer holds; a non-streaming one names the scenario that has stopped matching. +A listener that throws on a frame is recorded as a `stream-listener-crash` effect rather than +failing the suite, the same rule the crash boundary holds for a screen and the unhandled-rejection +window holds for a detached effect. Only three listeners check the payload is an object before +reading its `type` — the two `runtime.clientEvents` ones and the structured agent session's, which +guards with `isSubscribeEvent` in `use-mobile-structured-agent-state.ts` — so without this every +other subscribing family died on the matrix's `result-absent` and `result-null` partitions — the +two shapes a stream listener is most likely to be wrong about were the only ones the oracle could +not record. The scenario's own faults +stay loud: a missing subscribe payload, a params mismatch and a closed stream are all raised before +or after the listener runs, and none of them is caught. + ### Recorded time Every settlement carries `startedAt` and `settledAt` in virtual milliseconds since the pinned epoch, @@ -350,13 +361,13 @@ families because no reference states are defined for them. ## What this oracle does and does not see -It replays 342 manifest scenarios against frozen goldens and fails on any divergence: 679 goldens -over 796 tests, all inside `pnpm --dir mobile test`. Counts quoted further down are measurements of +It replays 347 manifest scenarios against frozen goldens and fails on any divergence: 694 goldens +over 811 tests, all inside `pnpm --dir mobile test`. Counts quoted further down are measurements of the change they describe and are not restatements of this one. For a migration it answers one question — does the rewritten call site produce the same sender calls, settlements, state and effects as main did? -It is not a substitute for reading the diff. Three facts bound it, all learned the hard way: +It is not a substitute for reading the diff. Four facts bound it, all learned the hard way: - **It was blind to refusal ordering.** Reordering the settings and sibling refusal checks in `mobile-new-tab-agent-loader.ts` survives every golden except `probe-new-tab-both-refused` — @@ -376,6 +387,15 @@ It is not a substitute for reading the diff. Three facts bound it, all learned t all 163 tests, because no scenario rejected `git.status` for that family. Driving every scripted reply kills it on five matrix goldens. The lesson is about the skip, not about that call site: a generator that opts a family out without failing is indistinguishable from coverage. +- **It was blind to a stream close with no frame behind it.** Deleting `unsubscribeStream()` from + `mobile-notifications.ts`'s cleanup — the local close, not the `notifications.unsubscribe` RPC + beside it — survived all 810 tests. Neither unsubscribe builder in `rpc-client-stream-registry.ts` + knows `notifications.subscribe`, so closing that stream writes nothing to the wire: what the + mutant leaks is a live subscription record, and the leak stays invisible until a cutover replays + it. `notifications-desktop-stream-closed` stops the stream and then cuts over, where the leak + becomes a second `notifications.subscribe` payload. A family whose method does build an + unsubscribe (`nativeChat.subscribe`, `runtime.clientEvents.subscribe`) is pinned by that payload + at unmount and needs no such scenario. `mutants/probe-hole-witness.test.ts` closes the first two and keeps them closed. It asserts the hole and the closure together: each probe must kill its mutation _and_ every pre-probe scenario of @@ -384,21 +404,22 @@ lingering. What is still not covered: what the count-based raw-port inventory covers instead (which files reach `sendRequest`, and how often), native storage, transport skew, and the two mutations under -_Known-open holes_ below. The `subscribe` / `sendUnsubscribe` ports are covered for -`runtime.clientEvents.subscribe` only — the two client-event families are the whole of it. Nine -product call sites call `client.subscribe`; those two are recorded and seven are not, and no golden -mentions any of their methods: `notifications.subscribe`, `agentSession.subscribe`, -`session.tabs.subscribe`, `nativeChat.subscribe`, `terminal.subscribe`, `browser.screencast` and -`accounts.subscribe`. The frame plumbing is method-agnostic, so what stops each of the seven is its -consumer, not the runner. `terminal.subscribe` and `browser.screencast` write to a webview terminal -ref this runner has no substitute for. `accounts.subscribe` is wired on a per-host client from -`useAllHostClients`, and the runner hands an adapter one client rather than the multi-host context -that hook reads. Its snapshot decoder is not the wall: the loader reaches -`decodeAccountsSnapshot` and it throws its own domain error on a bad snapshot. The remaining four are unwritten scenarios, not walls. Blur is -unrecorded across all of them: `useFocusEffect` is substituted as `useEffect`, so a route's focus -cleanup is recorded at unmount and an unsubscribe only a blur would reach is not — driving focus -needs a substitute, and no recording reads one yet. Four of the nine -probes pin behaviour with no demonstrated mutation — the two mixed reject/refusal new-tab orders +_Known-open holes_ below. + +Which subscriptions are covered is no longer stated here. It is held as data in +`mobile/src/transport/rpc-subscription-inventory.ts`, where every product `client.subscribe` is +classified as recorded, an unwritten scenario, or walled with the wall named, and +`rpc-subscription-boundary.test.ts` fails on a new site, a stale entry, a wrong method and a +`recorded` entry naming a family this manifest does not have. This paragraph is why: it said nine +sites when there were ten — the count was taken over `mobile/src`, and the host screen's +`accounts.subscribe` lives under `app/`. A count in prose cannot fail. Today four of the ten are +recorded, two are unwritten scenarios and four are walled, and the list is what says so. + +The frame plumbing is method-agnostic, so what stops a site is its consumer rather than the runner. +Blur is unrecorded across all ten subscribing sites: `useFocusEffect` is substituted as `useEffect`, +so a route's focus cleanup is recorded at unmount and an unsubscribe only a blur would reach is not +— driving focus needs a substitute, and no recording reads one yet. Four of the nine probes pin +behaviour with no demonstrated mutation — the two mixed reject/refusal new-tab orders and the home-providers and resume-metadata refresh refusals; they are frozen observations, not proven defect detectors. `settings.resume-metadata` projects `{}` as its state, so its probe observes only sender calls and settlements. diff --git a/mobile/src/test-support/rpc-recording/adapters/desktop-notification-stream-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/desktop-notification-stream-mount-adapters.ts new file mode 100644 index 00000000000..b57f5d2f940 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/desktop-notification-stream-mount-adapters.ts @@ -0,0 +1,46 @@ +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const HOST = 'host-1' + +/** + * The desktop notification socket: one subscribe, the catch-up read its `ready` arms, the tray + * dismissals its events drive, and the server unsubscribe the disposer sends. + * + * The disposer is the whole output — it is what a host connection calls when the client goes away — + * so the recording drives `start` and `stop` and observes what each put on the wire. Everything the + * reconciliation reads off the device is declared by the scenario, the way + * `push-dismissal-mount-adapters.ts` declares it, so the identities that reach the host are + * scenario bytes. + */ +export function desktopNotificationStreamMountAdapters( + modules: ReturnType +): Record { + return { + 'notifications.desktop-stream': ({ client }) => { + const subscribeToDesktopNotifications = modules.load< + typeof import('../../../notifications/mobile-notifications') + >('mobile/src/notifications/mobile-notifications.ts').subscribeToDesktopNotifications + let stop: (() => void) | null = null + return { + action(name) { + if (name === 'start') { + stop = subscribeToDesktopNotifications(client, HOST) + return + } + if (name === 'stop') { + stop?.() + stop = null + return + } + throw new Error(`Unknown desktop notification stream action: ${name}`) + }, + state: () => ({ running: stop !== null }), + dispose: () => { + stop?.() + stop = null + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts index 8fcf755b6a4..508bea8f049 100644 --- a/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts +++ b/mobile/src/test-support/rpc-recording/adapters/mounted-operation-modules.ts @@ -11,6 +11,7 @@ import { browserMountAdapters } from './browser-mount-adapters' import { clientEventStreamMountAdapters } from './client-event-stream-mount-adapters' import { clipboardImageMountAdapters } from './clipboard-image-mount-adapters' import { codexResetCreditMountAdapters } from './codex-reset-credit-mount-adapters' +import { desktopNotificationStreamMountAdapters } from './desktop-notification-stream-mount-adapters' import { dictationMountAdapters } from './dictation-mount-adapters' import { diffReviewActionMountAdapters } from './diff-review-action-mount-adapters' import { diffReviewMountAdapters } from './diff-review-mount-adapters' @@ -26,6 +27,7 @@ import { homeAccountsMountAdapters } from './home-accounts-mount-adapters' import { hostScreenMountAdapters } from './host-screen-mount-adapters' import { hostWorktreeActionMountAdapters } from './host-worktree-action-mount-adapters' import { hostedReviewMountAdapters } from './hosted-review-mount-adapters' +import { nativeChatPagingMountAdapters } from './native-chat-paging-mount-adapters' import { nativeChatWriteMountAdapters } from './native-chat-write-mount-adapters' import { newTabAgentMountAdapters } from './new-tab-agent-mount-adapters' import { @@ -45,6 +47,7 @@ import { sessionNotesMountAdapters } from './session-notes-mount-adapters' import { sessionScreenReadMountAdapters } from './session-screen-read-mount-adapters' import { sessionScreenTabMountAdapters } from './session-screen-tab-mount-adapters' import { sessionTabMountAdapters } from './session-tab-mount-adapters' +import { sessionTerminalGestureMountAdapters } from './session-terminal-gesture-mount-adapters' import { sessionTerminalInputMountAdapters } from './session-terminal-input-mount-adapters' import { settingsMountAdapters, settingsMountExposures } from './settings-mount-adapters' import { sourceControlMountAdapters } from './source-control-mount-adapters' @@ -95,6 +98,10 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ { source: 'client-event-stream-mount-adapters.ts', mounts: clientEventStreamMountAdapters }, { source: 'clipboard-image-mount-adapters.ts', mounts: clipboardImageMountAdapters }, { source: 'codex-reset-credit-mount-adapters.ts', mounts: codexResetCreditMountAdapters }, + { + source: 'desktop-notification-stream-mount-adapters.ts', + mounts: desktopNotificationStreamMountAdapters + }, { source: 'dictation-mount-adapters.ts', mounts: dictationMountAdapters }, { source: 'diff-review-action-mount-adapters.ts', mounts: diffReviewActionMountAdapters }, { source: 'diff-review-mount-adapters.ts', mounts: diffReviewMountAdapters }, @@ -114,6 +121,7 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ mounts: hostWorktreeActionMountAdapters }, { source: 'hosted-review-mount-adapters.ts', mounts: hostedReviewMountAdapters }, + { source: 'native-chat-paging-mount-adapters.ts', mounts: nativeChatPagingMountAdapters }, { source: 'native-chat-write-mount-adapters.ts', mounts: nativeChatWriteMountAdapters }, { source: 'new-tab-agent-mount-adapters.ts', mounts: newTabAgentMountAdapters }, { source: 'new-workspace-mount-adapters.ts', mounts: newWorkspaceMountAdapters }, @@ -141,6 +149,10 @@ export const MOUNTED_OPERATION_MODULES: readonly MountedOperationModule[] = [ }, { source: 'session-screen-tab-mount-adapters.ts', mounts: sessionScreenTabMountAdapters }, { source: 'session-tab-mount-adapters.ts', mounts: sessionTabMountAdapters }, + { + source: 'session-terminal-gesture-mount-adapters.ts', + mounts: sessionTerminalGestureMountAdapters + }, { source: 'session-terminal-input-mount-adapters.ts', mounts: sessionTerminalInputMountAdapters diff --git a/mobile/src/test-support/rpc-recording/adapters/native-chat-paging-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/native-chat-paging-mount-adapters.ts new file mode 100644 index 00000000000..d110df49324 --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/native-chat-paging-mount-adapters.ts @@ -0,0 +1,66 @@ +import { hookScreenMount } from '../mounted-screen-tree' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' + +const SOURCE_IDENTITY = 'host-1::repo-1::/work/feature' +const AGENT = 'claude' +const SESSION = 'session-1' +const TRANSCRIPT_PATH = '/work/feature/.claude/session-1.jsonl' + +/** + * Native chat's older-history page. + * + * The read is a callback, but only the mount effect's `nativeChat.subscribe` arms what it pages + * against: `hasMore` gates the call at all, and the snapshot's `beforeOffset` decides whether the + * request carries a cursor or asks for a growing tail. So the stream is the setup, not decoration — + * the frames a scenario delivers are what make a page request exist and what shape it takes. + * + * Message ids rather than bodies: paging is about which window is held, and a full transcript in + * every checkpoint would cost bytes without making a reordered or dropped page more visible. + */ +export function nativeChatPagingMountAdapters( + modules: ReturnType +): Record { + return { + 'session.native-chat-page': ({ client, effect }) => { + const useMobileNativeChatSession = modules.load< + typeof import('../../../session/use-mobile-native-chat-session') + >('mobile/src/session/use-mobile-native-chat-session.ts').useMobileNativeChatSession + let value: ReturnType | undefined + const screen = hookScreenMount(() => { + value = useMobileNativeChatSession({ + client, + sourceIdentity: SOURCE_IDENTITY, + agent: AGENT, + sessionId: SESSION, + transcriptPath: TRANSCRIPT_PATH + }) + }, effect) + return { + action(name) { + if (name === 'mount' || name === 'remount') { + return screen.mount() + } + if (name === 'load-earlier') { + value?.loadEarlier() + return screen.update() + } + if (name === 'unmount') { + return screen.unmount() + } + throw new Error(`Unknown native chat paging action: ${name}`) + }, + state: () => ({ + messageIds: value?.messages.map((message) => message.id) ?? null, + status: value?.status ?? null, + transcriptLoading: value?.transcriptLoading ?? null, + hasMore: value?.hasMore ?? null, + loadingEarlier: value?.loadingEarlier ?? null, + error: value?.error ?? null, + crash: screen.crash() + }), + dispose: screen.unmount + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/adapters/session-terminal-gesture-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/session-terminal-gesture-mount-adapters.ts new file mode 100644 index 00000000000..4463e9bf25c --- /dev/null +++ b/mobile/src/test-support/rpc-recording/adapters/session-terminal-gesture-mount-adapters.ts @@ -0,0 +1,114 @@ +import { hookScreenMount } from '../mounted-screen-tree' +import { mountFixture } from '../recorder-fixture-shape' +import type { operationModuleLoader } from '../operation-module-loader' +import type { MountAdapter } from '../recording-scenario' +import type { TerminalModes } from '../../../terminal/terminal-webview-contract' +import type { + Terminal, + TerminalGestureInputBucket, + TerminalGestureInputQueue +} from '../../../session/mobile-session-route-types' + +const HANDLE = 'terminal-1' +const DEVICE_TOKEN = 'device-token-1' +/** A two-finger scroll as the WebView bridge reports it: one SGR wheel sequence. */ +const WHEEL_REPORT = '[<64;10;5M' +/** Mouse reporting on, alt screen off: the gate a gesture byte has to pass to reach the wire. */ +const PTY_MODES: TerminalModes = { + bracketedPasteMode: false, + altScreen: false, + mouseTrackingMode: 'any', + sgrMouseMode: true, + sgrMousePixelsMode: false +} + +/** + * The two sends the session screen's gesture surface makes: the debounced flush of buffered wheel + * and arrow reports, and the clear-buffer the terminal menu issues. + * + * Neither rides a subscription. The flush reads refs — client, connection state, PTY modes, the + * gesture buckets, the active handle and tab type — and the clear optional-chains the webview, so a + * mount holding no terminal ref reaches both. The webview is absent rather than substituted: the + * local `clear()` on it is a device call this oracle has no observation of, and the send after it is + * what the recording is evidence of. + * + * State is the queue accounting the hook owns — what is buffered, what is in flight, and what the + * rate limiter has left — because that is the hook's own value; it returns callbacks and nothing + * else. What each reply decided lands in the other two lists: an accepted send is a takeover report + * in the sender list, and a refused clear is a toast in the effects. + */ +export function sessionTerminalGestureMountAdapters( + modules: ReturnType +): Record { + return { + 'session.terminal-gesture-input': ({ client, effect }) => { + const useTerminalInput = modules.load< + typeof import('../../../session/use-mobile-session-terminal-input') + >('mobile/src/session/use-mobile-session-terminal-input.ts').useMobileSessionTerminalInput + const takeover = modules.load< + typeof import('../../../terminal/worker-terminal-takeover-report') + >('mobile/src/terminal/worker-terminal-takeover-report.ts') + // The per-client report window is module state; a fresh recording must not inherit one. + takeover.resetWorkerTerminalTakeoverReportsForTest() + + const buckets = { current: new Map() } + const queues = { current: new Map() } + const inFlight = { current: new Set() } + let input: ReturnType | undefined + const screen = hookScreenMount(() => { + input = useTerminalInput( + mountFixture[0]>({ + client, + connState: 'connected', + activeHandle: HANDLE, + clientRef: { current: client }, + connStateRef: { current: 'connected' }, + deviceTokenRef: { current: DEVICE_TOKEN }, + activeHandleRef: { current: HANDLE }, + activeSessionTabTypeRef: { current: 'terminal' }, + ptyModesRef: { current: new Map([[HANDLE, PTY_MODES]]) }, + terminalGestureInputBucketsRef: buckets, + terminalGestureInputQueuesRef: queues, + terminalGestureInputInFlightRef: inFlight, + liveInputRef: { current: null }, + liveInputFocusTimerRef: { current: null }, + terminalUnsubsRef: { current: new Map() }, + hostQueryReplyInputSupportedRef: { current: false }, + clearPendingLiveInputCommit: () => {}, + toggleTerminalLiveInput: () => false, + getTerminalRef: () => undefined, + showToast: (message: string, durationMs?: number) => + effect('toast', { message, durationMs: durationMs ?? null }) + }) + ) + }, effect) + + return { + action(name, args) { + if (name === 'mount') { + return screen.mount() + } + if (name === 'gesture') { + return input!.handleTerminalInput(HANDLE, String(args.bytes ?? WHEEL_REPORT)) + } + if (name === 'clear') { + const target: Terminal = { handle: HANDLE, title: 'zsh', isActive: true } + return input!.handleClearTerminal(target) + } + throw new Error(`Unknown terminal gesture action: ${name}`) + }, + state: () => ({ + queuedSequences: queues.current.get(HANDLE)?.sequenceCount ?? null, + queuedBytes: queues.current.get(HANDLE)?.bytes ?? null, + inFlight: inFlight.current.has(HANDLE), + bucketTokens: buckets.current.get(HANDLE)?.tokens ?? null, + crash: screen.crash() + }), + dispose: () => { + takeover.resetWorkerTerminalTakeoverReportsForTest() + screen.unmount() + } + } + } + } +} diff --git a/mobile/src/test-support/rpc-recording/recording-runner.test.ts b/mobile/src/test-support/rpc-recording/recording-runner.test.ts index 7d8e88aec19..e64b54b7bd6 100644 --- a/mobile/src/test-support/rpc-recording/recording-runner.test.ts +++ b/mobile/src/test-support/rpc-recording/recording-runner.test.ts @@ -14,6 +14,7 @@ import { describe, expect, it } from 'vitest' import { captureArguments, captureError, captureValue } from './recording-values' import { RECORDER_DIRECTORY, recorderSha256 } from './recorder-digest' import { RECORDING_DRIVERS } from './recording-drivers' +import { RpcClientStreamRegistry } from '../../transport/rpc-client-stream-registry' import { ScriptedRpcTransport } from './scripted-rpc-transport' import { vitestRecordingScheduler } from './vitest-recording-scheduler' import { @@ -34,6 +35,7 @@ import { import { runRecording } from './run-recording' import { valueHash, type InternedObservation } from './golden-value-pool' import type { Observation, RecordingScenario } from './recording-scenario' +import type { RpcClient } from '../../transport/rpc-client' import type { RecordedValue } from './recording-values' describe('recording boundaries', () => { @@ -530,6 +532,83 @@ describe('recording boundaries', () => { } }) + it('separates a stream listener that dies from a registry that dies before it', async () => { + const listened: unknown[] = [] + const mount = (client: RpcClient) => { + const dispose = client.subscribe(CLIENT_EVENTS, null, (result) => { + listened.push(result) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the assertion is the behaviour under test — a product listener asserts the frame shape and dies when a reply partition breaks it. + void (result as { type: string }).type + }) + return { action: () => {}, state: () => ({}), dispose } + } + const scenario = (reply: unknown): RecordingScenario => ({ + id: 'stream-crash', + operation: 'op', + version: 1, + family: 'op', + sites: [], + schedules: [], + steps: [{ frame: `${CLIENT_EVENTS}#1`, params: null, reply }, { checkpoint: 'delivered' }] + }) + const recording = await runRecording( + scenario({ ok: true, streaming: true, result: null }), + ({ client }) => mount(client), + vitestRecordingScheduler() + ) + expect(recording.checkpoints[0]!.observation.effects).toMatchObject([ + { name: 'stream-listener-crash', value: { frame: `${CLIENT_EVENTS}#1` } } + ]) + expect(listened).toEqual([null]) + + // A reply the registry cannot read at all: it throws reaching for `error.message` on its way to + // the listener, so nothing was delivered and there is no recording to keep. + listened.length = 0 + await expect( + runRecording( + scenario({ ok: false }), + ({ client }) => mount(client), + vitestRecordingScheduler() + ) + ).rejects.toThrow("Cannot read properties of undefined (reading 'message')") + expect(listened).toEqual([]) + }) + + it('aborts when the registry throws with nothing stashed, including a thrown undefined', async () => { + // `throw undefined` is the one registry failure that cannot be told from an empty stash by + // value alone, so the compare has to ask whether a listener crashed at all. + const handleResponse = RpcClientStreamRegistry.prototype.handleResponse + RpcClientStreamRegistry.prototype.handleResponse = () => { + throw undefined + } + try { + await expect( + runRecording( + { + id: 'registry-throws-undefined', + operation: 'op', + version: 1, + family: 'op', + sites: [], + schedules: [], + steps: [ + { frame: `${CLIENT_EVENTS}#1`, params: null, reply: { ok: true, streaming: true } }, + { checkpoint: 'delivered' } + ] + }, + ({ client }) => ({ + action: () => {}, + state: () => ({}), + dispose: client.subscribe(CLIENT_EVENTS, null, () => {}) + }), + vitestRecordingScheduler() + ) + ).rejects.toBeUndefined() + } finally { + RpcClientStreamRegistry.prototype.handleResponse = handleResponse + } + }) + it('files only a subscribe as an open stream, not the unsubscribe it publishes later', async () => { const clock = vitestRecordingScheduler() clock.start() diff --git a/mobile/src/test-support/rpc-recording/run-recording.ts b/mobile/src/test-support/rpc-recording/run-recording.ts index cfa5f0fcd0f..3111cdadec5 100644 --- a/mobile/src/test-support/rpc-recording/run-recording.ts +++ b/mobile/src/test-support/rpc-recording/run-recording.ts @@ -1,5 +1,6 @@ import { recordUnhandledRejections } from './unhandled-recording' import { + captureError, captureValue, observeSettlement, rejectedSettlement, @@ -68,7 +69,16 @@ export async function runRecording( transport.complete(step.complete, step.params, step.reply, step.reject) } } else if ('frame' in step) { - transport.frame(step.frame, step.params, step.reply) + const crash = transport.frame(step.frame, step.params, step.reply) + if (crash) { + // The listener died on this frame. Recorded rather than raised, the way a screen crash and + // a detached rejection are: what a malformed frame does to a subscription is an + // observation, and the transport still raises a scenario that stopped matching. + effect('stream-listener-crash', { + frame: step.frame, + error: captureError(crash.error) + }) + } } else if ('bind' in step) { if (!step.optional || transport.outstanding(step.request)) { transport.bind(step.bind, step.request, step.params) diff --git a/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts b/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts index 11fc7e44d01..2a4dbf6c0aa 100644 --- a/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts +++ b/mobile/src/test-support/rpc-recording/scripted-rpc-transport.ts @@ -12,6 +12,9 @@ import { } from './recording-values' import type { Rejection } from './recording-scenario' +/** What a product stream listener threw on one delivered frame. */ +type FrameListenerCrash = { readonly error: unknown } + /** The one device identity every recorded frame carries; nothing here reads a keychain. */ const DEVICE_TOKEN = 'recording-device' @@ -33,6 +36,7 @@ export class ScriptedRpcTransport { >() private activeName = '' private opening = false + private listenerCrash: FrameListenerCrash | null = null private frameCount = 0 private state: ConnectionState = 'connected' private listeners = new Set<(state: ConnectionState) => void>() @@ -124,7 +128,12 @@ export class ScriptedRpcTransport { subscribe: (method, params, onData, options) => { this.opening = true try { - return streams.subscribe(method, params, onData, options) + return streams.subscribe( + method, + params, + (result) => this.deliverToListener(onData, result), + options + ) } finally { this.opening = false } @@ -151,6 +160,27 @@ export class ScriptedRpcTransport { return `frame-${++this.frameCount}` } + /** + * The product's stream listener, wrapped so `frame` can tell a dead listener from a dead registry. + * The throw is stashed and rethrown unchanged: the registry has to see it the way a device's + * message handler does, so what it skips after a listener dies is recorded rather than invented. + */ + private deliverToListener(onData: (result: unknown) => void, result: unknown): void { + try { + onData(result) + } catch (error) { + this.listenerCrash = { error } + throw error + } + } + + /** Reads the stash through the declared type, which assigning it in `frame` would narrow away. */ + private takeListenerCrash(): FrameListenerCrash | null { + const crash = this.listenerCrash + this.listenerCrash = null + return crash + } + /** One occurrence counter per method, so a subscribe payload is named the way a request is. */ private occurrence(method: string): string { const next = (this.counts.get(method) ?? 0) + 1 @@ -168,8 +198,17 @@ export class ScriptedRpcTransport { /** * A whole host response delivered at a subscribe payload's wire id, through the real registry, so * `ready`, a data event, `end` and a refusal are one step kind rather than four. + * + * What the product listener threw is returned rather than thrown on, because the two failures a + * frame can produce have to stay apart. A missing payload, a params mismatch and a closed stream + * are the scenario no longer matching and stay loud. A listener that dies on a frame is the + * recording — the same rule the crash boundary holds for a screen, and without it the reply + * shapes that break a subscription are the only ones this oracle cannot see: only three + * listeners check the payload is an object before reading its `type` — the two + * `runtime.clientEvents` ones and the structured agent session's, which guards with + * `isSubscribeEvent` — so the absent-result and null-result partitions take every other one down. */ - frame(name: string, params: unknown, reply: unknown): void { + frame(name: string, params: unknown, reply: unknown): FrameListenerCrash | null { const stream = this.openStreams.get(name) if (!stream) { throw new Error(`Missing subscription payload: ${name}`) @@ -177,14 +216,31 @@ export class ScriptedRpcTransport { if (JSON.stringify(captureValue(stream.params)) !== JSON.stringify(captureValue(params))) { throw new Error(`Subscribe params mismatch: ${name}`) } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the scenario supplies the response as JSON; the wire id is the transport’s. - const routed = stream.deliver({ ...(reply as object), id: stream.id } as RpcResponse) + this.takeListenerCrash() + let routed = false + try { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the scenario supplies the response as JSON; the wire id is the transport’s. + routed = stream.deliver({ ...(reply as object), id: stream.id } as RpcResponse) + } catch (error) { + // Only the product listener's own throw is a recording; anything the registry raised on its + // way to the listener is the scenario no longer matching, and stays loud. + const crashed = this.takeListenerCrash() + if (!crashed || crashed.error !== error) { + throw error + } + return crashed + } + const crash = this.takeListenerCrash() + if (crash) { + return crash + } if (!routed) { // Only a non-streaming reply lands here: the registry routes every streaming response to the // id that opened the stream, retired or not. A scenario that has stopped matching, not a // stream that closed early. throw new Error(`No open stream for frame: ${name}`) } + return null } /** Whether a scripted name names a request that was sent and is still waiting for its reply. */ diff --git a/mobile/src/transport/rpc-subscription-boundary.test.ts b/mobile/src/transport/rpc-subscription-boundary.test.ts new file mode 100644 index 00000000000..2bc9239c613 --- /dev/null +++ b/mobile/src/transport/rpc-subscription-boundary.test.ts @@ -0,0 +1,195 @@ +import { readFileSync, readdirSync } from 'node:fs' +import { fileURLToPath } from 'node:url' +import { extname, join, relative, resolve } from 'node:path' +import ts from 'typescript' +import { describe, expect, it } from 'vitest' +import { readScenarios } from '../test-support/rpc-recording/scenario-input' +import { RPC_SUBSCRIPTION_SITES, type RpcSubscriptionSite } from './rpc-subscription-inventory' + +/** + * Makes the subscription inventory bind. + * + * Four failures, all of which mean "edit the list": + * - a file opens a stream and is not listed, + * - a listed file no longer opens one (stale entry — how allow-lists rot), + * - a listed file opens a different method than its entry claims, + * - a `recorded` entry names a family the scenario manifest does not have. + * + * The last one is what separates this from prose. A comment saying a stream is covered stays true + * forever; an entry that has to resolve against `pilot-scenarios.json` stops being true the moment + * the family is renamed or deleted. + * + * What this does NOT catch, all accepted: + * - A method that is not a string literal at the call site. `client.subscribe(method, …)` with a + * variable is invisible here, the same gap the raw-port ratchet accepts for a computed + * `sendRequest`. Every product site today spells its method. + * - Whether a `recorded` family's golden actually drives that file. `sites` in the manifest says + * so and no check ties the two together; that is one indirection further than this list is for. + * - Whether a wall is still real. A wall is prose by construction — it says why a recording + * cannot exist, and the only proof of the opposite is the recording. + * - `transport/` and `test-support/`, which implement and script the port rather than consuming + * it. A registry that forwards `subscribe` is not a call site. + */ + +const mobileRoot = fileURLToPath(new URL('../..', import.meta.url)) +const repoRoot = resolve(mobileRoot, '..') +const scannedRoots = ['app', 'src'].map((directory) => join(mobileRoot, directory)) +const sourceExtensions = new Set(['.js', '.jsx', '.ts', '.tsx']) +/** The port's own implementation and the oracle that scripts it. Neither consumes a stream. */ +const EXCLUDED_DIRECTORIES = ['src/transport/', 'src/test-support/'] + +function sourceFiles(directory: string): string[] { + return readdirSync(directory, { withFileTypes: true }).flatMap((entry) => { + const path = join(directory, entry.name) + if (entry.isDirectory()) { + return entry.name === 'node_modules' ? [] : sourceFiles(path) + } + return [path] + }) +} + +function parse(path: string, source: string): ts.SourceFile { + const extension = extname(path) + return ts.createSourceFile( + path, + source, + ts.ScriptTarget.Latest, + true, + extension === '.tsx' || extension === '.jsx' ? ts.ScriptKind.TSX : ts.ScriptKind.TS + ) +} + +/** Every method this file opens a stream on, in source order. */ +export function subscribedMethods(path: string, source: string): string[] { + const methods: string[] = [] + const visit = (node: ts.Node): void => { + if ( + ts.isCallExpression(node) && + ts.isPropertyAccessExpression(node.expression) && + node.expression.name.text === 'subscribe' + ) { + const [method] = node.arguments + if (method && ts.isStringLiteral(method)) { + methods.push(method.text) + } + } + ts.forEachChild(node, visit) + } + visit(parse(path, source)) + return methods +} + +const scanned = scannedRoots + .flatMap(sourceFiles) + .filter((path) => sourceExtensions.has(extname(path))) + .filter((path) => !/\.test\.tsx?$/.test(path)) + .map((path) => relative(mobileRoot, path).split(/[/\\]/).join('/')) + .filter((file) => !EXCLUDED_DIRECTORIES.some((directory) => file.startsWith(directory))) + +const observed = new Map( + scanned + .map( + (file) => + [ + file, + subscribedMethods(join(mobileRoot, file), readFileSync(join(mobileRoot, file), 'utf8')) + ] as const + ) + .filter(([, methods]) => methods.length > 0) +) + +const families = new Set( + readScenarios(join(repoRoot, 'mobile', 'rpc-foundation', 'pilot-scenarios.json')).scenarios.map( + (scenario) => scenario.family + ) +) + +function listedMethods(file: string): string[] { + return RPC_SUBSCRIPTION_SITES.filter((site) => site.file === file).map((site) => site.method) +} + +describe('RPC subscription boundary', () => { + const probe = join(mobileRoot, 'src', 'session', 'probe.ts') + + it('reads the method off each subscribe and ignores everything else', () => { + expect( + subscribedMethods(probe, "client.subscribe('terminal.subscribe', params, onData)") + ).toEqual(['terminal.subscribe']) + expect( + subscribedMethods(probe, "entry.client.subscribe('accounts.subscribe', null, cb)") + ).toEqual(['accounts.subscribe']) + expect( + subscribedMethods(probe, "a.subscribe('one', p, cb); b.subscribe('two', p, cb)") + ).toEqual(['one', 'two']) + // A store listener, not a host stream: the first argument is not a method. + expect(subscribedMethods(probe, 'connectionLogStore.subscribe(selectedId, listener)')).toEqual( + [] + ) + expect(subscribedMethods(probe, 'args.subscribe(handle)')).toEqual([]) + expect(subscribedMethods(probe, "await client.sendRequest('worktree.ps', {})")).toEqual([]) + expect( + subscribedMethods(probe, '// calls client.subscribe("x", p, cb) under the hood') + ).toEqual([]) + }) + + it('scans a plausible number of files', () => { + // A broken root or filter would make every check below vacuously pass. + expect(scanned.length).toBeGreaterThan(400) + expect(observed.size).toBeGreaterThan(5) + }) + + it('lists each file and method once', () => { + const seen = RPC_SUBSCRIPTION_SITES.map((site) => `${site.file}\0${site.method}`) + expect(seen.filter((key, index) => seen.indexOf(key) !== index)).toEqual([]) + }) + + it('has no unlisted file opening a stream', () => { + const unlisted = [...observed.keys()].filter((file) => listedMethods(file).length === 0) + expect( + unlisted, + 'A new subscription must be classified in rpc-subscription-inventory.ts: recorded, an unwritten scenario, or walled with the wall named.' + ).toEqual([]) + }) + + it('has no stale inventory entry', () => { + const stale = RPC_SUBSCRIPTION_SITES.filter((site) => !observed.has(site.file)).map( + (site) => site.file + ) + expect( + stale, + 'File no longer opens a stream — delete its line from rpc-subscription-inventory.ts.' + ).toEqual([]) + }) + + it('classifies every method each listed file opens', () => { + const mismatched = [...observed] + .filter(([file]) => listedMethods(file).length > 0) + .flatMap(([file, methods]) => { + const listed = [...listedMethods(file)].sort() + const found = [...new Set(methods)].sort() + return JSON.stringify(listed) === JSON.stringify(found) + ? [] + : [`${file}: listed ${listed.join(', ')}, found ${found.join(', ')}`] + }) + expect(mismatched, 'The method an entry names is what the file opens.').toEqual([]) + }) + + it('resolves every recorded family against the scenario manifest', () => { + const missing = RPC_SUBSCRIPTION_SITES.flatMap((site: RpcSubscriptionSite) => + site.coverage.kind === 'recorded' && !families.has(site.coverage.family) + ? [`${site.file}: no family ${site.coverage.family}`] + : [] + ) + expect( + missing, + 'A recorded entry must name a family in pilot-scenarios.json, or the claim is prose.' + ).toEqual([]) + }) + + it('names the wall on every walled entry', () => { + const unnamed = RPC_SUBSCRIPTION_SITES.flatMap((site) => + site.coverage.kind === 'walled' && site.coverage.wall.trim().length < 40 ? [site.file] : [] + ) + expect(unnamed, 'A wall has to say what it is; "not supported" is not a wall.').toEqual([]) + }) +}) diff --git a/mobile/src/transport/rpc-subscription-inventory.ts b/mobile/src/transport/rpc-subscription-inventory.ts new file mode 100644 index 00000000000..c1320c8f5c9 --- /dev/null +++ b/mobile/src/transport/rpc-subscription-inventory.ts @@ -0,0 +1,102 @@ +/** + * Every product call site that opens a host stream, and what the recording oracle can see of it. + * + * The raw-request-port inventory next door counts down to zero; this one does not. A subscribe is + * not something a typed operation replaces — `RpcOperation` fixes a method, an acceptance policy + * and a reader for one reply, and a stream has many. What this list is for is the other half of + * the same question: which of these streams is a golden actually holding, and for the ones it is + * not, what exactly stops it. Left as prose in a README that answer went stale twice, because + * nothing failed when a new `client.subscribe` appeared. + * + * So each site is classified, and `rpc-subscription-boundary.test.ts` makes the classification + * bind: a new site with no entry fails, an entry whose file no longer subscribes fails, an entry + * naming the wrong method fails, and a `recorded` entry whose family is not in the scenario + * manifest fails. A wall must name itself; "not recorded yet" and "cannot be recorded" are + * different claims and only one of them is a backlog item. + */ +export type RpcSubscriptionCoverage = + /** A golden holds this stream. `family` is a family in `pilot-scenarios.json`. */ + | { readonly kind: 'recorded'; readonly family: string } + /** The recorder could mount this site; nobody has written the scenario. A backlog item. */ + | { readonly kind: 'unwritten-scenario' } + /** Something structural stops a recording. Not a backlog item until the wall moves. */ + | { readonly kind: 'walled'; readonly wall: string } + +export type RpcSubscriptionSite = { + readonly file: string + readonly method: string + readonly coverage: RpcSubscriptionCoverage +} + +export const RPC_SUBSCRIPTION_SITES: readonly RpcSubscriptionSite[] = [ + // The account snapshot, opened twice. The home screen wires one per connected host; the host + // screen opens its own. Both decode the same snapshot, and neither is the wall — the loader + // reaches `decodeAccountsSnapshot` and it throws its own domain error on a bad one. + { + file: 'app/h/[hostId]/accounts.tsx', + method: 'accounts.subscribe', + coverage: { + kind: 'walled', + wall: 'The screen renders `react-native.ScrollView` and calls `react-native.Alert` to report a failed switch, neither a substituted member, so the mount trap refuses on the first render: `Unsubstituted native member: react-native.ScrollView`.' + } + }, + { + file: 'src/home/use-mobile-home-host-connections.ts', + method: 'accounts.subscribe', + coverage: { + kind: 'walled', + wall: 'Wired on a per-host client from `useAllHostClients`, and the runner hands an adapter one client rather than the multi-host context that hook reads.' + } + }, + // The browser tab's screencast. Frames are pixels, not JSON. + { + file: 'src/browser/use-mobile-browser-stream.ts', + method: 'browser.screencast', + coverage: { + kind: 'walled', + wall: 'Writes to a webview terminal/browser ref this runner has no substitute for, and a substitute that shaped what the stream delivered would be inventing the device.' + } + }, + { + file: 'src/notifications/mobile-notifications.ts', + method: 'notifications.subscribe', + coverage: { kind: 'recorded', family: 'notifications.desktop-stream' } + }, + { + file: 'src/session/mobile-terminal-stream-subscribe.ts', + method: 'terminal.subscribe', + coverage: { + kind: 'walled', + wall: 'Writes to a webview terminal ref this runner has no substitute for: the stream consumer calls `ref.init` and `dataRef.write`, so what a frame does is a device effect rather than an observation.' + } + }, + { + file: 'src/session/use-live-worktree-name.ts', + method: 'runtime.clientEvents.subscribe', + coverage: { kind: 'recorded', family: 'live-worktree-name' } + }, + { + file: 'src/session/use-mobile-native-chat-session.ts', + method: 'nativeChat.subscribe', + coverage: { kind: 'recorded', family: 'session.native-chat-page' } + }, + // The structured agent session's event stream. Mountable: its listener guards the payload, and + // the hold that precedes it is a plain request. What is missing is the scenario. + { + file: 'src/session/use-mobile-structured-agent-state.ts', + method: 'agentSession.subscribe', + coverage: { kind: 'unwritten-scenario' } + }, + // The session tab snapshot. Mountable behind the reconciliation controller the hook already + // takes; no device surface is involved. + { + file: 'src/session/use-mobile-session-tabs-reconciliation.ts', + method: 'session.tabs.subscribe', + coverage: { kind: 'unwritten-scenario' } + }, + { + file: 'src/worktree/host-worktree-refresh.ts', + method: 'runtime.clientEvents.subscribe', + coverage: { kind: 'recorded', family: 'host-worktree-refresh' } + } +] diff --git a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts index 90f62db5880..2f7db8804b0 100644 --- a/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts +++ b/mobile/src/transport/unvalidated-rpc-request-port-inventory.ts @@ -92,46 +92,36 @@ export const UNVALIDATED_RPC_REQUEST_PORT_PENDING: readonly UnvalidatedRpcReques // pinning a device input. { file: 'src/host-screen/host-screen-overlays.tsx', references: 1 }, - // src/notifications/ — push registration and delivery. Registration and unregistration migrated - // in step 4; see mobile-push-registration-operations.ts. Tray reconciliation followed once a - // scenario could declare the notification tray and the stored host list it resolves against; - // see push-dismissal-operations.ts. - // Holdout: the unsubscribe is a closure inside a `subscribe` callback, and subscriptions are a - // later step; the request-only recording runner refuses to open one. - { file: 'src/notifications/mobile-notifications.ts', references: 1 }, + // src/notifications/ — push registration and delivery. Nothing is left here. Registration and + // unregistration migrated in step 4; see mobile-push-registration-operations.ts. Tray + // reconciliation followed once a scenario could declare the notification tray and the stored host + // list it resolves against; see push-dismissal-operations.ts. The stream unsubscribe inside the + // `notifications.subscribe` callback migrated in step 6 once the recorder could script the + // `ready` frame that hands it a subscription id; see desktop-notification-stream-operations.ts. // src/session/ — session screen: chat, diff review, PR actions, tabs. The github.* PR surface, // the diff-review loaders and the rest of the screen migrated in step 4; see // mobile-session-{read,write,launch}-operations.ts, mobile-clipboard-image-operations.ts and // mobile-diff-review-git-operations.ts. The terminal input surface followed: the composed send, - // the live keystroke send and the clipboard paste all send through terminal.input-send in - // terminal/mobile-terminal-operations.ts, and the accessory's connection lookup reads the repo - // list through the new-tab operation. Every holdout below opens or rides a subscription or takes its - // method as a parameter, except the gesture-input file, which this PR simply did not cover. + // the live keystroke send, the clipboard paste and — in step 6 — the gesture flush all send + // through terminal.input-send in terminal/mobile-terminal-operations.ts, the menu's clear goes + // through terminal.clear-buffer-or-skip beside it, and the accessory's connection lookup reads + // the repo list through the new-tab operation. Step 6 also took the two requests that share an + // effect with a subscribe: the header's live title (worktree.show-record-or-skip) and native + // chat's older-history page (nativeChat.read-session-page-or-skip), both in + // mobile-session-read-operations.ts. Every holdout below opens or rides a subscription the + // recorder has no substitute for, or takes its method as a parameter. // Holdout: the method is a parameter. `callAgentSession` takes a method string and a generic // result type, and five call sites across two hooks pass their own, plus one inside this module's // own mutation wrapper; an operation fixes the method at definition time, so migrating it is a // restructure of those callers rather than of this send. { file: 'src/session/mobile-structured-agent-session-rpc.ts', references: 1 }, - // Holdout: unrecorded site, record-first rule. `worktree.show` here sits inside the same focus - // effect as a `runtime.clientEvents` subscription, and the request-only recording runner refuses - // to open one, so no golden can hold this file's behaviour. - { file: 'src/session/use-live-worktree-name.ts', references: 1 }, - // Holdout: unrecorded site, record-first rule. The `nativeChat.readSession` read lives in the - // paging callback, not in an effect, but only the mount effect's `nativeChat.subscribe` arms the - // offset and generation it pages against — and the request-only runner refuses to open one. - { file: 'src/session/use-mobile-native-chat-session.ts', references: 1 }, // Holdout: unrecorded site, record-first rule. The startup effect drives 36 members of the // session model including the terminal subscription lifecycle, which is a later step. { file: 'src/session/use-mobile-session-startup.ts', references: 2 }, // Holdout: unrecorded site, record-first rule. The create path subscribes to the terminal it // makes, and the request-only runner refuses the subscription. { file: 'src/session/use-mobile-session-terminal-create-actions.ts', references: 2 }, - // Holdout: scope only, no recorder gap. The gesture flush reads refs (client, connection state, - // PTY modes, the gesture buckets, active handle and tab type), and the clear-buffer ref optional- - // chains the webview, so a mount with a null terminal ref records both sends. These 2 refs are - // migratable as they stand; they were out of this PR's bucket. - { file: 'src/session/use-mobile-session-terminal-input.ts', references: 2 }, // Holdout: unrecorded site, record-first rule. The display-mode write is gated on an open // terminal subscription, which is a later step. { file: 'src/session/use-mobile-session-terminal-stream-display.ts', references: 1 }, From c702e77bc7fc9645dde414f05fbce20897ef5fc6 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 23:38:04 -0700 Subject: [PATCH 21/28] Stop reading the terminal arguments field on the structured chat route (#20944) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(native-chat): stop reading the terminal arguments field on the structured chat route Setting Claude's Arguments to "--dangerously-skip-permissions --model Opus" made every new Claude tab open in the old terminal-backed chat instead of the new structured one, with nothing on screen to explain why. Removing "--model Opus" fixed it. The cause was a whole-string comparison: the configured arguments were checked against a single blessed value per agent, so any added token at all — including one the agent supports — stopped the string matching and the launch was demoted. Structured chat does not run the interactive CLI. It drives Claude through the Agent SDK and Codex through app-server, and those take narrower option sets that are versioned separately from the CLI's, so one free-text field cannot have a guaranteed meaning for all three. The structured route now reads only what it can actually honour: a replaced launch command, or a launch that names its own working directory. Terminal launches still apply the field exactly as before. Permission posture no longer travels as a raw flag. It is derived from the resolved launch arguments, which is the same fact a terminal launch acts on and which falls back to the default Orca ships when the field was never touched, so bypass stays on by default and Manual is still honoured. Claude gets the SDK's typed permissionMode and allowDangerouslySkipPermissions at query start; Codex gets its bypass flag placed before the app-server subcommand. Both are re-derived per acquisition beside the auth policy and environment overlay rather than stored in the session record, so nothing can disagree with the setting. Codex also loses the --profile, --add-dir and -c passthrough that reached app-server through that field. Only the permission posture comes back. * test(native-chat): pin routing authority on the narrowed feasibility input The routing-authority pin still named the old bundled blocker and built its "customized" fixture out of the arguments field, which is no longer a feasibility input. Both are now the launch command, and arguments and environment are customized on both passes of the loop, so the flag handed to the shared resolver tracks the command alone — a caller that resumed reading either one fails here. No case is dropped and no assertion is relaxed: the blocker list is still exhaustive and every caller must still honour a refusal from the shared resolver. --- src/main/agent-launch/agent-launch-mode.ts | 14 ++- .../claude-agent-sdk-contract-pins.test.ts | 25 ++++-- ...laude-structured-launch-resolution.test.ts | 83 +++++++++++------- .../claude-structured-launch-resolution.ts | 67 +++++---------- .../claude-structured-permission-mode.test.ts | 45 ++++++++++ .../claude-structured-permission-mode.ts | 23 +++++ .../codex-structured-app-server-args.test.ts | 32 ------- .../codex/codex-structured-app-server-args.ts | 84 ------------------ ...codex-structured-launch-resolution.test.ts | 41 ++++++--- .../codex-structured-launch-resolution.ts | 7 +- .../codex-structured-permission-mode.test.ts | 46 ++++++++++ .../codex/codex-structured-permission-mode.ts | 21 +++++ .../runtime/orca-runtime-get-worktree-ps.ts | 59 ++----------- ...ructured-agent-session-launch-args.test.ts | 86 ------------------- .../orchestration-worker-start-mode.test.ts | 2 +- ...ation-worker-start-receipt-wording.test.ts | 10 +-- .../structured-agent-session-runtime.ts | 11 +++ .../structured-claude-runtime-adapter.ts | 6 ++ .../folder-workspace-composer-submit.ts | 1 - .../src/lib/agent-launch-route-input.test.ts | 26 +++++- .../src/lib/agent-launch-route-input.ts | 13 ++- .../src/lib/agent-launch-routing.test.ts | 24 ++---- src/renderer/src/lib/agent-launch-routing.ts | 10 +-- .../src/lib/launch-agent-in-new-tab.ts | 2 +- ...unch-work-item-direct-route-preparation.ts | 1 - ...tructured-native-chat-launch-route.test.ts | 15 ++-- .../structured-native-chat-launch-route.ts | 11 ++- .../tui-agent-launch-command-override.ts | 21 +++++ src/shared/tui-agent-launch-customization.ts | 43 ---------- src/shared/tui-agent-launch-defaults.test.ts | 45 ++++++++++ src/shared/tui-agent-launch-defaults.ts | 29 +++++++ src/shared/tui-agent-startup.test.ts | 18 ++++ ...native-chat-routing-authority.unit.test.ts | 23 ++--- 33 files changed, 477 insertions(+), 467 deletions(-) create mode 100644 src/main/claude/claude-structured-permission-mode.test.ts create mode 100644 src/main/claude/claude-structured-permission-mode.ts delete mode 100644 src/main/codex/codex-structured-app-server-args.test.ts delete mode 100644 src/main/codex/codex-structured-app-server-args.ts create mode 100644 src/main/codex/codex-structured-permission-mode.test.ts create mode 100644 src/main/codex/codex-structured-permission-mode.ts delete mode 100644 src/main/runtime/orca-runtime-structured-agent-session-launch-args.test.ts create mode 100644 src/shared/tui-agent-launch-command-override.ts delete mode 100644 src/shared/tui-agent-launch-customization.ts create mode 100644 src/shared/tui-agent-launch-defaults.test.ts diff --git a/src/main/agent-launch/agent-launch-mode.ts b/src/main/agent-launch/agent-launch-mode.ts index 8180c075e17..2add36df4e6 100644 --- a/src/main/agent-launch/agent-launch-mode.ts +++ b/src/main/agent-launch/agent-launch-mode.ts @@ -26,7 +26,7 @@ import { type StructuredNativeChatBlocker } from '../../shared/structured-native-chat-launch-route' import type { TuiAgent } from '../../shared/tui-agent' -import { hasExplicitTuiLaunchCustomization } from '../../shared/tui-agent-launch-customization' +import { hasExplicitTuiLaunchCommand } from '../../shared/tui-agent-launch-command-override' import type { OrcaRuntimeService } from '../runtime/orca-runtime' export type AgentLaunchMode = 'structured' | 'terminal' @@ -36,7 +36,7 @@ export type AgentLaunchModeReason = | 'remote_execution_host' | 'reused_terminal' | 'agent_without_structured_session' - | 'tui_launch_customization' + | 'tui_launch_command' | 'structured_sessions_unavailable' | 'structured_support_unknown' | 'wsl_execution_runtime' @@ -71,8 +71,7 @@ export const DEFAULT_LAUNCH_VOCABULARY: AgentLaunchModeVocabulary = { } export type AgentLaunchModeSettings = Partial< - NativeChatDefaultSettings & - Pick + NativeChatDefaultSettings & Pick > /** The placement facts the decision reads. `worktree`, `model` and `effort` are deliberately not @@ -89,8 +88,7 @@ const DOWNGRADE_DETAIL: Record, s remote_execution_host: 'this launch runs on a remote execution host', reused_terminal: 'it reuses a running terminal agent', agent_without_structured_session: 'this agent has no structured session', - tui_launch_customization: - 'this agent has a custom launch command, arguments or environment that only a terminal applies', + tui_launch_command: 'this agent has a custom launch command that only a terminal runs', structured_sessions_unavailable: 'this runtime does not support structured agent sessions', structured_support_unknown: 'the execution host has not established structured session support', wsl_execution_runtime: 'this workspace runs under WSL', @@ -105,7 +103,7 @@ const BLOCKER_REASON: Record< 'reused-terminal': 'reused_terminal', 'agent-without-structured-session': 'agent_without_structured_session', 'floating-workspace': 'structured_unsupported_on_host', - 'tui-launch-customization': 'tui_launch_customization', + 'tui-launch-command': 'tui_launch_command', 'remote-execution-host': 'remote_execution_host', 'project-runtime': 'wsl_execution_runtime', 'runtime-capability': 'structured_sessions_unavailable', @@ -151,7 +149,7 @@ export function decideAgentLaunchMode(args: { // A resolved managed worktree or folder workspace is never a floating terminal. WSL is left to // the executing host's own create-support probe, which reads the resolved workspace rather // than guessing from a client-side project runtime. - requiresTuiLaunchCustomization: hasExplicitTuiLaunchCustomization(settings, agent) + requiresTuiLaunchCommand: hasExplicitTuiLaunchCommand(settings, agent) }) if (!support.supported) { return downgraded(BLOCKER_REASON[support.blocker], vocabulary) diff --git a/src/main/claude/claude-agent-sdk-contract-pins.test.ts b/src/main/claude/claude-agent-sdk-contract-pins.test.ts index 46bcb7219d3..e5456ecf4b9 100644 --- a/src/main/claude/claude-agent-sdk-contract-pins.test.ts +++ b/src/main/claude/claude-agent-sdk-contract-pins.test.ts @@ -6,6 +6,7 @@ import { query, type CanUseTool, type Options, + type PermissionMode, type SDKUserMessage, type SpawnedProcess as SdkSpawnedProcess, type SpawnOptions as SdkSpawnOptions @@ -143,7 +144,7 @@ function recordingSpawner(spawns: SpawnSeen[]) { } } -function resolvedLaunch(launchArgs: string[]) { +function resolvedLaunch(permissionMode: PermissionMode, launchArgs: string[] = []) { const record = { sessionId: 'contract-pin-session', provider: 'claude', @@ -161,7 +162,8 @@ function resolvedLaunch(launchArgs: string[]) { store: { getRecord: () => record } as unknown as AgentSessionRecordStore, resolveWorkspacePath: async () => '/repos/workspace-1', resolveCommand: () => FAKE_CLI, - resolveAuthPolicy: () => ({ stripAuthEnv: true }) + resolveAuthPolicy: () => ({ stripAuthEnv: true }), + resolvePermissionMode: () => permissionMode })({ identity: { sessionId: record.sessionId } as never }) } @@ -338,9 +340,9 @@ describe('Claude Agent SDK contract pins', () => { it('produces a matching CLI flag for every pre-SDK argv entry', async () => { const scenario = scriptScenario([{ awaitUserMessage: true }, { emit: RESULT_FRAME }]) const spawns: SpawnSeen[] = [] - // Driven by the real resolver, so the argv walk covers the durable-launchArgs - // translation and its merge order, not a hand-written options literal. - const launch = await resolvedLaunch(['--model', 'claude-sonnet-4-5', '--effort', 'high']) + // Driven by the real resolver, so the argv walk covers its option set and merge order, + // not a hand-written options literal. + const launch = await resolvedLaunch('bypassPermissions', ['--model', 'claude-sonnet-4-5']) await drainQuery({ ...launch.options, pathToClaudeCodeExecutable: FAKE_CLI, @@ -352,15 +354,20 @@ describe('Claude Agent SDK contract pins', () => { expect(spawns).toHaveLength(1) const argv = normalizeArgv(spawns[0]!.args) - // Typed-first translation must not also spell the flag through extraArgs. - for (const flag of ['--model', '--effort']) { + // Agent Permissions reaches the child as the SDK's own typed pair, spelled exactly once each. + // `--allow-dangerously-skip-permissions` is what the SDK emits for the allow flag; the CLI + // refuses `bypassPermissions` without it, so a rename upstream must fail here rather than + // silently return a Yolo user to permission prompts. + for (const flag of ['--permission-mode', '--allow-dangerously-skip-permissions']) { expect( argv.filter((arg) => arg === flag), `${flag} occurrences` ).toHaveLength(1) } - expect(argv[argv.indexOf('--model') + 1]).toBe('claude-sonnet-4-5') - expect(argv[argv.indexOf('--effort') + 1]).toBe('high') + expect(argv[argv.indexOf('--permission-mode') + 1]).toBe('bypassPermissions') + // Configured CLI arguments are a terminal concern; a record written before they stopped + // being read must not smuggle one back into the child's argv. + expect(argv).not.toContain('--model') // Headless print mode is the SDK's only mode; `query()` never passes `-p`, // and if the SDK ever started passing it this pin would notice. const impliedByHeadlessQuery = new Set(['-p']) diff --git a/src/main/claude/claude-structured-launch-resolution.test.ts b/src/main/claude/claude-structured-launch-resolution.test.ts index 650947cffa1..e3822aa4b45 100644 --- a/src/main/claude/claude-structured-launch-resolution.test.ts +++ b/src/main/claude/claude-structured-launch-resolution.test.ts @@ -11,10 +11,10 @@ import type { ClaudeManagedAccountGateSettings } from '../native-chat/claude-str import { CLAUDE_DEFAULT_SETTING_SOURCES, CLAUDE_STRUCTURED_BASE_OPTIONS, - claudeSdkOptionsForLaunchArgs, claudeSessionIdForOrcaSession, createClaudeStructuredLaunchResolver } from './claude-structured-launch-resolution' +import { claudeStructuredPermissionModeForSettings } from './claude-structured-permission-mode' const SESSION_ID = 'orca-session-1' const IDENTITY = { sessionId: SESSION_ID } as Parameters< @@ -55,13 +55,16 @@ function makeExecutable(path: string): void { function resolverFor( value: AgentSessionRecord | null, resolveEnv?: () => Record, - stripAuthEnv = false + stripAuthEnv = false, + // Manual by default so a test that is not about permissions is not silently about them. + agentDefaultArgs: Record = { claude: '' } ) { return createClaudeStructuredLaunchResolver({ store: { getRecord: () => value } as unknown as AgentSessionRecordStore, resolveWorkspacePath: async (id) => `/repos/${id}`, resolveCommand: () => '/usr/local/bin/claude', resolveAuthPolicy: () => ({ stripAuthEnv }), + resolvePermissionMode: () => claudeStructuredPermissionModeForSettings({ agentDefaultArgs }), ...(resolveEnv ? { resolveEnv } : {}) }) } @@ -119,6 +122,7 @@ describe('claude structured launch resolution', () => { supportedDialogKinds: [], extraArgs: { 'replay-user-messages': null }, systemPrompt: { type: 'preset', preset: 'claude_code' }, + permissionMode: 'default', sessionId: first.providerSessionId }) expect(first.options.resume).toBeUndefined() @@ -190,42 +194,55 @@ describe('claude structured launch resolution', () => { expect(launch.options.resumeSessionAt).toBeUndefined() }) - it('preserves durable Claude launch arguments as typed options and extraArgs', async () => { + // Agent Permissions is stored as the bypass flag inside the launch arguments, so presence of + // that flag — not the whole string — is what Yolo means, exactly as a terminal launch reads it. + it.each([ + ['--dangerously-skip-permissions'], + ['--dangerously-skip-permissions --model Opus'], + ['--model Opus --dangerously-skip-permissions'] + ])('starts a Yolo session in bypassPermissions for args %s', async (claude) => { + const launch = await resolverFor(record(), undefined, false, { claude })({ identity: IDENTITY }) + + expect(launch.options.permissionMode).toBe('bypassPermissions') + // The SDK refuses bypassPermissions unless the allow flag rides with it. + expect(launch.options.allowDangerouslySkipPermissions).toBe(true) + }) + + // The common profile: the toggle has never been used, so it has written nothing, and the + // default for the key it did not write is the bypass flag — the posture the terminal has + // always given these users. + it('starts a session that never opened Agent settings in bypassPermissions', async () => { + const launch = await resolverFor(record(), undefined, false, {})({ identity: IDENTITY }) + + expect(launch.options.permissionMode).toBe('bypassPermissions') + expect(launch.options.allowDangerouslySkipPermissions).toBe(true) + }) + + // Manual is stored as an empty string, which owns the key and so beats the shipped default. + it.each([[''], ['--model Opus']])( + 'leaves a Manual session prompting for args %s', + async (claude) => { + const launch = await resolverFor(record(), undefined, false, { claude })({ + identity: IDENTITY + }) + + expect(launch.options.permissionMode).toBe('default') + expect(launch.options.allowDangerouslySkipPermissions).toBeUndefined() + } + ) + + // The configured CLI arguments are a terminal concern: a durable record written before they + // stopped being read must not smuggle one back into the child. + it("ignores the record's durable launch arguments", async () => { const launch = await resolverFor( record({ - launchArgs: [ - '--model', - 'claude-sonnet-4-5', - '--effort', - 'high', - '--dangerously-skip-permissions' - ] + launchArgs: ['--model', 'claude-sonnet-4-5', '--dangerously-skip-permissions'] }) )({ identity: IDENTITY }) - expect(launch.options.model).toBe('claude-sonnet-4-5') - expect(launch.options.effort).toBe('high') - expect(launch.options.extraArgs).toEqual({ - 'dangerously-skip-permissions': null, - 'replay-user-messages': null - }) - }) - - it('routes durable launch arguments to a typed option first and refuses what neither can carry', () => { - // The catalog's own output: each flag lands in exactly one place, so the SDK - // cannot emit it twice with two different values. - expect(claudeSdkOptionsForLaunchArgs(['--model', 'opus', '--effort', 'xhigh'])).toEqual({ - model: 'opus', - effort: 'xhigh' - }) - // An effort the SDK's union does not name still reaches the CLI, unchanged. - expect(claudeSdkOptionsForLaunchArgs(['--effort', 'ultra'])).toEqual({ - extraArgs: { effort: 'ultra' } - }) - expect(claudeSdkOptionsForLaunchArgs(['--settings=/tmp/s.json'])).toEqual({ - extraArgs: { settings: '/tmp/s.json' } - }) - expect(() => claudeSdkOptionsForLaunchArgs(['-m', 'opus'])).toThrow(/no SDK option/) + expect(launch.options.model).toBeUndefined() + expect(launch.options.extraArgs).toEqual({ 'replay-user-messages': null }) + expect(launch.options.permissionMode).toBe('default') }) it('keeps the session launch environment pinned after account settings change', async () => { diff --git a/src/main/claude/claude-structured-launch-resolution.ts b/src/main/claude/claude-structured-launch-resolution.ts index 667ebfb8ddd..b157589637e 100644 --- a/src/main/claude/claude-structured-launch-resolution.ts +++ b/src/main/claude/claude-structured-launch-resolution.ts @@ -1,5 +1,8 @@ import { createHash } from 'node:crypto' -import type { EffortLevel, Options as ClaudeAgentSdkOptions } from '@anthropic-ai/claude-agent-sdk' +import type { + Options as ClaudeAgentSdkOptions, + PermissionMode +} from '@anthropic-ai/claude-agent-sdk' import type { AgentSessionJournalIdentity } from '../../shared/agent-session-journal-types' import { agentSessionProviderHandleChainHead } from '../../shared/agent-session-provider-handle' import { LOCAL_EXECUTION_HOST_ID } from '../../shared/execution-host' @@ -35,6 +38,8 @@ export type ClaudeStructuredSdkOptions = Pick< | 'extraArgs' | 'model' | 'effort' + | 'permissionMode' + | 'allowDangerouslySkipPermissions' | 'sessionId' | 'resume' | 'resumeSessionAt' @@ -58,8 +63,6 @@ export const CLAUDE_STRUCTURED_BASE_OPTIONS: ClaudeStructuredSdkOptions = { extraArgs: { 'replay-user-messages': null } } -const EFFORT_LEVELS: readonly string[] = ['low', 'medium', 'high', 'xhigh', 'max'] - function cloneDefinedEnv(env: NodeJS.ProcessEnv | Record): Record { const next: Record = {} for (const [key, value] of Object.entries(env)) { @@ -71,47 +74,18 @@ function cloneDefinedEnv(env: NodeJS.ProcessEnv | Record): Recor } /** - * Translate the record's durable launch arguments into SDK options. + * Agent Permissions as query-start options. * - * Typed option first so a flag is never emitted twice; `extraArgs` carries - * anything without one. A token expressible neither way is refused rather than - * dropped — a silent drop is how this lane loses launch flags. + * The SDK refuses `bypassPermissions` unless the allow flag rides with it, so the two are built + * here together and never emitted apart. The prompting mode is stated rather than left out: the + * SDK fills an absent mode with `default` anyway, and saying so keeps the launch readable. */ -export function claudeSdkOptionsForLaunchArgs( - args: readonly string[] -): Pick { - let model: string | undefined - let effort: EffortLevel | undefined - const extraArgs: Record = {} - for (let index = 0; index < args.length; index += 1) { - const token = args[index] ?? '' - if (!token.startsWith('--') || token.length <= 2) { - throw new Error( - `claude launch argument ${token} has no SDK option; refusing rather than dropping it` - ) - } - const equals = token.indexOf('=') - const flag = equals === -1 ? token : token.slice(0, equals) - let value = equals === -1 ? null : token.slice(equals + 1) - if (value === null) { - const next = args[index + 1] - if (next !== undefined && !next.startsWith('-')) { - value = next - index += 1 - } - } - if (flag === '--model' && value !== null) { - model = value - } else if (flag === '--effort' && value !== null && EFFORT_LEVELS.includes(value)) { - effort = value as EffortLevel - } else { - extraArgs[flag.slice(2)] = value - } - } +export function claudeStructuredPermissionOptions( + mode: PermissionMode +): Pick { return { - ...(model === undefined ? {} : { model }), - ...(effort === undefined ? {} : { effort }), - ...(Object.keys(extraArgs).length > 0 ? { extraArgs } : {}) + permissionMode: mode, + ...(mode === 'bypassPermissions' ? { allowDangerouslySkipPermissions: true } : {}) } } @@ -142,6 +116,8 @@ export type ClaudeStructuredLaunchResolverDeps = { * inherit a guess. Build it with claudeStructuredAuthPolicyForSettings. */ resolveAuthPolicy: () => Promise | ClaudeStructuredAuthPolicy + /** The user's Agent Permissions setting, re-read per acquisition. Absent means prompting. */ + resolvePermissionMode?: () => Promise | PermissionMode /** How long an in-flight account switch may hold a launch before it is refused. */ authSwitchSettleTimeoutMs?: number /** Account state for the managed-account gate; null when it cannot be read, which refuses. */ @@ -219,7 +195,11 @@ export function createClaudeStructuredLaunchResolver( head?.handle.provider === 'claude' ? head.handle.sessionId : claudeSessionIdForOrcaSession(identity.sessionId) - const durable = claudeSdkOptionsForLaunchArgs(record.launchArgs ?? []) + // `record.launchArgs` is deliberately not read: the configured CLI arguments are a terminal + // concern, and the permission mode they used to smuggle in is a typed option now. + const permission = claudeStructuredPermissionOptions( + (await deps.resolvePermissionMode?.()) ?? 'default' + ) const command = (deps.resolveCommand ?? resolveClaudeCommand)() const auth = await deps.resolveAuthPolicy() const overlay = await deps.resolveEnv?.() @@ -256,9 +236,8 @@ export function createClaudeStructuredLaunchResolver( return { pathToClaudeCodeExecutable: command, options: { - ...durable, ...CLAUDE_STRUCTURED_BASE_OPTIONS, - extraArgs: { ...durable.extraArgs, ...CLAUDE_STRUCTURED_BASE_OPTIONS.extraArgs }, + ...permission, ...(head?.handle.provider === 'claude' ? { resume: providerSessionId, diff --git a/src/main/claude/claude-structured-permission-mode.test.ts b/src/main/claude/claude-structured-permission-mode.test.ts new file mode 100644 index 00000000000..c09df8f5e05 --- /dev/null +++ b/src/main/claude/claude-structured-permission-mode.test.ts @@ -0,0 +1,45 @@ +import { describe, expect, it } from 'vitest' +import { claudeStructuredPermissionModeForSettings } from './claude-structured-permission-mode' + +describe('claudeStructuredPermissionModeForSettings', () => { + // The three states the Agent Permissions toggle can leave behind. The untouched case is the + // common one and the easiest to get wrong: the toggle writes nothing until it is used, and the + // default Orca ships for the key it did not write is the bypass flag — which is what a terminal + // launch has always applied to an untouched profile. + it('bypasses when the user has never opened Agent settings', () => { + expect(claudeStructuredPermissionModeForSettings({ agentDefaultArgs: {} })).toBe( + 'bypassPermissions' + ) + expect(claudeStructuredPermissionModeForSettings({})).toBe('bypassPermissions') + expect(claudeStructuredPermissionModeForSettings(null)).toBe('bypassPermissions') + expect(claudeStructuredPermissionModeForSettings({ agentDefaultArgs: { codex: '' } })).toBe( + 'bypassPermissions' + ) + }) + + it('bypasses when Yolo wrote the flag, alone or beside other tokens', () => { + for (const claude of [ + '--dangerously-skip-permissions', + '--dangerously-skip-permissions --model Opus', + '--model Opus --dangerously-skip-permissions' + ]) { + expect( + claudeStructuredPermissionModeForSettings({ agentDefaultArgs: { claude } }), + claude + ).toBe('bypassPermissions') + } + }) + + // Manual is stored as an empty string, which owns the key and so beats the shipped default. + it('prompts when Manual cleared the flag', () => { + expect(claudeStructuredPermissionModeForSettings({ agentDefaultArgs: { claude: '' } })).toBe( + 'default' + ) + }) + + it('prompts when the user replaced the flag with something else', () => { + expect( + claudeStructuredPermissionModeForSettings({ agentDefaultArgs: { claude: '--model Opus' } }) + ).toBe('default') + }) +}) diff --git a/src/main/claude/claude-structured-permission-mode.ts b/src/main/claude/claude-structured-permission-mode.ts new file mode 100644 index 00000000000..39161b50cf4 --- /dev/null +++ b/src/main/claude/claude-structured-permission-mode.ts @@ -0,0 +1,23 @@ +import type { PermissionMode } from '@anthropic-ai/claude-agent-sdk' +import type { GlobalSettings } from '../../shared/global-settings-types' +import { resolvedTuiAgentArgsBypassPermissions } from '../../shared/tui-agent-launch-defaults' + +/** + * The Agent Permissions setting as the SDK's own permission mode. + * + * Read per acquisition — like the environment overlay and the auth policy beside it — rather than + * latched into the session record: the setting is the one copy of this fact, so nothing can + * disagree with it and a failed restore cannot silently downgrade a session to prompting. + * + * Yolo still stores itself as the agent's bypass flag inside the launch arguments, which is also + * what a terminal launch acts on, so presence of that flag is the fact to read — resolved through + * the same default fallback the terminal uses, which is why an untouched profile bypasses. The + * rest of the arguments string is a terminal concern this path does not interpret. + */ +export function claudeStructuredPermissionModeForSettings( + settings: Partial> | null | undefined +): PermissionMode { + return resolvedTuiAgentArgsBypassPermissions('claude', settings?.agentDefaultArgs) + ? 'bypassPermissions' + : 'default' +} diff --git a/src/main/codex/codex-structured-app-server-args.test.ts b/src/main/codex/codex-structured-app-server-args.test.ts deleted file mode 100644 index f76305cf7c1..00000000000 --- a/src/main/codex/codex-structured-app-server-args.test.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { resolveCodexStructuredAppServerArgs } from './codex-structured-app-server-args' - -describe('structured Codex app-server arguments', () => { - it('keeps configuration flags and converts effort to the app-server config contract', () => { - expect( - resolveCodexStructuredAppServerArgs( - '--profile review -c approval_policy=never --model gpt-5.6 --effort high --search', - 'posix' - ) - ).toEqual([ - '--profile', - 'review', - '-c', - 'approval_policy=never', - '--model', - 'gpt-5.6', - '-c', - 'model_reasoning_effort=high', - '--search' - ]) - }) - - it.each(['--no-alt-screen', '--remote ws://host', '-C /tmp/elsewhere', 'resume thread-1'])( - 'reports an incompatible configured argument instead of dropping %s', - (configured) => { - expect(() => resolveCodexStructuredAppServerArgs(configured, 'posix')).toThrow( - /cannot apply the configured CLI arguments.*Settings or use terminal view/ - ) - } - ) -}) diff --git a/src/main/codex/codex-structured-app-server-args.ts b/src/main/codex/codex-structured-app-server-args.ts deleted file mode 100644 index af83c46c8a2..00000000000 --- a/src/main/codex/codex-structured-app-server-args.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { - tokenizeStartupCommand, - type AgentStartupShell -} from '../../shared/tui-agent-startup-shell' - -const VALUE_FLAGS = new Set([ - '-a', - '--add-dir', - '--ask-for-approval', - '-c', - '--config', - '--disable', - '--effort', - '--enable', - '--local-provider', - '-m', - '--model', - '-p', - '--profile', - '--reasoning-effort', - '-s', - '--sandbox' -]) - -const BOOLEAN_FLAGS = new Set([ - '--approve-for-me', - '--dangerously-bypass-approvals-and-sandbox', - '--dangerously-bypass-hook-trust', - '--oss', - '--search', - '--strict-config' -]) - -const EFFORT_FLAGS = new Set(['--effort', '--reasoning-effort']) - -function configuredArgsError(detail: string): Error { - return new Error( - `Structured Codex chat cannot apply the configured CLI arguments to app-server: ${detail}. Update Codex CLI arguments in Settings or use terminal view.` - ) -} - -function splitOption(token: string): { flag: string; inlineValue?: string } { - const separator = token.indexOf('=') - return separator > 0 - ? { flag: token.slice(0, separator), inlineValue: token.slice(separator + 1) } - : { flag: token } -} - -/** Keeps config-affecting Codex flags and refuses every TUI-only or unknown token visibly. */ -export function resolveCodexStructuredAppServerArgs( - configuredArgs: string, - shell: AgentStartupShell -): string[] { - const parsed = tokenizeStartupCommand(configuredArgs.trim(), shell) - if (!parsed.ok) { - throw configuredArgsError(parsed.error) - } - const divergent = parsed.spans.find((span) => span.divergesFromShell) - if (divergent) { - throw configuredArgsError(configuredArgs.slice(divergent.start, divergent.end)) - } - const result: string[] = [] - for (let index = 0; index < parsed.tokens.length; index += 1) { - const token = parsed.tokens[index] - const { flag, inlineValue } = splitOption(token) - if (BOOLEAN_FLAGS.has(flag) && inlineValue === undefined) { - result.push(flag) - continue - } - if (!VALUE_FLAGS.has(flag)) { - throw configuredArgsError(token || 'an empty positional argument') - } - const value = inlineValue ?? parsed.tokens[++index] - if (value === undefined || value.length === 0) { - throw configuredArgsError(`${flag} requires a value`) - } - if (EFFORT_FLAGS.has(flag)) { - result.push('-c', `model_reasoning_effort=${value}`) - } else { - result.push(flag, value) - } - } - return result -} diff --git a/src/main/codex/codex-structured-launch-resolution.test.ts b/src/main/codex/codex-structured-launch-resolution.test.ts index de83e74c6c8..6b5bb958d4c 100644 --- a/src/main/codex/codex-structured-launch-resolution.test.ts +++ b/src/main/codex/codex-structured-launch-resolution.test.ts @@ -3,6 +3,7 @@ import type { AgentSessionRecord } from '../../shared/agent-session-record' import { LOCAL_EXECUTION_HOST_ID } from '../../shared/execution-host' import type { AgentSessionRecordStore } from '../runtime/agent-session-record-store' import { createCodexStructuredLaunchResolver } from './codex-structured-launch-resolution' +import { codexStructuredPermissionArgsForSettings } from './codex-structured-permission-mode' const SESSION_ID = 'session-1' const IDENTITY = { sessionId: SESSION_ID } as Parameters< @@ -38,14 +39,16 @@ function record(overrides: Partial = {}): AgentSessionRecord function resolverFor( value: AgentSessionRecord | null, resolveWorkspacePath: (workspaceId: string) => Promise = async (id) => `/repos/${id}`, - resolveRollout: () => Promise = async () => null + resolveRollout: () => Promise = async () => null, + agentDefaultArgs: Record = { codex: '' } ) { return createCodexStructuredLaunchResolver({ store: { getRecord: () => value } as unknown as AgentSessionRecordStore, resolveWorkspacePath, resolveCommand: () => '/usr/local/bin/codex', resolveRollout, - isWindowsProcessStartTimeAvailable: () => true + isWindowsProcessStartTimeAvailable: () => true, + resolvePermissionArgs: () => codexStructuredPermissionArgsForSettings({ agentDefaultArgs }) }) } @@ -109,18 +112,36 @@ describe('codex structured launch resolution', () => { expect(launch.resumeThreadId).toBe('thread-current') }) - it('places the durable user configuration before the app-server subcommand', async () => { + // Agent Permissions is the only thing from the arguments field that reaches app-server, and it + // keeps the position the durable arguments used to hold: before the subcommand. + it('places the permission flag before the app-server subcommand', async () => { + const launch = await resolverFor(record(), undefined, undefined, { + codex: '--dangerously-bypass-approvals-and-sandbox --model gpt-5.6-sol' + })({ identity: IDENTITY }) + + expect(launch.args).toEqual(['--dangerously-bypass-approvals-and-sandbox', 'app-server']) + }) + + it('bypasses approvals for a profile that never opened Agent settings', async () => { + const launch = await resolverFor(record(), undefined, undefined, {})({ identity: IDENTITY }) + + expect(launch.args).toEqual(['--dangerously-bypass-approvals-and-sandbox', 'app-server']) + }) + + it('leaves the approval prompts on under Manual', async () => { + const launch = await resolverFor(record())({ identity: IDENTITY }) + + expect(launch.args).toEqual(['app-server']) + }) + + // The configured CLI arguments are a terminal concern: a durable record written before they + // stopped being read must not smuggle one back into app-server's argv. + it("ignores the record's durable launch arguments", async () => { const launch = await resolverFor( record({ launchArgs: ['--profile', 'review', '-c', 'model_reasoning_effort=high'] }) )({ identity: IDENTITY }) - expect(launch.args).toEqual([ - '--profile', - 'review', - '-c', - 'model_reasoning_effort=high', - 'app-server' - ]) + expect(launch.args).toEqual(['app-server']) }) it('pins resume to the rollout file that proved the durable thread', async () => { diff --git a/src/main/codex/codex-structured-launch-resolution.ts b/src/main/codex/codex-structured-launch-resolution.ts index d395ee87c12..68b3d03a98d 100644 --- a/src/main/codex/codex-structured-launch-resolution.ts +++ b/src/main/codex/codex-structured-launch-resolution.ts @@ -27,6 +27,9 @@ export type CodexStructuredLaunchResolverDeps = { resolveRollout?: typeof resolvePinnedCodexRolloutProof /** Test seam for the host capability; production uses the native process table. */ isWindowsProcessStartTimeAvailable?: () => boolean + /** The user's Agent Permissions setting as app-server argv, re-read per acquisition. + * Absent means the CLI's own approval prompts stay on. */ + resolvePermissionArgs?: () => string[] } export function createCodexStructuredLaunchResolver( @@ -66,7 +69,9 @@ export function createCodexStructuredLaunchResolver( pathEnv, ...(homePath ? { homePath } : {}) }) - const args = [...(record.launchArgs ?? []), 'app-server'] + // `record.launchArgs` is deliberately not read: the configured CLI arguments are a terminal + // concern, and the permission posture they used to smuggle in is derived per acquisition. + const args = [...(deps.resolvePermissionArgs?.() ?? []), 'app-server'] const head = agentSessionProviderHandleChainHead(record.providerHandleChain) const resumeThreadId = head?.handle.provider === 'codex' ? head.handle.threadId : null return { diff --git a/src/main/codex/codex-structured-permission-mode.test.ts b/src/main/codex/codex-structured-permission-mode.test.ts new file mode 100644 index 00000000000..8fd8b952a97 --- /dev/null +++ b/src/main/codex/codex-structured-permission-mode.test.ts @@ -0,0 +1,46 @@ +import { describe, expect, it } from 'vitest' +import { codexStructuredPermissionArgsForSettings } from './codex-structured-permission-mode' + +const BYPASS = ['--dangerously-bypass-approvals-and-sandbox'] + +describe('codexStructuredPermissionArgsForSettings', () => { + it('bypasses when the user has never opened Agent settings', () => { + expect(codexStructuredPermissionArgsForSettings({ agentDefaultArgs: {} })).toEqual(BYPASS) + expect(codexStructuredPermissionArgsForSettings({})).toEqual(BYPASS) + expect(codexStructuredPermissionArgsForSettings(null)).toEqual(BYPASS) + expect(codexStructuredPermissionArgsForSettings({ agentDefaultArgs: { claude: '' } })).toEqual( + BYPASS + ) + }) + + it('bypasses when Yolo wrote the flag, alone or beside other tokens', () => { + for (const codex of [ + '--dangerously-bypass-approvals-and-sandbox', + '--dangerously-bypass-approvals-and-sandbox --model gpt-5.6-sol', + '--model gpt-5.6-sol --dangerously-bypass-approvals-and-sandbox' + ]) { + expect( + codexStructuredPermissionArgsForSettings({ agentDefaultArgs: { codex } }), + codex + ).toEqual(BYPASS) + } + }) + + it('leaves the approval prompts on when Manual cleared the flag', () => { + expect(codexStructuredPermissionArgsForSettings({ agentDefaultArgs: { codex: '' } })).toEqual( + [] + ) + }) + + // The passthrough that used to carry these to app-server is gone on purpose; only the + // permission posture is derived, and nothing else from the field reaches argv. + it('carries nothing but the permission posture out of the arguments field', () => { + expect( + codexStructuredPermissionArgsForSettings({ + agentDefaultArgs: { + codex: '--profile review --add-dir /repo -c model_reasoning_effort=high' + } + }) + ).toEqual([]) + }) +}) diff --git a/src/main/codex/codex-structured-permission-mode.ts b/src/main/codex/codex-structured-permission-mode.ts new file mode 100644 index 00000000000..fe1905e2117 --- /dev/null +++ b/src/main/codex/codex-structured-permission-mode.ts @@ -0,0 +1,21 @@ +import type { GlobalSettings } from '../../shared/global-settings-types' +import { resolvedTuiAgentArgsBypassPermissions } from '../../shared/tui-agent-launch-defaults' +import { YOLO_TUI_AGENT_ARGS } from '../../shared/tui-agent-permissions' + +/** + * The Agent Permissions setting as app-server argv. + * + * Derived per acquisition from the resolved launch arguments, never from the free-text Arguments + * field: app-server takes a narrower option set than the interactive CLI and the two are versioned + * apart, so the only thing read out of that field is the posture the toggle stores in it. An + * untouched profile resolves to the default Orca ships, which is the bypass flag. + */ +export function codexStructuredPermissionArgsForSettings( + settings: Partial> | null | undefined +): string[] { + const bypassArg = YOLO_TUI_AGENT_ARGS.codex + return bypassArg !== undefined && + resolvedTuiAgentArgsBypassPermissions('codex', settings?.agentDefaultArgs) + ? [bypassArg] + : [] +} diff --git a/src/main/runtime/orca-runtime-get-worktree-ps.ts b/src/main/runtime/orca-runtime-get-worktree-ps.ts index 3eb7a6e9401..ff110a264cd 100644 --- a/src/main/runtime/orca-runtime-get-worktree-ps.ts +++ b/src/main/runtime/orca-runtime-get-worktree-ps.ts @@ -11,7 +11,6 @@ import { } from './runtime-worktree-ps-activity' import { attachRuntimeWorktreeAgentRows } from './runtime-worktree-agent-rows' import { compareWorktreePs } from './runtime-worktree-status-projection' -import type { AgentSessionRecord } from '../../shared/agent-session-record' import type { Repo } from '../../shared/repo-types' import { enrichMissingRepoGitRemoteIdentities } from '../repo-git-remote-identity-enrichment' import { ensureStructuredAgentSessionHost as installStructuredAgentSessionHost } from './structured-agent-session-runtime' @@ -20,13 +19,9 @@ import { firstWorkRenameDeps } from '../agent-hooks/first-work-rename-runtime' import { getProfileUserDataPath } from '../orca-profiles/profile-storage-paths' import { LOCAL_EXECUTION_HOST_ID } from '../../shared/execution-host' import { buildWorktreeListingPage } from './worktree-listing-host-scope' -import { - resolveTuiAgentLaunchArgs, - resolveTuiAgentLaunchEnv -} from '../../shared/tui-agent-launch-defaults' -import { resolveLocalWindowsAgentStartupShell } from '../../shared/windows-terminal-shell' -import { resolveStartupShell, tokenizeStartupCommand } from '../../shared/tui-agent-startup-shell' -import { resolveCodexStructuredAppServerArgs } from '../codex/codex-structured-app-server-args' +import { resolveTuiAgentLaunchEnv } from '../../shared/tui-agent-launch-defaults' +import { claudeStructuredPermissionModeForSettings } from '../claude/claude-structured-permission-mode' +import { codexStructuredPermissionArgsForSettings } from '../codex/codex-structured-permission-mode' import type { StructuredAgentSessionHandoffTransport } from '../native-chat/agent-session-wire/structured-agent-session-handoff-types' import { hostname } from 'node:os' import { claudeStructuredAuthPolicyForSettings } from '../claude-accounts/claude-structured-auth-policy' @@ -153,13 +148,18 @@ export class OrcaRuntimeWithGetWorktreePs extends OrcaRuntimeWithStructuredAgent // in a plain folder lands in the folder rather than failing to resolve. resolveWorkspacePath: async (workspaceId) => (await this.resolveRuntimeFileTarget(`id:${workspaceId}`)).worktree.path, - resolveLaunchArgs: (provider) => this.resolveConfiguredStructuredLaunchArgs(provider), resolveLaunchEnvOverlay: () => resolveTuiAgentLaunchEnv('codex', this.requireStore().getSettings().agentDefaultEnv), resolveClaudeLaunchEnv: () => resolveTuiAgentLaunchEnv('claude', this.requireStore().getSettings().agentDefaultEnv), resolveClaudeAuthPolicy: () => claudeStructuredAuthPolicyForSettings(this.requireStore().getSettings()), + // Re-read per acquisition, like the auth policy above it: the Agent Permissions setting is + // the one copy of this fact, and the configured CLI arguments never reach a structured launch. + resolveClaudePermissionMode: () => + claudeStructuredPermissionModeForSettings(this.requireStore().getSettings()), + resolveCodexPermissionArgs: () => + codexStructuredPermissionArgsForSettings(this.requireStore().getSettings()), // Same gate and same settings as agentSession.createSupport, re-read on every acquisition. getClaudeManagedAccountGateSettings: () => this.requireStore().getSettings(), // Structured chat has no agent CLI hooks, so this projection is what the first-work @@ -176,47 +176,6 @@ export class OrcaRuntimeWithGetWorktreePs extends OrcaRuntimeWithStructuredAgent }) } - // Why the provider is honoured rather than assumed: Codex app-server flags are not - // Claude CLI flags, and prepending them to `claude` makes it exit on an unknown option. - protected resolveConfiguredStructuredLaunchArgs( - provider: AgentSessionRecord['provider'] - ): string[] { - if (provider === 'claude') { - return this.resolveConfiguredClaudeStructuredArgs() - } - return this.resolveConfiguredCodexStructuredArgs() - } - - protected resolveConfiguredClaudeStructuredArgs(): string[] { - const settings = this.requireStore().getSettings() - const shell = resolveStartupShell( - process.platform, - resolveLocalWindowsAgentStartupShell({ - platform: process.platform, - isRemote: false, - terminalWindowsShell: settings.terminalWindowsShell - }) - ) - const tokenized = tokenizeStartupCommand( - resolveTuiAgentLaunchArgs('claude', settings.agentDefaultArgs), - shell - ) - return tokenized.ok ? tokenized.tokens : [] - } - - protected resolveConfiguredCodexStructuredArgs(): string[] { - const settings = this.requireStore().getSettings() - const shell = resolveLocalWindowsAgentStartupShell({ - platform: process.platform, - isRemote: false, - terminalWindowsShell: settings.terminalWindowsShell - }) - return resolveCodexStructuredAppServerArgs( - resolveTuiAgentLaunchArgs('codex', settings.agentDefaultArgs), - shell ?? 'posix' - ) - } - protected createStructuredAgentSessionHandoffTransport(): StructuredAgentSessionHandoffTransport { return { hostLabel: hostname(), diff --git a/src/main/runtime/orca-runtime-structured-agent-session-launch-args.test.ts b/src/main/runtime/orca-runtime-structured-agent-session-launch-args.test.ts deleted file mode 100644 index c4333fd0a4d..00000000000 --- a/src/main/runtime/orca-runtime-structured-agent-session-launch-args.test.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { describe, expect, it, vi } from 'vitest' -import { OrcaRuntimeService } from './orca-runtime' - -type InstalledDeps = { - resolveLaunchArgs: (provider: 'claude' | 'codex') => Promise | string[] - resolveLaunchEnvOverlay: () => Record - resolveClaudeLaunchEnv?: () => Record -} - -const { installStructuredAgentSessionHost } = vi.hoisted(() => ({ - installStructuredAgentSessionHost: vi.fn(async (_deps: unknown) => ({}) as never) -})) - -vi.mock('./structured-agent-session-runtime', async (importOriginal) => ({ - ...(await importOriginal()), - ensureStructuredAgentSessionHost: installStructuredAgentSessionHost -})) - -function runtimeWith(settings: Record): OrcaRuntimeService { - return new OrcaRuntimeService({ getSettings: () => settings } as never) -} - -async function installedDeps(settings: Record): Promise { - installStructuredAgentSessionHost.mockClear() - await runtimeWith(settings).ensureStructuredAgentSessionHost() - return installStructuredAgentSessionHost.mock.calls[0]?.[0] as InstalledDeps -} - -describe('structured agent-session launch args wiring', () => { - it('resolves Claude launch args from the Claude agent defaults, not Codex flags', async () => { - const deps = await installedDeps({ - agentDefaultArgs: { - claude: '--dangerously-skip-permissions --model opus', - codex: '--dangerously-bypass-approvals-and-sandbox' - }, - agentDefaultEnv: {} - }) - - expect(await deps.resolveLaunchArgs('claude')).toEqual([ - '--dangerously-skip-permissions', - '--model', - 'opus' - ]) - }) - - it('still resolves Codex app-server args for a Codex session', async () => { - const deps = await installedDeps({ - agentDefaultArgs: { - claude: '--dangerously-skip-permissions', - codex: '--dangerously-bypass-approvals-and-sandbox' - }, - agentDefaultEnv: {} - }) - - const codexArgs = await deps.resolveLaunchArgs('codex') - expect(codexArgs).not.toContain('--dangerously-skip-permissions') - expect(codexArgs.length).toBeGreaterThan(0) - }) - - it('never lets a broken Codex args configuration block a Claude session', async () => { - const deps = await installedDeps({ - agentDefaultArgs: { claude: '--model opus', codex: '--not-a-real-codex-flag' }, - agentDefaultEnv: {} - }) - - expect(await deps.resolveLaunchArgs('claude')).toEqual(['--model', 'opus']) - expect(() => deps.resolveLaunchArgs('codex')).toThrow() - }) - - it('supplies the Claude env overlay so the launch resolver does not fall back to process.env', async () => { - const deps = await installedDeps({ - agentDefaultArgs: {}, - agentDefaultEnv: { - claude: { ORCA_CLAUDE_OVERLAY: 'claude-value' }, - codex: { ORCA_CODEX_OVERLAY: 'codex-value' } - } - }) - - expect(deps.resolveClaudeLaunchEnv).toBeTypeOf('function') - expect(deps.resolveClaudeLaunchEnv?.()).toMatchObject({ - ORCA_CLAUDE_OVERLAY: 'claude-value' - }) - expect(deps.resolveClaudeLaunchEnv?.()).not.toHaveProperty('ORCA_CODEX_OVERLAY') - expect(deps.resolveLaunchEnvOverlay()).toMatchObject({ ORCA_CODEX_OVERLAY: 'codex-value' }) - }) -}) diff --git a/src/main/runtime/rpc/methods/orchestration-worker-start-mode.test.ts b/src/main/runtime/rpc/methods/orchestration-worker-start-mode.test.ts index b937f6febd2..ffdb87964bd 100644 --- a/src/main/runtime/rpc/methods/orchestration-worker-start-mode.test.ts +++ b/src/main/runtime/rpc/methods/orchestration-worker-start-mode.test.ts @@ -97,7 +97,7 @@ describe('a structured default this dispatch cannot honour', () => { decide({ settings: { ...STRUCTURED_DEFAULT, agentCmdOverrides: { claude: 'claude-wrapper' } } }) - ).toMatchObject({ mode: 'terminal', reason: 'tui_launch_customization' }) + ).toMatchObject({ mode: 'terminal', reason: 'tui_launch_command' }) }) // Neither provider is refused here on the client's platform: only the executing host knows diff --git a/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts b/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts index 7e735fa65fb..5e84ea1fae7 100644 --- a/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts +++ b/src/main/runtime/rpc/methods/orchestration-worker-start-receipt-wording.test.ts @@ -87,19 +87,17 @@ describe('worker-start mode receipt wording', () => { }) }) - it('names a custom TUI launch as the downgrade', () => { + it('names a custom TUI launch command as the downgrade', () => { expect( decideWorkerStartMode({ params: { agent: 'claude' }, - settings: { ...STRUCTURED_PREFERENCE, agentDefaultArgs: { claude: '--custom' } } + settings: { ...STRUCTURED_PREFERENCE, agentCmdOverrides: { claude: 'claude-wrapper' } } }) ).toEqual({ mode: 'terminal', preferred: 'structured', - reason: 'tui_launch_customization', - detail: downgradeSentence( - 'this agent has a custom launch command, arguments or environment that only a terminal applies' - ) + reason: 'tui_launch_command', + detail: downgradeSentence('this agent has a custom launch command that only a terminal runs') }) }) diff --git a/src/main/runtime/structured-agent-session-runtime.ts b/src/main/runtime/structured-agent-session-runtime.ts index 92643fcae57..4f2e75bd7b6 100644 --- a/src/main/runtime/structured-agent-session-runtime.ts +++ b/src/main/runtime/structured-agent-session-runtime.ts @@ -7,6 +7,7 @@ // reads is module-level for the same reason the registry is — the runtime // service is already far past its size budget. +import type { PermissionMode } from '@anthropic-ai/claude-agent-sdk' import { existsSync } from 'node:fs' import { join } from 'node:path' import type { AgentSessionRecord } from '../../shared/agent-session-record' @@ -74,6 +75,10 @@ export type StructuredAgentSessionRuntimeDeps = { resolveClaudeLaunchEnv?: () => Promise> | Record /** Required, and asserted at install time — an absent policy must not degrade to a guess. */ resolveClaudeAuthPolicy: () => Promise | ClaudeStructuredAuthPolicy + /** The user's Agent Permissions setting for Claude; absent means prompting. */ + resolveClaudePermissionMode?: () => Promise | PermissionMode + /** The same setting for Codex, as app-server argv; absent means its approval prompts stay on. */ + resolveCodexPermissionArgs?: () => string[] /** Raw settings getter; the reader that fails closed around it is built here, in checked code. */ getClaudeManagedAccountGateSettings?: () => ClaudeManagedAccountGateSettings resolveEnvironment?: () => Promise @@ -261,6 +266,9 @@ async function install(deps: StructuredAgentSessionRuntimeDeps): Promise diff --git a/src/main/runtime/structured-claude-runtime-adapter.ts b/src/main/runtime/structured-claude-runtime-adapter.ts index 7e743220741..9a070db60af 100644 --- a/src/main/runtime/structured-claude-runtime-adapter.ts +++ b/src/main/runtime/structured-claude-runtime-adapter.ts @@ -1,3 +1,4 @@ +import type { PermissionMode } from '@anthropic-ai/claude-agent-sdk' import { proveClaudeTranscriptBranch } from '../claude/claude-transcript-branch-proof' import type { AgentSessionRecord } from '../../shared/agent-session-record' import type { AgentSessionBackgroundTaskState } from '../../shared/agent-session-wire' @@ -27,6 +28,8 @@ export type StructuredClaudeRuntimeAdapterDeps = { /** Managed-account auth state for a Claude launch, mirroring the terminal preflight. * Required: an absent policy is what silently under-strips. */ resolveClaudeAuthPolicy: () => Promise | ClaudeStructuredAuthPolicy + /** The user's Agent Permissions setting for Claude; absent means prompting. */ + resolveClaudePermissionMode?: () => Promise | PermissionMode readClaudeManagedAccountGate?: () => ClaudeManagedAccountGateSettings | null openClaudeConnection?: ClaudeStructuredSessionAdapterDeps['openConnection'] readProcessStartTime?: ClaudeStructuredSessionAdapterDeps['readProcessStartTime'] @@ -49,6 +52,9 @@ export function createStructuredClaudeRuntimeAdapter( resolveCommand: deps.resolveClaudeCommand ?? resolveClaudeCommand, ...(deps.resolveClaudeLaunchEnv ? { resolveEnv: deps.resolveClaudeLaunchEnv } : {}), resolveAuthPolicy: deps.resolveClaudeAuthPolicy, + ...(deps.resolveClaudePermissionMode + ? { resolvePermissionMode: deps.resolveClaudePermissionMode } + : {}), ...(deps.readClaudeManagedAccountGate ? { readManagedAccountGate: deps.readClaudeManagedAccountGate } : {}) diff --git a/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts b/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts index 7185f453351..62b29c8edb8 100644 --- a/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts +++ b/src/renderer/src/components/sidebar/folder-workspace-composer-submit.ts @@ -141,7 +141,6 @@ export async function submitFolderWorkspaceCreate({ }, prompt: launchDraftPrompt ?? note, promptDelivery: launchDraftPrompt ? 'draft' : 'auto-submit', - tuiCustomization: { agentArgs }, initialSessionOptions: startupPlan?.sessionOptions }) : null diff --git a/src/renderer/src/lib/agent-launch-route-input.test.ts b/src/renderer/src/lib/agent-launch-route-input.test.ts index 62eabe93ed4..2ea4c568243 100644 --- a/src/renderer/src/lib/agent-launch-route-input.test.ts +++ b/src/renderer/src/lib/agent-launch-route-input.test.ts @@ -106,7 +106,7 @@ describe('buildAgentLaunchRouteInput', () => { promptDelivery: 'auto-submit', launchText: 'fix the flaky test', nativeChatTranscriptIsLocalReadable: true, - requiresTuiLaunchCustomization: false, + requiresTuiLaunchCommand: false, initialSessionOptions: { model: 'gpt-5.4' } }) expect(mocks.getExecutionHostIdForWorktree).toHaveBeenCalledWith(appStore, 'wt-1') @@ -240,7 +240,6 @@ describe('buildAgentLaunchRouteInput', () => { it.each([ ['a cwd', { cwd: '/repo/sub' }, {}], - ['explicit agent args', { agentArgs: '--model gpt-5.4' }, {}], ['a settings command override', {}, { agentCmdOverrides: { codex: 'codex-nightly' } }] ] as const)('requires a terminal for %s', (_name, tuiCustomization, settingsOverride) => { const input = buildAgentLaunchRouteInput( @@ -251,7 +250,28 @@ describe('buildAgentLaunchRouteInput', () => { tuiCustomization } ) - expect(input.requiresTuiLaunchCustomization).toBe(true) + expect(input.requiresTuiLaunchCommand).toBe(true) + }) + + // The reported P0: `--dangerously-skip-permissions --model Opus` matched no blessed string, so + // every new Claude tab was silently demoted to the terminal-backed chat. The Arguments field is + // a terminal concern and no longer reaches this decision. + it.each([ + ['claude', '--dangerously-skip-permissions --model Opus'], + ['codex', '--dangerously-bypass-approvals-and-sandbox --model gpt-5.6-sol'], + ['claude', '--append-system-prompt "be brief"'] + ] as const)('keeps %s structured with configured arguments %s', (agent, agentArgs) => { + const appStore = store({ + ...STRUCTURED_SETTINGS, + agentDefaultArgs: { [agent]: agentArgs }, + agentDefaultEnv: { [agent]: { ORCA_QA: '1' } } + }) + const args = { + agent, + workspace: { kind: 'git-worktree' as const, worktreeId: 'wt-1' } + } + expect(routeFor(appStore, args)).toBe('structured-native-chat') + expect(buildAgentLaunchRouteInput(appStore, args).requiresTuiLaunchCommand).toBe(false) }) // Grok reads its transcript off local disk, so it is the agent the readability answer routes on. diff --git a/src/renderer/src/lib/agent-launch-route-input.ts b/src/renderer/src/lib/agent-launch-route-input.ts index fcda99dcf7e..85fbf2e8ca3 100644 --- a/src/renderer/src/lib/agent-launch-route-input.ts +++ b/src/renderer/src/lib/agent-launch-route-input.ts @@ -7,8 +7,7 @@ import { import type { TuiAgent } from '../../../shared/tui-agent' import { parseWorkspaceKey } from '../../../shared/workspace-scope' import { - hasExplicitTuiAgentArgs, - hasExplicitTuiLaunchCustomization, + hasExplicitTuiLaunchCommand, type AgentLaunchRoutingInput } from '@/lib/agent-launch-routing' // Why: the `connection-context` facade imports the store root; the resolver's own module keeps @@ -53,8 +52,8 @@ export type AgentLaunchRouteArgs = { workspace: ProspectiveWorkspace prompt?: string promptDelivery?: NativeChatLaunchPromptDelivery - /** A cwd or explicit CLI args only a terminal can apply. */ - tuiCustomization?: { cwd?: string | null; agentArgs?: string | null } + /** A working directory only a terminal can apply; a structured session runs in its workspace. */ + tuiCustomization?: { cwd?: string | null } initialSessionOptions?: Readonly> } @@ -130,10 +129,8 @@ export function buildAgentLaunchRouteInput( workspace, executionHostId ), - requiresTuiLaunchCustomization: - Boolean(tuiCustomization?.cwd?.trim()) || - hasExplicitTuiAgentArgs(agent, tuiCustomization?.agentArgs) || - hasExplicitTuiLaunchCustomization(store.settings, agent), + requiresTuiLaunchCommand: + Boolean(tuiCustomization?.cwd?.trim()) || hasExplicitTuiLaunchCommand(store.settings, agent), initialSessionOptions: args.initialSessionOptions } } diff --git a/src/renderer/src/lib/agent-launch-routing.test.ts b/src/renderer/src/lib/agent-launch-routing.test.ts index bb22ad6a815..941d184602b 100644 --- a/src/renderer/src/lib/agent-launch-routing.test.ts +++ b/src/renderer/src/lib/agent-launch-routing.test.ts @@ -1,9 +1,7 @@ import { describe, expect, it } from 'vitest' import { STRUCTURED_AGENT_SESSION_RUNTIME_CAPABILITY } from '../../../shared/protocol-version' import { - hasExplicitTuiAgentArgs, - hasExplicitTuiLaunchCustomization, - hasSemanticallyNonEmptyAgentArgs, + hasExplicitTuiLaunchCommand, resolveAgentLaunchRoute, structuredAgentLaunchSupported } from './agent-launch-routing' @@ -96,7 +94,7 @@ describe('resolveAgentLaunchRoute', () => { // openclaude and grok render native chat but have no structured adapter. expect(route({ agent: 'openclaude' })).toBe('legacy-native-chat') expect(route({ agent: 'grok' })).toBe('legacy-native-chat') - expect(route({ requiresTuiLaunchCustomization: true })).toBe('legacy-native-chat') + expect(route({ requiresTuiLaunchCommand: true })).toBe('legacy-native-chat') }) it.each([ @@ -147,21 +145,13 @@ describe('resolveAgentLaunchRoute', () => { ).toBe('legacy-native-chat') }) - it('normalizes semantically empty argument and settings customization', () => { - expect(hasSemanticallyNonEmptyAgentArgs(' \n\t')).toBe(false) - expect( - hasExplicitTuiLaunchCustomization( - { agentCmdOverrides: {}, agentDefaultArgs: { codex: ' ' }, agentDefaultEnv: {} }, - 'codex' - ) - ).toBe(false) - }) - - it('does not classify the resolved default TUI args as customization', () => { - expect(hasExplicitTuiAgentArgs('codex', '--dangerously-bypass-approvals-and-sandbox')).toBe( + it('treats a whitespace-only command override as no override', () => { + expect(hasExplicitTuiLaunchCommand({ agentCmdOverrides: { codex: ' ' } }, 'codex')).toBe( false ) - expect(hasExplicitTuiAgentArgs('codex', '--model gpt-5.6-sol')).toBe(true) + expect( + hasExplicitTuiLaunchCommand({ agentCmdOverrides: { codex: 'codex-nightly' } }, 'codex') + ).toBe(true) }) }) diff --git a/src/renderer/src/lib/agent-launch-routing.ts b/src/renderer/src/lib/agent-launch-routing.ts index 5c4d8de9586..ba614053131 100644 --- a/src/renderer/src/lib/agent-launch-routing.ts +++ b/src/renderer/src/lib/agent-launch-routing.ts @@ -10,11 +10,7 @@ import { type NativeChatLaunchPromptDelivery } from '@/lib/native-chat-initial-view-mode' -export { - hasExplicitTuiAgentArgs, - hasExplicitTuiLaunchCustomization, - hasSemanticallyNonEmptyAgentArgs -} from '../../../shared/tui-agent-launch-customization' +export { hasExplicitTuiLaunchCommand } from '../../../shared/tui-agent-launch-command-override' export type AgentLaunchRoute = 'structured-native-chat' | 'legacy-native-chat' | 'terminal-tui' @@ -37,7 +33,7 @@ export type AgentLaunchRoutingInput = { promptDelivery?: NativeChatLaunchPromptDelivery launchText?: string nativeChatTranscriptIsLocalReadable?: boolean - requiresTuiLaunchCustomization?: boolean + requiresTuiLaunchCommand?: boolean initialSessionOptions?: Readonly> } @@ -77,7 +73,7 @@ export function structuredAgentLaunchSupported( hostCapabilities: input.hostCapabilities, workspaceKind: input.workspaceKind, projectRuntime: input.projectRuntime, - requiresTuiLaunchCustomization: input.requiresTuiLaunchCustomization + requiresTuiLaunchCommand: input.requiresTuiLaunchCommand }).supported ) } diff --git a/src/renderer/src/lib/launch-agent-in-new-tab.ts b/src/renderer/src/lib/launch-agent-in-new-tab.ts index d756316a6af..ff005550807 100644 --- a/src/renderer/src/lib/launch-agent-in-new-tab.ts +++ b/src/renderer/src/lib/launch-agent-in-new-tab.ts @@ -219,7 +219,7 @@ function launchAgentInNewTabInternal(args: LaunchAgentInNewTabArgs): LaunchAgent workspace: { kind: workspaceKindForWorktreeId(worktreeId), worktreeId }, prompt: trimmedPrompt, promptDelivery: viewModePromptDelivery, - tuiCustomization: { cwd: initialCwd, agentArgs }, + tuiCustomization: { cwd: initialCwd }, initialSessionOptions: startupPlan.sessionOptions, onPromptDelivered }) diff --git a/src/renderer/src/lib/launch-work-item-direct-route-preparation.ts b/src/renderer/src/lib/launch-work-item-direct-route-preparation.ts index 93cb9d146de..e81dbf4b411 100644 --- a/src/renderer/src/lib/launch-work-item-direct-route-preparation.ts +++ b/src/renderer/src/lib/launch-work-item-direct-route-preparation.ts @@ -98,7 +98,6 @@ export async function prepareDirectWorkItemAgentLaunch(args: { workspace: { kind: 'git-worktree', worktreeId: args.worktreeId, repoId: args.repoId }, prompt: args.draftContent, promptDelivery: args.promptDelivery, - tuiCustomization: { agentArgs: args.agentArgs }, initialSessionOptions: startupPlan?.sessionOptions }) const structuredLaunch = plan?.route === 'structured-native-chat' diff --git a/src/shared/structured-native-chat-launch-route.test.ts b/src/shared/structured-native-chat-launch-route.test.ts index 02f202ae0b4..21b52a83b6e 100644 --- a/src/shared/structured-native-chat-launch-route.test.ts +++ b/src/shared/structured-native-chat-launch-route.test.ts @@ -56,21 +56,20 @@ describe('per-launch structured feasibility', () => { expect(support({ agent })).toEqual({ supported: true }) }) - it.each([ + const blockerCases: [string, Partial, string][] = [ ['a reused PTY agent', { reusesTerminal: true }, 'reused-terminal'], ['grok', { agent: 'grok' }, 'agent-without-structured-session'], ['openclaude', { agent: 'openclaude' }, 'agent-without-structured-session'], ['a floating workspace', { workspaceKind: 'floating' }, 'floating-workspace'], - ['a custom TUI launch', { requiresTuiLaunchCustomization: true }, 'tui-launch-customization'], + ['a custom TUI launch command', { requiresTuiLaunchCommand: true }, 'tui-launch-command'], ['an SSH host', { executionHostId: 'ssh:host-a' }, 'remote-execution-host'], ['a missing capability', { hostCapabilities: [] }, 'runtime-capability'], ['an unanswered host', { hostCapabilities: null }, 'runtime-capability-unknown'] - ] as [string, Partial, string][])( - 'names %s as the blocker', - (_name, overrides, blocker) => { - expect(support(overrides)).toEqual({ supported: false, blocker }) - } - ) + ] + + it.each(blockerCases)('names %s as the blocker', (_name, overrides, blocker) => { + expect(support(overrides)).toEqual({ supported: false, blocker }) + }) // The client cannot see whether the host can read a provider child's start time, so neither // provider is refused here on platform; agentSession.createSupport answers that at create time. diff --git a/src/shared/structured-native-chat-launch-route.ts b/src/shared/structured-native-chat-launch-route.ts index df36494d24b..bde8de06c0a 100644 --- a/src/shared/structured-native-chat-launch-route.ts +++ b/src/shared/structured-native-chat-launch-route.ts @@ -24,7 +24,10 @@ export type StructuredNativeChatBlocker = | 'reused-terminal' | 'agent-without-structured-session' | 'floating-workspace' - | 'tui-launch-customization' + /** The agent's launch command is overridden, or the launch names its own working directory: + * a process shape only a PTY can produce. The configured *arguments* are not read here — + * they are a terminal concern the structured transports do not share a vocabulary with. */ + | 'tui-launch-command' | 'remote-execution-host' | 'project-runtime' | 'runtime-capability' @@ -43,7 +46,7 @@ export type StructuredNativeChatSupportInput = { hostCapabilities: readonly string[] | null workspaceKind?: 'git-worktree' | 'folder' | 'floating' projectRuntime?: ProjectExecutionRuntimeResolution | null - requiresTuiLaunchCustomization?: boolean + requiresTuiLaunchCommand?: boolean /** An existing PTY agent keeps its execution transport. */ reusesTerminal?: boolean } @@ -81,8 +84,8 @@ export function resolveStructuredNativeChatSupport( if (input.workspaceKind === 'floating') { return { supported: false, blocker: 'floating-workspace' } } - if (input.requiresTuiLaunchCustomization === true) { - return { supported: false, blocker: 'tui-launch-customization' } + if (input.requiresTuiLaunchCommand === true) { + return { supported: false, blocker: 'tui-launch-command' } } const projectRuntime = input.projectRuntime if (projectRuntime?.status === 'repair-required' || projectRuntime?.runtime.kind === 'wsl') { diff --git a/src/shared/tui-agent-launch-command-override.ts b/src/shared/tui-agent-launch-command-override.ts new file mode 100644 index 00000000000..0dea2c02754 --- /dev/null +++ b/src/shared/tui-agent-launch-command-override.ts @@ -0,0 +1,21 @@ +import type { GlobalSettings } from './global-settings-types' +import type { TuiAgent } from './tui-agent' + +/** + * Whether the user replaced this agent's launch command with one only a terminal can run. + * + * Shared rather than renderer-local because both launch surfaces have to answer it: the renderer + * routes such a launch back to the TUI, and orchestration falls a worker back to a PTY so the + * custom command still applies. + * + * Arguments and environment are deliberately not read here. Structured native chat applies the + * configured environment itself, and the Arguments field is a terminal/TUI concern: structured + * chat drives Claude through the Agent SDK and Codex through app-server, whose option sets are + * independently versioned and need not match the interactive CLI's. + */ +export function hasExplicitTuiLaunchCommand( + settings: Partial> | null | undefined, + agent: TuiAgent +): boolean { + return Boolean(settings?.agentCmdOverrides?.[agent]?.trim()) +} diff --git a/src/shared/tui-agent-launch-customization.ts b/src/shared/tui-agent-launch-customization.ts deleted file mode 100644 index b31edff8a01..00000000000 --- a/src/shared/tui-agent-launch-customization.ts +++ /dev/null @@ -1,43 +0,0 @@ -import type { GlobalSettings } from './global-settings-types' -import type { TuiAgent } from './tui-agent' -import { getTuiAgentDefaultArgs, getTuiAgentDefaultEnv } from './tui-agent-launch-defaults' - -/** - * Whether the user configured a TUI launch this agent would lose outside a terminal. - * - * Shared rather than renderer-local because both launch surfaces have to answer it: the renderer - * routes such a launch back to the TUI, and orchestration falls a worker back to a PTY so the - * custom command, arguments and environment still apply. - */ -export function hasExplicitTuiLaunchCustomization( - settings: - | Partial> - | null - | undefined, - agent: TuiAgent -): boolean { - const configuredArgs = settings?.agentDefaultArgs?.[agent] - const configuredEnv = settings?.agentDefaultEnv?.[agent] - const defaultEnv = getTuiAgentDefaultEnv(agent) - const envIsCustomized = - configuredEnv !== undefined && - (Object.keys(configuredEnv).length !== Object.keys(defaultEnv).length || - Object.entries(configuredEnv).some(([key, value]) => defaultEnv[key] !== value)) - return ( - Boolean(settings?.agentCmdOverrides?.[agent]?.trim()) || - hasExplicitTuiAgentArgs(agent, configuredArgs) || - envIsCustomized - ) -} - -export function hasSemanticallyNonEmptyAgentArgs(value: string | null | undefined): boolean { - return Boolean(value?.trim()) -} - -export function hasExplicitTuiAgentArgs( - agent: TuiAgent, - value: string | null | undefined -): boolean { - const trimmed = value?.trim() ?? '' - return trimmed.length > 0 && trimmed !== getTuiAgentDefaultArgs(agent).trim() -} diff --git a/src/shared/tui-agent-launch-defaults.test.ts b/src/shared/tui-agent-launch-defaults.test.ts new file mode 100644 index 00000000000..4a132144092 --- /dev/null +++ b/src/shared/tui-agent-launch-defaults.test.ts @@ -0,0 +1,45 @@ +import { describe, expect, it } from 'vitest' +import { + resolveTuiAgentLaunchArgs, + tuiAgentArgsBypassPermissions +} from './tui-agent-launch-defaults' + +describe('tuiAgentArgsBypassPermissions', () => { + // The Agent Permissions toggle has no storage of its own: Yolo is the presence of the agent's + // bypass flag in the arguments string, wherever the user has written the rest of the field. + it.each([ + ['claude', '--dangerously-skip-permissions', true], + ['claude', '--dangerously-skip-permissions --model Opus', true], + ['claude', '--model Opus --dangerously-skip-permissions', true], + ['claude', '', false], + ['claude', '--model Opus', false], + // A token boundary, so a longer flag that merely starts the same way is not a bypass. + ['claude', '--dangerously-skip-permissions-not-really', false], + ['codex', '--dangerously-bypass-approvals-and-sandbox --model gpt-5.6-sol', true], + ['codex', '--model gpt-5.6-sol', false] + ] as const)('reads %s args %s as %s', (agent, args, expected) => { + expect(tuiAgentArgsBypassPermissions(agent, args)).toBe(expected) + }) + + it('reads no bypass out of an absent or non-string value', () => { + expect(tuiAgentArgsBypassPermissions('claude', null)).toBe(false) + expect(tuiAgentArgsBypassPermissions('claude', undefined)).toBe(false) + }) +}) + +describe('resolveTuiAgentLaunchArgs', () => { + // A terminal launch still applies the whole configured string verbatim; only the structured + // route stopped reading it. + it('hands the configured arguments to a terminal launch unchanged', () => { + expect( + resolveTuiAgentLaunchArgs('claude', { + claude: '--dangerously-skip-permissions --model Opus' + }) + ).toBe('--dangerously-skip-permissions --model Opus') + }) + + it('falls back to the agent default when nothing is configured', () => { + expect(resolveTuiAgentLaunchArgs('claude', {})).toBe('--dangerously-skip-permissions') + expect(resolveTuiAgentLaunchArgs('claude', { claude: '' })).toBe('') + }) +}) diff --git a/src/shared/tui-agent-launch-defaults.ts b/src/shared/tui-agent-launch-defaults.ts index 6e0dc16f08d..5f23b7c2cb7 100644 --- a/src/shared/tui-agent-launch-defaults.ts +++ b/src/shared/tui-agent-launch-defaults.ts @@ -23,6 +23,21 @@ export function hasUnsupportedTuiAgentArgs(agent: TuiAgent, value: unknown): boo return (UNSUPPORTED_TUI_AGENT_ARGS[agent] ?? []).some((arg) => argPattern(arg).test(value)) } +/** + * Whether the configured arguments carry this agent's permission-bypass flag. + * + * The Agent Permissions toggle has no storage of its own — it writes and reads this flag inside + * the arguments string — so presence at a token boundary, not whole-string equality, is what + * "Yolo" means. A terminal launch applies the flag wherever else the user has written in the field. + */ +export function tuiAgentArgsBypassPermissions( + agent: TuiAgent, + value: string | null | undefined +): boolean { + const bypassArg = YOLO_TUI_AGENT_ARGS[agent] + return typeof value === 'string' && bypassArg !== undefined && argPattern(bypassArg).test(value) +} + function sanitizeTuiAgentLaunchArgs(agent: TuiAgent, args: string): string { const unsupportedArgs = UNSUPPORTED_TUI_AGENT_ARGS[agent] if (!unsupportedArgs) { @@ -93,6 +108,20 @@ export function resolveTuiAgentLaunchArgs( return getTuiAgentDefaultArgs(agent) } +/** + * Whether this agent's *resolved* launch arguments ask for a permission bypass. + * + * Resolved, not configured: an untouched Arguments field falls back to the default Orca ships, + * which is the bypass flag, so bypass is the posture a user gets until they choose otherwise. + * Choosing Manual stores an empty string, which owns the key and so beats that default. + */ +export function resolvedTuiAgentArgsBypassPermissions( + agent: TuiAgent, + configuredArgs: Partial> | null | undefined +): boolean { + return tuiAgentArgsBypassPermissions(agent, resolveTuiAgentLaunchArgs(agent, configuredArgs)) +} + export function resolveTuiAgentLaunchEnv( agent: TuiAgent, configuredEnv: Partial>> | null | undefined diff --git a/src/shared/tui-agent-startup.test.ts b/src/shared/tui-agent-startup.test.ts index e5e26f46802..97ee45ae425 100644 --- a/src/shared/tui-agent-startup.test.ts +++ b/src/shared/tui-agent-startup.test.ts @@ -45,6 +45,24 @@ describe('tui agent startup plans', () => { } ) + // Structured native chat stopped reading the configured arguments; a terminal launch must + // still spell every token of them, in order, exactly as the user wrote them. + it('passes the whole configured argument string to a terminal launch', () => { + const plan = buildAgentStartupPlan({ + agent: 'claude', + prompt: '', + agentArgs: resolveTuiAgentLaunchArgs('claude', { + claude: '--dangerously-skip-permissions --model Opus' + }), + cmdOverrides: {}, + platform: 'linux', + allowEmptyPromptLaunch: true + }) + + // Every token, in order, shell-quoted as the terminal path has always quoted them. + expect(plan?.launchCommand).toBe("claude '--dangerously-skip-permissions' '--model' 'Opus'") + }) + it('uses POSIX quoting when the target shell is Linux', () => { const plan = buildAgentStartupPlan({ agent: 'claude', diff --git a/tests/e2e/structured-native-chat-routing-authority.unit.test.ts b/tests/e2e/structured-native-chat-routing-authority.unit.test.ts index 9dda8cbe6c7..84e64860ee6 100644 --- a/tests/e2e/structured-native-chat-routing-authority.unit.test.ts +++ b/tests/e2e/structured-native-chat-routing-authority.unit.test.ts @@ -1,4 +1,5 @@ import { afterEach, describe, expect, it, vi } from 'vitest' +import type { GlobalSettings } from '../../src/shared/global-settings-types' import type * as SharedLaunchRoute from '../../src/shared/structured-native-chat-launch-route' import { decideWorkerStartMode } from '../../src/main/runtime/rpc/methods/orchestration-worker-start-mode' import { @@ -43,7 +44,7 @@ const blockers: StructuredNativeChatBlocker[] = [ 'reused-terminal', 'agent-without-structured-session', 'floating-workspace', - 'tui-launch-customization', + 'tui-launch-command', 'remote-execution-host', 'project-runtime', 'runtime-capability', @@ -54,13 +55,15 @@ describe('shared feasibility owns every caller decision', () => { it.each(placements)('orchestration cannot override the shared verdict for %j', (placement) => { for (const agent of ['claude', 'codex', 'grok', 'openclaude'] as const) { for (const customized of [false, true]) { - const input = { - params: { agent, ...placement }, - settings: { - ...settings, - ...(customized ? { agentDefaultArgs: { [agent]: '--custom' } } : {}) - } + // Arguments and environment are customized on BOTH passes, so the flag below tracks the + // launch command alone. A caller that resumed reading either one fails here. + const launchSettings: Partial & typeof settings = { + ...settings, + agentDefaultArgs: { [agent]: '--custom' }, + agentDefaultEnv: { [agent]: { ORCA_ROUTING_AUTHORITY: '1' } }, + ...(customized ? { agentCmdOverrides: { [agent]: `${agent}-wrapper` } } : {}) } + const input = { params: { agent, ...placement }, settings: launchSettings } predicate.mockReturnValue({ supported: true }) expect(decideWorkerStartMode(input).mode).toBe('structured') expect(predicate).toHaveBeenLastCalledWith( @@ -68,7 +71,7 @@ describe('shared feasibility owns every caller decision', () => { agent, executionHostId: placement.on ? `runtime:${placement.on}` : 'local', reusesTerminal: Boolean(placement.terminal), - requiresTuiLaunchCustomization: customized + requiresTuiLaunchCommand: customized }) ) for (const blocker of blockers) { @@ -96,7 +99,7 @@ describe('shared feasibility owns every caller decision', () => { executionHostId, promptDelivery, hostCapabilities: RUNTIME_CAPABILITIES, - requiresTuiLaunchCustomization: true, + requiresTuiLaunchCommand: true, workspaceKind: 'folder', initialSessionOptions: { model: 'model-1', effort: 'high' } } @@ -107,7 +110,7 @@ describe('shared feasibility owns every caller decision', () => { expect.objectContaining({ agent, executionHostId, - requiresTuiLaunchCustomization: true, + requiresTuiLaunchCommand: true, workspaceKind: 'folder' }) ) From 16ac9018dbbd21e6cf5aad2129be36b26f24a7b8 Mon Sep 17 00:00:00 2001 From: OrcaWin Date: Tue, 15 Sep 2026 23:44:23 -0700 Subject: [PATCH 22/28] docs: remove unavailable diff shortcuts (#20974) Co-authored-by: m4air --- docs/site/content/docs/editing/monaco.mdx | 2 +- docs/site/content/docs/recipes/review-ai-diff.mdx | 4 ++-- docs/site/content/docs/review/commit-push.mdx | 2 +- docs/site/content/docs/review/diff-viewer.mdx | 6 +----- 4 files changed, 5 insertions(+), 9 deletions(-) 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)). From e39b432c40d34348159be0bb0a630bc6c25c0130 Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Wed, 16 Sep 2026 00:05:29 -0700 Subject: [PATCH 23/28] fix(editor): preserve Markdown scroll after image layout (#20956) * fix(editor): preserve markdown scroll after image layout * test(editor): harden scroll regression cleanup and geometry checks --- .../editor/RichMarkdownEditorSurface.tsx | 3 +- tests/e2e/markdown-tab-scroll-restore.spec.ts | 101 ++++++++++++++++++ 2 files changed, 103 insertions(+), 1 deletion(-) create mode 100644 tests/e2e/markdown-tab-scroll-restore.spec.ts diff --git a/src/renderer/src/components/editor/RichMarkdownEditorSurface.tsx b/src/renderer/src/components/editor/RichMarkdownEditorSurface.tsx index 12bc5cc35c3..8e2ca1e4abb 100644 --- a/src/renderer/src/components/editor/RichMarkdownEditorSurface.tsx +++ b/src/renderer/src/components/editor/RichMarkdownEditorSurface.tsx @@ -206,7 +206,8 @@ export function RichMarkdownEditorSurface({
{ if (!shouldFocusEmptyEditorFromSurfaceClick(event, editor)) { return diff --git a/tests/e2e/markdown-tab-scroll-restore.spec.ts b/tests/e2e/markdown-tab-scroll-restore.spec.ts new file mode 100644 index 00000000000..1b84c425270 --- /dev/null +++ b/tests/e2e/markdown-tab-scroll-restore.spec.ts @@ -0,0 +1,101 @@ +import { writeFile, rm } from 'node:fs/promises' +import path from 'node:path' +import { test, expect } from './helpers/orca-app' +import { waitForActiveWorktree, waitForSessionReady } from './helpers/store' +import { + cleanupMarkdownFixture, + createMarkdownFixture, + getActiveWorktreeContext, + openMarkdownFixture, + waitForRichMarkdownEditor +} from './helpers/markdown-editor-fixture' + +test('restores the Markdown viewport when an image gains height after a tab switch', async ({ + orcaPage, + registerPostElectronShutdownCleanup +}, testInfo) => { + await waitForSessionReady(orcaPage) + await waitForActiveWorktree(orcaPage) + const context = await getActiveWorktreeContext(orcaPage) + const directory = '.orca-e2e-markdown-scroll' + let filePath: string | null = null + let otherPath: string | null = null + let imagePath: string | null = null + + registerPostElectronShutdownCleanup(async () => { + await cleanupMarkdownFixture(filePath) + await cleanupMarkdownFixture(otherPath) + if (imagePath) { + await rm(imagePath, { force: true }) + } + }) + + const sections = Array.from( + { length: 100 }, + (_, index) => `## Section ${index}\n\nParagraph ${index}. Scroll restoration testing text.` + ).join('\n\n') + filePath = await createMarkdownFixture( + context, + directory, + 'image-scroll', + testInfo.workerIndex, + `# Image scroll\n\n![Scroll restoration image](tall.svg)\n\n${sections}` + ) + imagePath = path.join(path.dirname(filePath), 'tall.svg') + await writeFile( + imagePath, + '' + ) + otherPath = await createMarkdownFixture( + context, + directory, + 'other-tab', + testInfo.workerIndex, + '# Other tab' + ) + await openMarkdownFixture(orcaPage, context, otherPath) + await waitForRichMarkdownEditor(orcaPage) + await openMarkdownFixture(orcaPage, context, filePath) + const editor = await waitForRichMarkdownEditor(orcaPage) + const image = editor.getByRole('img', { name: 'Scroll restoration image' }) + await expect + .poll(() => + image.evaluate((element) => (element instanceof HTMLImageElement ? element.naturalHeight : 0)) + ) + .toBe(1500) + const viewport = orcaPage.locator('.rich-markdown-editor-shell .overflow-auto') + await viewport.evaluate((element) => { + element.scrollTop = 4000 + }) + const heading = editor.getByRole('heading', { name: 'Section 45', exact: true }) + const originalTop = await heading.evaluate((element) => element.getBoundingClientRect().top) + + await orcaPage + .locator('[data-tab-id]') + .filter({ hasText: path.basename(otherPath) }) + .click() + // Model image dimensions arriving after restoration, independent of the host's decode speed. + const pendingImage = await orcaPage.addStyleTag({ + content: '.rich-markdown-editor img[alt="Scroll restoration image"] { height: 1px !important; }' + }) + await orcaPage + .locator('[data-tab-id]') + .filter({ hasText: path.basename(filePath) }) + .click() + await expect.poll(() => viewport.evaluate((element) => element.scrollTop)).toBe(4000) + await pendingImage.evaluate((element) => element.remove()) + await expect + .poll(() => image.evaluate((element) => element.getBoundingClientRect().height)) + .toBeGreaterThan(500) + // Let Chromium apply its scroll-anchor adjustment before checking the final viewport. + await viewport.evaluate( + () => + new Promise((resolve) => { + requestAnimationFrame(() => requestAnimationFrame(() => resolve())) + }) + ) + await expect.poll(() => viewport.evaluate((element) => element.scrollTop)).toBe(4000) + await expect + .poll(() => heading.evaluate((element) => element.getBoundingClientRect().top)) + .toBeCloseTo(originalTop, 1) +}) From 78609330d16291adbf72e4ce2ee559865d7e8e90 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Wed, 16 Sep 2026 00:16:56 -0700 Subject: [PATCH 24/28] Fix browser viewport presets incorrectly scaled by UI zoom (#20962) * Fix browser viewport presets scaled incorrectly by UI zoom Browser viewport presets must remain in window DIP (native) coordinates but scale in CSS pixels as UI zoom changes. Store preset dimensions as CSS variables in DIP, then divide by the live UI zoom factor in the stylesheet. Also consolidate zoom factor calculations across the app to use a shared `uiZoomFactorFromLevel()` function and add `windowDipToCssPx()` for converting native coordinates to CSS pixels. * Move viewport preset zoom compensation to CSS class Inline width/height styles outrank class rules, preventing the zoom compensation from applying. Using a class rule ensures the viewport scales correctly as the UI zoom factor changes. --- .../window/main-window-state-lifecycle.ts | 3 +- src/renderer/src/assets/main.css | 8 + .../browser-page-context-menu.tsx | 6 +- .../host-guest/browser-page-viewport.test.ts | 61 ++- .../host-guest/browser-page-viewport.ts | 22 +- .../components/settings/SettingsConstants.ts | 3 +- .../hooks/useIpcEvents-zoom-routing.test.ts | 408 ------------------ src/renderer/src/hooks/zoom-routing.test.ts | 235 ++++++++++ src/renderer/src/lib/ui-zoom.test.ts | 103 +++++ src/renderer/src/lib/ui-zoom.ts | 37 +- src/shared/ui-zoom-level.ts | 10 + 11 files changed, 466 insertions(+), 430 deletions(-) delete mode 100644 src/renderer/src/hooks/useIpcEvents-zoom-routing.test.ts create mode 100644 src/renderer/src/hooks/zoom-routing.test.ts create mode 100644 src/renderer/src/lib/ui-zoom.test.ts diff --git a/src/main/window/main-window-state-lifecycle.ts b/src/main/window/main-window-state-lifecycle.ts index 443534d8352..2a5345bef50 100644 --- a/src/main/window/main-window-state-lifecycle.ts +++ b/src/main/window/main-window-state-lifecycle.ts @@ -1,5 +1,6 @@ import { app, type BrowserWindow } from 'electron' import type { Store } from '../persistence' +import { uiZoomFactorFromLevel } from '../../shared/ui-zoom-level' import { isWindowlessLaunch, showWindowWithoutStealingFocus } from './foreground-activation-policy' import { MIN_HEIGHT, MIN_WIDTH, syncTrafficLightPosition } from './main-window-visual-lifecycle' @@ -23,7 +24,7 @@ export function installMainWindowStateLifecycle(args: { mainWindow.webContents.setZoomLevel(level) // Why: native traffic lights don't scale with CSS zoom; reposition on startup to stay aligned with the zoomed titlebar. if (process.platform === 'darwin') { - syncTrafficLightPosition(mainWindow, 1.2 ** level) + syncTrafficLightPosition(mainWindow, uiZoomFactorFromLevel(level)) } }) diff --git a/src/renderer/src/assets/main.css b/src/renderer/src/assets/main.css index 6987df890a7..5278f980fd8 100644 --- a/src/renderer/src/assets/main.css +++ b/src/renderer/src/assets/main.css @@ -856,6 +856,14 @@ html.native-shell .app-layout { flex-shrink: 0; } +/* Why: a viewport preset is a window-DIP size that CDP emulates on the guest, but + UI zoom redefines this renderer's CSS px. Dividing by the live zoom factor keeps + the host box exactly as wide as the emulated page (STA-7568). */ +.browser-page-preset-viewport { + width: calc(var(--browser-page-viewport-width) / var(--ui-zoom-factor, 1)); + height: calc(var(--browser-page-viewport-height) / var(--ui-zoom-factor, 1)); +} + /* Why: small identity anchor on desktop custom titlebars where native window chrome is hidden. Sized to sit comfortably in the 36px titlebar with a little horizontal breathing room. The SVG fill is white; light mode inverts diff --git a/src/renderer/src/components/browser-pane/assemble-chrome/browser-page-context-menu.tsx b/src/renderer/src/components/browser-pane/assemble-chrome/browser-page-context-menu.tsx index 345e77957c4..fb1830bd41f 100644 --- a/src/renderer/src/components/browser-pane/assemble-chrome/browser-page-context-menu.tsx +++ b/src/renderer/src/components/browser-pane/assemble-chrome/browser-page-context-menu.tsx @@ -1,3 +1,4 @@ +import { windowDipToCssPx } from '@/lib/ui-zoom' import { useCallback, useEffect, @@ -42,9 +43,8 @@ export function BrowserPageContextMenu({ return } // Why: convert OS screen cursor coords to renderer CSS pixels — immune to guest/renderer coordinate-space mismatches from zoom/DPI. - const zoomFactor = 1.2 ** window.api.ui.getZoomLevel() - const x = Math.round((event.screenX - window.screenX) / zoomFactor) - const y = Math.round((event.screenY - window.screenY) / zoomFactor) + const x = Math.round(windowDipToCssPx(event.screenX - window.screenX)) + const y = Math.round(windowDipToCssPx(event.screenY - window.screenY)) setContextMenu({ x, y, diff --git a/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.test.ts b/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.test.ts index 7054ff08fc6..716f7d971c3 100644 --- a/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.test.ts +++ b/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.test.ts @@ -1,7 +1,10 @@ // @vitest-environment happy-dom +import { readFileSync } from 'node:fs' +import { resolve } from 'node:path' import { afterEach, describe, expect, it } from 'vitest' import { applyBrowserPageViewportLayout, + BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME, ensureBrowserPageViewport, getBrowserPageViewportScrollState, getBrowserOverlaySlotViewport, @@ -15,6 +18,15 @@ import { syncBrowserPageChromeInset } from './browser-page-viewport' +function readPresetViewportCssRule(): string { + const css = readFileSync(resolve(import.meta.dirname, '../../../assets/main.css'), 'utf8') + const body = + css.match(new RegExp(`\\.${BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME}\\s*\\{(?[^}]*)\\}`)) + ?.groups?.body ?? '' + + return body.replace(/\s+/g, ' ').trim() +} + function mountSlotViewport(workspaceTabId: string): HTMLDivElement { const root = document.createElement('div') root.className = 'relative flex min-h-0 flex-1 flex-col' @@ -55,8 +67,9 @@ describe('ensureBrowserPageViewport', () => { expect(viewport.scroller.style.overflow).toBe('') setBrowserPageViewportPresetSize('page-1', { width: 1440, height: 900 }) - expect(viewport.content.style.width).toBe('1440px') - expect(viewport.content.style.height).toBe('900px') + expect(viewport.content.style.getPropertyValue('--browser-page-viewport-width')).toBe('1440px') + expect(viewport.content.style.getPropertyValue('--browser-page-viewport-height')).toBe('900px') + expect(viewport.content.classList.contains(BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME)).toBe(true) expect(viewport.scroller.style.overflow).toBe('auto') setBrowserPageViewportPresetSize('page-1', null) @@ -71,11 +84,51 @@ describe('ensureBrowserPageViewport', () => { removeBrowserPageViewport('page-1') const rebuilt = ensureBrowserPageViewport('page-1', 'workspace-1')! - expect(rebuilt.content.style.width).toBe('1024px') - expect(rebuilt.content.style.height).toBe('768px') + expect(rebuilt.content.style.getPropertyValue('--browser-page-viewport-width')).toBe('1024px') + expect(rebuilt.content.style.getPropertyValue('--browser-page-viewport-height')).toBe('768px') expect(rebuilt.scroller.style.overflow).toBe('auto') }) + // STA-7568: the CSS variable keeps the host box in window DIP while the stylesheet + // divides by the live UI zoom factor. + it('stores preset host dimensions as window-DIP CSS variables', () => { + mountSlotViewport('workspace-1') + + const viewport = ensureBrowserPageViewport('page-1', 'workspace-1')! + setBrowserPageViewportPresetSize('page-1', { width: 390, height: 844 }) + expect(viewport.content.style.getPropertyValue('--browser-page-viewport-width')).toBe('390px') + expect(viewport.content.style.getPropertyValue('--browser-page-viewport-height')).toBe('844px') + }) + + it('leaves the host box sized by the zoom-compensating rule, not an inline size', () => { + mountSlotViewport('workspace-1') + const viewport = ensureBrowserPageViewport('page-1', 'workspace-1')! + + setBrowserPageViewportPresetSize('page-1', { width: 390, height: 844 }) + + expect(viewport.content.classList.contains(BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME)).toBe(true) + // An inline width/height would outrank the rule and reinstate the unscaled DIP box. + expect(viewport.content.style.width).toBe('') + expect(viewport.content.style.height).toBe('') + }) + + it('divides the preset DIP size by the live UI zoom factor', () => { + expect(readPresetViewportCssRule()).toBe( + 'width: calc(var(--browser-page-viewport-width) / var(--ui-zoom-factor, 1)); ' + + 'height: calc(var(--browser-page-viewport-height) / var(--ui-zoom-factor, 1));' + ) + }) + + it('clears preset dimensions when no preset is active', () => { + mountSlotViewport('workspace-1') + const viewport = ensureBrowserPageViewport('page-1', 'workspace-1')! + setBrowserPageViewportPresetSize('page-1', { width: 390, height: 844 }) + setBrowserPageViewportPresetSize('page-1', null) + + expect(viewport.content.classList.contains(BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME)).toBe(false) + expect(viewport.content.style.width).toBe('100%') + }) + it('routes host wheel deltas to the preset scroller', () => { mountSlotViewport('workspace-1') const viewport = ensureBrowserPageViewport('page-1', 'workspace-1')! diff --git a/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.ts b/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.ts index a7f4a0d54e2..38a37415527 100644 --- a/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.ts +++ b/src/renderer/src/components/browser-pane/host-guest/browser-page-viewport.ts @@ -137,12 +137,30 @@ export function ensureBrowserPageViewport( return viewport } +/** Divides the preset's window-DIP size by the live UI zoom factor (see `main.css`). */ +export const BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME = 'browser-page-preset-viewport' + +// Why the DIP conversion: CDP emulates the guest viewport in window DIP, but UI zoom +// redefines this renderer's CSS px, so an unconverted `${width}px` host box outgrows the +// emulated page and leaves an unpainted strip beside it (STA-7568). function applyViewportPresetSizeStyles( viewport: BrowserPageViewport, size: { width: number; height: number } | null ): void { - viewport.content.style.width = size ? `${size.width}px` : '100%' - viewport.content.style.height = size ? `${size.height}px` : '100%' + if (size) { + viewport.content.style.setProperty('--browser-page-viewport-width', `${size.width}px`) + viewport.content.style.setProperty('--browser-page-viewport-height', `${size.height}px`) + // Why: an inline width/height would outrank the class rule's zoom division. + viewport.content.style.removeProperty('width') + viewport.content.style.removeProperty('height') + viewport.content.classList.add(BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME) + } else { + viewport.content.classList.remove(BROWSER_PAGE_PRESET_VIEWPORT_CLASS_NAME) + viewport.content.style.removeProperty('--browser-page-viewport-width') + viewport.content.style.removeProperty('--browser-page-viewport-height') + viewport.content.style.width = '100%' + viewport.content.style.height = '100%' + } viewport.scroller.style.overflow = size ? 'auto' : '' } diff --git a/src/renderer/src/components/settings/SettingsConstants.ts b/src/renderer/src/components/settings/SettingsConstants.ts index f129bea3265..c3651af04e0 100644 --- a/src/renderer/src/components/settings/SettingsConstants.ts +++ b/src/renderer/src/components/settings/SettingsConstants.ts @@ -1,5 +1,6 @@ import { DEFAULT_APP_FONT_FAMILY, getDefaultRepoHookSettings } from '../../../../shared/constants' import { DESKTOP_TERMINAL_SCROLLBACK_ROW_PRESETS } from '../../../../shared/terminal-scrollback-policy' +import { uiZoomFactorFromLevel } from '../../../../shared/ui-zoom-level' export const DEFAULT_REPO_HOOK_SETTINGS = getDefaultRepoHookSettings() export const MAX_THEME_RESULTS = 80 @@ -11,7 +12,7 @@ export { } from '../../../../shared/ui-zoom-level' export function zoomLevelToPercent(level: number): number { - return Math.round(100 * 1.2 ** level) + return Math.round(100 * uiZoomFactorFromLevel(level)) } export function mergeFontSuggestions( diff --git a/src/renderer/src/hooks/useIpcEvents-zoom-routing.test.ts b/src/renderer/src/hooks/useIpcEvents-zoom-routing.test.ts deleted file mode 100644 index 5e20aa0994b..00000000000 --- a/src/renderer/src/hooks/useIpcEvents-zoom-routing.test.ts +++ /dev/null @@ -1,408 +0,0 @@ -import type * as ReactModule from 'react' -import { beforeEach, describe, expect, it, vi } from 'vitest' -import { resolveZoomTarget } from './resolve-zoom-target' - -function makeTarget(args: { hasXtermClass?: boolean; editorClosest?: boolean }): { - classList: { contains: (token: string) => boolean } - closest: (selector: string) => Element | null -} { - const { hasXtermClass = false, editorClosest = false } = args - return { - classList: { - contains: (token: string) => hasXtermClass && token === 'xterm-helper-textarea' - }, - closest: () => (editorClosest ? ({} as Element) : null) - } -} - -describe('resolveZoomTarget', () => { - it('routes to terminal zoom when terminal input is focused', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'terminal', - activeElement: makeTarget({ hasXtermClass: true }) - }) - ).toBe('terminal') - }) - - it('routes to ui zoom for an active terminal tab after terminal focus is released', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'terminal', - activeElement: makeTarget({}) - }) - ).toBe('ui') - }) - - it('routes to editor zoom for editor tabs', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'editor', - activeElement: makeTarget({}) - }) - ).toBe('editor') - }) - - it('routes to editor zoom when editor surface has focus during stale tab state', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'terminal', - activeElement: makeTarget({ editorClosest: true }) - }) - ).toBe('editor') - }) - - it('routes to ui zoom outside terminal view', () => { - expect( - resolveZoomTarget({ - activeView: 'settings', - activeTabType: 'terminal', - activeElement: makeTarget({ hasXtermClass: true }) - }) - ).toBe('ui') - }) - - it('routes to ui zoom for active browser tabs before stale DOM focus', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'browser', - activeElement: makeTarget({ editorClosest: true, hasXtermClass: true }) - }) - ).toBe('ui') - }) - - it('routes to ui zoom for browser tabs without an active browser page', () => { - expect( - resolveZoomTarget({ - activeView: 'terminal', - activeTabType: 'browser', - activeElement: makeTarget({}) - }) - ).toBe('ui') - }) -}) - -describe('useIpcEvents zoom routing', () => { - beforeEach(() => { - vi.resetModules() - vi.unstubAllGlobals() - // Zoom routing never renders toast UI; keep Sonner's DOM style injector out of this synthetic-document harness. - vi.doMock('sonner', () => ({ - toast: { - dismiss: vi.fn(), - error: vi.fn(), - info: vi.fn(), - success: vi.fn(), - warning: vi.fn() - } - })) - }) - - it('applies app zoom for an active browser tab', async () => { - const terminalZoomListenerRef: { - current: ((direction: 'in' | 'out' | 'reset') => void) | null - } = { current: null } - const setUI = vi.fn() - - vi.doMock('react', async () => { - const actual = await vi.importActual('react') - return { - ...actual, - useEffect: (effect: () => void | (() => void)) => { - effect() - } - } - }) - vi.doMock('../store', () => ({ - useAppStore: { - subscribe: vi.fn(() => () => {}), - getState: () => ({ - activeView: 'terminal', - activeTabType: 'browser', - activeWorktreeId: 'wt-1', - activeBrowserTabId: 'workspace-1', - activeBrowserTabIdByWorktree: { 'wt-1': 'workspace-1' }, - browserTabsByWorktree: { - 'wt-1': [ - { - id: 'workspace-1', - activePageId: 'page-1', - pageIds: ['page-1'] - } - ] - }, - browserPagesByWorkspace: { - 'workspace-1': [{ id: 'page-1', worktreeId: 'wt-1' }] - }, - editorFontZoomLevel: 0, - setEditorFontZoomLevel: vi.fn(), - settings: { terminalFontSize: 13 }, - setUpdateStatus: vi.fn(), - fetchRepos: vi.fn(), - fetchWorktrees: vi.fn(), - setActiveView: vi.fn(), - activeModal: null, - closeModal: vi.fn(), - openModal: vi.fn(), - setActiveRepo: vi.fn(), - setActiveWorktree: vi.fn(), - revealWorktreeInSidebar: vi.fn(), - setIsFullScreen: vi.fn(), - setRateLimitsFromPush: vi.fn() - }) - } - })) - vi.doMock('@/lib/ui-zoom', () => ({ applyUIZoom: vi.fn() })) - vi.doMock('@/lib/worktree-activation', () => ({ - activateAndRevealWorktree: vi.fn(), - ensureWorktreeHasInitialTerminal: vi.fn() - })) - vi.doMock('@/components/sidebar/visible-worktrees', () => ({ - getVisibleWorktreeIds: () => [] - })) - vi.doMock('@/lib/editor-font-zoom', () => ({ - nextEditorFontZoomLevel: vi.fn(() => 0), - computeEditorFontSize: vi.fn(() => 13) - })) - vi.doMock('@/components/settings/SettingsConstants', () => ({ - zoomLevelToPercent: vi.fn(() => 120), - ZOOM_STEP: 0.5, - ZOOM_MIN: -3, - ZOOM_MAX: 3 - })) - vi.doMock('@/lib/zoom-events', () => ({ dispatchZoomLevelChanged: vi.fn() })) - - const makeEvents = (target: Record = {}): Record => - new Proxy(target, { - get: (namespace, prop) => { - if (typeof prop === 'string' && prop in namespace) { - return namespace[prop] - } - return () => () => {} - } - }) - vi.stubGlobal('document', { - activeElement: makeTarget({ editorClosest: true }) - }) - - vi.stubGlobal('window', { - dispatchEvent: vi.fn(), - setTimeout: vi.fn(() => 1), - clearTimeout: vi.fn(), - api: { - repos: makeEvents(), - automations: makeEvents(), - worktrees: makeEvents(), - keybindings: makeEvents(), - settings: makeEvents(), - updater: { - getStatus: () => Promise.resolve({ state: 'idle' }), - onStatus: () => () => {}, - onClearDismissal: () => () => {} - }, - browser: makeEvents(), - rateLimits: { - get: () => Promise.resolve({ limits: {}, lastUpdatedAt: Date.now() }), - onUpdate: () => () => {} - }, - ssh: { - listTargets: () => Promise.resolve([]), - listPortForwards: () => Promise.resolve([]), - listDetectedPorts: () => Promise.resolve([]), - getState: () => Promise.resolve(null), - onStateChanged: () => () => {}, - onCredentialRequest: () => () => {}, - onCredentialResolved: () => () => {}, - onPortForwardsChanged: () => () => {}, - onDetectedPortsChanged: () => () => {} - }, - runtime: { - getTerminalFitOverrides: () => Promise.resolve([]), - getTerminalDrivers: () => Promise.resolve([]), - getBrowserDrivers: () => Promise.resolve([]), - onTerminalFitOverrideChanged: () => () => {}, - onTerminalDriverChanged: () => () => {}, - onBrowserDriverChanged: () => () => {}, - onClientHostedBrowserRowsChanged: () => () => {}, - getClientHostedBrowserRows: async () => [] - }, - agentStatus: { onSet: () => () => {} }, - ui: makeEvents({ - consumePendingOpenSettings: () => Promise.resolve(false), - onTerminalZoom: (listener: (direction: 'in' | 'out' | 'reset') => void) => { - terminalZoomListenerRef.current = listener - return () => {} - }, - getZoomLevel: vi.fn(() => 0), - set: setUI - }) - } - }) - - const { useIpcEvents } = await import('./useIpcEvents') - const { applyUIZoom } = await import('@/lib/ui-zoom') - - useIpcEvents() - expect(terminalZoomListenerRef.current).toBeTypeOf('function') - const listener = terminalZoomListenerRef.current - if (!listener) { - throw new Error('Expected terminal zoom listener to be registered') - } - listener('in') - - expect(applyUIZoom).toHaveBeenCalledWith(0.5) - expect(setUI).toHaveBeenCalledWith({ uiZoomLevel: 0.5 }) - }) - - it('applies app zoom for an active terminal tab after terminal focus is released', async () => { - const terminalZoomListenerRef: { - current: ((direction: 'in' | 'out' | 'reset') => void) | null - } = { current: null } - const setUI = vi.fn() - - vi.doMock('react', async () => { - const actual = await vi.importActual('react') - return { - ...actual, - useEffect: (effect: () => void | (() => void)) => { - effect() - } - } - }) - vi.doMock('../store', () => ({ - useAppStore: { - subscribe: vi.fn(() => () => {}), - getState: () => ({ - activeView: 'terminal', - activeTabType: 'terminal', - activeWorktreeId: 'wt-1', - activeBrowserTabId: null, - activeBrowserTabIdByWorktree: {}, - browserTabsByWorktree: {}, - browserPagesByWorkspace: {}, - editorFontZoomLevel: 0, - setEditorFontZoomLevel: vi.fn(), - settings: { terminalFontSize: 13 }, - setUpdateStatus: vi.fn(), - fetchRepos: vi.fn(), - fetchWorktrees: vi.fn(), - setActiveView: vi.fn(), - activeModal: null, - closeModal: vi.fn(), - openModal: vi.fn(), - setActiveRepo: vi.fn(), - setActiveWorktree: vi.fn(), - revealWorktreeInSidebar: vi.fn(), - setIsFullScreen: vi.fn(), - setRateLimitsFromPush: vi.fn() - }) - } - })) - vi.doMock('@/lib/ui-zoom', () => ({ applyUIZoom: vi.fn() })) - vi.doMock('@/lib/worktree-activation', () => ({ - activateAndRevealWorktree: vi.fn(), - ensureWorktreeHasInitialTerminal: vi.fn() - })) - vi.doMock('@/components/sidebar/visible-worktrees', () => ({ - getVisibleWorktreeIds: () => [] - })) - vi.doMock('@/lib/editor-font-zoom', () => ({ - nextEditorFontZoomLevel: vi.fn(() => 0), - computeEditorFontSize: vi.fn(() => 13) - })) - vi.doMock('@/components/settings/SettingsConstants', () => ({ - zoomLevelToPercent: vi.fn(() => 120), - ZOOM_STEP: 0.5, - ZOOM_MIN: -3, - ZOOM_MAX: 3 - })) - vi.doMock('@/lib/zoom-events', () => ({ dispatchZoomLevelChanged: vi.fn() })) - - const makeEvents = (target: Record = {}): Record => - new Proxy(target, { - get: (namespace, prop) => { - if (typeof prop === 'string' && prop in namespace) { - return namespace[prop] - } - return () => () => {} - } - }) - vi.stubGlobal('document', { - activeElement: makeTarget({}) - }) - - vi.stubGlobal('window', { - dispatchEvent: vi.fn(), - setTimeout: vi.fn(() => 1), - clearTimeout: vi.fn(), - api: { - repos: makeEvents(), - automations: makeEvents(), - worktrees: makeEvents(), - keybindings: makeEvents(), - settings: makeEvents(), - updater: { - getStatus: () => Promise.resolve({ state: 'idle' }), - onStatus: () => () => {}, - onClearDismissal: () => () => {} - }, - browser: makeEvents(), - rateLimits: { - get: () => Promise.resolve({ limits: {}, lastUpdatedAt: Date.now() }), - onUpdate: () => () => {} - }, - ssh: { - listTargets: () => Promise.resolve([]), - listPortForwards: () => Promise.resolve([]), - listDetectedPorts: () => Promise.resolve([]), - getState: () => Promise.resolve(null), - onStateChanged: () => () => {}, - onCredentialRequest: () => () => {}, - onCredentialResolved: () => () => {}, - onPortForwardsChanged: () => () => {}, - onDetectedPortsChanged: () => () => {} - }, - runtime: { - getTerminalFitOverrides: () => Promise.resolve([]), - getTerminalDrivers: () => Promise.resolve([]), - getBrowserDrivers: () => Promise.resolve([]), - onTerminalFitOverrideChanged: () => () => {}, - onTerminalDriverChanged: () => () => {}, - onBrowserDriverChanged: () => () => {}, - onClientHostedBrowserRowsChanged: () => () => {}, - getClientHostedBrowserRows: async () => [] - }, - agentStatus: { onSet: () => () => {} }, - ui: makeEvents({ - consumePendingOpenSettings: () => Promise.resolve(false), - onTerminalZoom: (listener: (direction: 'in' | 'out' | 'reset') => void) => { - terminalZoomListenerRef.current = listener - return () => {} - }, - getZoomLevel: vi.fn(() => 0), - set: setUI - }) - } - }) - - const { useIpcEvents } = await import('./useIpcEvents') - const { applyUIZoom } = await import('@/lib/ui-zoom') - const { dispatchZoomLevelChanged } = await import('@/lib/zoom-events') - - useIpcEvents() - const listener = terminalZoomListenerRef.current - if (!listener) { - throw new Error('Expected terminal zoom listener to be registered') - } - listener('in') - - expect(applyUIZoom).toHaveBeenCalledWith(0.5) - expect(setUI).toHaveBeenCalledWith({ uiZoomLevel: 0.5 }) - expect(dispatchZoomLevelChanged).toHaveBeenCalledWith('ui', 120) - }) -}) diff --git a/src/renderer/src/hooks/zoom-routing.test.ts b/src/renderer/src/hooks/zoom-routing.test.ts new file mode 100644 index 00000000000..953a4d6ac51 --- /dev/null +++ b/src/renderer/src/hooks/zoom-routing.test.ts @@ -0,0 +1,235 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest' +import { UI_ZOOM_MAX } from '../../../shared/ui-zoom-level' +import { resolveZoomTarget } from './resolve-zoom-target' + +function makeTarget(args: { hasXtermClass?: boolean; editorClosest?: boolean }): { + classList: { contains: (token: string) => boolean } + closest: (selector: string) => Element | null +} { + const { hasXtermClass = false, editorClosest = false } = args + return { + classList: { + contains: (token: string) => hasXtermClass && token === 'xterm-helper-textarea' + }, + closest: () => (editorClosest ? ({} as Element) : null) + } +} + +describe('resolveZoomTarget', () => { + it('routes to terminal zoom when terminal input is focused', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'terminal', + activeElement: makeTarget({ hasXtermClass: true }) + }) + ).toBe('terminal') + }) + + it('routes to ui zoom for an active terminal tab after terminal focus is released', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'terminal', + activeElement: makeTarget({}) + }) + ).toBe('ui') + }) + + it('routes to editor zoom for editor tabs', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'editor', + activeElement: makeTarget({}) + }) + ).toBe('editor') + }) + + it('routes to editor zoom when editor surface has focus during stale tab state', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'terminal', + activeElement: makeTarget({ editorClosest: true }) + }) + ).toBe('editor') + }) + + it('routes to ui zoom outside terminal view', () => { + expect( + resolveZoomTarget({ + activeView: 'settings', + activeTabType: 'terminal', + activeElement: makeTarget({ hasXtermClass: true }) + }) + ).toBe('ui') + }) + + it('routes to ui zoom for active browser tabs before stale DOM focus', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'browser', + activeElement: makeTarget({ editorClosest: true, hasXtermClass: true }) + }) + ).toBe('ui') + }) + + it('routes to ui zoom for browser tabs without an active browser page', () => { + expect( + resolveZoomTarget({ + activeView: 'terminal', + activeTabType: 'browser', + activeElement: makeTarget({}) + }) + ).toBe('ui') + }) +}) + +describe('registerZoomIpcBridge', () => { + beforeEach(() => { + vi.resetModules() + vi.unstubAllGlobals() + }) + + // Why the bridge and not useIpcEvents: every assertion below is zoom-ipc-bridge behavior, + // and useIpcEvents only reaches it through app-lifetime-ipc-bridge's ~32-import graph — + // seconds of transform per test that timed out under parallel load. + async function mountZoomBridge( + args: { + activeView?: string + activeTabType?: string + activeElement?: ReturnType + uiZoomLevel?: number + editorFontZoomLevel?: number + } = {} + ) { + const { + activeView = 'terminal', + activeTabType = 'browser', + activeElement = makeTarget({ editorClosest: true, hasXtermClass: true }), + uiZoomLevel = 0, + editorFontZoomLevel = 0 + } = args + + const applyUIZoom = vi.fn() + const dispatchZoomLevelChanged = vi.fn() + const setEditorFontZoomLevel = vi.fn() + const setUI = vi.fn() + + vi.doMock('@/lib/ui-zoom', () => ({ applyUIZoom })) + vi.doMock('@/lib/zoom-events', () => ({ dispatchZoomLevelChanged })) + vi.doMock('../store', () => ({ + useAppStore: { + getState: () => ({ + activeView, + activeTabType, + editorFontZoomLevel, + setEditorFontZoomLevel, + settings: { terminalFontSize: 13 } + }) + } + })) + + const listenerRef: { current: ((direction: 'in' | 'out' | 'reset') => void) | null } = { + current: null + } + vi.stubGlobal('document', { activeElement }) + vi.stubGlobal('window', { + api: { + ui: { + onTerminalZoom: (listener: (direction: 'in' | 'out' | 'reset') => void) => { + listenerRef.current = listener + return () => {} + }, + getZoomLevel: () => uiZoomLevel, + set: setUI + } + } + }) + + const { registerZoomIpcBridge } = await import('./ipc-events/zoom-ipc-bridge') + const unsubs: (() => void)[] = [] + registerZoomIpcBridge(unsubs) + + expect(unsubs).toHaveLength(1) + const fire = listenerRef.current + if (!fire) { + throw new Error('Expected the terminal-zoom listener to be registered') + } + return { fire, applyUIZoom, dispatchZoomLevelChanged, setEditorFontZoomLevel, setUI } + } + + it('applies app zoom for an active browser tab', async () => { + const zoom = await mountZoomBridge({ activeTabType: 'browser' }) + + zoom.fire('in') + + expect(zoom.applyUIZoom).toHaveBeenCalledWith(0.5) + expect(zoom.setUI).toHaveBeenCalledWith({ uiZoomLevel: 0.5 }) + // 1.2 ** 0.5 rounds to 110%, the percent the zoom overlay shows. + expect(zoom.dispatchZoomLevelChanged).toHaveBeenCalledWith('ui', 110) + }) + + it('applies app zoom for an active terminal tab after terminal focus is released', async () => { + const zoom = await mountZoomBridge({ + activeTabType: 'terminal', + activeElement: makeTarget({}) + }) + + zoom.fire('in') + + expect(zoom.applyUIZoom).toHaveBeenCalledWith(0.5) + expect(zoom.setUI).toHaveBeenCalledWith({ uiZoomLevel: 0.5 }) + expect(zoom.dispatchZoomLevelChanged).toHaveBeenCalledWith('ui', 110) + }) + + it('leaves zoom to the terminal while terminal input holds focus', async () => { + const zoom = await mountZoomBridge({ + activeTabType: 'terminal', + activeElement: makeTarget({ hasXtermClass: true }) + }) + + zoom.fire('in') + + expect(zoom.applyUIZoom).not.toHaveBeenCalled() + expect(zoom.setUI).not.toHaveBeenCalled() + expect(zoom.dispatchZoomLevelChanged).not.toHaveBeenCalled() + }) + + it('routes an editor tab to editor font zoom instead of app zoom', async () => { + const zoom = await mountZoomBridge({ + activeTabType: 'editor', + activeElement: makeTarget({}), + editorFontZoomLevel: 0 + }) + + zoom.fire('in') + + expect(zoom.setEditorFontZoomLevel).toHaveBeenCalledWith(1) + expect(zoom.setUI).toHaveBeenCalledWith({ editorFontZoomLevel: 1 }) + // 13px base + one step = 14px, reported against the base as 108%. + expect(zoom.dispatchZoomLevelChanged).toHaveBeenCalledWith('editor', 108) + expect(zoom.applyUIZoom).not.toHaveBeenCalled() + }) + + it('clamps app zoom at the supported maximum', async () => { + const zoom = await mountZoomBridge({ uiZoomLevel: UI_ZOOM_MAX }) + + zoom.fire('in') + + expect(zoom.applyUIZoom).toHaveBeenCalledWith(UI_ZOOM_MAX) + expect(zoom.setUI).toHaveBeenCalledWith({ uiZoomLevel: UI_ZOOM_MAX }) + }) + + it('resets app zoom to 100% regardless of the current level', async () => { + const zoom = await mountZoomBridge({ uiZoomLevel: 2 }) + + zoom.fire('reset') + + expect(zoom.applyUIZoom).toHaveBeenCalledWith(0) + expect(zoom.setUI).toHaveBeenCalledWith({ uiZoomLevel: 0 }) + expect(zoom.dispatchZoomLevelChanged).toHaveBeenCalledWith('ui', 100) + }) +}) diff --git a/src/renderer/src/lib/ui-zoom.test.ts b/src/renderer/src/lib/ui-zoom.test.ts new file mode 100644 index 00000000000..93f9716ab8d --- /dev/null +++ b/src/renderer/src/lib/ui-zoom.test.ts @@ -0,0 +1,103 @@ +import { afterEach, describe, expect, it, vi } from 'vitest' +import type * as UIZoomModule from './ui-zoom' + +const MAC_UA = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)' +const LINUX_UA = 'Mozilla/5.0 (X11; Linux x86_64)' + +/** Loads a fresh copy of the module: `isMac` is resolved once at module scope, + * so platform and the preload bridge have to be in place before evaluation. */ +async function loadUIZoom( + args: { level?: number; userAgent?: string; withBridge?: boolean } = {} +): Promise<{ + module: typeof UIZoomModule + setProperty: ReturnType + setZoomLevel: ReturnType + syncTrafficLights: ReturnType + setLevel: (level: number) => void +}> { + const { level = 0, userAgent = LINUX_UA, withBridge = true } = args + let current = level + const setProperty = vi.fn() + const setZoomLevel = vi.fn((next: number) => { + current = next + }) + const syncTrafficLights = vi.fn() + + vi.stubGlobal('navigator', { userAgent }) + vi.stubGlobal('document', { documentElement: { style: { setProperty } } }) + vi.stubGlobal( + 'window', + withBridge + ? { api: { ui: { getZoomLevel: () => current, setZoomLevel, syncTrafficLights } } } + : {} + ) + + vi.resetModules() + const module = await import('./ui-zoom') + return { module, setProperty, setZoomLevel, syncTrafficLights, setLevel: (l) => (current = l) } +} + +afterEach(() => { + vi.unstubAllGlobals() +}) + +describe('windowDipToCssPx', () => { + // STA-7568: a box pinned to a native size must shrink as UI zoom inflates the CSS px + // it is measured in, so that box x factor lands back on the DIP size it was given. + it('converts a DIP size into the CSS px that occupies it at the live zoom level', async () => { + const { module, setLevel } = await loadUIZoom() + + for (const level of [0, 1, -1, 0.5, 5]) { + setLevel(level) + const zoomFactor = 1.2 ** level + expect(module.windowDipToCssPx(390) * zoomFactor).toBeCloseTo(390) + } + }) + + it('is identity at 100% zoom', async () => { + const { module } = await loadUIZoom({ level: 0 }) + + expect(module.windowDipToCssPx(390)).toBe(390) + }) + + it('falls back to unscaled CSS px when no preload zoom bridge exists', async () => { + // The web client serves the same renderer without a webFrame to zoom. + const { module } = await loadUIZoom({ withBridge: false }) + + expect(module.windowDipToCssPx(390)).toBe(390) + }) +}) + +describe('applyUIZoom', () => { + it('sets the webFrame level and publishes the matching factor', async () => { + const { module, setProperty, setZoomLevel } = await loadUIZoom() + + module.applyUIZoom(1) + + expect(setZoomLevel).toHaveBeenCalledWith(1) + expect(setProperty).toHaveBeenCalledWith('--ui-zoom-factor', String(1.2)) + }) + + it('repositions native traffic lights on macOS only', async () => { + const mac = await loadUIZoom({ userAgent: MAC_UA }) + mac.module.applyUIZoom(1) + expect(mac.syncTrafficLights).toHaveBeenCalledWith(1.2) + + const linux = await loadUIZoom({ userAgent: LINUX_UA }) + linux.module.applyUIZoom(1) + expect(linux.syncTrafficLights).not.toHaveBeenCalled() + }) +}) + +describe('syncZoomCSSVar', () => { + it('publishes the restored level without rewriting it', async () => { + const { module, setProperty, setZoomLevel } = await loadUIZoom({ level: 1 }) + + module.syncZoomCSSVar() + + expect(setProperty).toHaveBeenCalledWith('--ui-zoom-factor', String(1.2)) + // Main restores the zoom before startup hydration runs; writing it back would be a no-op + // at best and could clobber a level applied in between. + expect(setZoomLevel).not.toHaveBeenCalled() + }) +}) diff --git a/src/renderer/src/lib/ui-zoom.ts b/src/renderer/src/lib/ui-zoom.ts index eb1749f222c..42851476a32 100644 --- a/src/renderer/src/lib/ui-zoom.ts +++ b/src/renderer/src/lib/ui-zoom.ts @@ -1,17 +1,37 @@ +import { uiZoomFactorFromLevel } from '../../../shared/ui-zoom-level' + const isMac = navigator.userAgent.includes('Mac') +/** Mirrors the live UI zoom factor so stylesheets can compensate a box that has + * to hold a fixed window-DIP size (see `main.css`'s traffic-light pad). */ +const UI_ZOOM_FACTOR_CSS_VAR = '--ui-zoom-factor' + +/** Scale applied to this renderer's CSS pixels, or the persisted level in the web client. */ +function getUIZoomFactor(): number { + return uiZoomFactorFromLevel(window.api?.ui?.getZoomLevel?.() ?? 0) +} + +/** Window DIP -> renderer CSS px. Use when laying out a DOM box that has to + * land on an exact native size, such as an emulated guest viewport. */ +export function windowDipToCssPx(dip: number): number { + return dip / getUIZoomFactor() +} + +function publishZoomFactor(zoomFactor: number): void { + document.documentElement.style.setProperty(UI_ZOOM_FACTOR_CSS_VAR, String(zoomFactor)) + if (isMac) { + window.api.ui.syncTrafficLights(zoomFactor) + } +} + /** * Apply a UI zoom level change: sets webFrame zoom via the preload API, * updates the CSS variable used to compensate the traffic-light pad, * and repositions the native macOS traffic lights to stay aligned. */ export function applyUIZoom(level: number): void { - const zoomFactor = 1.2 ** level window.api.ui.setZoomLevel(level) - document.documentElement.style.setProperty('--ui-zoom-factor', String(zoomFactor)) - if (isMac) { - window.api.ui.syncTrafficLights(zoomFactor) - } + publishZoomFactor(uiZoomFactorFromLevel(level)) } /** @@ -19,10 +39,5 @@ export function applyUIZoom(level: number): void { * Call on startup after the main process has restored the zoom. */ export function syncZoomCSSVar(): void { - const level = window.api.ui.getZoomLevel() - const zoomFactor = 1.2 ** level - document.documentElement.style.setProperty('--ui-zoom-factor', String(zoomFactor)) - if (isMac) { - window.api.ui.syncTrafficLights(zoomFactor) - } + publishZoomFactor(getUIZoomFactor()) } diff --git a/src/shared/ui-zoom-level.ts b/src/shared/ui-zoom-level.ts index 7dc0c552d1c..4f443aea8be 100644 --- a/src/shared/ui-zoom-level.ts +++ b/src/shared/ui-zoom-level.ts @@ -1,3 +1,6 @@ +/** Chromium's zoom-level base: one level step multiplies rendered size by this. */ +export const UI_ZOOM_BASE = 1.2 + export const UI_ZOOM_STEP = 0.5 export const UI_ZOOM_MIN = -3 export const UI_ZOOM_MAX = 5 @@ -13,3 +16,10 @@ export function stepUIZoomLevel(current: number, direction: UIZoomDirection): nu const next = direction === 'in' ? current + UI_ZOOM_STEP : current - UI_ZOOM_STEP return Math.max(UI_ZOOM_MIN, Math.min(UI_ZOOM_MAX, next)) } + +/** The scale Chromium applies to renderer CSS pixels at this zoom level. + * Renderer CSS px x factor = window DIP, which is why native geometry + * (traffic lights, OS cursor coords, emulated guest viewports) must convert. */ +export function uiZoomFactorFromLevel(level: number): number { + return UI_ZOOM_BASE ** level +} From d62328aa4d0113e1afbbce62aec8a08300d77215 Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Wed, 16 Sep 2026 00:30:52 -0700 Subject: [PATCH 25/28] fix(codex): remove redundant Windows hook launcher for Unicode profiles (#20952) * fix(codex): reuse the Windows hook shell for Unicode profile paths * test(codex): register Unicode hook tests in Windows CI * test(codex): pin trust hash replacement during Windows upgrade * test(codex): retry transient Windows teardown locks --- .github/workflows/pr.yml | 2 + config/scripts/pr-code-change-scope.mjs | 2 + src/main/agent-hooks/installer-utils.test.ts | 12 +- src/main/agent-hooks/installer-utils.ts | 15 +- .../managed-hook-command-contract.test.ts | 7 +- src/main/codex/codex-hook-definition.ts | 13 +- .../hook-service-managed-install.test.ts | 32 ++-- src/main/codex/windows-hook-command.test.ts | 146 ++++++++++++++++++ src/main/codex/windows-hook-upgrade.test.ts | 97 ++++++++++++ 9 files changed, 295 insertions(+), 31 deletions(-) create mode 100644 src/main/codex/windows-hook-command.test.ts create mode 100644 src/main/codex/windows-hook-upgrade.test.ts 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..77c38c546ac 100644 --- a/config/scripts/pr-code-change-scope.mjs +++ b/config/scripts/pr-code-change-scope.mjs @@ -223,6 +223,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', diff --git a/src/main/agent-hooks/installer-utils.test.ts b/src/main/agent-hooks/installer-utils.test.ts index e68e3cc3554..40966c0f725 100644 --- a/src/main/agent-hooks/installer-utils.test.ts +++ b/src/main/agent-hooks/installer-utils.test.ts @@ -707,10 +707,7 @@ describe('wrapWindowsHookCommand', () => { describe('wrapWindowsCmdHookCommand', () => { it('returns the bare, directly-spawnable path for a cmd-safe managed script', () => { - // Why: Codex/Antigravity/Devin launch the command as a program (argv[0]), - // not via cmd.exe, so the launcher must be a single spawnable token — a bare - // .cmd path. A cmd-builtin `if …` launcher has argv[0] = `if`, which is - // unspawnable and fails every hook with exit 1 (#8430 regression). + // Direct-spawn consumers need a launchable argv[0], not a cmd builtin such as `if`. const scriptPath = 'C:\\Users\\alice\\.orca\\agent-hooks\\codex-hook.cmd' const command = wrapWindowsCmdHookCommand(scriptPath) expect(command).toBe(scriptPath) @@ -721,12 +718,7 @@ describe('wrapWindowsCmdHookCommand', () => { it.skipIf(process.platform !== 'win32')( 'resolves the launcher to a real executable file, not a shell fragment', () => { - // Regression guard for #8430: Codex/Antigravity/Devin spawn the launcher as - // a program (argv[0]), so it must be an existing, launchable file. The broken - // `if exist … (call …)` form had argv[0] = `if` — a cmd builtin, not a file — - // which is unspawnable and failed every hook. The bare path is the file. - // win32-only: the real temp path is cmd-safe only with backslashes; a POSIX - // tmpDir has `/`, which routes to the encoded fallback by design. + // POSIX temp paths contain `/`, which selects the encoded fallback instead. const scriptPath = join(tmpDir, 'codex-hook.cmd') writeFileSync(scriptPath, '@echo off\r\nexit /b 0\r\n', 'utf-8') const command = wrapWindowsCmdHookCommand(scriptPath) diff --git a/src/main/agent-hooks/installer-utils.ts b/src/main/agent-hooks/installer-utils.ts index a53721d42fe..ac4abee9469 100644 --- a/src/main/agent-hooks/installer-utils.ts +++ b/src/main/agent-hooks/installer-utils.ts @@ -118,6 +118,16 @@ export { } from './windows-powershell-hook-launcher' export function wrapWindowsHookCommand( + scriptPath: string, + env: Record = {}, + options: { fallbackStdout?: string } = {} +): string { + return wrapWindowsPowerShellEncodedCommand( + buildWindowsHookPowerShellCommand(scriptPath, env, options) + ) +} + +export function buildWindowsHookPowerShellCommand( scriptPath: string, env: Record = {}, // Why: POSIX wrap already answers missing-script with stdout; Windows must match so gate events cannot drift (#15462). @@ -135,14 +145,13 @@ export function wrapWindowsHookCommand( // Why the order: answer first (a gate event reads silence as deny), then the shared // env guard, and only then own stdin — outside an Orca pane the caller may abandon the // pipe, and ReadToEnd would strand the launcher there forever (#11549). - const command = `${envPrefix}if (Test-Path -LiteralPath ${quoted} -PathType Leaf) { & ${quoted}; exit $LASTEXITCODE }; ${fallback}${WINDOWS_POWERSHELL_HOOK_ENVIRONMENT_GUARD}; [Console]::In.ReadToEnd() | Out-Null; exit 0` - return wrapWindowsPowerShellEncodedCommand(command) + return `${envPrefix}if (Test-Path -LiteralPath ${quoted} -PathType Leaf) { & ${quoted}; exit $LASTEXITCODE }; ${fallback}${WINDOWS_POWERSHELL_HOOK_ENVIRONMENT_GUARD}; [Console]::In.ReadToEnd() | Out-Null; exit 0` } export const WINDOWS_CMD_SAFE_PATH = /^[A-Za-z0-9_.:\\~-]+$/ export function wrapWindowsCmdHookCommand(scriptPath: string): string { - // Why: Codex/Antigravity/Devin spawn the hook as argv[0], not via cmd.exe, so it must be one spawnable token; a cmd `if exist` launcher isn't (#8430). + // Direct-spawn consumers need one executable token; a cmd `if exist` fragment is not one (#8430). return WINDOWS_CMD_SAFE_PATH.test(scriptPath) ? scriptPath : wrapWindowsHookCommand(scriptPath) } diff --git a/src/main/agent-hooks/managed-hook-command-contract.test.ts b/src/main/agent-hooks/managed-hook-command-contract.test.ts index 72b522e8ff5..a49b45b6df4 100644 --- a/src/main/agent-hooks/managed-hook-command-contract.test.ts +++ b/src/main/agent-hooks/managed-hook-command-contract.test.ts @@ -182,7 +182,12 @@ describe('managed hook command contract', () => { expect(commands.length).toBeGreaterThan(0) for (const command of commands) { expect(command.length).toBeGreaterThan(0) - expect(findBareHookCommandVariables(command), command).toEqual([]) + // Native Windows Codex evaluates PowerShell variables without Grok's dollar-byte scanner. + const scannedCommand = + agent === 'codex' && platform === 'win32' && command.startsWith('if (Test-Path') + ? command.replaceAll('$LASTEXITCODE', '').replaceAll('$env:', '') + : command + expect(findBareHookCommandVariables(scannedCommand), command).toEqual([]) } }) }) diff --git a/src/main/codex/codex-hook-definition.ts b/src/main/codex/codex-hook-definition.ts index 6f03bc0aabe..641a5fc1b08 100644 --- a/src/main/codex/codex-hook-definition.ts +++ b/src/main/codex/codex-hook-definition.ts @@ -1,8 +1,9 @@ import { join } from 'node:path' import { getSharedManagedScriptPath, + buildWindowsHookPowerShellCommand, wrapPosixHookCommand, - wrapWindowsCmdHookCommand, + WINDOWS_CMD_SAFE_PATH, writeHooksJson, type HookDefinition } from '../agent-hooks/installer-utils' @@ -70,9 +71,13 @@ export function getManagedScriptPath(): string { } export function getManagedCommand(scriptPath: string): string { - return process.platform === 'win32' - ? wrapWindowsCmdHookCommand(scriptPath) - : wrapPosixHookCommand(scriptPath) + if (process.platform !== 'win32') { + return wrapPosixHookCommand(scriptPath) + } + // Codex's default native Windows hook host is PowerShell; reuse it to avoid a second interpreter. + return WINDOWS_CMD_SAFE_PATH.test(scriptPath) + ? scriptPath + : buildWindowsHookPowerShellCommand(scriptPath) } export type CodexManagedHookInstallMaterial = { diff --git a/src/main/codex/hook-service-managed-install.test.ts b/src/main/codex/hook-service-managed-install.test.ts index 3e242dc2cf4..caa67752a7f 100644 --- a/src/main/codex/hook-service-managed-install.test.ts +++ b/src/main/codex/hook-service-managed-install.test.ts @@ -28,11 +28,9 @@ vi.mock('os', async (importOriginal) => { }) import { CodexHookService } from './hook-service' +import { buildWindowsHookPowerShellCommand } from '../agent-hooks/installer-utils' import { runExclusivelyForCodexTrustConfig } from './codex-trust-config-mutation-queue' -const WINDOWS_POWERSHELL_LAUNCHER = - /^[A-Za-z]:\/[^"]*\/System32\/WindowsPowerShell\/v1\.0\/powershell\.exe -NoProfile -EncodedCommand \S+$/ - const homes = setupCodexHookHomes(homedirMock, getPathMock) function localManagedCodexEvents(): string[] { @@ -184,10 +182,7 @@ describe('CodexHookService', () => { expect(Object.keys(hooksConfig)).toEqual(['hooks']) }) - // Why: #6078 — a Windows user profile path like `C:\Users\Jane Doe` used to - // be written verbatim as the hook command, so Codex split it at the space and - // the hook exited with code 1. Keep spaced paths on the encoded launcher so - // `cmd.exe /C` never sees the raw script path. + // #6078: the existing PowerShell host must still quote spaced profile paths. it.skipIf(process.platform !== 'win32')( 'wraps the managed hook command when the profile path contains a space (#6078)', async () => { @@ -208,7 +203,11 @@ describe('CodexHookService', () => { for (const eventName of localManagedCodexEvents()) { const command = hooksConfig.hooks[eventName]?.[0]?.hooks?.[0]?.command - expect(command).toMatch(WINDOWS_POWERSHELL_LAUNCHER) + expect(command).toBe( + buildWindowsHookPowerShellCommand( + join(homedir(), '.orca', 'agent-hooks', 'codex-hook.cmd') + ) + ) } } finally { rmSync(spaceHome, { recursive: true, force: true }) @@ -216,10 +215,9 @@ describe('CodexHookService', () => { } ) - // Why: cmd.exe expands `%` and treats `^` as an escape even inside otherwise - // plausible paths. Keep those rare cases on the encoded launcher from #6078. + // Preserve literal-path quoting when constructing commands for shell metacharacters. it.skipIf(process.platform !== 'win32')( - 'keeps the encoded launcher when the profile path contains cmd metacharacters', + 'quotes the script path when the profile contains cmd metacharacters', async () => { const metacharHome = join(tmpdir(), 'orca %ORCA_TEST% ^ home') mkdirSync(metacharHome, { recursive: true }) @@ -238,7 +236,11 @@ describe('CodexHookService', () => { for (const eventName of localManagedCodexEvents()) { const command = hooksConfig.hooks[eventName]?.[0]?.hooks?.[0]?.command - expect(command).toMatch(WINDOWS_POWERSHELL_LAUNCHER) + expect(command).toBe( + buildWindowsHookPowerShellCommand( + join(homedir(), '.orca', 'agent-hooks', 'codex-hook.cmd') + ) + ) } } finally { rmSync(metacharHome, { recursive: true, force: true }) @@ -268,7 +270,11 @@ describe('CodexHookService', () => { expect(command).not.toMatch(/powershell/i) expect(command).toMatch(/\\agent-hooks\\codex-hook\.cmd$/) } else { - expect(command).toMatch(WINDOWS_POWERSHELL_LAUNCHER) + expect(command).toBe( + buildWindowsHookPowerShellCommand( + join(homedir(), '.orca', 'agent-hooks', 'codex-hook.cmd') + ) + ) } } ) diff --git a/src/main/codex/windows-hook-command.test.ts b/src/main/codex/windows-hook-command.test.ts new file mode 100644 index 00000000000..d1fc2c8b098 --- /dev/null +++ b/src/main/codex/windows-hook-command.test.ts @@ -0,0 +1,146 @@ +import { afterEach, describe, expect, it, vi } from 'vitest' +import { existsSync, mkdtempSync, mkdirSync, rmSync, writeFileSync } from 'node:fs' +import { tmpdir } from 'node:os' +import { delimiter, join } from 'node:path' +import { createServer } from 'node:http' +import { runProcess } from '../../shared/child-process/run-process' +import { removeTree } from '../../shared/windows-transient-lock-removal' +import { getManagedCommand, CODEX_EVENTS } from './codex-hook-definition' +import { getManagedScript } from './codex-hook-script' +import { + createManagedCommandMatcher, + wrapWindowsCmdHookCommand +} from '../agent-hooks/installer-utils' + +vi.mock('electron', () => ({ app: { getPath: () => process.cwd() } })) +afterEach(() => vi.restoreAllMocks()) + +describe('Codex Windows hook command', () => { + it.each(['测试用户', '홍길동', '日本語', 'rené', '测试 用户', "测试 O'Brien"])( + 'uses the existing PowerShell host for %s without a second interpreter', + (profile) => { + vi.spyOn(process, 'platform', 'get').mockReturnValue('win32') + const path = `C:\\Users\\${profile}\\.orca\\agent-hooks\\codex-hook.cmd` + const command = getManagedCommand(path) + expect(command).not.toMatch(/powershell\.exe|EncodedCommand|Set-ExecutionPolicy/) + expect(command).toContain(`-LiteralPath '${path.replaceAll("'", "''")}' -PathType Leaf`) + expect(command).toContain(`[Console]::In.ReadToEnd()`) + expect(createManagedCommandMatcher('codex-hook.cmd')(command)).toBe(true) + expect(wrapWindowsCmdHookCommand(path)).toContain('-EncodedCommand') + } + ) + + it('preserves the existing ASCII command and POSIX launcher', () => { + vi.spyOn(process, 'platform', 'get').mockReturnValue('win32') + const path = 'C:\\Users\\alice\\.orca\\agent-hooks\\codex-hook.cmd' + expect(getManagedCommand(path)).toBe(path) + vi.spyOn(process, 'platform', 'get').mockReturnValue('linux') + expect(getManagedCommand('/home/测试/.orca/agent-hooks/codex-hook.sh')).toContain( + "[ -x '/home/测试/.orca/agent-hooks/codex-hook.sh' ]" + ) + }) +}) + +const windowsPowerShell = join( + process.env.SystemRoot ?? 'C:\\Windows', + 'System32', + 'WindowsPowerShell', + 'v1.0', + 'powershell.exe' +) +const windowsPwsh = (process.env.PATH ?? '') + .split(delimiter) + .map((directory) => join(directory, 'pwsh.exe')) + .find((file) => existsSync(file)) + +describe.skipIf(process.platform !== 'win32')('Codex hook delivery through PowerShell', () => { + it.each([windowsPowerShell, ...(windowsPwsh ? [windowsPwsh] : [])])( + 'delivers all eight events exactly once from a Unicode profile through %s', + async (shell) => { + const root = mkdtempSync(join(tmpdir(), 'orca-codex-cjk-')) + const home = join(root, "测试 사용자 O'Brien") + mkdirSync(home) + const scriptPath = join(home, 'codex-hook.cmd') + writeFileSync(scriptPath, getManagedScript()) + const posts: URLSearchParams[] = [] + const tokens: unknown[] = [] + const server = createServer((req, res) => { + const chunks: Buffer[] = [] + req.on('data', (chunk) => chunks.push(chunk)) + req.on('end', () => { + tokens.push(req.headers['x-orca-agent-hook-token']) + posts.push(new URLSearchParams(Buffer.concat(chunks).toString('utf8'))) + res.writeHead(204).end() + }) + }) + await new Promise((resolve) => server.listen(0, '127.0.0.1', resolve)) + const address = server.address() + if (!address || typeof address === 'string') { + throw new Error('Missing listener port') + } + const env = { + ...Object.fromEntries( + Object.entries(process.env).filter(([key]) => !key.startsWith('ORCA_')) + ), + ORCA_BACKGROUND_LAUNCH: '1', + ORCA_AGENT_HOOK_PORT: String(address.port), + ORCA_AGENT_HOOK_TOKEN: 'unicode-test-token', + ORCA_PANE_KEY: 'unicode-tab:unicode-leaf', + ORCA_WORKTREE_ID: 'C:\\folder workspace\\测试 & repo' + } + const payloads = CODEX_EVENTS.map((hook_event_name) => + JSON.stringify({ + hook_event_name, + prompt: '测试 한국어 😀 " \\ \n & %PATH% ! $HOME '.repeat(7000) + }) + ) + const invoke = (command: string, input: string) => + runProcess({ + program: shell, + args: ['-NoProfile', '-Command', command], + input, + env, + timeoutMs: 10_000, + terminationBarrier: true + }) + try { + for (let offset = 0; offset < payloads.length; offset += 4) { + const results = await Promise.all( + payloads + .slice(offset, offset + 4) + .map((payload) => invoke(getManagedCommand(scriptPath), payload)) + ) + for (const result of results) { + expect(result).toMatchObject({ code: 0, stdout: '', stderr: '', timedOut: false }) + } + } + expect(posts).toHaveLength(CODEX_EVENTS.length) + expect(tokens).toEqual(CODEX_EVENTS.map(() => 'unicode-test-token')) + expect(posts.map((post) => post.get('payload')).sort()).toEqual([...payloads].sort()) + for (const post of posts) { + expect(post.get('paneKey')).toBe(env.ORCA_PANE_KEY) + expect(post.get('worktreeId')).toBe(env.ORCA_WORKTREE_ID) + } + await new Promise((resolve) => server.close(() => resolve())) + expect(await invoke(getManagedCommand(scriptPath), payloads[0])).toMatchObject({ + code: 0, + stdout: '', + stderr: '', + timedOut: false + }) + rmSync(scriptPath) + expect(await invoke(getManagedCommand(scriptPath), payloads[0])).toMatchObject({ + code: 0, + stdout: '', + stderr: '', + timedOut: false + }) + expect(posts).toHaveLength(CODEX_EVENTS.length) + } finally { + await new Promise((resolve) => server.close(() => resolve())) + await removeTree(root) + } + }, + 30_000 + ) +}) diff --git a/src/main/codex/windows-hook-upgrade.test.ts b/src/main/codex/windows-hook-upgrade.test.ts new file mode 100644 index 00000000000..203fdfb99c2 --- /dev/null +++ b/src/main/codex/windows-hook-upgrade.test.ts @@ -0,0 +1,97 @@ +import { describe, expect, it, vi } from 'vitest' +import { mkdirSync, readFileSync, writeFileSync } from 'node:fs' +import { join } from 'node:path' +import type * as Os from 'node:os' +import { setupCodexHookHomes } from './hook-service-test-harness' + +const { getPathMock, homedirMock } = vi.hoisted(() => ({ + getPathMock: vi.fn<(name: string) => string>(), + homedirMock: vi.fn<() => string>() +})) +vi.mock('electron', () => ({ app: { getPath: getPathMock } })) +vi.mock('os', async (importOriginal) => ({ + ...(await importOriginal()), + homedir: homedirMock +})) + +import { CodexHookService } from './hook-service' +import { CODEX_EVENTS, CODEX_EVENT_LABEL, getManagedCommand } from './codex-hook-definition' +import { readHooksJson, wrapWindowsHookCommand } from '../agent-hooks/installer-utils' +import { + computeTrustedHash, + getCodexExplicitHomeHookSourcePath, + upsertHookTrustEntries +} from './config-toml-trust' + +const homes = setupCodexHookHomes(homedirMock, getPathMock) + +describe.skipIf(process.platform !== 'win32')('Unicode Windows hook upgrade', () => { + it('replaces all encoded commands and trust hashes while preserving user hooks on reinstall', async () => { + const home = join(homes.tmpHome, '测试 用户') + mkdirSync(home) + homedirMock.mockReturnValue(home) + const runtimeHome = join(homes.userDataDir, 'codex-runtime-home', 'home') + const configPath = join(runtimeHome, 'hooks.json') + const tomlPath = join(runtimeHome, 'config.toml') + const scriptPath = join(home, '.orca', 'agent-hooks', 'codex-hook.cmd') + const oldCommand = wrapWindowsHookCommand(scriptPath) + const userHome = join(home, '.codex') + mkdirSync(userHome) + const userConfig = JSON.stringify({ + hooks: { Stop: [{ hooks: [{ type: 'command', command: 'user-hook' }] }] } + }) + writeFileSync(join(userHome, 'hooks.json'), userConfig) + mkdirSync(runtimeHome, { recursive: true }) + writeFileSync( + configPath, + JSON.stringify({ + hooks: Object.fromEntries( + CODEX_EVENTS.map((event) => [ + event, + [{ hooks: [{ type: 'command', command: oldCommand, timeout: 10 }] }] + ]) + ) + }) + ) + upsertHookTrustEntries( + tomlPath, + CODEX_EVENTS.map((event) => ({ + sourcePath: getCodexExplicitHomeHookSourcePath(configPath), + eventLabel: CODEX_EVENT_LABEL[event], + groupIndex: 0, + handlerIndex: 0, + command: oldCommand, + timeoutSec: 10 + })) + ) + const service = new CodexHookService() + expect(service.getStatus().state).not.toBe('installed') + for (let pass = 0; pass < 2; pass++) { + expect((await service.install()).state).toBe('installed') + expect(service.getStatus().state).toBe('installed') + const hooks = readHooksJson(configPath)?.hooks + const trust = readFileSync(tomlPath, 'utf8') + for (const event of CODEX_EVENTS) { + const commands = hooks?.[event]?.flatMap((group) => group.hooks ?? []) ?? [] + expect( + commands.filter((hook) => hook.command === getManagedCommand(scriptPath)) + ).toHaveLength(1) + expect(commands.some((hook) => hook.command === oldCommand)).toBe(false) + const entry = { + sourcePath: getCodexExplicitHomeHookSourcePath(configPath), + eventLabel: CODEX_EVENT_LABEL[event], + groupIndex: 0, + handlerIndex: 0, + command: getManagedCommand(scriptPath), + timeoutSec: 10 + } + expect(trust).toContain(computeTrustedHash(entry)) + expect(trust).not.toContain(computeTrustedHash({ ...entry, command: oldCommand })) + } + expect( + hooks?.Stop?.some((group) => group.hooks?.some((hook) => hook.command === 'user-hook')) + ).toBe(true) + expect(readFileSync(join(userHome, 'hooks.json'), 'utf8')).toBe(userConfig) + } + }) +}) From 07b7687a2e6468ca699e1baf2415d479a9aca318 Mon Sep 17 00:00:00 2001 From: OrcaWin Date: Wed, 16 Sep 2026 00:37:01 -0700 Subject: [PATCH 26/28] fix(sidebar): keep the Projects filter when a project is added (#20987) Adding a project wiped the Projects filter: both reveal paths made the new project visible by clearing filterRepoIds outright, so a user filtered to A and B was dropped back to every project. The filter is an allow-list, so revealing a repo only needs that repo added to it. revealRepoInProjectFilter widens the selection instead, and no-ops while the filter is off, where adding an id would turn "show everything" into "show only this project". STA-7588 Co-authored-by: m4air --- .../add-repo-skip-finalization.test.ts | 12 +++++-- .../sidebar/add-repo-skip-finalization.ts | 9 ++---- .../project-added-default-checkout.test.ts | 2 +- .../sidebar/project-filter-reveal.test.ts | 32 +++++++++++++++++++ .../sidebar/project-filter-reveal.ts | 12 +++++++ .../worktree-activation-created-agent.test.ts | 10 ++++++ src/renderer/src/lib/worktree-activation.ts | 7 ++-- 7 files changed, 71 insertions(+), 13 deletions(-) create mode 100644 src/renderer/src/components/sidebar/project-filter-reveal.test.ts create mode 100644 src/renderer/src/components/sidebar/project-filter-reveal.ts diff --git a/src/renderer/src/components/sidebar/add-repo-skip-finalization.test.ts b/src/renderer/src/components/sidebar/add-repo-skip-finalization.test.ts index 8f1808f4c24..fac6aaa7a24 100644 --- a/src/renderer/src/components/sidebar/add-repo-skip-finalization.test.ts +++ b/src/renderer/src/components/sidebar/add-repo-skip-finalization.test.ts @@ -61,11 +61,19 @@ describe('finalizeImportedRepoAfterSkip', () => { finalizeImportedRepoAfterSkip(state, 'repo-new') expect(state.setActiveRepo).toHaveBeenCalledWith('repo-new') - expect(state.setFilterRepoIds).toHaveBeenCalledWith([]) + expect(state.setFilterRepoIds).toHaveBeenCalledWith(['repo-old', 'repo-new']) expect(state.setShowActiveOnly).toHaveBeenCalledWith(false) expect(state.setHideDefaultBranchWorkspace).not.toHaveBeenCalled() }) + it('leaves the project filter off when the import lands with no filter', () => { + const state = makeState({ filterRepoIds: [] }) + + finalizeImportedRepoAfterSkip(state, 'repo-new') + + expect(state.setFilterRepoIds).not.toHaveBeenCalled() + }) + it('clears default-branch hiding when it would hide every imported worktree', () => { const state = makeState({ hideDefaultBranchWorkspace: true, @@ -140,7 +148,7 @@ describe('finalizeImportedRepoAfterSkip', () => { finalizeImportedRepoAfterSkip(state, 'repo-new') expect(state.setActiveRepo).toHaveBeenCalledWith('repo-new') - expect(state.setFilterRepoIds).toHaveBeenCalledWith([]) + expect(state.setFilterRepoIds).toHaveBeenCalledWith(['repo-old', 'repo-new']) expect(state.setShowActiveOnly).toHaveBeenCalledWith(false) expect(state.setHideDefaultBranchWorkspace).not.toHaveBeenCalled() }) diff --git a/src/renderer/src/components/sidebar/add-repo-skip-finalization.ts b/src/renderer/src/components/sidebar/add-repo-skip-finalization.ts index f22a8d9d251..a37d14fd8f2 100644 --- a/src/renderer/src/components/sidebar/add-repo-skip-finalization.ts +++ b/src/renderer/src/components/sidebar/add-repo-skip-finalization.ts @@ -1,16 +1,15 @@ import type { Worktree } from '../../../../shared/worktree/types' import { isDefaultBranchWorkspace } from './default-branch-workspace' +import { revealRepoInProjectFilter, type ProjectFilterRevealState } from './project-filter-reveal' -export type AddRepoSkipFinalizationState = { +export type AddRepoSkipFinalizationState = ProjectFilterRevealState & { activeRepoId: string | null - filterRepoIds: readonly string[] showActiveOnly: boolean hideDefaultBranchWorkspace: boolean showSleepingWorkspaces: boolean alwaysShowDefaultBranchWorkspace: boolean worktreesByRepo: Record setActiveRepo: (repoId: string | null) => void - setFilterRepoIds: (repoIds: string[]) => void setShowActiveOnly: (value: boolean) => void setHideDefaultBranchWorkspace: (value: boolean) => void setAlwaysShowDefaultBranchWorkspace: (value: boolean) => void @@ -27,9 +26,7 @@ export function finalizeImportedRepoAfterSkip( if (state.activeRepoId !== importedRepoId) { state.setActiveRepo(importedRepoId) } - if (state.filterRepoIds.length > 0 && !state.filterRepoIds.includes(importedRepoId)) { - state.setFilterRepoIds([]) - } + revealRepoInProjectFilter(state, importedRepoId) if (state.showActiveOnly) { state.setShowActiveOnly(false) } diff --git a/src/renderer/src/components/sidebar/project-added-default-checkout.test.ts b/src/renderer/src/components/sidebar/project-added-default-checkout.test.ts index 24d1fd7b76a..71abdc34135 100644 --- a/src/renderer/src/components/sidebar/project-added-default-checkout.test.ts +++ b/src/renderer/src/components/sidebar/project-added-default-checkout.test.ts @@ -529,7 +529,7 @@ describe('finishProjectAddWithDefaultCheckout', () => { reason: 'no_authoritative_detection' }) expect(mocks.state.setActiveRepo).toHaveBeenCalledWith('repo-1') - expect(mocks.state.setFilterRepoIds).toHaveBeenCalledWith([]) + expect(mocks.state.setFilterRepoIds).toHaveBeenCalledWith(['repo-2', 'repo-1']) expect(mocks.state.setShowActiveOnly).toHaveBeenCalledWith(false) }) }) diff --git a/src/renderer/src/components/sidebar/project-filter-reveal.test.ts b/src/renderer/src/components/sidebar/project-filter-reveal.test.ts new file mode 100644 index 00000000000..b0836415a75 --- /dev/null +++ b/src/renderer/src/components/sidebar/project-filter-reveal.test.ts @@ -0,0 +1,32 @@ +import { describe, expect, it, vi } from 'vitest' +import { revealRepoInProjectFilter } from './project-filter-reveal' + +function makeState(filterRepoIds: readonly string[]) { + return { filterRepoIds, setFilterRepoIds: vi.fn() } +} + +describe('revealRepoInProjectFilter', () => { + it('keeps the existing selection and adds the revealed project', () => { + const state = makeState(['repo-a', 'repo-b']) + + revealRepoInProjectFilter(state, 'repo-c') + + expect(state.setFilterRepoIds).toHaveBeenCalledWith(['repo-a', 'repo-b', 'repo-c']) + }) + + it('does nothing when no project filter is active', () => { + const state = makeState([]) + + revealRepoInProjectFilter(state, 'repo-c') + + expect(state.setFilterRepoIds).not.toHaveBeenCalled() + }) + + it('does nothing when the project is already selected', () => { + const state = makeState(['repo-a', 'repo-c']) + + revealRepoInProjectFilter(state, 'repo-c') + + expect(state.setFilterRepoIds).not.toHaveBeenCalled() + }) +}) diff --git a/src/renderer/src/components/sidebar/project-filter-reveal.ts b/src/renderer/src/components/sidebar/project-filter-reveal.ts new file mode 100644 index 00000000000..0ce2b15ce10 --- /dev/null +++ b/src/renderer/src/components/sidebar/project-filter-reveal.ts @@ -0,0 +1,12 @@ +export type ProjectFilterRevealState = { + filterRepoIds: readonly string[] + setFilterRepoIds: (repoIds: readonly string[]) => void +} + +export function revealRepoInProjectFilter(state: ProjectFilterRevealState, repoId: string): void { + // Why: an empty allow-list disables filtering, so adding one id would narrow the unfiltered view. + if (state.filterRepoIds.length === 0 || state.filterRepoIds.includes(repoId)) { + return + } + state.setFilterRepoIds([...state.filterRepoIds, repoId]) +} diff --git a/src/renderer/src/lib/worktree-activation-created-agent.test.ts b/src/renderer/src/lib/worktree-activation-created-agent.test.ts index dd6eaa2ac31..d3e7009857e 100644 --- a/src/renderer/src/lib/worktree-activation-created-agent.test.ts +++ b/src/renderer/src/lib/worktree-activation-created-agent.test.ts @@ -69,6 +69,16 @@ describe('activateAndRevealWorktree', () => { expect(recordWorktreeVisit).toHaveBeenCalledWith(worktree.id) }) + it('adds the activated project to an active project filter', () => { + const worktree = makeWorktree() + seedEmptyActivatableWorktree(worktree) + useAppStore.setState({ filterRepoIds: ['repo-2'] }) + + activateAndRevealWorktree(worktree.id) + + expect(useAppStore.getState().filterRepoIds).toEqual(['repo-2', worktree.repoId]) + }) + it('does not relaunch the creation-time agent when reopening an empty worktree', () => { const worktree = makeWorktree() const { revealWorktreeInSidebar } = seedEmptyActivatableWorktree(worktree) diff --git a/src/renderer/src/lib/worktree-activation.ts b/src/renderer/src/lib/worktree-activation.ts index bf4bbce1123..f2e2ac8f85a 100644 --- a/src/renderer/src/lib/worktree-activation.ts +++ b/src/renderer/src/lib/worktree-activation.ts @@ -19,6 +19,7 @@ import { } from './folder-workspace-path-status' import { toast } from 'sonner' import { isDetachedHeadWorkspace } from '@/components/sidebar/visible-worktrees' +import { revealRepoInProjectFilter } from '@/components/sidebar/project-filter-reveal' import type { ExecutionHostId } from '../../../shared/execution-host' import { findFolderWorkspaceOwner } from './folder-workspace-runtime-owner' import type { WorktreeStartupPayload } from '@/lib/worktree-startup-payload' @@ -272,11 +273,9 @@ export function activateAndRevealWorktree( useAppStore.getState().queueTabInitialCwd(primaryTabId, opts.initialCwd) } - // 5. Clear sidebar filters hiding the target — reveal needs the card rendered, else it silently no-ops. + // 5. Lift the sidebar filters hiding the target — reveal needs the card rendered, else it silently no-ops. if (opts?.clearSidebarFilters !== false) { - if (state.filterRepoIds.length > 0 && !state.filterRepoIds.includes(wt.repoId)) { - state.setFilterRepoIds([]) - } + revealRepoInProjectFilter(state, wt.repoId) if ( state.hideAutomationGeneratedWorkspaces && wt.automationProvenance?.kind === 'created-by-automation' From 15cac68802361f3b9075630335d3e6d379c2a909 Mon Sep 17 00:00:00 2001 From: Jinjing <6427696+AmethystLiang@users.noreply.github.com> Date: Wed, 16 Sep 2026 00:44:11 -0700 Subject: [PATCH 27/28] Native chat keeps scrolling to bottom (#20898) * fix(native-chat): prevent auto-scroll when transcript is hidden Stop following new messages to bottom when the chat view is not visible (e.g., in an inactive tab). Restore scroll position when the transcript becomes visible again. * fix(native-chat): preserve reader scroll offset when transcript is revea When a reader scrolls away from the latest messages and the chat tab becomes hidden, save their scroll position. If messages arrive while the tab is hidden, don't auto-scroll. When the tab is revealed, restore the saved offset instead of jumping to latest, preserving their reading context across hide/reveal cycles. * refactor(native-chat): extract growth-append tests and status component Move transcript growth/append test suite to dedicated growth-windowing.test.tsx file for better organization. Extract status rendering logic (errors, retry, background tasks) from NativeChatStructuredSession into NativeChatStructuredSessionStatus. Fix scroll offset preservation in test harness when transcript visibility toggles. * refactor(native-chat): remove retry UI Remove unused retry functionality for failed message delivery from the native chat status component. The retryableOutboxEntry state is no longer managed, so the retry button and associated handling can be safely removed. --- ...eChatMessageList.growth-windowing.test.tsx | 543 +++++++++++++++ .../native-chat/NativeChatMessageList.tsx | 5 + .../NativeChatMessageList.windowing.test.tsx | 652 ++++-------------- .../native-chat/NativeChatResolvedView.tsx | 1 + ...tiveChatStructuredSession.test-harness.tsx | 1 + .../NativeChatStructuredSession.test.tsx | 17 + .../NativeChatStructuredSession.tsx | 84 +-- .../NativeChatStructuredSessionStatus.tsx | 79 +++ .../native-chat-windowing-test-harness.tsx | 35 +- ...use-native-chat-transcript-scroll.test.tsx | 96 +++ .../use-native-chat-transcript-scroll.ts | 51 +- ...ve-chat-transcript-window.options.test.tsx | 54 +- .../use-native-chat-transcript-window.ts | 29 +- ...native-chat-history-prepend-anchor.spec.ts | 113 ++- 14 files changed, 1154 insertions(+), 606 deletions(-) create mode 100644 src/renderer/src/components/native-chat/NativeChatMessageList.growth-windowing.test.tsx create mode 100644 src/renderer/src/components/native-chat/NativeChatStructuredSessionStatus.tsx create mode 100644 src/renderer/src/components/native-chat/use-native-chat-transcript-scroll.test.tsx diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.growth-windowing.test.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.growth-windowing.test.tsx new file mode 100644 index 00000000000..28925ea7fa4 --- /dev/null +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.growth-windowing.test.tsx @@ -0,0 +1,543 @@ +// @vitest-environment happy-dom + +import '@testing-library/jest-dom/vitest' + +import { act, cleanup, fireEvent, render, screen } from '@testing-library/react' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import type { NativeChatMessage } from '../../../../shared/native-chat-types' +import { NativeChatMessageList } from './NativeChatMessageList' +import { + NATIVE_CHAT_BOTTOM_THRESHOLD_PX, + NATIVE_CHAT_FOLLOW_REARM_PX +} from './native-chat-autoscroll' +import { NATIVE_CHAT_ROW_GAP_PX } from './native-chat-row-height-estimate' +import { + BELOW_TRANSCRIPT_PX, + deliverResizes, + layout, + list, + marker, + ROW_PITCH_PX, + ROW_PX, + scrollTranscript, + session, + stubLayout, + stubResizeObserver, + TRANSCRIPT_LENGTH, + VIEWPORT_PX, + windowState +} from './native-chat-windowing-test-harness' + +afterEach(cleanup) + +function scrollRoot(container: HTMLElement): HTMLElement { + const scroller = container.querySelector('[data-native-chat-scroll]') + if (!scroller) { + throw new Error('no transcript scroll root') + } + return scroller +} + +/** Deliver resize and scroll events to a fixed point, as a painted frame would. */ +function paint(container: HTMLElement): void { + const scroller = scrollRoot(container) + let lastScrollTop = scroller.scrollTop + for (let pass = 0; pass < 12; pass += 1) { + let changed = false + act(() => { + changed = deliverResizes() + }) + if (scroller.scrollTop !== lastScrollTop) { + lastScrollTop = scroller.scrollTop + fireEvent.scroll(scroller) + changed = true + } + if (!changed) { + return + } + } + throw new Error('the transcript never settled: resize and scroll kept moving it') +} + +// Exercise the real virtualizer while a streaming row grows and messages append. +describe('transcript follow ownership across growth and appends', () => { + const TAIL_INDEX = TRANSCRIPT_LENGTH - 1 + const GROWTH_STEPS = 24 + const LINES_PER_STEP = 12 + /** One wrapped prose line. Content and measured height grow from this one + * number, so a step that adds lines is a step that adds pixels. */ + const STREAM_LINE_PX = 22 + /** Every row but the growing one measures at its estimate, so the reserved + * total is arithmetic rather than a snapshot. */ + const BASE_TOTAL_PX = + (TRANSCRIPT_LENGTH - 1) * ROW_PX + (TRANSCRIPT_LENGTH - 1) * NATIVE_CHAT_ROW_GAP_PX + + /** Fixed so a re-render never restamps the turn and moves the status row. */ + const TURN_STARTED_AT = Date.now() + + const transcript = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => marker(index)) + + function appendedTranscript(count: number): NativeChatMessage[] { + return [ + ...transcript, + ...Array.from({ length: count }, (_, index) => marker(TRANSCRIPT_LENGTH + index)) + ] + } + + function tailHeightAt(step: number): number { + return Math.max(ROW_PX, (1 + step * LINES_PER_STEP) * STREAM_LINE_PX) + } + + function transcriptAt(step: number): NativeChatMessage[] { + const lines = Array.from( + { length: step * LINES_PER_STEP }, + (_, index) => `streamed line ${index}` + ) + const next = [...transcript] + next[TAIL_INDEX] = { + ...marker(TAIL_INDEX), + blocks: [{ type: 'text', text: [`marker-${TAIL_INDEX}`, ...lines].join('\n') }] + } + return next + } + + function streamingList(step: number): React.JSX.Element { + return ( + + ) + } + + function distanceFromBottom(container: HTMLElement): number { + const scroller = scrollRoot(container) + return scroller.scrollHeight - scroller.clientHeight - scroller.scrollTop + } + + function setMeasuredTail(step: number): void { + const heights = Array.from({ length: TRANSCRIPT_LENGTH }, () => ROW_PX) + heights[TAIL_INDEX] = tailHeightAt(step) + layout.measuredRowHeights = heights + } + + let restoreLayout = (): void => {} + let restoreResizeObserver = (): void => {} + beforeEach(() => { + restoreLayout = stubLayout({ scrollGeometry: true, offsetChain: true }) + restoreResizeObserver = stubResizeObserver() + layout.belowTranscriptPx = BELOW_TRANSCRIPT_PX + layout.aboveTranscriptPx = 0 + setMeasuredTail(0) + }) + afterEach(() => { + restoreResizeObserver() + restoreLayout() + layout.measuredRowHeights = [] + layout.belowTranscriptPx = BELOW_TRANSCRIPT_PX + layout.aboveTranscriptPx = 0 + vi.restoreAllMocks() + }) + + it('holds the pin, the mount and the reserved total at every frame of the growth', () => { + setMeasuredTail(0) + const { container, rerender } = render(streamingList(0)) + paint(container) + + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + expect(windowState(container).totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(0)) + + const frames: { step: number; tail: number; total: number; distance: number }[] = [] + for (let step = 1; step <= GROWTH_STEPS; step += 1) { + setMeasuredTail(step) + rerender(streamingList(step)) + paint(container) + + const { totalSize, indexes } = windowState(container) + const distance = distanceFromBottom(container) + frames.push({ step, tail: tailHeightAt(step), total: totalSize, distance }) + + // Pinned: the reader is still looking at the bottom of the row. + expect(distance).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + // Mounted: never swapped for reserved space while it is the live row. + expect(indexes).toContain(TAIL_INDEX) + expect(screen.getByText(/streamed line 0/)).toBeInTheDocument() + // Tracking: the reservation follows the measurement, not the estimate. + expect(totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(step)) + // Still a window, not the whole transcript remounted by the growth. + expect(indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + } + + expect(frames).toHaveLength(GROWTH_STEPS) + expect(frames.at(-1)?.tail).toBeGreaterThan(VIEWPORT_PX * 10) + expect(Math.max(...frames.map((frame) => frame.distance))).toBeLessThanOrEqual( + NATIVE_CHAT_BOTTOM_THRESHOLD_PX + ) + }) + + it('leaves a reader who scrolled up where they were, however far the row grows', () => { + setMeasuredTail(4) + const { container, rerender } = render(streamingList(4)) + paint(container) + + const readingAt = 2000 + scrollTranscript(container, readingAt) + paint(container) + expect(distanceFromBottom(container)).toBeGreaterThan(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + + for (let step = 5; step <= GROWTH_STEPS; step += 1) { + setMeasuredTail(step) + rerender(streamingList(step)) + paint(container) + + const { totalSize, indexes } = windowState(container) + // Not yanked: the offset the reader chose is the offset they still have. + expect(scrollRoot(container).scrollTop).toBe(readingAt) + // The row is off screen but still measured, which is what keeps the + // reserved total — and so the scrollbar — honest while it grows. + expect(indexes).toContain(TAIL_INDEX) + expect(totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(step)) + } + + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + }) + + it.each([0, 100])( + 'keeps a reader parked above a growing row with a %i px initial measurement delta', + (measurementDelta) => { + setMeasuredTail(4) + layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => + index === TAIL_INDEX ? height + measurementDelta : height + ) + const { container, rerender } = render(streamingList(4)) + paint(container) + const scroller = scrollRoot(container) + + const parkGapPx = NATIVE_CHAT_BOTTOM_THRESHOLD_PX - 8 + const parkedAt = scroller.scrollHeight - scroller.clientHeight - parkGapPx + scrollTranscript(container, parkedAt) + expect(distanceFromBottom(container)).toBe(parkGapPx) + // Not the "scrolled far away" case above: the latest message is still on + // screen, so there is nothing to offer a way back to yet. + expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() + + setMeasuredTail(5) + rerender(streamingList(5)) + paint(container) + expect(scroller.scrollTop).toBe(parkedAt) + + let previousDistance = distanceFromBottom(container) + for (let step = 6; step <= GROWTH_STEPS; step += 1) { + setMeasuredTail(step) + rerender(streamingList(step)) + paint(container) + + // The offset stops moving at all... + expect(scroller.scrollTop).toBe(parkedAt) + // ...so the end runs away from the reader instead of carrying them along. + const distance = distanceFromBottom(container) + expect(distance).toBeGreaterThan(previousDistance) + previousDistance = distance + } + + expect(previousDistance).toBeGreaterThan(VIEWPORT_PX) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + } + ) + + it('leaves a parked reader in place through repeated appends', () => { + const { container, rerender } = render(list(transcript)) + paint(container) + const scroller = scrollRoot(container) + const parkedAt = scroller.scrollHeight - scroller.clientHeight - 40 + scrollTranscript(container, parkedAt) + + for (let count = 1; count <= 8; count += 1) { + rerender(list(appendedTranscript(count))) + paint(container) + expect(scroller.scrollTop).toBe(parkedAt) + expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + } + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + }) + + it('follows repeated appends until the reader detaches', () => { + const { container, rerender } = render(list(transcript)) + paint(container) + const scroller = scrollRoot(container) + for (let count = 1; count <= 8; count += 1) { + rerender(list(appendedTranscript(count))) + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) + fireEvent.scroll(scroller) + } + + const parkedAt = scroller.scrollTop - 22 + scrollTranscript(container, parkedAt) + rerender(list(appendedTranscript(9))) + paint(container) + expect(scroller.scrollTop).toBe(parkedAt) + }) + + it('follows an empty transcript through underflow into scrollable output', () => { + const { container, rerender } = render(list([])) + paint(container) + expect(scrollRoot(container).scrollTop).toBe(0) + rerender(list(transcript.slice(0, 1))) + paint(container) + expect(scrollRoot(container).scrollTop).toBe(0) + fireEvent.scroll(scrollRoot(container)) + rerender(list(transcript)) + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) + expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + }) + + it.each(['reader', 'jump'] as const)('rearms growth and append following via %s', (rearm) => { + setMeasuredTail(4) + const { container, rerender } = render(streamingList(4)) + paint(container) + const scroller = scrollRoot(container) + fireEvent.scroll(scroller) + const parkedAt = scroller.scrollTop - 22 + scrollTranscript(container, parkedAt) + setMeasuredTail(5) + rerender(streamingList(5)) + paint(container) + expect(scroller.scrollTop).toBe(parkedAt) + + if (rearm === 'reader') { + scrollTranscript( + container, + scroller.scrollHeight - scroller.clientHeight - NATIVE_CHAT_FOLLOW_REARM_PX + ) + } else { + fireEvent.click(screen.getByRole('button', { name: /jump to latest/i })) + } + paint(container) + expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() + for (let step = 6; step <= 8; step += 1) { + setMeasuredTail(step) + rerender(streamingList(step)) + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) + expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + } + rerender(list([...transcriptAt(8), marker(TRANSCRIPT_LENGTH)])) + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) + }) + + it('preserves the visible row anchor across prepends while detached', () => { + const { container, rerender } = render(list(transcript)) + paint(container) + const readingAt = 2000 + scrollTranscript(container, readingAt) + paint(container) + + const earlier = Array.from({ length: 10 }, (_, index) => marker(index - 10)) + rerender(list([...earlier, ...transcript])) + paint(container) + expect(scrollRoot(container).scrollTop).toBe(readingAt + earlier.length * ROW_PITCH_PX) + expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + }) + + it('compensates a measurement entirely above the viewport without reattaching', () => { + const { container, rerender } = render(list(transcript)) + paint(container) + const scroller = scrollRoot(container) + // Establish a forward scroll direction before reading at this offset. The + // backward-scroll suppression below covers the separate case where a reader + // is still moving upward while overscan rows settle. + scrollTranscript(container, 0) + paint(container) + const readingAt = 2000 + scrollTranscript(container, readingAt) + paint(container) + const aboveIndex = windowState(container).indexes[0]! + expect((aboveIndex + 1) * ROW_PITCH_PX).toBeLessThan(readingAt) + for (const growth of [100, 200]) { + layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => + index === aboveIndex ? ROW_PX + growth : ROW_PX + ) + paint(container) + expect(scroller.scrollTop).toBe(readingAt + growth) + } + rerender(list(appendedTranscript(1))) + paint(container) + expect(scroller.scrollTop).toBe(readingAt + 200) + expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) + }) + + it('keeps following when a pin echo arrives after the document grows', () => { + setMeasuredTail(0) + const { container } = render(streamingList(0)) + paint(container) + const scroller = scrollRoot(container) + + setMeasuredTail(1) + expect(deliverResizes()).toBe(true) + const pinnedAt = scroller.scrollTop + layout.belowTranscriptPx += 2_000 + + fireEvent.scroll(scroller) + + expect(scroller.scrollTop).toBe(pinnedAt) + expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) + }) + + it('does not counter upward scrolling when measured overscan rows settle', () => { + const readingAt = 2000 + const aboveIndex = Math.floor(readingAt / ROW_PITCH_PX) - 1 + const { container } = render(list(transcript)) + paint(container) + scrollTranscript(container, readingAt + 100) + paint(container) + layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => + index === aboveIndex ? ROW_PX + 10 : ROW_PX + ) + paint(container) + scrollTranscript(container, readingAt) + paint(container) + const scroller = scrollRoot(container) + const scrollTo = vi.spyOn(scroller, 'scrollTo') + + layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => + index === aboveIndex ? height + 20 : height + ) + paint(container) + + expect(scroller.scrollTop).toBe(readingAt) + expect(scrollTo).not.toHaveBeenCalled() + }) + + it('keeps the offset when a visible row shrinks past the viewport top', () => { + const focusedIndex = 45 + const { container } = render(list(transcript)) + paint(container) + scrollTranscript(container, focusedIndex * ROW_PITCH_PX) + paint(container) + layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => + index === focusedIndex ? 100 : ROW_PX + ) + paint(container) + const readingAt = focusedIndex * ROW_PITCH_PX + 60 + scrollTranscript(container, readingAt) + paint(container) + const scroller = scrollRoot(container) + const scrollTo = vi.spyOn(scroller, 'scrollTo') + + layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => + index === focusedIndex ? 30 : height + ) + paint(container) + + expect(scroller.scrollTop).toBe(readingAt) + expect(scrollTo).not.toHaveBeenCalled() + }) + + it('settles a pending end reconcile after the reader keeps scrolling away', async () => { + setMeasuredTail(0) + const { container } = render(streamingList(0)) + const scroller = scrollRoot(container) + // Trigger a pin outside React's act wrapper so its TanStack rAF reconcile is + // still pending when the reader moves away. + setMeasuredTail(1) + expect(deliverResizes()).toBe(true) + const scheduleSpy = vi.spyOn(window, 'requestAnimationFrame') + const scrollToSpy = vi.spyOn(scroller, 'scrollTo') + const readingAt = 2000 + scroller.scrollTop = readingAt + fireEvent.scroll(scroller) + expect(scrollToSpy).toHaveBeenLastCalledWith({ behavior: 'auto', top: readingAt }) + scroller.scrollTop = 1800 + fireEvent.scroll(scroller) + expect(scrollToSpy).toHaveBeenLastCalledWith({ behavior: 'auto', top: 1800 }) + + await act(async () => { + for (let frame = 0; frame < 6; frame += 1) { + await new Promise((resolve) => requestAnimationFrame(() => resolve())) + } + }) + + const scheduledFrames = scheduleSpy.mock.calls.length + scheduleSpy.mockRestore() + scrollToSpy.mockRestore() + expect(scheduledFrames).toBeLessThanOrEqual(8) + expect(scroller.scrollTop).toBe(1800) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + }) + + // With something above the spacer, the two parties stop agreeing on where the + // end is: the transcript measures it from the document, the virtualizer from + // the spacer's own height against a container-absolute offset. The second is + // short by everything outside the spacer, so it reads a reader who is clearly + // above the end as sitting on it. + describe('with a gutter above the transcript', () => { + /** `pt-10` plus the "Load earlier" block and its gap — what sits above the + * spacer once a resumed session still has older history to page in. */ + const GUTTER_PX = 92 + /** Far enough up that the transcript itself calls the reader detached, and + * still inside the band the virtualizer computes (48 + 92 + 24). */ + const READING_ABOVE_END_PX = 96 + // A nonzero delta seeds the size cache; zero exercises first-measure growth. + const MEASURE_SKEW_PX = 7 + + function setSkewedTail(step: number, skew = MEASURE_SKEW_PX): void { + const heights = Array.from({ length: TRANSCRIPT_LENGTH }, () => ROW_PX) + heights[TAIL_INDEX] = tailHeightAt(step) + skew + layout.measuredRowHeights = heights + } + + beforeEach(() => { + layout.aboveTranscriptPx = GUTTER_PX + }) + + it.each([0, MEASURE_SKEW_PX])( + 'leaves a reader just above the end while the row grows (skew %i)', + (skew) => { + setSkewedTail(4, skew) + const { container, rerender } = render(streamingList(4)) + paint(container) + const scroller = scrollRoot(container) + + const readingAt = scroller.scrollHeight - scroller.clientHeight - READING_ABOVE_END_PX + scrollTranscript(container, readingAt) + paint(container) + expect(distanceFromBottom(container)).toBe(READING_ABOVE_END_PX) + + for (let step = 5; step <= 10; step += 1) { + setSkewedTail(step, skew) + rerender(streamingList(step)) + paint(container) + + // Not dragged along: the offset the reader chose is the offset they keep, + // however much the row below them grows. + expect(scroller.scrollTop).toBe(readingAt) + } + } + ) + + it('still pins a reader who is at the end, with the gutter in the document', () => { + setSkewedTail(4) + const { container, rerender } = render(streamingList(4)) + paint(container) + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + + for (let step = 5; step <= 10; step += 1) { + setSkewedTail(step) + rerender(streamingList(step)) + paint(container) + + expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + } + }) + }) +}) diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.tsx index 45c78f03d74..c462ad3fa19 100644 --- a/src/renderer/src/components/native-chat/NativeChatMessageList.tsx +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.tsx @@ -52,6 +52,7 @@ type NativeChatNavigationRequest = export function NativeChatMessageList({ session, journalItems, + isVisible = true, isWorking, expandSignal, fontScale, @@ -67,6 +68,7 @@ export function NativeChatMessageList({ }: { session: NativeChatLiveSession journalItems?: readonly AgentJournalRenderItem[] + isVisible?: boolean isWorking: boolean /** Toolbar-driven desired open state for every tool run; each flip re-syncs. */ expandSignal: boolean @@ -207,6 +209,7 @@ export function NativeChatMessageList({ const transcriptWindow = useNativeChatTranscriptWindow({ scrollRef, slots, + isVisible, // One pin serves both: revealing a diff and jumping from the rail are // mutually exclusive things to be doing. revealIndex: nativeChatSlotIndexOf(slots, railJump?.messageId ?? revealedDiff?.messageId) @@ -217,11 +220,13 @@ export function NativeChatMessageList({ itemCount: slots.length, isWorking, showTypingIndicator, + isVisible, hasMore, loadingEarlier, loadEarlier, alignToViewportTop: transcriptWindow.alignToViewportTop, scrollToEnd: transcriptWindow.scrollToEnd, + restoreScrollOffset: transcriptWindow.restoreScrollOffset, consumeProgrammaticScroll: transcriptWindow.consumeProgrammaticScroll, reconcileReaderScroll: transcriptWindow.reconcileReaderScroll }) diff --git a/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx index c6a13c7ed83..e95f6cfb406 100644 --- a/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx +++ b/src/renderer/src/components/native-chat/NativeChatMessageList.windowing.test.tsx @@ -11,15 +11,10 @@ import type { import { projectStructuredItemsToNativeChat } from '../../../../shared/structured-agent-session-projection' import type { NativeChatMessage } from '../../../../shared/native-chat-types' import { NativeChatMessageList } from './NativeChatMessageList' -import { - NATIVE_CHAT_BOTTOM_THRESHOLD_PX, - NATIVE_CHAT_FOLLOW_REARM_PX -} from './native-chat-autoscroll' +import { NATIVE_CHAT_BOTTOM_THRESHOLD_PX } from './native-chat-autoscroll' import { NATIVE_CHAT_ROW_GAP_PX } from './native-chat-row-height-estimate' import { - BELOW_TRANSCRIPT_PX, deliverResizes, - layout, list, marker, ROW_PITCH_PX, @@ -35,6 +30,45 @@ import { afterEach(cleanup) +function scrollRoot(container: HTMLElement): HTMLElement { + const scroller = container.querySelector('[data-native-chat-scroll]') + if (!scroller) { + throw new Error('no transcript scroll root') + } + return scroller +} + +/** Deliver resize and scroll events to a fixed point, as a painted frame would. */ +function paint(container: HTMLElement): void { + const scroller = scrollRoot(container) + let lastScrollTop = scroller.scrollTop + for (let pass = 0; pass < 12; pass += 1) { + let changed = false + act(() => { + changed = deliverResizes() + }) + if (scroller.scrollTop !== lastScrollTop) { + lastScrollTop = scroller.scrollTop + fireEvent.scroll(scroller) + changed = true + } + if (!changed) { + return + } + } + throw new Error('the transcript never settled: resize and scroll kept moving it') +} + +async function settleVirtualizer(container: HTMLElement): Promise { + for (let frame = 0; frame < 2; frame += 1) { + paint(container) + await act(async () => { + await new Promise((resolve) => requestAnimationFrame(() => resolve())) + }) + } + paint(container) +} + describe('windowed transcript', () => { let restoreLayout = (): void => {} beforeEach(() => { @@ -231,524 +265,126 @@ describe('transcript with a hidden scroll root', () => { restoreLayout() } }) -}) -// A row that grows in place: the same message id, more content, a taller measured -// box — what a streaming reply looks like to the window. Whole-message appends -// arrive at their final height and are a different case; this is the one where -// the row the reader is looking at keeps changing size underneath them. -// -// Exercise the real virtualizer together with the transcript's follow owner. -describe('transcript follow ownership across growth and appends', () => { - const TAIL_INDEX = TRANSCRIPT_LENGTH - 1 - const GROWTH_STEPS = 24 - const LINES_PER_STEP = 12 - /** One wrapped prose line. Content and measured height grow from this one - * number, so a step that adds lines is a step that adds pixels. */ - const STREAM_LINE_PX = 22 - /** Every row but the growing one measures at its estimate, so the reserved - * total is arithmetic rather than a snapshot. */ - const BASE_TOTAL_PX = - (TRANSCRIPT_LENGTH - 1) * ROW_PX + (TRANSCRIPT_LENGTH - 1) * NATIVE_CHAT_ROW_GAP_PX - - /** Fixed so a re-render never restamps the turn and moves the status row. */ - const TURN_STARTED_AT = Date.now() - - const transcript = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => marker(index)) - - function appendedTranscript(count: number): NativeChatMessage[] { - return [ - ...transcript, - ...Array.from({ length: count }, (_, index) => marker(TRANSCRIPT_LENGTH + index)) + it('preserves a detached viewport when messages append while hidden', async () => { + let isVisible = true + const restoreLayout = stubLayout({ + scrollGeometry: true, + isVisible: () => isVisible + }) + const restoreResizeObserver = stubResizeObserver() + const initialMessages = Array.from({ length: 120 }, (_, index) => marker(index)) + const appendedMessages = [ + ...initialMessages, + ...Array.from({ length: 20 }, (_, index) => marker(120 + index)) ] - } + try { + const { container, rerender } = render(list(initialMessages, isVisible)) + await settleVirtualizer(container) - function tailHeightAt(step: number): number { - return Math.max(ROW_PX, (1 + step * LINES_PER_STEP) * STREAM_LINE_PX) - } - - function transcriptAt(step: number): NativeChatMessage[] { - const lines = Array.from( - { length: step * LINES_PER_STEP }, - (_, index) => `streamed line ${index}` - ) - const next = [...transcript] - next[TAIL_INDEX] = { - ...marker(TAIL_INDEX), - blocks: [{ type: 'text', text: [`marker-${TAIL_INDEX}`, ...lines].join('\n') }] - } - return next - } - - function streamingList(step: number): React.JSX.Element { - return ( - - ) - } - - function scrollRoot(container: HTMLElement): HTMLElement { - const scroller = container.querySelector('[data-native-chat-scroll]') - if (!scroller) { - throw new Error('no transcript scroll root') - } - return scroller - } - - /** One painted frame, repeated to a fixed point: deliver the resize callbacks - * the growth caused, then fire the scroll event a browser fires for any - * `scrollTop` the code wrote itself. Refusing to settle is a failure in its - * own right — that is the view oscillating. */ - function paint(container: HTMLElement): void { - const scroller = scrollRoot(container) - let lastScrollTop = scroller.scrollTop - for (let pass = 0; pass < 12; pass += 1) { - let changed = false - act(() => { - changed = deliverResizes() - }) - if (scroller.scrollTop !== lastScrollTop) { - lastScrollTop = scroller.scrollTop - fireEvent.scroll(scroller) - changed = true - } - if (!changed) { - return - } - } - throw new Error('the transcript never settled: resize and scroll kept moving it') - } - - function distanceFromBottom(container: HTMLElement): number { - const scroller = scrollRoot(container) - return scroller.scrollHeight - scroller.clientHeight - scroller.scrollTop - } - - function setMeasuredTail(step: number): void { - const heights = Array.from({ length: TRANSCRIPT_LENGTH }, () => ROW_PX) - heights[TAIL_INDEX] = tailHeightAt(step) - layout.measuredRowHeights = heights - } - - let restoreLayout = (): void => {} - let restoreResizeObserver = (): void => {} - beforeEach(() => { - restoreLayout = stubLayout({ scrollGeometry: true, offsetChain: true }) - restoreResizeObserver = stubResizeObserver() - layout.belowTranscriptPx = BELOW_TRANSCRIPT_PX - layout.aboveTranscriptPx = 0 - setMeasuredTail(0) - }) - afterEach(() => { - restoreResizeObserver() - restoreLayout() - layout.measuredRowHeights = [] - layout.belowTranscriptPx = BELOW_TRANSCRIPT_PX - layout.aboveTranscriptPx = 0 - vi.restoreAllMocks() - }) - - it('holds the pin, the mount and the reserved total at every frame of the growth', () => { - setMeasuredTail(0) - const { container, rerender } = render(streamingList(0)) - paint(container) - - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) - expect(windowState(container).totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(0)) - - const frames: { step: number; tail: number; total: number; distance: number }[] = [] - for (let step = 1; step <= GROWTH_STEPS; step += 1) { - setMeasuredTail(step) - rerender(streamingList(step)) - paint(container) - - const { totalSize, indexes } = windowState(container) - const distance = distanceFromBottom(container) - frames.push({ step, tail: tailHeightAt(step), total: totalSize, distance }) - - // Pinned: the reader is still looking at the bottom of the row. - expect(distance).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) - // Mounted: never swapped for reserved space while it is the live row. - expect(indexes).toContain(TAIL_INDEX) - expect(screen.getByText(/streamed line 0/)).toBeInTheDocument() - // Tracking: the reservation follows the measurement, not the estimate. - expect(totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(step)) - // Still a window, not the whole transcript remounted by the growth. - expect(indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - } - - expect(frames).toHaveLength(GROWTH_STEPS) - expect(frames.at(-1)?.tail).toBeGreaterThan(VIEWPORT_PX * 10) - expect(Math.max(...frames.map((frame) => frame.distance))).toBeLessThanOrEqual( - NATIVE_CHAT_BOTTOM_THRESHOLD_PX - ) - }) - - it('leaves a reader who scrolled up where they were, however far the row grows', () => { - setMeasuredTail(4) - const { container, rerender } = render(streamingList(4)) - paint(container) - - const readingAt = 2000 - scrollTranscript(container, readingAt) - paint(container) - expect(distanceFromBottom(container)).toBeGreaterThan(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) - expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() - - for (let step = 5; step <= GROWTH_STEPS; step += 1) { - setMeasuredTail(step) - rerender(streamingList(step)) - paint(container) - - const { totalSize, indexes } = windowState(container) - // Not yanked: the offset the reader chose is the offset they still have. - expect(scrollRoot(container).scrollTop).toBe(readingAt) - // The row is off screen but still measured, which is what keeps the - // reserved total — and so the scrollbar — honest while it grows. - expect(indexes).toContain(TAIL_INDEX) - expect(totalSize).toBe(BASE_TOTAL_PX + tailHeightAt(step)) - } - - expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() - }) - - it.each([0, 100])( - 'keeps a reader parked above a growing row with a %i px initial measurement delta', - (measurementDelta) => { - setMeasuredTail(4) - layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => - index === TAIL_INDEX ? height + measurementDelta : height - ) - const { container, rerender } = render(streamingList(4)) - paint(container) const scroller = scrollRoot(container) - - const parkGapPx = NATIVE_CHAT_BOTTOM_THRESHOLD_PX - 8 - const parkedAt = scroller.scrollHeight - scroller.clientHeight - parkGapPx - scrollTranscript(container, parkedAt) - expect(distanceFromBottom(container)).toBe(parkGapPx) - // Not the "scrolled far away" case above: the latest message is still on - // screen, so there is nothing to offer a way back to yet. - expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() - - setMeasuredTail(5) - rerender(streamingList(5)) - paint(container) - expect(scroller.scrollTop).toBe(parkedAt) - - let previousDistance = distanceFromBottom(container) - for (let step = 6; step <= GROWTH_STEPS; step += 1) { - setMeasuredTail(step) - rerender(streamingList(step)) - paint(container) - - // The offset stops moving at all... - expect(scroller.scrollTop).toBe(parkedAt) - // ...so the end runs away from the reader instead of carrying them along. - const distance = distanceFromBottom(container) - expect(distance).toBeGreaterThan(previousDistance) - previousDistance = distance - } - - expect(previousDistance).toBeGreaterThan(VIEWPORT_PX) + const readingAt = 2_000 + scrollTranscript(container, readingAt) + await settleVirtualizer(container) expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() - } - ) - it('leaves a parked reader in place through repeated appends', () => { - const { container, rerender } = render(list(transcript)) - paint(container) - const scroller = scrollRoot(container) - const parkedAt = scroller.scrollHeight - scroller.clientHeight - 40 - scrollTranscript(container, parkedAt) - - for (let count = 1; count <= 8; count += 1) { - rerender(list(appendedTranscript(count))) - paint(container) - expect(scroller.scrollTop).toBe(parkedAt) - expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - } - expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() - }) - - it('follows repeated appends until the reader detaches', () => { - const { container, rerender } = render(list(transcript)) - paint(container) - const scroller = scrollRoot(container) - for (let count = 1; count <= 8; count += 1) { - rerender(list(appendedTranscript(count))) - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) - fireEvent.scroll(scroller) - } - - const parkedAt = scroller.scrollTop - 22 - scrollTranscript(container, parkedAt) - rerender(list(appendedTranscript(9))) - paint(container) - expect(scroller.scrollTop).toBe(parkedAt) - }) - - it('follows an empty transcript through underflow into scrollable output', () => { - const { container, rerender } = render(list([])) - paint(container) - expect(scrollRoot(container).scrollTop).toBe(0) - rerender(list(transcript.slice(0, 1))) - paint(container) - expect(scrollRoot(container).scrollTop).toBe(0) - fireEvent.scroll(scrollRoot(container)) - rerender(list(transcript)) - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) - expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - }) - - it.each(['reader', 'jump'] as const)('rearms growth and append following via %s', (rearm) => { - setMeasuredTail(4) - const { container, rerender } = render(streamingList(4)) - paint(container) - const scroller = scrollRoot(container) - fireEvent.scroll(scroller) - const parkedAt = scroller.scrollTop - 22 - scrollTranscript(container, parkedAt) - setMeasuredTail(5) - rerender(streamingList(5)) - paint(container) - expect(scroller.scrollTop).toBe(parkedAt) - - if (rearm === 'reader') { - scrollTranscript( - container, - scroller.scrollHeight - scroller.clientHeight - NATIVE_CHAT_FOLLOW_REARM_PX - ) - } else { - fireEvent.click(screen.getByRole('button', { name: /jump to latest/i })) - } - paint(container) - expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() - for (let step = 6; step <= 8; step += 1) { - setMeasuredTail(step) - rerender(streamingList(step)) - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) - expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - } - rerender(list([...transcriptAt(8), marker(TRANSCRIPT_LENGTH)])) - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) - }) - - it('preserves the visible row anchor across prepends while detached', () => { - const { container, rerender } = render(list(transcript)) - paint(container) - const readingAt = 2000 - scrollTranscript(container, readingAt) - paint(container) - - const earlier = Array.from({ length: 10 }, (_, index) => marker(index - 10)) - rerender(list([...earlier, ...transcript])) - paint(container) - expect(scrollRoot(container).scrollTop).toBe(readingAt + earlier.length * ROW_PITCH_PX) - expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() - }) - - it('compensates a measurement entirely above the viewport without reattaching', () => { - const { container, rerender } = render(list(transcript)) - paint(container) - const scroller = scrollRoot(container) - // Establish a forward scroll direction before reading at this offset. The - // backward-scroll suppression below covers the separate case where a reader - // is still moving upward while overscan rows settle. - scrollTranscript(container, 0) - paint(container) - const readingAt = 2000 - scrollTranscript(container, readingAt) - paint(container) - const aboveIndex = windowState(container).indexes[0]! - expect((aboveIndex + 1) * ROW_PITCH_PX).toBeLessThan(readingAt) - for (const growth of [100, 200]) { - layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => - index === aboveIndex ? ROW_PX + growth : ROW_PX - ) - paint(container) - expect(scroller.scrollTop).toBe(readingAt + growth) - } - rerender(list(appendedTranscript(1))) - paint(container) - expect(scroller.scrollTop).toBe(readingAt + 200) - expect(windowState(container).indexes.length).toBeLessThan(TRANSCRIPT_LENGTH / 4) - }) - - it('keeps following when a pin echo arrives after the document grows', () => { - setMeasuredTail(0) - const { container } = render(streamingList(0)) - paint(container) - const scroller = scrollRoot(container) - - setMeasuredTail(1) - expect(deliverResizes()).toBe(true) - const pinnedAt = scroller.scrollTop - layout.belowTranscriptPx += 2_000 - - fireEvent.scroll(scroller) - - expect(scroller.scrollTop).toBe(pinnedAt) - expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_FOLLOW_REARM_PX) - }) - - it('does not counter upward scrolling when measured overscan rows settle', () => { - const readingAt = 2000 - const aboveIndex = Math.floor(readingAt / ROW_PITCH_PX) - 1 - const { container } = render(list(transcript)) - paint(container) - scrollTranscript(container, readingAt + 100) - paint(container) - layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => - index === aboveIndex ? ROW_PX + 10 : ROW_PX - ) - paint(container) - scrollTranscript(container, readingAt) - paint(container) - const scroller = scrollRoot(container) - const scrollTo = vi.spyOn(scroller, 'scrollTo') - - layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => - index === aboveIndex ? height + 20 : height - ) - paint(container) - - expect(scroller.scrollTop).toBe(readingAt) - expect(scrollTo).not.toHaveBeenCalled() - }) - - it('keeps the offset when a visible row shrinks past the viewport top', () => { - const focusedIndex = 45 - const { container } = render(list(transcript)) - paint(container) - scrollTranscript(container, focusedIndex * ROW_PITCH_PX) - paint(container) - layout.measuredRowHeights = Array.from({ length: TRANSCRIPT_LENGTH }, (_, index) => - index === focusedIndex ? 100 : ROW_PX - ) - paint(container) - const readingAt = focusedIndex * ROW_PITCH_PX + 60 - scrollTranscript(container, readingAt) - paint(container) - const scroller = scrollRoot(container) - const scrollTo = vi.spyOn(scroller, 'scrollTo') - - layout.measuredRowHeights = layout.measuredRowHeights.map((height, index) => - index === focusedIndex ? 30 : height - ) - paint(container) - - expect(scroller.scrollTop).toBe(readingAt) - expect(scrollTo).not.toHaveBeenCalled() - }) - - it('settles a pending end reconcile after the reader keeps scrolling away', async () => { - setMeasuredTail(0) - const { container } = render(streamingList(0)) - const scroller = scrollRoot(container) - // Trigger a pin outside React's act wrapper so its TanStack rAF reconcile is - // still pending when the reader moves away. - setMeasuredTail(1) - expect(deliverResizes()).toBe(true) - const scheduleSpy = vi.spyOn(window, 'requestAnimationFrame') - const scrollToSpy = vi.spyOn(scroller, 'scrollTo') - const readingAt = 2000 - scroller.scrollTop = readingAt - fireEvent.scroll(scroller) - expect(scrollToSpy).toHaveBeenLastCalledWith({ behavior: 'auto', top: readingAt }) - scroller.scrollTop = 1800 - fireEvent.scroll(scroller) - expect(scrollToSpy).toHaveBeenLastCalledWith({ behavior: 'auto', top: 1800 }) - - await act(async () => { - for (let frame = 0; frame < 6; frame += 1) { - await new Promise((resolve) => requestAnimationFrame(() => resolve())) + isVisible = false + rerender(list(initialMessages, isVisible)) + await settleVirtualizer(container) + const scrollTo = vi.spyOn(scroller, 'scrollTo') + try { + rerender(list(appendedMessages, isVisible)) + await settleVirtualizer(container) + expect(scrollTo).not.toHaveBeenCalled() + } finally { + scrollTo.mockRestore() } - }) - const scheduledFrames = scheduleSpy.mock.calls.length - scheduleSpy.mockRestore() - scrollToSpy.mockRestore() - expect(scheduledFrames).toBeLessThanOrEqual(8) - expect(scroller.scrollTop).toBe(1800) - expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + isVisible = true + rerender(list(appendedMessages, isVisible)) + await settleVirtualizer(container) + + expect(scroller.scrollTop).toBe(readingAt) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + } finally { + restoreResizeObserver() + restoreLayout() + } }) - // With something above the spacer, the two parties stop agreeing on where the - // end is: the transcript measures it from the document, the virtualizer from - // the spacer's own height against a container-absolute offset. The second is - // short by everything outside the spacer, so it reads a reader who is clearly - // above the end as sitting on it. - describe('with a gutter above the transcript', () => { - /** `pt-10` plus the "Load earlier" block and its gap — what sits above the - * spacer once a resumed session still has older history to page in. */ - const GUTTER_PX = 92 - /** Far enough up that the transcript itself calls the reader detached, and - * still inside the band the virtualizer computes (48 + 92 + 24). */ - const READING_ABOVE_END_PX = 96 - // A nonzero delta seeds the size cache; zero exercises first-measure growth. - const MEASURE_SKEW_PX = 7 + it('preserves a detached viewport when a structured session catches up after reveal', async () => { + let isVisible = true + const restoreLayout = stubLayout({ + scrollGeometry: true, + isVisible: () => isVisible + }) + const restoreResizeObserver = stubResizeObserver() + const initialMessages = Array.from({ length: 120 }, (_, index) => marker(index)) + const appendedMessages = [ + ...initialMessages, + ...Array.from({ length: 20 }, (_, index) => marker(120 + index)) + ] + try { + const { container, rerender } = render(list(initialMessages, isVisible)) + await settleVirtualizer(container) - function setSkewedTail(step: number, skew = MEASURE_SKEW_PX): void { - const heights = Array.from({ length: TRANSCRIPT_LENGTH }, () => ROW_PX) - heights[TAIL_INDEX] = tailHeightAt(step) + skew - layout.measuredRowHeights = heights + const scroller = scrollRoot(container) + const readingAt = 2_000 + scrollTranscript(container, readingAt) + await settleVirtualizer(container) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + + isVisible = false + rerender(list(initialMessages, isVisible)) + await settleVirtualizer(container) + isVisible = true + rerender(list(initialMessages, isVisible)) + // The resumed transport can publish catch-up before the reveal write emits a scroll event. + rerender(list(appendedMessages, isVisible)) + await settleVirtualizer(container) + + expect(scroller.scrollTop).toBe(readingAt) + expect(screen.getByRole('button', { name: /jump to latest/i })).toBeInTheDocument() + } finally { + restoreResizeObserver() + restoreLayout() } + }) - beforeEach(() => { - layout.aboveTranscriptPx = GUTTER_PX + it('catches a following viewport up after messages append while hidden', async () => { + let isVisible = true + const restoreLayout = stubLayout({ + scrollGeometry: true, + isVisible: () => isVisible }) + const restoreResizeObserver = stubResizeObserver() + const initialMessages = Array.from({ length: 120 }, (_, index) => marker(index)) + const appendedMessages = [ + ...initialMessages, + ...Array.from({ length: 20 }, (_, index) => marker(120 + index)) + ] + try { + const { container, rerender } = render(list(initialMessages, isVisible)) + await settleVirtualizer(container) - it.each([0, MEASURE_SKEW_PX])( - 'leaves a reader just above the end while the row grows (skew %i)', - (skew) => { - setSkewedTail(4, skew) - const { container, rerender } = render(streamingList(4)) - paint(container) - const scroller = scrollRoot(container) + isVisible = false + rerender(list(initialMessages, isVisible)) + await settleVirtualizer(container) + rerender(list(appendedMessages, isVisible)) + await settleVirtualizer(container) - const readingAt = scroller.scrollHeight - scroller.clientHeight - READING_ABOVE_END_PX - scrollTranscript(container, readingAt) - paint(container) - expect(distanceFromBottom(container)).toBe(READING_ABOVE_END_PX) + isVisible = true + rerender(list(appendedMessages, isVisible)) + await settleVirtualizer(container) - for (let step = 5; step <= 10; step += 1) { - setSkewedTail(step, skew) - rerender(streamingList(step)) - paint(container) - - // Not dragged along: the offset the reader chose is the offset they keep, - // however much the row below them grows. - expect(scroller.scrollTop).toBe(readingAt) - } - } - ) - - it('still pins a reader who is at the end, with the gutter in the document', () => { - setSkewedTail(4) - const { container, rerender } = render(streamingList(4)) - paint(container) - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) - - for (let step = 5; step <= 10; step += 1) { - setSkewedTail(step) - rerender(streamingList(step)) - paint(container) - - expect(distanceFromBottom(container)).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) - } - }) + const scroller = scrollRoot(container) + expect( + scroller.scrollHeight - scroller.clientHeight - scroller.scrollTop + ).toBeLessThanOrEqual(NATIVE_CHAT_BOTTOM_THRESHOLD_PX) + expect(screen.queryByRole('button', { name: /jump to latest/i })).toBeNull() + } finally { + restoreResizeObserver() + restoreLayout() + } }) }) diff --git a/src/renderer/src/components/native-chat/NativeChatResolvedView.tsx b/src/renderer/src/components/native-chat/NativeChatResolvedView.tsx index 89f28683429..4f074fee22c 100644 --- a/src/renderer/src/components/native-chat/NativeChatResolvedView.tsx +++ b/src/renderer/src/components/native-chat/NativeChatResolvedView.tsx @@ -400,6 +400,7 @@ export function NativeChatResolvedView({ ) : ( (): T | null { type StructuredSessionMessageListProps = { allowFileUriLinks?: boolean + isVisible?: boolean onLinkClick?: (...args: unknown[]) => void showTurnStatus?: boolean showLiveTurnActivity?: boolean diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx index 94d6fb78e29..41308dbce54 100644 --- a/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.test.tsx @@ -134,6 +134,23 @@ describe('NativeChatStructuredSession', () => { expect(mocks.fileLinkClick).toHaveBeenCalledWith(event, 'file:///repo/src/a.ts') }) + // The list defaults to visible, so a dropped prop silently re-arms auto-scroll + // on reveal and drags a reader who left a hidden pane detached to the bottom. + it.each([true, false])('tells the transcript the pane is visible: %s', (isVisible) => { + render( + + ) + + expect(mocks.messageListProps?.isVisible).toBe(isVisible) + }) + // Turn status and transcript image previews shipped Codex-first. Every // structured session renders through the same list, so neither is agent-gated. it.each(['codex', 'claude'] as const)( diff --git a/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx b/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx index acf80594d66..0da97ba0eba 100644 --- a/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx +++ b/src/renderer/src/components/native-chat/NativeChatStructuredSession.tsx @@ -18,22 +18,12 @@ import { useStructuredAgentSession } from './use-structured-agent-session' import { useNativeChatImageRuntimeContext } from './native-chat-image-runtime-context' import { useStructuredNativeChatPaneCommands } from './use-structured-native-chat-pane-commands' import type { NativeChatStructuredViewProps } from './native-chat-view-types' -import { NativeChatBackgroundTasksStatus } from './NativeChatBackgroundTasksStatus' +import { NativeChatStructuredSessionStatus } from './NativeChatStructuredSessionStatus' import { useNativeChatLaunchDraftSignal } from './use-native-chat-launch-draft-adoption' import { NativeChatLaunchRetry } from './NativeChatLaunchRetry' import { useNativeChatProvisionalLaunch } from './use-native-chat-provisional-launch' import { NativeChatDeliveryRetry } from './NativeChatDeliveryRetry' -type StoppingBackgroundTasks = { - sessionId: string - taskIds: ReadonlySet - all: boolean -} - -const NO_STOPPING_TASKS: ReadonlySet = new Set() - -type ExpandedBackgroundTasks = { sessionId: string; expanded: boolean } - function encodeQuestionAnswer(questionId: string, answer: string): string { return `${encodeURIComponent(questionId)}:${encodeURIComponent(answer)}` } @@ -59,12 +49,6 @@ export function NativeChatStructuredSession( transcriptLoading: controller.status === 'idle' || controller.status === 'loading' }) const [composerError, setComposerError] = useState(null) - const [stoppingBackgroundTasks, setStoppingBackgroundTasks] = - useState(null) - // Held here, not in the strip: the strip unmounts whenever live work briefly - // drops to nothing, and its own state would collapse the list each time. - const [expandedBackgroundTasks, setExpandedBackgroundTasks] = - useState(null) const [optionPickerRequest, setOptionPickerRequest] = useState<{ id: string sequence: number @@ -119,8 +103,6 @@ export function NativeChatStructuredSession( rootRef, { sessionId: props.sessionId, isVisible: props.isVisible } ) - const activeStoppingBackgroundTasks = - stoppingBackgroundTasks?.sessionId === props.sessionId ? stoppingBackgroundTasks : null const prompt = controller.prompts[0] ?? null const cancelPrompt = () => { if (controller.turnId && prompt) { @@ -225,6 +207,7 @@ export function NativeChatStructuredSession( - {controller.error || composerError ? ( -

- {controller.error ?? composerError} -

- ) : null} - {controller.backgroundTasks.show ? ( - - setExpandedBackgroundTasks({ sessionId: props.sessionId, expanded }) - } - onStop={(taskId) => { - const targetSessionId = props.sessionId - setStoppingBackgroundTasks((current) => { - const taskIds = new Set( - current?.sessionId === targetSessionId ? current.taskIds : NO_STOPPING_TASKS - ) - if (taskId) { - taskIds.add(taskId) - } - return { - sessionId: targetSessionId, - taskIds, - all: taskId ? current?.sessionId === targetSessionId && current.all : true - } - }) - void controller.stopBackgroundTask(taskId).finally(() => { - setStoppingBackgroundTasks((current) => { - if (current?.sessionId !== targetSessionId) { - return current - } - const taskIds = new Set(current.taskIds) - if (taskId) { - taskIds.delete(taskId) - } - const all = taskId ? current.all : false - return taskIds.size === 0 && !all - ? null - : { sessionId: targetSessionId, taskIds, all } - }) - }) - }} - /> - ) : null} + {prompt ? null : ( + all: boolean +} + +const NO_STOPPING_TASKS: ReadonlySet = new Set() + +export function NativeChatStructuredSessionStatus(props: { + sessionId: string + error: string | null + composerError: string | null + isVisible: boolean + backgroundTasks: StructuredSessionBackgroundTasksView + stopBackgroundTask: (taskId?: string) => Promise +}): React.JSX.Element { + const [stopping, setStopping] = useState(null) + const [expanded, setExpanded] = useState<{ sessionId: string; expanded: boolean } | null>(null) + const activeStopping = stopping?.sessionId === props.sessionId ? stopping : null + + const onStop = (taskId?: string) => { + const sessionId = props.sessionId + setStopping((current) => { + const taskIds = new Set( + current?.sessionId === sessionId ? current.taskIds : NO_STOPPING_TASKS + ) + if (taskId) { + taskIds.add(taskId) + } + return { + sessionId, + taskIds, + all: taskId ? current?.sessionId === sessionId && current.all : true + } + }) + void props.stopBackgroundTask(taskId).finally(() => { + setStopping((current) => { + if (current?.sessionId !== sessionId) { + return current + } + const taskIds = new Set(current.taskIds) + if (taskId) { + taskIds.delete(taskId) + } + const all = taskId ? current.all : false + return taskIds.size === 0 && !all ? null : { sessionId, taskIds, all } + }) + }) + } + + return ( + <> + {props.error || props.composerError ? ( +

+ {props.error ?? props.composerError} +

+ ) : null} + {props.backgroundTasks.show ? ( + setExpanded({ sessionId: props.sessionId, expanded: value })} + onStop={onStop} + /> + ) : null} + + ) +} diff --git a/src/renderer/src/components/native-chat/native-chat-windowing-test-harness.tsx b/src/renderer/src/components/native-chat/native-chat-windowing-test-harness.tsx index 9f204078dcb..ea5b4cca407 100644 --- a/src/renderer/src/components/native-chat/native-chat-windowing-test-harness.tsx +++ b/src/renderer/src/components/native-chat/native-chat-windowing-test-harness.tsx @@ -91,18 +91,36 @@ export function reservedTranscriptHeight(root: ParentNode): number { export function stubLayout({ scrollGeometry = false, offsetChain = false, - viewportHeight = () => VIEWPORT_PX + viewportHeight = () => VIEWPORT_PX, + isVisible = () => true }: { scrollGeometry?: boolean /** Give the spacer an `offsetTop` and a chain to walk up to the scroll root, * so `scrollMargin` can be something other than zero. */ offsetChain?: boolean viewportHeight?: () => number + /** A hidden transcript measures as nothing, the way `display: none` does. */ + isVisible?: () => boolean } = {}): () => void { - const scrollTops = new WeakMap() + let scrollTops = new WeakMap() + let wasLaidOut = isVisible() + /** Losing the box drops the retained offset, the way `display: none` does in a + * browser: a revealed pane reads a reader's place back only if production + * restored it. */ + const laidOut = (): boolean => { + const nowLaidOut = isVisible() + if (wasLaidOut && !nowLaidOut) { + scrollTops = new WeakMap() + } + wasLaidOut = nowLaidOut + return nowLaidOut + } const restores = [ overrideLayoutProperty('offsetHeight', { get(this: HTMLElement): number { + if (!laidOut()) { + return 0 + } if (this.hasAttribute('data-native-chat-scroll')) { return viewportHeight() } @@ -125,21 +143,27 @@ export function stubLayout({ restores.push( overrideLayoutProperty('clientHeight', { get(this: HTMLElement): number { - return this.hasAttribute('data-native-chat-scroll') ? viewportHeight() : 0 + return this.hasAttribute('data-native-chat-scroll') && laidOut() ? viewportHeight() : 0 } }), overrideLayoutProperty('scrollHeight', { get(this: HTMLElement): number { - return this.hasAttribute('data-native-chat-scroll') + return this.hasAttribute('data-native-chat-scroll') && laidOut() ? layout.aboveTranscriptPx + reservedTranscriptHeight(this) + layout.belowTranscriptPx : 0 } }), overrideLayoutProperty('scrollTop', { get(this: HTMLElement): number { + if (this.hasAttribute('data-native-chat-scroll') && !laidOut()) { + return 0 + } return scrollTops.get(this) ?? 0 }, set(this: HTMLElement, value: number): void { + if (this.hasAttribute('data-native-chat-scroll') && !laidOut()) { + return + } // A browser clamps; without this `scrollTop = scrollHeight` would park // the view past the end and every distance-from-bottom would read 0. const max = Math.max(0, this.scrollHeight - this.clientHeight) @@ -245,10 +269,11 @@ export function session(messages: NativeChatMessage[]): NativeChatLiveSession { } } -export function list(messages: NativeChatMessage[]): React.JSX.Element { +export function list(messages: NativeChatMessage[], isVisible = true): React.JSX.Element { return ( void + scrollToEnd: () => void +}): React.JSX.Element { + const scrollRef = useRef(null) + const contentRef = useRef(null) + const transcript = useNativeChatTranscriptScroll({ + scrollRef, + contentRef, + itemCount: 100, + isWorking: false, + showTypingIndicator: false, + isVisible, + hasMore: false, + loadingEarlier: false, + loadEarlier: vi.fn(), + alignToViewportTop: vi.fn(), + scrollToEnd, + restoreScrollOffset, + consumeProgrammaticScroll: () => false, + reconcileReaderScroll: vi.fn() + }) + return ( +
+
+
+ ) +} + +afterEach(cleanup) + +describe('native chat transcript visibility', () => { + it('restores the last detached offset when a retained tab is revealed', () => { + let scrollTop = 900 + const scrollToEnd = vi.fn() + let scrollElement: HTMLElement | null = null + const restoreScrollOffset = vi.fn((offset: number) => { + scrollTop = offset + }) + const view = render( + + ) + scrollElement = view.getByTestId('scroll') + Object.defineProperties(scrollElement, { + clientHeight: { configurable: true, get: () => 100 }, + scrollHeight: { configurable: true, get: () => 1_000 }, + scrollTop: { + configurable: true, + get: () => scrollTop, + set: (value: number) => { + scrollTop = value + } + } + }) + + scrollTop = 320 + fireEvent.scroll(scrollElement) + view.rerender( + + ) + + // A reveal-time geometry reconciliation can drift the retained DOM to its end. + scrollTop = 900 + fireEvent.scroll(scrollElement) + view.rerender( + + ) + + expect(restoreScrollOffset).toHaveBeenCalledExactlyOnceWith(320) + expect(scrollTop).toBe(320) + }) +}) diff --git a/src/renderer/src/components/native-chat/use-native-chat-transcript-scroll.ts b/src/renderer/src/components/native-chat/use-native-chat-transcript-scroll.ts index c54cbf54e85..fa87d3f333b 100644 --- a/src/renderer/src/components/native-chat/use-native-chat-transcript-scroll.ts +++ b/src/renderer/src/components/native-chat/use-native-chat-transcript-scroll.ts @@ -35,6 +35,10 @@ function geometryOf(element: HTMLElement): ScrollGeometry { } } +function hasMeasurableViewport(element: HTMLElement | null): element is HTMLElement { + return element !== null && element.clientHeight > 0 +} + export type NativeChatTranscriptScroll = { showJump: boolean onScroll: UIEventHandler @@ -49,11 +53,13 @@ export function useNativeChatTranscriptScroll({ itemCount, isWorking, showTypingIndicator, + isVisible, hasMore, loadingEarlier, loadEarlier, alignToViewportTop, scrollToEnd, + restoreScrollOffset, consumeProgrammaticScroll, reconcileReaderScroll }: { @@ -62,23 +68,28 @@ export function useNativeChatTranscriptScroll({ itemCount: number isWorking: boolean showTypingIndicator: boolean + isVisible: boolean hasMore: boolean loadingEarlier: boolean loadEarlier: () => void alignToViewportTop: (element: HTMLElement) => void scrollToEnd: () => void + restoreScrollOffset: (offset: number) => void consumeProgrammaticScroll: (event: Event) => boolean reconcileReaderScroll: (isTakingOver: boolean) => void }): NativeChatTranscriptScroll { const [showJump, setShowJump] = useState(false) const followingRef = useRef(true) + const detachedScrollTopRef = useRef(null) + const isVisibleRef = useRef(isVisible) + const previousIsVisibleRef = useRef(isVisible) const previousScrollTopRef = useRef(0) const loadEarlierRequestedAtRef = useRef(null) const syncScrollState = useCallback( (event?: Event): ScrollGeometry | null => { const element = scrollRef.current - if (!element) { + if (!isVisibleRef.current || !hasMeasurableViewport(element)) { return null } const geometry = geometryOf(element) @@ -95,6 +106,7 @@ export function useNativeChatTranscriptScroll({ reconcileReaderScroll(wasFollowing && !following) } } + detachedScrollTopRef.current = followingRef.current ? null : geometry.scrollTop setShowJump(shouldShowJumpToLatest(followingRef.current, geometry)) return geometry }, @@ -129,11 +141,17 @@ export function useNativeChatTranscriptScroll({ [hasMore, itemCount, loadEarlier, loadingEarlier, syncScrollState] ) + const scrollToEndWhenMeasurable = useCallback(() => { + if (hasMeasurableViewport(scrollRef.current)) { + scrollToEnd() + } + }, [scrollRef, scrollToEnd]) + const scrollToBottom = useCallback(() => { followingRef.current = true - scrollToEnd() + scrollToEndWhenMeasurable() setShowJump(false) - }, [scrollToEnd]) + }, [scrollToEndWhenMeasurable]) const scrollMessageToTop = useCallback( (element: HTMLElement) => { @@ -144,10 +162,27 @@ export function useNativeChatTranscriptScroll({ ) useLayoutEffect(() => { - if (followingRef.current) { - scrollToEnd() + const revealed = isVisible && !previousIsVisibleRef.current + isVisibleRef.current = isVisible + previousIsVisibleRef.current = isVisible + if (!isVisible) { + return } - }, [itemCount, isWorking, showTypingIndicator, scrollToEnd]) + if (!followingRef.current) { + if (revealed && detachedScrollTopRef.current !== null) { + restoreScrollOffset(detachedScrollTopRef.current) + } + return + } + scrollToEndWhenMeasurable() + }, [ + isVisible, + itemCount, + isWorking, + restoreScrollOffset, + showTypingIndicator, + scrollToEndWhenMeasurable + ]) useEffect(() => { const element = scrollRef.current @@ -156,7 +191,7 @@ export function useNativeChatTranscriptScroll({ } const observer = new ResizeObserver(() => { if (followingRef.current) { - scrollToEnd() + scrollToEndWhenMeasurable() } else { syncScrollState() } @@ -168,7 +203,7 @@ export function useNativeChatTranscriptScroll({ observer.observe(contentRef.current) } return () => observer.disconnect() - }, [contentRef, scrollRef, scrollToEnd, syncScrollState]) + }, [contentRef, scrollRef, scrollToEndWhenMeasurable, syncScrollState]) return { showJump, onScroll, scrollToBottom, scrollMessageToTop } } diff --git a/src/renderer/src/components/native-chat/use-native-chat-transcript-window.options.test.tsx b/src/renderer/src/components/native-chat/use-native-chat-transcript-window.options.test.tsx index 82166952670..70ddd5d4f34 100644 --- a/src/renderer/src/components/native-chat/use-native-chat-transcript-window.options.test.tsx +++ b/src/renderer/src/components/native-chat/use-native-chat-transcript-window.options.test.tsx @@ -67,13 +67,16 @@ afterEach(() => { }) describe('native chat transcript virtualizer contract', () => { - it('retains prepend anchoring without independently following the end', () => { - renderHook(() => - useNativeChatTranscriptWindow({ - scrollRef: { current: null }, - slots: [], - revealIndex: -1 - }) + it('retains prepend anchoring without geometry-driven end following', () => { + const { rerender } = renderHook( + ({ isVisible }) => + useNativeChatTranscriptWindow({ + scrollRef: { current: null }, + slots: [], + isVisible, + revealIndex: -1 + }), + { initialProps: { isVisible: false } } ) expect(virtualizerMock.options.current).toMatchObject({ @@ -81,6 +84,14 @@ describe('native chat transcript virtualizer contract', () => { followOnAppend: false, scrollEndThreshold: -1 }) + + rerender({ isVisible: true }) + + expect(virtualizerMock.options.current).toMatchObject({ + anchorTo: 'end', + followOnAppend: false, + scrollEndThreshold: -1 + }) }) it('periodically resets retired measurements while restoring live measured sizes', () => { @@ -95,6 +106,7 @@ describe('native chat transcript virtualizer contract', () => { useNativeChatTranscriptWindow({ scrollRef: { current: scrollElement }, slots: [slot(id)], + isVisible: true, revealIndex: -1 }), { initialProps: { id: 'message-0' } } @@ -115,7 +127,12 @@ describe('native chat transcript virtualizer contract', () => { ({ text }) => { const current = slot('message-0') current.message.blocks = [{ type: 'text', text }] - return useNativeChatTranscriptWindow({ scrollRef, slots: [current], revealIndex: -1 }) + return useNativeChatTranscriptWindow({ + scrollRef, + slots: [current], + isVisible: true, + revealIndex: -1 + }) }, { initialProps: { text: 'first' } } ) @@ -145,6 +162,7 @@ describe('native chat transcript virtualizer contract', () => { useNativeChatTranscriptWindow({ scrollRef: { current: scrollElement }, slots: [slot('message-0')], + isVisible: true, revealIndex: -1 }) ) @@ -156,6 +174,25 @@ describe('native chat transcript virtualizer contract', () => { expect(result.current.consumeProgrammaticScroll(new Event('scroll'))).toBe(true) }) + it('restores a detached offset through the virtualizer', () => { + const scrollElement = document.createElement('div') + virtualizerMock.scrollElement.current = scrollElement + const { result } = renderHook(() => + useNativeChatTranscriptWindow({ + scrollRef: { current: scrollElement }, + slots: [slot('message-0')], + isVisible: true, + revealIndex: -1 + }) + ) + + result.current.restoreScrollOffset(320) + + expect(virtualizerMock.scrollToOffset).toHaveBeenCalledExactlyOnceWith(320, { + behavior: 'auto' + }) + }) + it('lets an explicit reveal supersede a pending reader takeover', () => { const scrollElement = document.createElement('div') const target = document.createElement('div') @@ -165,6 +202,7 @@ describe('native chat transcript virtualizer contract', () => { useNativeChatTranscriptWindow({ scrollRef: { current: scrollElement }, slots: [slot('message-0')], + isVisible: true, revealIndex: -1 }) ) diff --git a/src/renderer/src/components/native-chat/use-native-chat-transcript-window.ts b/src/renderer/src/components/native-chat/use-native-chat-transcript-window.ts index 15604bcb9a2..77546388020 100644 --- a/src/renderer/src/components/native-chat/use-native-chat-transcript-window.ts +++ b/src/renderer/src/components/native-chat/use-native-chat-transcript-window.ts @@ -41,6 +41,8 @@ export type NativeChatTranscriptWindow = { * browser's real max scroll, so this lands where the document bottom is, * trailing chrome included. */ scrollToEnd: () => void + /** Restore a detached reader offset through the virtualizer's scroll owner. */ + restoreScrollOffset: (offset: number) => void /** True when this scroll event is the echo of a registered application write. */ consumeProgrammaticScroll: (event: Event) => boolean /** Rebase a pending end reconcile while the reader takes over this frame. */ @@ -84,10 +86,12 @@ function rectOffsetWithin(element: HTMLElement, container: HTMLElement): number export function useNativeChatTranscriptWindow({ scrollRef, slots, + isVisible, revealIndex }: { scrollRef: React.RefObject slots: readonly NativeChatTranscriptSlot[] + isVisible: boolean /** Slot the transcript was asked to reveal, or -1. */ revealIndex: number }): NativeChatTranscriptWindow { @@ -275,7 +279,7 @@ export function useNativeChatTranscriptWindow({ const scrollToEnd = useCallback(() => { const container = scrollRef.current - if (!container) { + if (!isVisible || !container) { return } finishReaderTakeover() @@ -290,7 +294,27 @@ export function useNativeChatTranscriptWindow({ if (container.scrollTop !== previous) { programmaticScrollMarks.mark(container.scrollTop) } - }, [finishReaderTakeover, programmaticScrollMarks, scrollRef, virtualizer]) + }, [finishReaderTakeover, isVisible, programmaticScrollMarks, scrollRef, virtualizer]) + + const restoreScrollOffset = useCallback( + (offset: number) => { + const container = scrollRef.current + if (!isVisible || !container) { + return + } + finishReaderTakeover() + if (virtualizer.scrollElement) { + virtualizer.scrollToOffset(offset, { behavior: 'auto' }) + return + } + const previous = container.scrollTop + container.scrollTop = offset + if (container.scrollTop !== previous) { + programmaticScrollMarks.mark(container.scrollTop) + } + }, + [finishReaderTakeover, isVisible, programmaticScrollMarks, scrollRef, virtualizer] + ) const consumeProgrammaticScroll = useCallback( (event: Event): boolean => { @@ -338,6 +362,7 @@ export function useNativeChatTranscriptWindow({ measureRow: virtualizer.measureElement, alignToViewportTop, scrollToEnd, + restoreScrollOffset, consumeProgrammaticScroll, reconcileReaderScroll } diff --git a/tests/e2e/native-chat-history-prepend-anchor.spec.ts b/tests/e2e/native-chat-history-prepend-anchor.spec.ts index aea95302363..a0b4e5b6b0e 100644 --- a/tests/e2e/native-chat-history-prepend-anchor.spec.ts +++ b/tests/e2e/native-chat-history-prepend-anchor.spec.ts @@ -55,6 +55,45 @@ async function toggleTerminalTabToChatView( }, args) } +async function activateNewTerminalTab(page: Page, worktreeId: string): Promise { + await page.evaluate((id) => { + const store = window.__store + if (!store) { + throw new Error('Store unavailable') + } + const state = store.getState() + const tab = state.createTab(id, undefined, undefined, { activate: true }) + state.setActiveTab(tab.id) + state.setActiveTabType('terminal') + }, worktreeId) +} + +async function activateTerminalTab(page: Page, tabId: string): Promise { + await page.evaluate((id) => { + const store = window.__store + if (!store) { + throw new Error('Store unavailable') + } + const state = store.getState() + state.setActiveTab(id) + state.setActiveTabType('terminal') + }, tabId) +} + +async function publishHiddenLaunchMessage( + page: Page, + args: { tabId: string; text: string } +): Promise { + await page.evaluate(({ tabId, text }) => { + window.__store?.getState().seedNativeChatLaunchPrompt({ + tabId, + agent: 'claude', + text, + createdAt: Date.now() + }) + }, args) +} + function claudeTranscript(rowCount: number, sessionId: string): string { const startedAt = Date.now() - rowCount * 1_000 return `${Array.from({ length: rowCount }, (_, index) => { @@ -77,7 +116,7 @@ function claudeTranscript(rowCount: number, sessionId: string): string { }).join('\n')}\n` } -test.describe('Native chat history prepend anchoring', () => { +test.describe('Native chat transcript anchoring', () => { test('keeps the visible transcript row at the same viewport offset', async ({ orcaPage }) => { await waitForSessionReady(orcaPage) await waitForActiveWorktree(orcaPage) @@ -201,4 +240,76 @@ test.describe('Native chat history prepend anchoring', () => { rmSync(scratchDir, { recursive: true, force: true }) } }) + + test('keeps a detached transcript in place across a hidden update', async ({ orcaPage }) => { + await waitForSessionReady(orcaPage) + await waitForActiveWorktree(orcaPage) + await ensureTerminalVisible(orcaPage) + await waitForActiveTerminalManager(orcaPage, 30_000) + + const descriptor = await waitForActivePaneHookDescriptor(orcaPage) + const [tabId] = descriptor.paneKey.split(':') + const sessionId = `e2e-hidden-scroll-${randomUUID()}` + const scratchDir = mkdtempSync(path.join(os.tmpdir(), 'orca-e2e-native-chat-hidden-')) + const transcriptPath = path.join(scratchDir, `${sessionId}.jsonl`) + writeFileSync(transcriptPath, claudeTranscript(TRANSCRIPT_ROWS, sessionId)) + + try { + await enableNativeChatSetting(orcaPage) + await seedClaudeProviderSession(orcaPage, { + paneKey: descriptor.paneKey, + worktreeId: descriptor.worktreeId, + sessionId, + transcriptPath + }) + await toggleTerminalTabToChatView(orcaPage, { + tabId, + worktreeId: descriptor.worktreeId + }) + + const root = orcaPage.locator('[data-native-chat-root="true"]') + const scroll = orcaPage.locator('[data-native-chat-scroll]') + const jump = orcaPage.getByRole('button', { name: 'Jump to latest' }) + await expect(root).toBeVisible({ timeout: 15_000 }) + await expect(orcaPage.getByText('E2E transcript row 0649', { exact: true })).toBeAttached({ + timeout: 30_000 + }) + await scroll.hover() + await orcaPage.mouse.wheel(0, -2_000) + await expect + .poll(async () => + scroll.evaluate( + (element) => element.scrollHeight - element.clientHeight - element.scrollTop + ) + ) + .toBeGreaterThan(1_000) + const readingAt = await scroll.evaluate((element) => element.scrollTop) + await expect(jump).toBeVisible() + + await activateNewTerminalTab(orcaPage, descriptor.worktreeId) + await expect(root).toBeHidden() + await publishHiddenLaunchMessage(orcaPage, { + tabId, + text: 'E2E update received while the transcript is hidden' + }) + await activateTerminalTab(orcaPage, tabId) + + await expect(root).toBeVisible({ timeout: 15_000 }) + await expect( + orcaPage.getByText('E2E update received while the transcript is hidden', { exact: true }) + ).toBeAttached() + await expect + .poll(async () => + Math.abs((await scroll.evaluate((element) => element.scrollTop)) - readingAt) + ) + .toBeLessThanOrEqual(2) + await orcaPage.waitForTimeout(500) + expect( + Math.abs((await scroll.evaluate((element) => element.scrollTop)) - readingAt) + ).toBeLessThanOrEqual(2) + await expect(jump).toBeVisible() + } finally { + rmSync(scratchDir, { recursive: true, force: true }) + } + }) }) From 170ebce1f2bd4474a48b40694d46a6b27e4ba767 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Wed, 16 Sep 2026 01:13:06 -0700 Subject: [PATCH 28/28] fix(ci): run static analysis for every tree the repo-wide audits scan (#20918) A mobile-only diff is desktop-irrelevant, so should_run was false and every PR check skipped -- including the audits that do lint mobile/. The violation then landed on main and failed the same gate on every later PR's merge ref. Derive the trigger from the audit commands' own scan roots so the two cannot drift. --- config/scripts/pr-code-change-scope.mjs | 59 +++++++++++++++++++- config/scripts/pr-code-change-scope.test.mjs | 41 ++++++++++++-- 2 files changed, 94 insertions(+), 6 deletions(-) diff --git a/config/scripts/pr-code-change-scope.mjs b/config/scripts/pr-code-change-scope.mjs index 77c38c546ac..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' @@ -261,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 @@ -298,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 } } @@ -358,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', () => {