From 6142657d7ad4af81cb4449176048edadef10db45 Mon Sep 17 00:00:00 2001 From: Jinwoo Hong <73622457+Jinwoo-H@users.noreply.github.com> Date: Thu, 17 Sep 2026 14:08:59 -0400 Subject: [PATCH] refactor(mobile): checked reply readers for the tasks domain's board, runtime, search and create (step 7) (#21246) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * test(mobile): record main's agent.launch create receipt before checking it `agent.launch` is the one read site in the tasks domain's project-board, runtime, source-search and workspace create/source files with no recording family at all, so main's answer to a malformed launch receipt was undocumented and a checked reader would have had nothing to move. One family, one scenario, two goldens: `worktree.agent-launch-create` drives `createWorktreeWithNameRetry` down the `agent.launch` arm instead of `worktree.create`, which needs an `agentLaunch` argument on the existing worktree-create-retry adapter. The agent is a constant there on purpose — which agent is picked changes only the params, and the arm under test is which method the create is issued on. A separate family rather than an eighth `worktree.create-retry` scenario: `familyGoldens` drives its reply matrix over the family's FIRST scenario, so adding to that family would have recorded a pilot golden and left the launch receipt with no partitions. As its own base it gets all eleven. Recorded from a detached worktree at the pinned baseline with this branch's `rpc-recording/` and manifest copied in, per the recipe in the recorder README: `mobile/pnpm-lock.yaml` has drifted past `4b876758d3` on main, so `--record` refuses on this branch's tree even though `mobile/src` and `src/shared` are byte-identical to the pin. Thirty-four existing goldens move on `adapterSha256` and nothing else — the six families mounted through the edited adapter module. No body moves. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): checked reply readers for the tasks domain's board, runtime, search and create Forty-three unchecked reply readers across five files become checked zod readers, so a malformed host reply surfaces as one readable error naming the method instead of a downstream TypeError, a rendered `undefined`, or a screen left ready over garbage. Deliberately a behaviour change on malformed replies only. Five schema modules, each recording the consumer line behind every requirement and the host handler it was checked against: - `task-project-board-reply-schema.ts` — the sixteen `github.project.*` envelopes. Where a consumer reads a member off BOTH arms unguarded the schema is a union on `ok`; where it guards everything (`result.error?.message ?? '…'`, `result.labels ?? []`) it is a flat passthrough and requires only the container, because a requirement on a member the consumer already defaults would refuse a reply main rendered. - `task-runtime-reply-schema.ts` — the hydration reads. The three preference writes read `z.unknown()`: no call site interprets their body. - `task-source-search-reply-schema.ts` — the provider searches and the pasted single-item lookups. The Linear union replaces the hand reader in linear-mobile-issue-read.ts, whose own copy reached the screen unattributed. - `workspace-source-reply-schema.ts` — SSH state, agent detection, orca.yaml hooks, sparse presets and base-ref search. - `workspace-create-reply-schema.ts` — the create receipt, the launch receipt and the hosted-base union. Requirements are exactly the members a consumer reads unguarded AND a recorded golden shows the host sending. That second half is load-bearing: the recorded GitHub search row is `{ number, title }`, the recorded Linear issue is `{ id }`, the recorded project is missing `id`/`url`/`source` and the recorded sparse preset is missing `repoId`/`createdAt`/`updatedAt` — requiring what the shared types declare would have dropped rows main renders. Where the value therefore stays looser than the screen's own state type, the call site keeps one narrowing cast with that reason on it rather than a default that would fabricate state. Two enum decisions, both pinned: - `ownerType` is CLOSED with no fallback. It is echoed into the next `github.project.listViews` params, and remote-wire-compatibility.md rule 4 forbids a reply-schema fallback from shaping a param; the host's own listing handler answers `validation_error` for any other value. - `ssh` `status` is OPEN and degrades to `disconnected`, main's own answer for a state it did not receive. The readiness gate is an equality test against `connected`, so an arm this build has not heard of can never grant a create, and the record survives with its Connect affordance. - Every other host vocabulary a consumer equality-tests — the project view `layout`, the `setupRunPolicy` — stays `z.string()` for the same rule. Tri-states are preserved, not collapsed: the row detail's `reviewDecision`, a work item's `author` and the SSH record's `error` each keep explicit `null` distinct from absent, with a unit pin on each. `blank-workspace-create.test.ts` splits one `it.each` in two. The two create routes now answer a workspace-less reply differently: `agent.launch` still reports "Failed to create workspace", because its reader guards `worktreeId` itself, while `worktree.create` is named as unreadable, because the create screen reads `result.worktree.id` unguarded into the session route. Both reach the same catch; only the sentence changes. `mobile-tasks-refactor-parity.test.ts` moves four hashes and no count. Hooks hold at 350 with 28 bodies edited and no dependency array moved; statements hold at 417 and declarations at 194; `semantics` loses exactly four lines, all four string literals that lived inside the one deleted inline cast type. No method literal and no `rpc:` call signature moves. The inventory loses its five tasks lines; the boundary test stays green. Goldens are refreshed in the next commit, which is where the disclosed behaviour change is proved. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): repin and re-record the corpus over the tasks domain's checked readers Repins `baseline` to d4cfac98b4, the commit that landed the checked readers, and re-records all 760 goldens. The repin rewrites that header on every file; the recorder edit below rewrites `recorderSha256` on every file too. The disclosed behaviour change is the body-moved set and nothing else: the malformed reply partitions of the families whose readers this branch converted. Two recorder files move with it, both re-anchoring evidence the checked readers displaced rather than deleted: - `pilot-recordings.test.ts` restates the b2 seed. The shipped null result is still the seed and the screen still reports an error the user can see; what moved is the sentence, from V8's "Cannot read properties of null (reading 'ok')" to the reply and method the reader names. - `operation-mutations.ts` re-anchors that seed's `acceptance` mutant. Its defect is a null envelope reaching the metadata sheet, and the call-site guard it was injected at can no longer see one, because the reader refuses the envelope first. The anchor is the schema now, and loosening it to `z.unknown()` puts the null back on the path to `result.ok` — the same defect at its new home. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): assert the reply-schema pins without type assertions The changed-code casting gate counts a `as` in a test like any other, and eight of them had crept into the new schema pins. Each is replaced by an assertion that reads the same fact off the typed value: the schema already declares `worktreeCreateIdempotency`, `glab`, `status` and `error`, so the narrowing was never needed, and the two "is this key present" checks are JSON comparisons, which is the honest way to ask — `JSON.stringify` drops an absent key and keeps an explicit null, which is the whole distinction a tri-state pin is making. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): repin the corpus to the tree it was recorded from The previous repin named d4cfac98b4, and the assertion cleanup that followed it touched `mobile/src` — a fenced path — so the header pointed at a tree the working copy no longer was. Repins to 6b740c3f61 and re-records. Bodies are unchanged: only `baseline` moves, on all 760 goldens. Four test files cannot reach a recording, which is the point — the fence does not know that, and a header that names a tree nobody can reproduce is the one claim it exists to make. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): point the reply schemas' consumer citations at the landed lines Every requirement in the five schema modules names the consumer line that justifies it, and the migration moved those lines: deleting a thirty-line inline cast type shifts everything under it. The citations now resolve against the tree they ship in. Comment-only. No schema, no reader and no consumer changes. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): repin the corpus to the tree the citations landed in `baseline` follows the last commit to touch a fenced path, and the citation fix did. Bodies unchanged: `baseline` moves on all 760 goldens and nothing else. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): pin both reader vocabularies against the host's own unions The two enums these readers declare were checked against mobile's restatement of the wire, not against the types the handlers return. A closed enum written from the wrong vocabulary drops every row that carries an arm it omits, and no golden can catch it when no fixture carries one. Both arm sets are now keyed by the host type in a Record, so an arm added to or removed from SshConnectionStatus or GitHubProjectOwnerType fails tsc before any test runs. The SSH degrade's inertness is pinned at the gate that reads it rather than argued in a comment: an arm a newer host sends and the degraded value reach the same label, the same readiness verdict and the same error. Also corrects a comment claiming the file-mutation owner check reads members this schema forwards. It asks ssh.getState through a reader of its own, and no mobile code reads providerEpoch, supportsFolderDownload or remotePlatform. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): repin the corpus to the tree the vocabulary pins landed in Comments and tests cannot change a decoded value, so the whole delta is the baseline header key: 760 goldens, one line each, no body moves and no scenario or adapter change. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): record real provider rows in the smart-search and paste fixtures The smart-search and paste-lookup scenarios carried hand-written stubs, not rows any handler can build: Linear issues of `{ id }` alone, GitHub items of `{ number, title }`, and a GitLab item keyed by `iid`, a member neither work-item type declares. Every one of them omits members the host's own types declare non-optional and mobile then reads with no guard, so the corpus was evidence for a requirement it could never have justified. The rows are now the shapes the corpus already uses elsewhere (`tk-list-linear`, `tk-provider-load`, `tk-list-gitlab-items`), checked member for member against LinearIssue (src/shared/linear/issue-types.ts:3), GitHubWorkItem (src/shared/github/work-item-types.ts:17) and GitLabWorkItem (src/shared/gitlab-types.ts:165). No schema moves in this commit. It records what main renders for a real row, so the requirement that follows can be read against main's own behaviour rather than against a stub. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): require the members the tasks readers' consumers read unguarded Round-1 review found four unguarded consumer reads at members the corpus proves the host sends, plus two the corrected fixtures now prove. Each one ends in a TypeError inside a render or a useMemo, which is the defect class this migration exists to close. Required, each because a consumer reads it with no guard and the host's own type declares it non-optional: title on an accessible project project.title.toLowerCase() name, directories on a preset localeCompare, and two joins labels on a work-item row item.source.labels.filter, both label editors state.name, team.name, priority createLinearTask, and the reviewer sort All six sit inside a salvagingArray, so a row that lacks one drops and the list survives. The single-row paste lookup names the reply instead, because there is no list for it to survive in. Loosened in the other direction: the SSH record no longer requires `error` or `reconnectAttempt`. Nothing reads either one — the gate spells `matchingState?.error ?? null` and nothing anywhere reads reconnectAttempt — and the record is a salvagedOptional, so requiring an unread member drops the WHOLE record, whose fallback on the connect path is `fallbackSshState(id,'connected')`. A reply of `{ targetId, status: 'auth-failed', error }` would have shown the drawer as connected. Mobile's own stored type is widened to match; the shared wire type is untouched. The `iid` extension on the lookup row goes with it. Neither work-item type declares such a member and every GitLab consumer builds its iid param out of `item.source.number`. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): repin the screen parity hashes over the merged tree Main landed the sibling tasks lane, which edits the same screen hook files this branch does, so the merged tree hashes to neither side's constant. Both inputs are legitimate: main's reply-schema conversions and this branch's WorkspaceSshRecord rename. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): justify the smart-source casts by the schema, not the fixture Five SAFETY notes argued from the corpus back to the wire: they justified a cast by the stub rows the fixtures used to carry (`{ iid, title }`, `{ number: 12, title: 'twelve' }`). Those rows were the defect corrected in 6763ff12e9, so the claims are now false, and the reasoning was never sound — a fixture cannot say what the host may send. Each note now cites the schema's own requirement rule, the host type and the consumer read. Comment-only; no golden moves. The hook and statement parity hashes move because `normalized` hashes a statement's full span, comments included. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): repair the line citations this lane's own edits aged Eleven citations across five reply-schema modules pointed at the wrong line. Every one was correct when written and rotted afterwards: the SAFETY-note rewrites, the F4 dedupe's deleted casts and the sibling lane's merge each shifted the files being cited. A citation is the whole argument for a requirement, so a stale one reads as a fabricated one. Found by resolving every `file.ts:line` in the five modules against the merged tree and comparing the line's text to the claim beside it, not by reading them. The ones that still resolve correctly are left alone, including three that looked stale and were not. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * fix(mobile): keep the two advisory task probes total so a nullish payload cannot unhydrate the screen `preflight.check` and `linear.status` are read under `success-result-or-skip` and documented as advisory. That policy accepts an envelope whose `result` is absent or null, then asks the reader to decode it; a `looseObject` refuses, the throw leaves the reader, and the caller's catch discards the entire hydration. The corpus records the difference: on the `result-absent` and `result-null` partitions main hydrates the Tasks screen and lists one provider, and the checked readers left it unhydrated with no providers. `.catch` restores main's answer exactly. Every consumer guards to the leaf and compares to `true`, so absence, null and a garbage payload have always meant "not installed" and "not connected". Four cases pin it, and removing either catch fails all four. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the RPC corpus at this lane's head Repins the recording baseline to b354d1338a (the advisory-probe totality fix) and records all 382 scenarios from that tree. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the RPC corpus after merging main Repins the recording baseline to the merge commit and records all 386 scenarios from that tree, so the corpus carries both main's step-7 batch and this lane's. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): drop the Linear row cast the checked schema made unnecessary `found` is already assignable to the mobile `LinearMobileIssue` alias once `linearIssueRowSchema` requires its nine members, so the assertion and its disable line carried no type error. The sibling cast in smart-source-search-requests.ts stays: it targets the shared `LinearIssue`, whose `labelIds` is required where the schema leaves it optional. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): rewrite the SAFETY lines that argued from deleted fixtures Three casts still justified themselves with the `{ id }` and `{ number, title }` rows this branch replaced in round 1, which reads as a licence to loosen the requirements that close the reproduced crashes. Each now names what its schema requires and what the cast actually covers, each verified by deleting the cast and reading the error: - Linear rows: all nine read members are required, so `labelIds` alone is the gap between the schema and the shared LinearIssue. - GitHub search: `items` and eight row members are required; the salvaged `T | undefined` types and the deliberately opaque `sources`/`errors` are what remain. - Sparse presets: `id`, `name` and `directories` are required; the cast covers the three SparsePreset declares that the reply omits. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): resolve the bare :NN citations the first audit could not see The earlier repair resolved only qualified `file.ts:line` citations, and these doc blocks name a file once and then reference it as a bare `:NN`, so every continuation reference went unchecked. Re-running the audit with a resolver that carries the last-named file and directory forward finds twelve stale line numbers and four references whose nearest named file is the wrong one. Fixed: the four `find`/`filter` lines and the layout equality tests under the `views` requirement, the settings commit, the detail refusal throw, and the three metadata guarded reads, all shifted by one to five lines. The ui-state, paste-resolved and host-method references are now qualified, because an intervening citation to another file silently reassigned them. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-pin the tasks parity hashes the round-2 fixes moved One statement changed (the Linear list cast is gone) and three SAFETY comments nested inside statements were rewritten, so the hook and statement hashes move. Counts hold at 350 and 417, and the declaration, semantic, render and style hashes do not move, which is what shows no type, call or rendered tree changed with them. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * refactor(mobile): delete the Linear list reader the checked schema replaced `extractLinearIssueReadItems` lost its only caller when the smart-search operation moved to `rpcResultVariant('linear-issues', …)`. What remained was a function no screen can reach, a suite reporting coverage for it, and a second 'Unexpected Linear tasks response' string competing with the named reply error. The `LinearMobileIssue` type stays: it is the mobile `LinearIssue` alias. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * docs(mobile): say what a refused sparse-preset list actually does to the screen "Reports the named error" overstates it: the error setter's value is destructured with a leading underscore and read by nobody, here and on main. The visible delta is `presetsLoaded` staying false, which disables "New preset" and both draft entry points where main let the user create one. No shipped host reaches the state: `repo.sparsePresets` has no refusal arm. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the RPC corpus after the round-2 fixes Repins to the round-2 head and records all 386 scenarios from it. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the RPC corpus after merging main at 7a1f55c52a Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * fix(mobile): keep the persisted-ui-state reader total so an unreadable ui reply cannot unhydrate the Tasks screen Main boxed the payload and read `undefined` off a string, number or array, so the screen hydrated; a refusal here threw out of hydrateTaskState and failed the settings, preflight and Linear legs beside it. Null and absent now hydrate with the defaults too, since every read of the state is optional. The GitHub search SAFETY line separates the members the schema requires from the ones it only types, and the parity hashes follow that comment text. Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb * test(mobile): re-record the RPC corpus over the total ui-state reader Claude-Session: https://claude.ai/code/session_01JNnE9qzUZMMnqpZWCqM3nb --- .../aivault-history-scan-fulfilled.json | 4 +- .../aivault-history-scan-unsupported.json | 4 +- .../aivault-history-scan-worktrees-late.json | 4 +- .../aivault-history-screen-listed.json | 4 +- .../aivault-history-screen-worktrees.json | 4 +- .../aivault-resume-launch-create-refused.json | 4 +- .../aivault-resume-launch-invalid-tab.json | 4 +- .../goldens/aivault-resume-launch-locked.json | 4 +- .../goldens/aivault-resume-launch-sent.json | 4 +- .../aivault-resume-prepare-refused.json | 4 +- .../goldens/aivault-resume-prepare-repin.json | 4 +- .../aivault-resume-prepare-skipped.json | 4 +- .../aivault-resume-prepare-unavailable.json | 4 +- mobile/rpc-foundation/goldens/b1.json | 4 +- mobile/rpc-foundation/goldens/b2.json | 46 +- mobile/rpc-foundation/goldens/b3.json | 4 +- .../goldens/browser-dialog-accepted.json | 4 +- .../goldens/browser-dialog-dismissed.json | 4 +- .../goldens/browser-keyboard-input.json | 4 +- .../browser-pointer-click-accepted.json | 4 +- .../browser-pointer-click-fallback.json | 4 +- .../goldens/browser-wheel-scrolled.json | 4 +- .../clipboard-image-attachment-anonymous.json | 4 +- ...-image-attachment-blocked-before-send.json | 4 +- .../clipboard-image-attachment-cancelled.json | 4 +- .../clipboard-image-attachment-pasted.json | 4 +- ...board-image-attachment-upload-refused.json | 4 +- ...-image-upload-aborts-on-chunk-failure.json | 4 +- .../clipboard-image-upload-chunked.json | 4 +- ...rd-image-upload-single-frame-fallback.json | 4 +- .../clipboard-image-upload-start-refused.json | 4 +- .../goldens/codex-reset-credit-consumed.json | 4 +- .../goldens/codex-reset-credit-resumed.json | 4 +- .../goldens/components-codex-capability.json | 4 +- .../goldens/components-setup-ask.json | 4 +- .../goldens/components-target-local.json | 4 +- .../goldens/components-target-ssh.json | 4 +- .../goldens/diff-review-branch-compare.json | 4 +- .../goldens/diff-review-branch-file-diff.json | 4 +- ...f-review-notes-refused-before-compare.json | 4 +- .../diff-review-refused-file-diff.json | 4 +- .../goldens/diff-review-snapshot.json | 4 +- .../diff-review-status-unavailable.json | 4 +- .../diff-review-worktree-file-diff.json | 4 +- .../goldens/file-tap-open-refused.json | 4 +- .../goldens/file-tap-opens-worktree-file.json | 4 +- .../file-tap-previews-absolute-artifact.json | 4 +- .../goldens/file-tap-resolve-miss.json | 4 +- .../goldens/file-tap-resolve-refused.json | 4 +- .../files-explorer-legacy-fallback.json | 4 +- .../goldens/files-explorer-readdir.json | 4 +- .../goldens/files-ownership-local.json | 4 +- .../goldens/files-ownership-ssh.json | 4 +- .../files-preview-artifact-direct.json | 4 +- .../goldens/files-preview-artifact-image.json | 4 +- .../goldens/files-preview-grant-refresh.json | 4 +- .../goldens/files-preview-worktree-image.json | 4 +- .../goldens/files-preview-worktree.json | 4 +- .../goldens/files-save-blind.json | 4 +- .../goldens/files-save-verified.json | 4 +- .../goldens/files-tab-doc-shapes.json | 4 +- .../goldens/home-host-accounts.json | 4 +- .../goldens/home-host-stats.json | 4 +- .../goldens/host-view-settings-sync.json | 4 +- ...host-worktree-actions-pin-open-delete.json | 4 +- .../goldens/host-worktree-delete-refused.json | 4 +- .../goldens/host-worktree-refresh-stream.json | 4 +- .../interruptions-inventory-lifecycle.json | 4 +- ...ions-settings-bot-overrides-fulfilled.json | 4 +- .../goldens/inventory-lifecycle.json | 4 +- .../goldens/inventory-repeat-query.json | 4 +- .../rpc-foundation/goldens/lifecycle-b3.json | 4 +- .../lifecycle-inventory-lifecycle.json | 4 +- ...ycle-settings-bot-overrides-fulfilled.json | 4 +- ...cle-settings-task-hydration-fulfilled.json | 4 +- ...-settings-workspace-context-fulfilled.json | 4 +- .../goldens/linear-select-workspace.json | 4 +- .../goldens/live-worktree-name-stream.json | 4 +- ...ructured-create-agentsession.create-1.json | 4 +- ...d-create-agentsession.createsupport-1.json | 4 +- ...d-launch-agentsession.createsupport-1.json | 4 +- ...ivault.history-aivault.listsessions-1.json | 4 +- ...ivault.history-screen-platform-status.json | 4 +- ...x-aivault.history-screen-status.get-2.json | 4 +- ...-aivault.history-screen-worktree.ps-1.json | 4 +- .../matrix-aivault.history-status.get-1.json | 4 +- ...-launch-session.tabs.createterminal-1.json | 4 +- ...aivault.resume-launch-terminal.send-1.json | 4 +- ...ration-aivault.preparesessionresume-1.json | 4 +- ...browser.dialog-browser.dialogaccept-1.json | 4 +- ...keyboard-browser.keyboardinserttext-1.json | 4 +- ...x-browser.keyboard-browser.keypress-1.json | 4 +- ...er.pointer-click-browser.mouseclick-1.json | 4 +- ...ser.pointer-click-browser.mousedown-1.json | 4 +- ...ser.pointer-click-browser.mousemove-1.json | 4 +- ...owser.pointer-click-browser.mouseup-1.json | 4 +- ...rix-browser.wheel-browser.mousemove-1.json | 4 +- ...ix-browser.wheel-browser.mousewheel-1.json | 4 +- ...tachment-clipboard.startimageupload-1.json | 4 +- ...pload-clipboard.saveimageastempfile-1.json | 4 +- ...e-upload-clipboard.startimageupload-1.json | 4 +- ...s.codex-reset-capability-status.get-1.json | 4 +- ...it-accounts.consumecodexresetcredit-1.json | 4 +- ...target-local-preflight.detectagents-1.json | 4 +- ...target-preflight.detectremoteagents-1.json | 4 +- ...onents.execution-target-ssh.connect-1.json | 23 +- ...nents.execution-target-ssh.getstate-1.json | 4 +- ...ew-workspace-repositories-repo.list-1.json | 4 +- ...-components.setup-script-repo.hooks-1.json | 4 +- ...ix-files.explorer-screen-files.list-1.json | 4 +- ...files.explorer-screen-files.readdir-1.json | 4 +- ...les.mutation-ownership-ssh.getstate-1.json | 4 +- ...files.mutation-ownership-status.get-1.json | 39 +- ...es.mutation-ownership-worktree.show-1.json | 4 +- ...iew-load-files.readterminalartifact-1.json | 4 +- ...iew-load-files.readterminalartifact-2.json | 4 +- ...view-load-files.resolveterminalpath-1.json | 4 +- ...iew-save-files.readterminalartifact-1.json | 4 +- ...ew-save-files.writeterminalartifact-1.json | 4 +- .../matrix-files.tab-doc-files.read-1.json | 4 +- ...rix-files.tab-doc-files.readpreview-1.json | 4 +- .../matrix-files.tab-doc-git.diff-1.json | 4 +- ...-files.terminal-path-tap-files.open-1.json | 4 +- ...-path-tap-files.resolveterminalpath-1.json | 4 +- ....base-ref-chain-repo.baserefdefault-1.json | 4 +- ...matrix-git.base-ref-chain-repo.list-1.json | 4 +- ...ix-git.base-ref-chain-worktree.show-1.json | 4 +- ....branch-diff-preview-git.branchdiff-1.json | 4 +- ...-git.changes-load-git.branchcompare-1.json | 4 +- .../matrix-git.changes-load-git.status-1.json | 4 +- .../matrix-git.changes-load-repo.list-1.json | 4 +- ...trix-git.changes-load-worktree.show-1.json | 4 +- ...essage-ai-git.generatecommitmessage-1.json | 4 +- ...tory-commit-files-git.commitcompare-1.json | 4 +- ...it.history-commit-files-git.history-1.json | 4 +- ...matrix-git.history-read-git.history-1.json | 4 +- ...ix-git.remote-prerequisite-git.push-1.json | 4 +- ...x-git.review-preparation-git.status-1.json | 4 +- ...ent-mutation-github.addissuecomment-1.json | 4 +- ...tion-github.addprreviewcommentreply-1.json | 4 +- ...ub.project.deleteissuecommentbyslug-1.json | 4 +- ...ub.project.updateissuecommentbyslug-1.json | 4 +- ...mutation-github.resolvereviewthread-1.json | 4 +- ...x-github.pr-mutation-github.mergepr-1.json | 4 +- ...r-mutation-github.removeprreviewers-1.json | 4 +- ...-mutation-github.requestprreviewers-1.json | 4 +- ...ub.pr-mutation-github.rerunprchecks-1.json | 4 +- ...b.pr-mutation-github.setprautomerge-1.json | 4 +- ...ub.pr-mutation-github.updateprstate-1.json | 4 +- ....pr-read-github.listassignableusers-1.json | 4 +- ...ithub.pr-read-github.prcheckdetails-1.json | 4 +- ...trix-github.pr-read-github.prchecks-1.json | 4 +- ...x-github.pr-read-github.prforbranch-1.json | 4 +- ...trix-github.pr-read-github.reposlug-1.json | 4 +- ...thub.pr-read-github.workitemdetails-1.json | 4 +- ...thub.pr-read-hostedreview.forbranch-1.json | 4 +- ...title-mutation-github.updateprtitle-1.json | 4 +- ...ix-home.host-accounts-accounts.list-1.json | 4 +- ...atrix-home.host-stats-stats.summary-1.json | 4 +- ...sh-runtime.clientevents.subscribe-1-1.json | 4 +- ...sh-runtime.clientevents.subscribe-1-2.json | 4 +- ...sh-runtime.clientevents.subscribe-1-3.json | 4 +- ...sh-runtime.clientevents.subscribe-2-1.json | 4 +- .../matrix-host.view-settings-ui.get-1.json | 4 +- .../matrix-host.view-settings-ui.set-1.json | 4 +- ....worktree-actions-worktree.activate-1.json | 4 +- ...x-host.worktree-actions-worktree.rm-1.json | 4 +- ...-host.worktree-actions-worktree.set-1.json | 4 +- ...-hostedreview.create-chain-git.push-1.json | 4 +- ...ew.create-chain-hostedreview.create-1.json | 4 +- ...tedreview.create-chain-worktree.set-1.json | 4 +- ...dreview.create-intent-git.bulkstage-1.json | 4 +- ...stedreview.create-intent-git.commit-1.json | 4 +- ...te-intent-git.generatecommitmessage-1.json | 4 +- ...hostedreview.create-intent-git.push-1.json | 4 +- ...stedreview.create-intent-git.status-1.json | 4 +- ...stedreview.create-intent-git.status-2.json | 4 +- ...stedreview.create-intent-git.status-3.json | 4 +- ...stedreview.create-intent-git.status-4.json | 4 +- ...w.create-intent-hostedreview.create-1.json | 4 +- ...hostedreview.getcreationeligibility-1.json | 4 +- ...hostedreview.getcreationeligibility-2.json | 4 +- ...edreview.create-intent-worktree.set-1.json | 4 +- ...hostedreview.getcreationeligibility-1.json | 4 +- ...-legacy-inventory-files.searchpaths-1.json | 4 +- ...-legacy-inventory-files.searchpaths-2.json | 4 +- ...trix-legacy-inventory-fresh-inventory.json | 4 +- ...matrix-legacy-inventory-old-inventory.json | 4 +- ...near-detail-barrier-linear.getissue-1.json | 4 +- ...detail-barrier-linear.issuecomments-1.json | 4 +- ...space-picker-linear.selectworkspace-1.json | 4 +- ...me-runtime.clientevents.subscribe-1-1.json | 4 +- ...me-runtime.clientevents.subscribe-1-2.json | 4 +- ...me-runtime.clientevents.subscribe-2-1.json | 4 +- ...ix-live-worktree-name-worktree.show-1.json | 4 +- ...ix-live-worktree-name-worktree.show-2.json | 4 +- ...ix-live-worktree-name-worktree.show-3.json | 4 +- ...ativechat.image-paste-terminal.send-1.json | 4 +- ...ativechat.image-paste-terminal.send-2.json | 4 +- ...e-upload-clipboard.startimageupload-1.json | 4 +- ...ings.mutatenativechatsessionoptions-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...vechat.terminal-write-terminal.send-1.json | 4 +- ...stream-notifications.getmissedsince-1.json | 4 +- ...op-stream-notifications.subscribe-1-1.json | 4 +- ...op-stream-notifications.subscribe-1-2.json | 4 +- ...op-stream-notifications.unsubscribe-1.json | 4 +- ...-test-screen-notifications.testpush-1.json | 4 +- ...missal-notifications.getmissedsince-1.json | 4 +- ...stration-notifications.registerpush-1.json | 4 +- ...ration-notifications.unregisterpush-1.json | 4 +- ...rix-pairing.pre-profile-direct-status.json | 4 +- ...ng.pre-profile-pairing.getendpoints-1.json | 4 +- ....pre-profile-pairing.provisionrelay-1.json | 4 +- ...trix-pairing.pre-profile-relay-status.json | 4 +- ...se-github.project.updateissuebyslug-1.json | 156 +- ...ntial-rotation-pairing.getendpoints-1.json | 4 +- ...ntial-rotation-pairing.getendpoints-2.json | 4 +- ...ial-rotation-pairing.provisionrelay-1.json | 4 +- ...direct-upgrade-pairing.getendpoints-1.json | 4 +- ...direct-upgrade-pairing.getendpoints-2.json | 4 +- ...rect-upgrade-pairing.provisionrelay-1.json | 4 +- ...iring-recovery-pairing.getendpoints-1.json | 4 +- ...rowser-tab-create-browser.tabcreate-1.json | 4 +- ...ion.content-create-files.createfile-1.json | 4 +- ...x-session.content-create-files.open-1.json | 4 +- ...x-session.content-create-status.get-1.json | 57 +- ...ession.content-create-worktree.show-1.json | 4 +- ...erminal-session.tabs.createterminal-1.json | 4 +- ...ssion.create-terminal-terminal.send-1.json | 4 +- ...ix-session.diff-notes-worktree.show-1.json | 4 +- ...on.diff-review-actions-worktree.set-1.json | 4 +- ...rix-session.diff-review-base-ref-show.json | 4 +- ...ssion.diff-review-git.branchcompare-1.json | 4 +- ...trix-session.diff-review-git.status-1.json | 4 +- ...atrix-session.diff-review-repo.list-1.json | 4 +- ...atrix-session.diff-review-review-show.json | 4 +- ...sion.markdown-save-markdown.savetab-1.json | 4 +- ...ve-chat-page-nativechat.readsession-1.json | 4 +- ...ve-chat-page-nativechat.subscribe-1-1.json | 4 +- ...ve-chat-page-nativechat.subscribe-2-1.json | 4 +- ...n.native-chat-readability-repo.list-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...sion.native-chat-stop-terminal.send-1.json | 4 +- ...sion.native-chat-stop-terminal.send-2.json | 4 +- ...pr-branch-context-git.branchcompare-1.json | 4 +- ...ession.pr-branch-context-git.status-1.json | 4 +- ...session.pr-branch-context-repo.list-1.json | 4 +- ...ion.pr-branch-context-worktree.show-1.json | 4 +- ...-session.pr-sidebar-github.prchecks-1.json | 4 +- ...ssion.pr-sidebar-github.prforbranch-1.json | 4 +- ...n.pr-sidebar-hostedreview.forbranch-1.json | 4 +- ...ix-session.pr-sidebar-worktree.show-1.json | 4 +- ...-triage-session.tabs.createterminal-1.json | 4 +- ...rix-session.pr-triage-terminal.send-1.json | 4 +- ...n.review-branch-diff-git.branchdiff-1.json | 4 +- ...x-session.review-file-diff-git.diff-1.json | 4 +- ...x-session.review-file-diff-git.diff-2.json | 4 +- ...x-session.review-file-diff-git.diff-3.json | 4 +- ...on.review-git-mutations-git.discard-1.json | 4 +- ...sion.review-git-mutations-git.stage-1.json | 4 +- ...sion.review-git-mutations-git.stage-2.json | 4 +- ...review-send-sheet-session.tabs.list-1.json | 4 +- ...x-session.startup-worktree.activate-1.json | 4 +- ...x-session.startup-worktree.activate-2.json | 4 +- ...ab-activation-session.tabs.activate-1.json | 4 +- ...ssion.tab-activation-terminal.focus-1.json | 4 +- ...ab-close-session-session.tabs.close-1.json | 4 +- ...ix-session.tab-close-terminal.close-1.json | 4 +- ...sion.tab-documents-markdown.readtab-1.json | 4 +- ...-session.tab-rename-terminal.rename-1.json | 4 +- ...on.tab-reveal-session.tabs.activate-1.json | 4 +- ...ession.tab-reveal-session.tabs.list-1.json | 4 +- ...abs-stream-health-session.tabs.list-1.json | 4 +- ...isplay-mode-terminal.setdisplaymode-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...-gesture-input-terminal.clearbuffer-1.json | 4 +- ...erminal-gesture-input-terminal.send-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...n.terminal-input-send-terminal.send-1.json | 4 +- ...on.terminal-inventory-terminal.list-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...session.terminal-paste-settings.get-1.json | 4 +- ...ession.terminal-paste-terminal.send-1.json | 4 +- ...ssion.worktree-connection-repo.list-1.json | 4 +- ...on.worktree-connection-settings.get-1.json | 4 +- ...t-read-preflight.detectremoteagents-1.json | 4 +- ...atrix-settings-agent-read-repo.list-1.json | 4 +- ...ix-settings-agent-read-settings.get-1.json | 4 +- ...ettings-best-effort-settings.update-1.json | 4 +- ...settings.bot-overrides-settings.get-1.json | 4 +- ...ttings.home-providers-linear.status-1.json | 4 +- ...ings.home-providers-preflight.check-1.json | 4 +- ...ettings.home-providers-settings.get-1.json | 4 +- ...local-agents-preflight.detectagents-1.json | 4 +- ...ings.new-tab-local-agents-repo.list-1.json | 4 +- ...s.new-tab-local-agents-settings.get-1.json | 4 +- ...s-settings.getterminalquickcommands-1.json | 4 +- ...ettings.updateterminalquickcommands-1.json | 4 +- ...ettings.repo-metadata-host.platform-1.json | 4 +- ...ix-settings.repo-metadata-repo.list-1.json | 4 +- ...settings.repo-metadata-settings.get-1.json | 4 +- ...po-metadata-ssh.listtargetsummaries-1.json | 4 +- ...esume-metadata-folderworkspace.list-1.json | 4 +- ...s.resume-metadata-projectgroup.list-1.json | 4 +- ...-settings.resume-metadata-repo.list-1.json | 4 +- ...ttings.resume-metadata-settings.get-1.json | 4 +- ...ettings.resume-metadata-worktree.ps-1.json | 4 +- ...ttings.task-hydration-linear.status-1.json | 4 +- ...ings.task-hydration-preflight.check-1.json | 4 +- ...ettings.task-hydration-settings.get-1.json | 4 +- ...-settings.task-hydration-status.get-1.json | 27 +- ...trix-settings.task-hydration-ui.get-1.json | 73 +- ....task-workspace-create-settings.get-1.json | 4 +- ...sk-workspace-create-worktree.create-1.json | 109 +- ...ettings.task-workspace-settings.get-1.json | 4 +- ...ngs.workspace-context-linear.status-1.json | 4 +- ...s.workspace-context-preflight.check-1.json | 4 +- ...ings.workspace-context-settings.get-1.json | 4 +- ...x-settings.workspace-context-ui.get-1.json | 4 +- ...tings.workspace-submit-settings.get-1.json | 4 +- ...tation-chunk-speech.dictation.chunk-1.json | 4 +- ...ion-session-speech.dictation.finish-1.json | 4 +- ...tion-session-speech.dictation.start-1.json | 4 +- ...ation-start-speech.dictation.cancel-1.json | 4 +- ...tation-start-speech.dictation.start-1.json | 4 +- ....setup-sheet-speech.dictation.setup-1.json | 4 +- ...ch.setup-sheet-speech.models.delete-1.json | 4 +- ....setup-sheet-speech.models.download-1.json | 4 +- ...eech.setup-sheet-speech.models.list-1.json | 4 +- ...cks-files-github.addprreviewcomment-1.json | 4 +- ...-checks-files-github.prfilecontents-1.json | 4 +- ...m-checks-files-github.rerunprchecks-1.json | 4 +- ...ks-files-github.resolvereviewthread-1.json | 4 +- ...checks-files-github.setprfileviewed-1.json | 4 +- ...mment-github-github.addissuecomment-1.json | 4 +- ...mment-gitlab-gitlab.addissuecomment-1.json | 4 +- ...mment-gitlab-mr-gitlab.addmrcomment-1.json | 4 +- ...etail-github-github.workitemdetails-1.json | 4 +- ...etail-gitlab-gitlab.workitemdetails-1.json | 4 +- ....item-detail-linear-linear.getissue-1.json | 4 +- ...-detail-linear-linear.issuecomments-1.json | 4 +- ...metadata-github.listassignableusers-1.json | 4 +- ...m-detail-metadata-github.listlabels-1.json | 4 +- ...ks.item-merge-gitlab-gitlab.mergemr-1.json | 4 +- ...tem-metadata-github-github.updatepr-1.json | 4 +- ...-metadata-gitlab-gitlab.updateissue-1.json | 4 +- ...-metadata-gitlab-mr-gitlab.updatemr-1.json | 4 +- ...-reply-merge-github.addissuecomment-1.json | 4 +- ...erge-github.addprreviewcommentreply-1.json | 4 +- ...sks.item-reply-merge-github.mergepr-1.json | 4 +- ...item-reply-merge-linear.updateissue-1.json | 4 +- ....item-review-github-github.prchecks-1.json | 4 +- ...ew-github-github.requestprreviewers-1.json | 4 +- ...em-status-gitlab-github.updateissue-1.json | 4 +- ...em-status-gitlab-gitlab.updateissue-1.json | 4 +- ...atus-gitlab-mr-gitlab.updatemrstate-1.json | 4 +- ...tasks.linear-connect-linear.connect-1.json | 4 +- ....linear-item-linear.addissuecomment-1.json | 4 +- ...asks.linear-item-linear.createissue-1.json | 4 +- ...x-tasks.linear-item-linear.getissue-1.json | 4 +- ...inear-team-context-linear.listteams-1.json | 4 +- ...near-team-context-linear.teamstates-1.json | 4 +- ...-tasks.paste-lookup-github.reposlug-1.json | 843 +++++----- ...-tasks.paste-lookup-github.workitem-1.json | 1266 ++++++++------- ...e-lookup-github.workitembyownerrepo-1.json | 1154 +++++++------- ....paste-lookup-gitlab.workitembypath-1.json | 1013 ++++++------ ...-load-github.project.listaccessible-1.json | 67 +- ...board-load-github.project.listviews-1.json | 59 +- ...board-load-github.project.listviews-2.json | 149 +- ...oard-load-github.project.resolveref-1.json | 196 +-- ...board-load-github.project.viewtable-1.json | 118 +- ....project-repo-slugs-github.reposlug-1.json | 116 +- ...ithub.project.addissuecommentbyslug-1.json | 351 +++-- ...ue-github.project.updateissuebyslug-1.json | 889 +++++++---- ...ub.project.updateissuecommentbyslug-1.json | 243 +-- ...hub.project.updatepullrequestbyslug-1.json | 214 +-- ...ithub.project.workitemdetailsbyslug-1.json | 56 +- ...ields-github.project.clearitemfield-1.json | 958 +++++++----- ...ithub.project.updateissuetypebyslug-1.json | 411 ++--- ...elds-github.project.updateitemfield-1.json | 946 +++++++----- ...les-merge-github.addprreviewcomment-1.json | 4 +- ...ject-row-files-merge-github.mergepr-1.json | 4 +- ...w-files-merge-github.prfilecontents-1.json | 4 +- ...-row-files-merge-github.updateissue-1.json | 4 +- ...ow-files-merge-github.updateprstate-1.json | 4 +- ...b.project.listassignableusersbyslug-1.json | 125 +- ...github.project.listissuetypesbyslug-1.json | 102 +- ...oad-github.project.listlabelsbyslug-1.json | 141 +- ...t-row-review-checks-github.prchecks-1.json | 4 +- ...ew-checks-github.requestprreviewers-1.json | 4 +- ...-review-checks-github.rerunprchecks-1.json | 4 +- ...eview-checks-github.setprfileviewed-1.json | 4 +- ...-row-threads-github.addissuecomment-1.json | 4 +- ...eads-github.addprreviewcommentreply-1.json | 4 +- ...ub.project.deleteissuecommentbyslug-1.json | 184 +-- ...-threads-github.resolvereviewthread-1.json | 4 +- ...provider-load-github.countworkitems-1.json | 4 +- ....provider-load-github.listworkitems-1.json | 4 +- ...asks.provider-load-linear.listteams-1.json | 4 +- ...x-tasks.provider-load-linear.status-1.json | 4 +- ...tasks.provider-load-settings.update-1.json | 4 +- ...rix-tasks.route-repo-list-repo.list-1.json | 4 +- ...-source-search-github.listworkitems-1.json | 1296 +++++++++------- ...-source-search-gitlab.listworkitems-1.json | 1374 ++++++++++------- ...art-source-search-linear.listissues-1.json | 987 +++++++----- ...t-source-search-linear.searchissues-1.json | 1031 ++++++++----- ...smart-source-search-repo.searchrefs-1.json | 1256 +++++++++------ ...sk-create-github-github.createissue-1.json | 4 +- ...asks.task-create-github-repo.update-1.json | 4 +- ...sk-create-gitlab-gitlab.createissue-1.json | 4 +- ...sk-create-linear-linear.createissue-1.json | 4 +- ...t-gitlab-items-gitlab.listworkitems-1.json | 60 +- ...task-list-gitlab-todos-gitlab.todos-1.json | 4 +- ....task-list-linear-linear.listissues-1.json | 76 +- ...ask-list-linear-linear.searchissues-1.json | 46 +- ...ks.workspace-source-repo.searchrefs-1.json | 66 +- ...workspace-source-repo.sparsepresets-1.json | 169 +- ...kspace-sparse-repo.savesparsepreset-1.json | 60 +- ...tasks.workspace-sparse-ssh.getstate-1.json | 134 +- ...ce-ssh-local-preflight.detectagents-1.json | 4 +- ...ce-ssh-preflight.detectremoteagents-1.json | 4 +- ...trix-tasks.workspace-ssh-repo.hooks-1.json | 39 +- ...rix-tasks.workspace-ssh-ssh.connect-1.json | 100 +- ...-terminal.query-reply-terminal.send-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...ix-terminal.raw-input-terminal.send-1.json | 4 +- ...chestration.workerterminaluserinput-1.json | 4 +- ...chestration.workerterminaluserinput-2.json | 4 +- ...wport-refit-terminal.updateviewport-1.json | 4 +- ...ansport.capability-probe-status.get-1.json | 4 +- ...nsport.host-status-gates-status.get-1.json | 4 +- ...-transport.pairing-race-direct-status.json | 4 +- ...x-transport.pairing-race-relay-status.json | 4 +- ...ee.agent-launch-create-agent.launch-1.json | 806 ++++++++++ ...rktree.catalog-snapshot-worktree.ps-1.json | 4 +- ...rktree.create-retry-worktree.create-1.json | 50 +- ...x-worktree.home-catalog-worktree.ps-1.json | 4 +- ....hosted-base-worktree.resolvemrbase-1.json | 53 +- ....hosted-base-worktree.resolveprbase-1.json | 59 +- ...red-names-worktree.listretirednames-1.json | 4 +- ...x-worktree.review-link-worktree.set-1.json | 4 +- ...ree.runtime-capabilities-status.get-1.json | 6 +- ...ix-worktree.setup-hook-trust-ui.set-1.json | 6 +- .../native-chat-image-paste-single.json | 4 +- ...e-chat-image-paste-stops-on-rejection.json | 4 +- ...ative-chat-image-paste-trailing-image.json | 4 +- .../native-chat-image-paste-two-images.json | 4 +- .../native-chat-image-upload-cancelled.json | 4 +- ...native-chat-image-upload-second-fails.json | 4 +- .../native-chat-image-upload-single.json | 4 +- ...ative-chat-image-upload-start-refused.json | 4 +- .../goldens/native-chat-image-upload-two.json | 4 +- .../goldens/native-chat-page-earlier.json | 4 +- .../native-chat-readability-local-repo.json | 4 +- .../native-chat-readability-refused.json | 4 +- .../native-chat-readability-remote-repo.json | 4 +- ...native-chat-session-option-pick-empty.json | 4 +- ...tive-chat-session-option-pick-refused.json | 4 +- ...tive-chat-session-option-pick-written.json | 4 +- .../goldens/native-chat-stop-accepted.json | 4 +- .../native-chat-stop-both-rejected.json | 4 +- .../native-chat-stop-delivery-unknown.json | 4 +- .../goldens/native-chat-write-accepted.json | 4 +- .../goldens/native-chat-write-clear-line.json | 4 +- .../native-chat-write-delivery-unknown.json | 4 +- .../goldens/native-chat-write-rejected.json | 4 +- .../native-chat-write-typed-command.json | 4 +- .../goldens/new-tab-local-agents.json | 4 +- .../new-workspace-repositories-fulfilled.json | 4 +- .../notifications-desktop-stream-closed.json | 4 +- ...notifications-desktop-stream-replayed.json | 4 +- .../goldens/notifications-desktop-stream.json | 4 +- .../notifications-display-test-accepted.json | 4 +- ...fications-display-test-not-registered.json | 4 +- ...tifications-display-test-rate-limited.json | 4 +- ...fications-display-test-unknown-reason.json | 4 +- .../notifications-push-gateway-rejected.json | 4 +- .../notifications-push-registered.json | 4 +- ...re-profile-direct-wins-and-provisions.json | 4 +- ...ovision-unsupported-saves-direct-host.json | 4 +- .../pairing-pre-profile-times-out.json | 4 +- .../goldens/pr-branch-identity.json | 4 +- .../goldens/pr-branch-repo-context.json | 4 +- .../goldens/pr-comment-mutation.json | 4 +- .../pr-comment-resolve-unconfirmed.json | 4 +- .../goldens/pr-mutation-in-band-failure.json | 4 +- .../goldens/pr-mutation-status.json | 4 +- .../goldens/pr-read-fork-routing.json | 4 +- .../goldens/pr-read-surface.json | 4 +- .../goldens/pr-read-upstream-error.json | 4 +- .../goldens/pr-sidebar-checks-refused.json | 4 +- .../goldens/pr-sidebar-load.json | 4 +- .../goldens/pr-title-mutation.json | 4 +- .../goldens/pr-title-unconfirmed.json | 4 +- .../goldens/pr-triage-invalid-terminal.json | 4 +- .../goldens/pr-triage-launch.json | 4 +- .../goldens/pr-triage-send-locked.json | 4 +- .../goldens/probe-new-tab-both-refused.json | 4 +- .../probe-new-tab-null-sibling-refused.json | 4 +- ...probe-new-tab-refused-sibling-rejects.json | 4 +- ...probe-new-tab-rejects-sibling-refused.json | 4 +- .../push-dismissal-tray-reconciled.json | 4 +- .../goldens/quick-commands-load-refused.json | 4 +- .../quick-commands-loaded-and-saved.json | 4 +- ...uick-commands-save-refused-rolls-back.json | 4 +- .../goldens/relay-direct-upgrade-commits.json | 4 +- ...ect-upgrade-unsupported-host-declines.json | 4 +- ...ay-pairing-recovery-invite-authorizes.json | 4 +- ...lay-pairing-recovery-resume-committed.json | 4 +- .../relay-rotation-installs-and-commits.json | 4 +- ...ay-rotation-resumes-committed-pending.json | 4 +- .../goldens/review-branch-diff-shapes.json | 4 +- .../review-create-terminal-refused.json | 4 +- .../goldens/review-file-diff-shapes.json | 4 +- .../goldens/review-git-mutations-run.json | 4 +- .../review-mark-reviewed-persists.json | 4 +- .../review-mark-reviewed-rolls-back.json | 4 +- .../goldens/review-open-in-session.json | 4 +- .../review-send-notes-heals-stale-input.json | 4 +- .../review-send-sheet-lists-terminals.json | 4 +- .../goldens/review-stage-file.json | 4 +- .../goldens/review-stage-refused.json | 4 +- .../goldens/sc-base-ref-default.json | 4 +- .../goldens/sc-base-ref-repo-fallback.json | 4 +- .../goldens/sc-base-ref-unavailable.json | 4 +- .../goldens/sc-base-ref-worktree-hit.json | 4 +- .../goldens/sc-branch-diff-previewed.json | 4 +- .../goldens/sc-changes-loaded.json | 4 +- .../sc-commit-message-cancel-rejected.json | 4 +- .../goldens/sc-commit-message-canceled.json | 4 +- .../goldens/sc-commit-message-generated.json | 4 +- .../goldens/sc-create-existing-review.json | 4 +- ...reate-intent-stage-commit-push-create.json | 4 +- .../sc-create-intent-unlisted-provider.json | 4 +- .../sc-create-link-failure-is-non-fatal.json | 4 +- .../sc-create-pushes-then-creates.json | 4 +- .../sc-create-refused-empty-message.json | 4 +- .../sc-create-rejected-empty-message.json | 4 +- .../goldens/sc-eligibility-fetched.json | 4 +- .../goldens/sc-history-commit-files.json | 4 +- .../goldens/sc-history-loaded.json | 4 +- .../goldens/sc-pr-link-hosted-review.json | 4 +- .../goldens/sc-pr-link-read.json | 4 +- .../goldens/sc-pr-link-set.json | 4 +- .../sc-prefill-unavailable-on-refusal.json | 4 +- .../sc-prefill-unavailable-on-rejection.json | 4 +- .../sc-prerequisite-force-with-lease.json | 4 +- .../goldens/sc-prerequisite-publish.json | 4 +- .../goldens/sc-prerequisite-push.json | 4 +- .../goldens/sc-prerequisite-skipped.json | 4 +- .../goldens/sc-reveal-first-poll.json | 4 +- .../goldens/sc-reveal-timeout.json | 4 +- .../sc-review-commit-inner-failure.json | 4 +- ...c-review-commit-refused-empty-message.json | 4 +- .../goldens/sc-review-commit-rejected.json | 4 +- .../goldens/sc-review-commit.json | 4 +- .../sc-review-status-entries-not-array.json | 4 +- .../goldens/sc-review-status-normalized.json | 4 +- .../rpc-foundation/goldens/schedules-b3.json | 4 +- ...les-settings-home-providers-fulfilled.json | 4 +- .../schedules-settings-new-tab-ssh.json | 4 +- ...ules-settings-repo-metadata-fulfilled.json | 4 +- ...es-settings-resume-metadata-fulfilled.json | 4 +- ...les-settings-task-hydration-fulfilled.json | 4 +- ...-settings-workspace-context-fulfilled.json | 4 +- .../goldens/session-browser-tab-created.json | 4 +- .../session-create-browser-refused.json | 4 +- .../goldens/session-create-browser-tab.json | 4 +- ...ession-create-markdown-name-collision.json | 4 +- .../goldens/session-create-markdown-note.json | 4 +- ...nal-ignores-a-second-create-in-flight.json | 4 +- ...minal-launches-an-agent-quick-command.json | 4 +- .../session-create-terminal-refused.json | 4 +- ...ssion-create-terminal-replaces-active.json | 4 +- ...-create-terminal-runs-a-quick-command.json | 4 +- .../session-create-terminal-with-prompt.json | 4 +- ...on-create-terminal-without-active-tab.json | 4 +- ...ession-create-terminal-without-handle.json | 4 +- .../session-diff-notes-load-refused.json | 4 +- .../goldens/session-diff-notes-loaded.json | 4 +- .../goldens/session-file-tab-read.json | 4 +- .../session-markdown-save-conflict.json | 4 +- .../goldens/session-markdown-saved.json | 4 +- .../session-markdown-tab-disk-fallback.json | 4 +- .../goldens/session-markdown-tab-read.json | 4 +- .../goldens/session-markdown-tab-refused.json | 4 +- ...session-startup-both-activation-sites.json | 4 +- ...artup-floating-route-skips-activation.json | 4 +- ...-keeps-terminals-visible-on-reconnect.json | 4 +- ...efused-tab-load-still-loads-terminals.json | 4 +- ...ion-tab-activation-focus-and-activate.json | 4 +- .../session-tab-activation-refused.json | 4 +- ...ession-tab-activation-transport-error.json | 4 +- .../session-tab-close-refused-keeps-tab.json | 4 +- .../session-tab-close-session-tab.json | 4 +- .../goldens/session-tab-close-terminal.json | 4 +- .../goldens/session-tab-closed.json | 4 +- .../goldens/session-tab-rename.json | 4 +- .../goldens/session-tab-renamed.json | 4 +- .../goldens/session-tabs-health-errored.json | 4 +- .../session-tabs-health-reconciled.json | 4 +- .../goldens/session-tabs-health-refused.json | 4 +- ...abs-health-stale-application-revision.json | 4 +- ...terminal-display-mode-auto-take-floor.json | 4 +- ...isplay-mode-auto-without-device-token.json | 4 +- ...al-display-mode-auto-without-viewport.json | 4 +- ...inal-display-mode-drops-second-toggle.json | 4 +- ...sion-terminal-display-mode-to-desktop.json | 4 +- ...session-terminal-list-dedupes-handles.json | 4 +- .../session-terminal-list-empty-guarded.json | 4 +- .../goldens/session-terminal-list-merged.json | 4 +- .../session-terminal-list-refused.json | 4 +- .../settings-bot-overrides-fulfilled.json | 4 +- ...ettings-bot-overrides-refresh-refused.json | 4 +- .../settings-bot-overrides-refused.json | 4 +- ...ettings-bot-overrides-transport-error.json | 4 +- .../goldens/settings-home-coalesced.json | 4 +- .../settings-home-providers-fulfilled.json | 4 +- ...ings-home-providers-refuse-after-data.json | 4 +- .../settings-home-providers-refused.json | 4 +- ...ttings-home-providers-transport-error.json | 4 +- .../goldens/settings-new-tab-refused.json | 4 +- .../goldens/settings-new-tab-ssh.json | 4 +- .../settings-new-tab-transport-error.json | 4 +- .../goldens/settings-repo-cache-expiry.json | 4 +- .../settings-repo-metadata-fulfilled.json | 4 +- ...tings-repo-metadata-refuse-after-data.json | 4 +- .../settings-repo-metadata-refused.json | 4 +- .../settings-repo-metadata-single-host.json | 4 +- ...ettings-repo-metadata-transport-error.json | 4 +- .../settings-resume-metadata-fulfilled.json | 4 +- ...ngs-resume-metadata-refuse-after-data.json | 4 +- .../settings-resume-metadata-refused.json | 4 +- ...tings-resume-metadata-transport-error.json | 4 +- .../settings-task-hydration-fulfilled.json | 4 +- ...ings-task-hydration-refuse-after-data.json | 4 +- .../settings-task-hydration-refused.json | 4 +- ...ttings-task-hydration-transport-error.json | 4 +- ...settings-task-workspace-create-linear.json | 4 +- ...-task-workspace-create-pr-start-point.json | 4 +- .../settings-task-workspace-fulfilled.json | 4 +- .../settings-task-workspace-refused.json | 4 +- ...ttings-task-workspace-transport-error.json | 4 +- .../goldens/settings-task-write.json | 4 +- .../settings-workspace-context-fulfilled.json | 4 +- ...s-workspace-context-refuse-after-data.json | 4 +- .../settings-workspace-context-refused.json | 4 +- ...ngs-workspace-context-transport-error.json | 4 +- .../settings-workspace-submit-fulfilled.json | 4 +- .../settings-workspace-submit-refused.json | 4 +- ...ings-workspace-submit-transport-error.json | 4 +- .../speech-audio-chunk-acknowledged.json | 4 +- .../speech-desktop-start-fulfilled.json | 4 +- ...speech-desktop-start-recording-failed.json | 4 +- .../speech-desktop-start-superseded.json | 4 +- .../speech-dictation-session-cancelled.json | 4 +- .../speech-dictation-session-transcript.json | 4 +- .../speech-setup-sheet-denied-to-mobile.json | 4 +- .../goldens/speech-setup-sheet-fulfilled.json | 4 +- .../speech-setup-sheet-legacy-desktop.json | 4 +- .../structured-agent-session-created.json | 4 +- .../goldens/structured-launch-created.json | 4 +- .../structured-launch-definitive-refusal.json | 4 +- ...uctured-launch-replays-dropped-create.json | 4 +- .../structured-launch-support-refused.json | 4 +- .../structured-launch-unsupported.json | 4 +- .../goldens/tasks-route-repo-list.json | 4 +- .../terminal-gesture-flush-and-clear.json | 4 +- .../goldens/terminal-input-send-accepted.json | 4 +- .../goldens/terminal-input-send-refused.json | 4 +- .../goldens/terminal-live-input-accepted.json | 4 +- .../goldens/terminal-paste-accepted.json | 4 +- .../goldens/terminal-paste-refused.json | 4 +- .../terminal-query-reply-accepted.json | 4 +- .../terminal-query-reply-unsubscribed.json | 4 +- .../goldens/terminal-raw-input-refused.json | 4 +- .../goldens/terminal-raw-input-reported.json | 4 +- .../terminal-takeover-report-accepted.json | 4 +- .../terminal-takeover-report-retried.json | 4 +- .../terminal-viewport-refit-applied.json | 4 +- ...erminal-viewport-refit-legacy-desktop.json | 4 +- ...terminal-worktree-connection-resolved.json | 4 +- .../goldens/tk-create-github.json | 4 +- .../goldens/tk-create-gitlab.json | 4 +- .../goldens/tk-create-linear.json | 4 +- .../goldens/tk-item-checks-files.json | 4 +- .../goldens/tk-item-comment-github.json | 4 +- .../goldens/tk-item-comment-gitlab-mr.json | 4 +- .../goldens/tk-item-comment-gitlab.json | 4 +- .../tk-item-detail-github-reactions.json | 4 +- .../goldens/tk-item-detail-github.json | 4 +- .../tk-item-detail-gitlab-reactions.json | 4 +- .../goldens/tk-item-detail-gitlab.json | 4 +- .../goldens/tk-item-detail-linear.json | 4 +- .../goldens/tk-item-detail-metadata.json | 4 +- .../goldens/tk-item-merge-gitlab.json | 4 +- .../goldens/tk-item-metadata-github.json | 4 +- .../goldens/tk-item-metadata-gitlab-mr.json | 4 +- .../goldens/tk-item-metadata-gitlab.json | 4 +- .../goldens/tk-item-reply-merge.json | 4 +- .../goldens/tk-item-review-github.json | 4 +- .../goldens/tk-item-status-gitlab-mr.json | 4 +- .../goldens/tk-item-status-gitlab.json | 4 +- .../goldens/tk-linear-connect.json | 4 +- .../goldens/tk-linear-item.json | 4 +- .../goldens/tk-linear-team-context.json | 4 +- .../goldens/tk-list-gitlab-items.json | 4 +- .../goldens/tk-list-gitlab-todos.json | 4 +- .../goldens/tk-list-linear.json | 4 +- .../goldens/tk-project-board-load.json | 4 +- .../goldens/tk-project-repo-slugs.json | 4 +- .../tk-project-row-comments-issue.json | 4 +- .../goldens/tk-project-row-comments-pr.json | 4 +- .../goldens/tk-project-row-detail.json | 4 +- .../goldens/tk-project-row-fields.json | 4 +- .../goldens/tk-project-row-files-merge.json | 4 +- .../goldens/tk-project-row-metadata-load.json | 4 +- .../goldens/tk-project-row-review-checks.json | 4 +- .../goldens/tk-project-row-threads.json | 4 +- .../goldens/tk-provider-load.json | 4 +- ...-capability-probe-cutover-reasks-fast.json | 4 +- ...ty-probe-non-string-capabilities-drop.json | 4 +- .../transport-capability-probe-publishes.json | 4 +- ...rt-capability-probe-refused-backs-off.json | 4 +- ...-status-gates-drop-keeps-capabilities.json | 4 +- .../transport-host-status-gates-ready.json | 4 +- ...rt-host-status-gates-refused-degrades.json | 4 +- .../transport-pairing-race-both-refused.json | 4 +- ...t-pairing-race-direct-completes-first.json | 4 +- ...rt-pairing-race-relay-completes-first.json | 4 +- ...g-race-relay-wins-when-direct-refused.json | 4 +- .../goldens/tw-capabilities-advertised.json | 6 +- .../tw-capabilities-cutover-retried.json | 6 +- .../tw-capabilities-legacy-idempotency.json | 6 +- .../tw-create-retry-agent-launched.json | 163 ++ .../tw-create-retry-ambiguous-after-drop.json | 6 +- ...reate-retry-ambiguous-while-connected.json | 6 +- ...e-retry-ambiguous-without-idempotency.json | 6 +- .../goldens/tw-create-retry-created.json | 6 +- .../tw-create-retry-name-collision.json | 6 +- .../tw-create-retry-unretryable-refusal.json | 6 +- .../goldens/tw-create-retry-warning-kept.json | 6 +- .../goldens/tw-hosted-base-resolved.json | 6 +- .../goldens/tw-hosted-base-soft-error.json | 6 +- .../goldens/tw-paste-lookup-resolved.json | 456 ++++-- .../goldens/tw-paste-lookup-slug-refused.json | 6 +- .../tw-paste-lookup-slug-unsupported.json | 6 +- .../goldens/tw-setup-hook-trust-always.json | 6 +- .../goldens/tw-setup-hook-trust-approved.json | 6 +- .../tw-smart-search-all-providers.json | 552 +++++-- ...tw-smart-search-gitlab-provider-error.json | 6 +- .../tw-smart-search-linear-listed.json | 87 +- .../tw-task-preferences-resume-write.json | 4 +- .../tw-workspace-source-presets-refused.json | 4 +- .../goldens/tw-workspace-source-presets.json | 4 +- .../tw-workspace-sparse-missing-preset.json | 4 +- .../goldens/tw-workspace-sparse-saved.json | 4 +- .../tw-workspace-ssh-connect-refused.json | 4 +- .../goldens/tw-workspace-ssh-connected.json | 4 +- .../tw-workspace-ssh-local-agents.json | 4 +- .../goldens/tw-workspace-ssh-not-ready.json | 4 +- .../worktree-catalog-snapshot-unreadable.json | 4 +- .../goldens/worktree-catalog-snapshot.json | 4 +- .../goldens/worktree-home-catalog.json | 4 +- .../goldens/worktree-retired-names.json | 4 +- mobile/rpc-foundation/pilot-scenarios.json | 166 +- .../use-new-workspace-execution-target.ts | 22 +- .../files/mobile-file-mutation-ownership.ts | 7 +- mobile/src/home/mobile-home-host-requests.ts | 18 +- .../src/tasks/blank-workspace-create.test.ts | 61 +- .../src/tasks/composer-source-base-resolve.ts | 14 +- .../tasks/linear-mobile-issue-read.test.ts | 36 - mobile/src/tasks/linear-mobile-issue-read.ts | 20 - .../mobile-task-project-board-operations.ts | 69 +- .../tasks/mobile-task-runtime-operations.ts | 30 +- .../mobile-task-source-search-operations.ts | 33 +- mobile/src/tasks/mobile-tasks-dependencies.ts | 1 - .../mobile-tasks-project-workspace-types.ts | 3 +- .../mobile-tasks-refactor-parity.test.ts | 35 +- .../mobile-tasks-repository-presentation.ts | 4 +- .../mobile-workspace-create-operations.ts | 25 +- .../mobile-workspace-source-operations.ts | 34 +- mobile/src/tasks/setup-hook-trust.ts | 11 +- mobile/src/tasks/smart-source-fan-out.test.ts | 33 +- mobile/src/tasks/smart-source-paste-intent.ts | 9 +- .../src/tasks/smart-source-search-requests.ts | 25 +- .../tasks/task-item-detail-reply-schema.ts | 82 +- mobile/src/tasks/task-list-reply-schema.ts | 2 +- .../task-project-board-reply-schema.test.ts | 284 ++++ .../tasks/task-project-board-reply-schema.ts | 328 ++++ .../task-provider-entity-reply-schema.ts | 2 +- .../tasks/task-runtime-reply-schema.test.ts | 121 ++ mobile/src/tasks/task-runtime-reply-schema.ts | 120 ++ .../task-source-search-reply-schema.test.ts | 206 +++ .../tasks/task-source-search-reply-schema.ts | 116 ++ ...se-mobile-tasks-project-detail-loading.tsx | 40 +- ...e-mobile-tasks-project-loading-actions.tsx | 61 +- ...-mobile-tasks-project-metadata-actions.tsx | 15 +- ...-mobile-tasks-project-metadata-loading.tsx | 24 +- ...le-tasks-project-repository-resolution.tsx | 10 +- ...ile-tasks-project-thread-reply-actions.tsx | 6 +- ...asks-project-workspace-comment-actions.tsx | 17 +- ...use-mobile-tasks-provider-load-actions.tsx | 2 +- .../use-mobile-tasks-runtime-hydration.tsx | 17 +- .../use-mobile-tasks-task-list-loading.tsx | 6 +- ...bile-tasks-workspace-and-project-state.tsx | 4 +- ...-mobile-tasks-workspace-create-actions.tsx | 22 +- ...-mobile-tasks-workspace-source-effects.tsx | 13 +- ...-mobile-tasks-workspace-sparse-actions.tsx | 13 +- .../use-mobile-tasks-workspace-ssh-state.tsx | 18 +- .../workspace-create-reply-schema.test.ts | 113 ++ .../tasks/workspace-create-reply-schema.ts | 94 ++ .../workspace-source-reply-schema.test.ts | 306 ++++ .../tasks/workspace-source-reply-schema.ts | 205 +++ mobile/src/tasks/workspace-ssh-gate.ts | 16 +- .../src/tasks/worktree-create-capability.ts | 6 +- mobile/src/tasks/worktree-create-retry.ts | 15 +- .../task-workspace-sender-mount-adapters.ts | 8 + .../mutants/operation-mutations.ts | 18 +- .../rpc-recording/pilot-recordings.test.ts | 6 +- .../unchecked-rpc-reader-boundary.test.ts | 11 +- .../unchecked-rpc-reader-inventory.ts | 10 +- 823 files changed, 14885 insertions(+), 10053 deletions(-) create mode 100644 mobile/rpc-foundation/goldens/matrix-worktree.agent-launch-create-agent.launch-1.json create mode 100644 mobile/rpc-foundation/goldens/tw-create-retry-agent-launched.json delete mode 100644 mobile/src/tasks/linear-mobile-issue-read.test.ts create mode 100644 mobile/src/tasks/task-project-board-reply-schema.test.ts create mode 100644 mobile/src/tasks/task-project-board-reply-schema.ts create mode 100644 mobile/src/tasks/task-runtime-reply-schema.test.ts create mode 100644 mobile/src/tasks/task-runtime-reply-schema.ts create mode 100644 mobile/src/tasks/task-source-search-reply-schema.test.ts create mode 100644 mobile/src/tasks/task-source-search-reply-schema.ts create mode 100644 mobile/src/tasks/workspace-create-reply-schema.test.ts create mode 100644 mobile/src/tasks/workspace-create-reply-schema.ts create mode 100644 mobile/src/tasks/workspace-source-reply-schema.test.ts create mode 100644 mobile/src/tasks/workspace-source-reply-schema.ts diff --git a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json index dc2909adefa..a0b5121a615 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-fulfilled.json @@ -3,9 +3,9 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7734b61671e..7c802829706 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-unsupported.json @@ -3,9 +3,9 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e07203d9e17..d621ae9c4a6 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json +++ b/mobile/rpc-foundation/goldens/aivault-history-scan-worktrees-late.json @@ -3,9 +3,9 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4cdb24cb7b5..6fe2c1efde2 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json +++ b/mobile/rpc-foundation/goldens/aivault-history-screen-listed.json @@ -3,9 +3,9 @@ "family": "aiVault.history-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3", "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 2571f3c7eaf..c0a7aae1985 100644 --- a/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json +++ b/mobile/rpc-foundation/goldens/aivault-history-screen-worktrees.json @@ -3,9 +3,9 @@ "family": "aiVault.history-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3", "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 96b902efa1a..857aabd1c5e 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-create-refused.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cc2234b6993..3e7e5ae0781 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-invalid-tab.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 29d484b4c3f..a5769b5514b 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-locked.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f98e101fe73..99eb76ec413 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-launch-sent.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b97c3661101..4cbd9391da8 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-refused.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9c1b3933cd7..d1a1714d2c7 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-repin.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b4db85c7b1d..124ddcec610 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-skipped.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4527ea0989f..0322821d7c2 100644 --- a/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json +++ b/mobile/rpc-foundation/goldens/aivault-resume-prepare-unavailable.json @@ -3,9 +3,9 @@ "family": "aiVault.resume-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2f43211e4084c0493bd02ec98868acf53a4c748f89a70cd9657c9c3ee87b12fb", "scenarioSha256": "a5eedea5f551e0ca0e143292f1d9aa8920dd7af62a02d8e8777666ab3779c019", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b1.json b/mobile/rpc-foundation/goldens/b1.json index 342720856a8..740b8b06ee5 100644 --- a/mobile/rpc-foundation/goldens/b1.json +++ b/mobile/rpc-foundation/goldens/b1.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "262eaad263a45aa13ec5b27c12b59946b12c202474229fff7a5727dba6d702ca", "scenarioSha256": "23ffc912a432dcd3ff70be1903a8d518cf85634f27a2be6d21585963e338e7e3", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/b2.json b/mobile/rpc-foundation/goldens/b2.json index f67586f422a..77d4da70250 100644 --- a/mobile/rpc-foundation/goldens/b2.json +++ b/mobile/rpc-foundation/goldens/b2.json @@ -3,9 +3,9 @@ "family": "project-explicit-false", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "b31992be2f91bd61fbe1b8a5400da3b7a56753564b0b0b2b38bc5d549812d693", "platform": "darwin", @@ -67,20 +67,6 @@ } } }, - "204a5c5728c2": { - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "labels": [], - "number": 1, - "repository": "owner/repo" - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, "5d32aa29303c": { "name": "projectMutating", "ordinal": 1, @@ -118,6 +104,20 @@ "startedAt": 0 } }, + "87a06aebc58e": { + "error": "The host sent a reply this app could not read (github.project.updateIssueBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "labels": [], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + } + }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -127,6 +127,11 @@ "ordinal": 3, "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\"]}}}" }, + "cee96a551fcd": { + "name": "projectRowDetailError", + "ordinal": 4, + "value": "The host sent a reply this app could not read (github.project.updateIssueBySlug)" + }, "e9296dde8e41": { "name": "projectMutating", "ordinal": 5, @@ -139,11 +144,6 @@ "value": { "$rpc": "undefined" } - }, - "f2f279e9fa21": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of null (reading 'ok')" } }, "recording": { @@ -171,8 +171,8 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "204a5c5728c2", - "effects": ["5d32aa29303c", "f2f279e9fa21", "e9296dde8e41"] + "state": "87a06aebc58e", + "effects": ["5d32aa29303c", "cee96a551fcd", "e9296dde8e41"] } } ] diff --git a/mobile/rpc-foundation/goldens/b3.json b/mobile/rpc-foundation/goldens/b3.json index 74290dc8a6d..22ec198de0a 100644 --- a/mobile/rpc-foundation/goldens/b3.json +++ b/mobile/rpc-foundation/goldens/b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 70550cb3082..656af24b9f5 100644 --- a/mobile/rpc-foundation/goldens/browser-dialog-accepted.json +++ b/mobile/rpc-foundation/goldens/browser-dialog-accepted.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fd7fcc9d873..90d47a7b115 100644 --- a/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json +++ b/mobile/rpc-foundation/goldens/browser-dialog-dismissed.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a53a7d4008d..c827f3bc59e 100644 --- a/mobile/rpc-foundation/goldens/browser-keyboard-input.json +++ b/mobile/rpc-foundation/goldens/browser-keyboard-input.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 093d175bec8..c6987bcac15 100644 --- a/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json +++ b/mobile/rpc-foundation/goldens/browser-pointer-click-accepted.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 16016d330bd..3cf42009f92 100644 --- a/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json +++ b/mobile/rpc-foundation/goldens/browser-pointer-click-fallback.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 940f736d8ed..bee1f7810f0 100644 --- a/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json +++ b/mobile/rpc-foundation/goldens/browser-wheel-scrolled.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 88ab9df2e75..cc843e7e66b 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-anonymous.json @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 97d3b2e135d..362e0a1fdb1 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 75ec829aa9a..e5c80bd9cdc 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-cancelled.json @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 aa8b88d7bce..24f98d4cdbe 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-pasted.json @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9b94f2f7b96..b374d4607d9 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-attachment-upload-refused.json @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e372f4c4b26..e56c27cacba 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 798046d462f..2465b5d8e62 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-chunked.json @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 770fa65f90f..aa455f868d4 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0bb945d405b..9b29191c2dd 100644 --- a/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json +++ b/mobile/rpc-foundation/goldens/clipboard-image-upload-start-refused.json @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c7a50beb2c0..649eb0bd21d 100644 --- a/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json +++ b/mobile/rpc-foundation/goldens/codex-reset-credit-consumed.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-credit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 72b09a36242..05e354c99c1 100644 --- a/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json +++ b/mobile/rpc-foundation/goldens/codex-reset-credit-resumed.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-credit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e7a640366c3..26fd83ca228 100644 --- a/mobile/rpc-foundation/goldens/components-codex-capability.json +++ b/mobile/rpc-foundation/goldens/components-codex-capability.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-capability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a27fbe2beff..ecb1fec1b37 100644 --- a/mobile/rpc-foundation/goldens/components-setup-ask.json +++ b/mobile/rpc-foundation/goldens/components-setup-ask.json @@ -3,9 +3,9 @@ "family": "components.setup-script", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8b24c5db237..4a0d8b68d7b 100644 --- a/mobile/rpc-foundation/goldens/components-target-local.json +++ b/mobile/rpc-foundation/goldens/components-target-local.json @@ -3,9 +3,9 @@ "family": "components.execution-target-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 be12016eda3..7a4831c83d5 100644 --- a/mobile/rpc-foundation/goldens/components-target-ssh.json +++ b/mobile/rpc-foundation/goldens/components-target-ssh.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a0a0d2a17af..3d42762edf8 100644 --- a/mobile/rpc-foundation/goldens/diff-review-branch-compare.json +++ b/mobile/rpc-foundation/goldens/diff-review-branch-compare.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bac94a4d71f..e1ca96d861f 100644 --- a/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-branch-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 be2f7250545..625546b4fd9 100644 --- a/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json +++ b/mobile/rpc-foundation/goldens/diff-review-notes-refused-before-compare.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e70d9efa200..0bf10a1d9bd 100644 --- a/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-refused-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 93647a134f2..b0cf9c46108 100644 --- a/mobile/rpc-foundation/goldens/diff-review-snapshot.json +++ b/mobile/rpc-foundation/goldens/diff-review-snapshot.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 46298aa5d9e..7d56ba96de4 100644 --- a/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json +++ b/mobile/rpc-foundation/goldens/diff-review-status-unavailable.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3f3ec18b7b4..cb20b938d75 100644 --- a/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json +++ b/mobile/rpc-foundation/goldens/diff-review-worktree-file-diff.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c4852d68bca..2ed859f7eab 100644 --- a/mobile/rpc-foundation/goldens/file-tap-open-refused.json +++ b/mobile/rpc-foundation/goldens/file-tap-open-refused.json @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 aa38d445083..ecaea1d54e0 100644 --- a/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json +++ b/mobile/rpc-foundation/goldens/file-tap-opens-worktree-file.json @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 87381d6610e..2b1ca5cc594 100644 --- a/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json +++ b/mobile/rpc-foundation/goldens/file-tap-previews-absolute-artifact.json @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8dcabafb751..4a67a675454 100644 --- a/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json +++ b/mobile/rpc-foundation/goldens/file-tap-resolve-miss.json @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e7e31dddcab..472352e993f 100644 --- a/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json +++ b/mobile/rpc-foundation/goldens/file-tap-resolve-refused.json @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 79a0c55477a..ae9f04fe4ac 100644 --- a/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json +++ b/mobile/rpc-foundation/goldens/files-explorer-legacy-fallback.json @@ -3,9 +3,9 @@ "family": "files.explorer-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c", "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 6b6d9bb12f8..e36bd1c36de 100644 --- a/mobile/rpc-foundation/goldens/files-explorer-readdir.json +++ b/mobile/rpc-foundation/goldens/files-explorer-readdir.json @@ -3,9 +3,9 @@ "family": "files.explorer-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c", "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 90c539df9b8..3d826a77e75 100644 --- a/mobile/rpc-foundation/goldens/files-ownership-local.json +++ b/mobile/rpc-foundation/goldens/files-ownership-local.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7c331571c79..6fc48204412 100644 --- a/mobile/rpc-foundation/goldens/files-ownership-ssh.json +++ b/mobile/rpc-foundation/goldens/files-ownership-ssh.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6c4ed88c733..32f72daab37 100644 --- a/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json +++ b/mobile/rpc-foundation/goldens/files-preview-artifact-direct.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 64d4e3c80fe..4e03025c0f6 100644 --- a/mobile/rpc-foundation/goldens/files-preview-artifact-image.json +++ b/mobile/rpc-foundation/goldens/files-preview-artifact-image.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bab1c9e1bca..451dfc2ff9e 100644 --- a/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json +++ b/mobile/rpc-foundation/goldens/files-preview-grant-refresh.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3f484b6b5af..21923c1a91e 100644 --- a/mobile/rpc-foundation/goldens/files-preview-worktree-image.json +++ b/mobile/rpc-foundation/goldens/files-preview-worktree-image.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 069b96fc895..790de4923e0 100644 --- a/mobile/rpc-foundation/goldens/files-preview-worktree.json +++ b/mobile/rpc-foundation/goldens/files-preview-worktree.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bc782532820..263b68c0967 100644 --- a/mobile/rpc-foundation/goldens/files-save-blind.json +++ b/mobile/rpc-foundation/goldens/files-save-blind.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fe606a19e37..7f64b939b31 100644 --- a/mobile/rpc-foundation/goldens/files-save-verified.json +++ b/mobile/rpc-foundation/goldens/files-save-verified.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a445486c9ed..d6d59923924 100644 --- a/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json +++ b/mobile/rpc-foundation/goldens/files-tab-doc-shapes.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5af950aea96..36c8cf0a1c0 100644 --- a/mobile/rpc-foundation/goldens/home-host-accounts.json +++ b/mobile/rpc-foundation/goldens/home-host-accounts.json @@ -3,9 +3,9 @@ "family": "home.host-accounts", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6fbeefc5386..f21dd5ceb08 100644 --- a/mobile/rpc-foundation/goldens/home-host-stats.json +++ b/mobile/rpc-foundation/goldens/home-host-stats.json @@ -3,9 +3,9 @@ "family": "home.host-stats", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7109eaa08cc..4ca11bc3e9d 100644 --- a/mobile/rpc-foundation/goldens/host-view-settings-sync.json +++ b/mobile/rpc-foundation/goldens/host-view-settings-sync.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d21798b304a..46857f1d092 100644 --- a/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json +++ b/mobile/rpc-foundation/goldens/host-worktree-actions-pin-open-delete.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 49f700ef0b0..cea470c9f29 100644 --- a/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json +++ b/mobile/rpc-foundation/goldens/host-worktree-delete-refused.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 85a6d2000ce..469165aab57 100644 --- a/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json +++ b/mobile/rpc-foundation/goldens/host-worktree-refresh-stream.json @@ -3,9 +3,9 @@ "family": "host-worktree-refresh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e578bb19786..5d61f2c6e2a 100644 --- a/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/interruptions-inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9ecf6f5efc1..becd5b961fe 100644 --- a/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/interruptions-settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 294cf690782..2254eeb5a4e 100644 --- a/mobile/rpc-foundation/goldens/inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 31f40f2e51c..fa527673f39 100644 --- a/mobile/rpc-foundation/goldens/inventory-repeat-query.json +++ b/mobile/rpc-foundation/goldens/inventory-repeat-query.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3d57d5ff775..73d266c04ca 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-b3.json +++ b/mobile/rpc-foundation/goldens/lifecycle-b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0493fe4e855..898aae98018 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json +++ b/mobile/rpc-foundation/goldens/lifecycle-inventory-lifecycle.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cf6485f231a..c51f0341b4c 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 02bbaf57896..fcc06d4fefb 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 97cdd9607d2..7b270467e16 100644 --- a/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/lifecycle-settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 11d1bbf6ea5..2f58b1c27de 100644 --- a/mobile/rpc-foundation/goldens/linear-select-workspace.json +++ b/mobile/rpc-foundation/goldens/linear-select-workspace.json @@ -3,9 +3,9 @@ "family": "linear.select-workspace-picker", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5261c860f10..40606bcd189 100644 --- a/mobile/rpc-foundation/goldens/live-worktree-name-stream.json +++ b/mobile/rpc-foundation/goldens/live-worktree-name-stream.json @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8e41c8624b9b6185e447cee3590a851ab88b6b1ee1d632af90e3a771a90310be", "scenarioSha256": "056abf42b34537025fed30a4401bd465c93bc21558babb826f21b5c803b487eb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.create-1.json b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.create-1.json index 334e3dde331..88268df6477 100644 --- a/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.create-1.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "81ed7c1a4276cf1d891334c64c06362b88b5f9690b3ebae6d0988559b1faab0f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.createsupport-1.json b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.createsupport-1.json index 3d462127a3c..bec161bd1eb 100644 --- a/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.createsupport-1.json +++ b/mobile/rpc-foundation/goldens/matrix-agentsession.structured-create-agentsession.createsupport-1.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "eed54b1c4c77eec4b411d8daa197b20c8cfb4b86ac2d01f1d7ee2de23c27dff8", "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 41afa415a42..62248985ab0 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 @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 61097fe971b..41e825db194 100644 --- a/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-aivault.listsessions-1.json @@ -3,9 +3,9 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 38788e58f8b..c1874364d93 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 @@ -3,9 +3,9 @@ "family": "aiVault.history-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3", "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 a8baddffff7..803407d5e4e 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 @@ -3,9 +3,9 @@ "family": "aiVault.history-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3", "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 6d48380a3e9..a5a4bc26d35 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 @@ -3,9 +3,9 @@ "family": "aiVault.history-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c78ab47eea594b7e1988403321ff9ba135ca60c513bb9d5848bdde26c0ffe3c3", "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 1b6352763a2..9cab692c905 100644 --- a/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-aivault.history-status.get-1.json @@ -3,9 +3,9 @@ "family": "aiVault.history", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0042033e098..4d0f46982c0 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 @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 705f09557ce..59a019d03e7 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 @@ -3,9 +3,9 @@ "family": "aiVault.resume-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5bea7e179f3..2827f631813 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 @@ -3,9 +3,9 @@ "family": "aiVault.resume-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a0501ec0a0b..ab8df62e511 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.dialog-browser.dialogaccept-1.json @@ -3,9 +3,9 @@ "family": "browser.dialog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 49b977783f9..8f504a3fd40 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keyboardinserttext-1.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 22083720172..0a5a7bca783 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.keyboard-browser.keypress-1.json @@ -3,9 +3,9 @@ "family": "browser.keyboard", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cd00ed53695..bc5752a7b77 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseclick-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 33d26b63a91..b92eea03a1a 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousedown-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 aa0ff6f06c5..9d0a2981227 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mousemove-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1b81e078fc8..c1c3def6466 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.pointer-click-browser.mouseup-1.json @@ -3,9 +3,9 @@ "family": "browser.pointer-click", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0ec99726db1..04504bac81c 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousemove-1.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c40086c73ef..73485a24635 100644 --- a/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json +++ b/mobile/rpc-foundation/goldens/matrix-browser.wheel-browser.mousewheel-1.json @@ -3,9 +3,9 @@ "family": "browser.wheel", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e924e320e10..22b3357ecaf 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-attachment", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 46eaeb0f098..3ed9230d122 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0e2c4d37616..6b496877981 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 @@ -3,9 +3,9 @@ "family": "clipboard.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b99e4d1f8d5..3e6b665effc 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.codex-reset-capability-status.get-1.json @@ -3,9 +3,9 @@ "family": "components.codex-reset-capability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0804beaf137..4c8e4c33f6f 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 @@ -3,9 +3,9 @@ "family": "components.codex-reset-credit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6116f5698fb..02af18d881b 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-local-preflight.detectagents-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cf3615bfdca..d5a20935977 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c7176b29646..7feecb23bcf 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.connect-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "5cfbce3c7d97d908fbd447646d611e41a8aa1f61f684b9b710c4b67d6ff023a7", "scenarioSha256": "8b8f7fe7227d44330e216e0bf5d366c41b54d9bf76acfb24df2c1770984b9f27", "platform": "darwin", @@ -527,17 +527,6 @@ } } }, - "c04e51232b36": { - "detected": { - "$rpc": "null" - }, - "gate": { - "connectInProgress": false, - "error": "Cannot read properties of null (reading 'state')", - "requiresConnection": true, - "status": "error" - } - }, "c06edc5665d7": { "name": "ssh.connect#1", "ordinal": 5, @@ -585,13 +574,13 @@ } } }, - "d714ad0ce8fb": { + "eaf7ed4ebea4": { "detected": { "$rpc": "null" }, "gate": { "connectInProgress": false, - "error": "Cannot read properties of undefined (reading 'state')", + "error": "The host sent a reply this app could not read (ssh.connect)", "requiresConnection": true, "status": "error" } @@ -677,7 +666,7 @@ "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" }, - "state": "d714ad0ce8fb", + "state": "eaf7ed4ebea4", "effects": [] } }, @@ -690,7 +679,7 @@ "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" }, - "state": "c04e51232b36", + "state": "eaf7ed4ebea4", "effects": [] } }, 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 c92a401596c..d47586f146a 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.execution-target-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "components.execution-target", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 462aa8e338f..2a81c13749b 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 @@ -3,9 +3,9 @@ "family": "components.new-workspace-repositories", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 21c23da9ecb..1eac0962524 100644 --- a/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-components.setup-script-repo.hooks-1.json @@ -3,9 +3,9 @@ "family": "components.setup-script", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 41030b81535..eb368918732 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 @@ -3,9 +3,9 @@ "family": "files.explorer-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c", "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 6872e5e2ea0..20819f69055 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 @@ -3,9 +3,9 @@ "family": "files.explorer-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "7a42a348f4407b94cf75ac77a4b6b783b7d28103b1ae1d111d2708dab0dd4a0c", "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 b2e1c3b01d2..1e06e7546dd 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4cf2aa50080..498dfea5c38 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-status.get-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b93fc8b6f1ece041acaa8cc5699852085e67d7e2f39db13145e483f854ea3309", "scenarioSha256": "b9cfb187224a4b42efe8ccfcd96145833730d135c4fffa345716f95991a4700f", "platform": "darwin", @@ -143,16 +143,6 @@ "518ec57c381a": { "ownership": "uncaptured" }, - "68ce4d376250": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'capabilities')", - "isRpcDeliveryUnknown": false - } - }, "7f0419402be8": { "name": "status.get#1", "ordinal": 1, @@ -216,16 +206,6 @@ "startedAt": 0 } }, - "848eaee9cd6a": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'capabilities')", - "isRpcDeliveryUnknown": false - } - }, "9270aeb7d9c6": { "status": "pending", "startedAt": 0 @@ -466,6 +446,17 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, + "d55c9db323b1": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (status.get)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "e81d3a627ac2": { "name": "status.get#1", "ordinal": 1, @@ -644,7 +635,7 @@ "sender": ["fa49f7da1267"], "payloads": ["d08f74d65ee6"], "settlements": { - "capture": "848eaee9cd6a" + "capture": "d55c9db323b1" }, "state": "518ec57c381a", "effects": [] @@ -656,7 +647,7 @@ "sender": ["fa37fc8bfba3"], "payloads": ["d08f74d65ee6"], "settlements": { - "capture": "68ce4d376250" + "capture": "d55c9db323b1" }, "state": "518ec57c381a", "effects": [] 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 9c04f5405e5..009be52565e 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.mutation-ownership-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "files.mutation-ownership", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 77143fab4c6..111f0256016 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fa696f2deda..f0a0b5e1afa 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.readterminalartifact-2.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cfad658935d..c75bbf63ff6 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-load-files.resolveterminalpath-1.json @@ -3,9 +3,9 @@ "family": "files.preview-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 799a83a4b40..b5d36c07923 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.readterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 95546400fab..5a51489fe23 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.preview-save-files.writeterminalartifact-1.json @@ -3,9 +3,9 @@ "family": "files.preview-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c2a81b75380..14c159f1b58 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.read-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 38632dc8afc..70b4bc9c68d 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-files.readpreview-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2462033c8d4..84a64b66fcd 100644 --- a/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json +++ b/mobile/rpc-foundation/goldens/matrix-files.tab-doc-git.diff-1.json @@ -3,9 +3,9 @@ "family": "files.tab-doc", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0d1037b6c0e..606d482800a 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 @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 13b84c5e4b6..28a2de10a94 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 @@ -3,9 +3,9 @@ "family": "files.terminal-path-tap", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0f5d5b42ea9..85d8a408511 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.baserefdefault-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6ac1715545c..e6aa7e598c4 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-repo.list-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7e64955ec0f..6c35f419288 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.base-ref-chain-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "1db6919b94df3b8548838ff4c206fafa3a09ea096b17c04483f78f9321ccb1ba", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.branch-diff-preview-git.branchdiff-1.json b/mobile/rpc-foundation/goldens/matrix-git.branch-diff-preview-git.branchdiff-1.json index c69eef72f2c..d977e4133d0 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.branch-diff-preview-git.branchdiff-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.branch-diff-preview-git.branchdiff-1.json @@ -3,9 +3,9 @@ "family": "git.branch-diff-preview", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "42879d7300691a80aa0d09a2aeb5f8cb9438fc72b0ac7f24b0bbae4309f3a2ca", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.branchcompare-1.json b/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.branchcompare-1.json index 260b5480657..6357f63c6fd 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.branchcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.branchcompare-1.json @@ -3,9 +3,9 @@ "family": "git.changes-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "afdfde4c58b6ff2047ea1b2f18b955074c0ae23850d4ac8783e69c0724096eab", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.status-1.json b/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.status-1.json index 6d8284f919a..c2afc4b33a5 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.changes-load-git.status-1.json @@ -3,9 +3,9 @@ "family": "git.changes-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "a428557212fd35e84506b671c2b254d7ce5cab486dada61fc9b5e5357f76df2c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.changes-load-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-git.changes-load-repo.list-1.json index 04d801f9d7f..eb98ea5691b 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.changes-load-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.changes-load-repo.list-1.json @@ -3,9 +3,9 @@ "family": "git.changes-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "901b8f44a090b5871b3edc20be72c4f407889b4830fcb00be0e99c8c96274cc5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.changes-load-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-git.changes-load-worktree.show-1.json index 0c85d69948a..57633dac35e 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.changes-load-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.changes-load-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "git.changes-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "d40c9235948cb1cd85bec5451ce0f4183074e0a12a35834d8c911c35e99a6599", "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 94a9c0c88f3..47de21e315f 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.commit-message-ai-git.generatecommitmessage-1.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "22ea5279155ecf749aaab521ffd570221ac3169b177fc1daf85ef93a49d38260", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.commitcompare-1.json b/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.commitcompare-1.json index cb0f2cab34d..4a2cbdff583 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.commitcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.commitcompare-1.json @@ -3,9 +3,9 @@ "family": "git.history-commit-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "fc12c33acd3f3a34cbdb5893204be009bb089e2383a715fea4151c912de11ab0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.history-1.json b/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.history-1.json index 249d68be019..5674d2cae1f 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.history-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.history-commit-files-git.history-1.json @@ -3,9 +3,9 @@ "family": "git.history-commit-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "52610bb18381d371e479a5bef4a160814547baa355104059949b1c35b87342bc", "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 f79744fb5bd..c01c5575bc0 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.history-read-git.history-1.json @@ -3,9 +3,9 @@ "family": "git.history-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d1ec8dd0ae7..67c376cb770 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.remote-prerequisite-git.push-1.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5cf75764c4d..25ea2181a2d 100644 --- a/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-git.review-preparation-git.status-1.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7de1cbc07fa..c7ae6ce88bc 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1ebfb064d51..af94ef8cc6c 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e23d13c71f1..3c1c3188b77 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.deleteissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d9fd378095c..6ca0b6a8f8f 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.project.updateissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9181ba021d1..aa720673122 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-comment-mutation-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6ce503bbf5c..e85788c7c46 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b1d974370e2..4f9cabb037e 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.removeprreviewers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 124623c506e..9fa81acf4ba 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 18d5294eb22..22659e740a8 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bf0a6e7e9a1..7ea02949169 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.setprautomerge-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3b478b03343..94ea865cff9 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-mutation-github.updateprstate-1.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2bca577ed15..b5d7a2197cf 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.listassignableusers-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2969c6485e0..235e90abf5a 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prcheckdetails-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0c577362439..2046f0ebf96 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dbebf909839..432a47d6803 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.prforbranch-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9726747709b..bedcb18df54 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.reposlug-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 93aa5613da9..8bf443c5092 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-github.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 01af94a29a0..7d256764659 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-read-hostedreview.forbranch-1.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 38670a2a0d8..c31a0fc7e75 100644 --- a/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json +++ b/mobile/rpc-foundation/goldens/matrix-github.pr-title-mutation-github.updateprtitle-1.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d1dbf6c34e7..33681437a25 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 @@ -3,9 +3,9 @@ "family": "home.host-accounts", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d1219f06984..0c27e262752 100644 --- a/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json +++ b/mobile/rpc-foundation/goldens/matrix-home.host-stats-stats.summary-1.json @@ -3,9 +3,9 @@ "family": "home.host-stats", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 37613257345..ad5329bdc12 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 @@ -3,9 +3,9 @@ "family": "host-worktree-refresh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bb5a648c37a..da6edbbf090 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 @@ -3,9 +3,9 @@ "family": "host-worktree-refresh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d9f5d282a44..d86b9307563 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 @@ -3,9 +3,9 @@ "family": "host-worktree-refresh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 912ca013d16..9fde3743519 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 @@ -3,9 +3,9 @@ "family": "host-worktree-refresh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0209bc1462d..e46f3edeb13 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.get-1.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 99f8dd4f99a..cc1cbd5570b 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.view-settings-ui.set-1.json @@ -3,9 +3,9 @@ "family": "host.view-settings", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bd0224580ff..3e424992516 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.activate-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b6f79205236..acbb39326fe 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.rm-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 110559a1503..bd12e663045 100644 --- a/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-host.worktree-actions-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "host.worktree-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 55126cb9130..6cd34382064 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-git.push-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 051b42f7329..256457af7b4 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-hostedreview.create-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1405c35367c..cb1377042c4 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-chain-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 37b42d52448..071f116566f 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.bulkstage-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0c8eeba5be6..b4b4ea635e8 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.commit-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 484412346c1..76f317a3883 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.generatecommitmessage-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 08e73aa03c5..61d937be1c9 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.push-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f2f2d55cd10..eb21741ebf5 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ddc22a1847c..2fc843ef162 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-2.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ac4287d8b48..dc6d2a89c94 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-3.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 64bacbd87f2..96080a99ca0 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-git.status-4.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5586a5f4427..bad9142670c 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.create-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9791954ba11..5f4792dc8b0 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2957b75267b..e95b63451c8 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-hostedreview.getcreationeligibility-2.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1428b28b984..1954b25d107 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.create-intent-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7aef97eacb3..004de637ae7 100644 --- a/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json +++ b/mobile/rpc-foundation/goldens/matrix-hostedreview.eligibility-hostedreview.getcreationeligibility-1.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d1719a5f727..09917d09321 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-1.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f8da99a41f9..2fb284ec3af 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-files.searchpaths-2.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c3e4e8e092b..5b1a600c135 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-fresh-inventory.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 995496ca74f..6a0130a203b 100644 --- a/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json +++ b/mobile/rpc-foundation/goldens/matrix-legacy-inventory-old-inventory.json @@ -3,9 +3,9 @@ "family": "legacy-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d107743155e..21288fed6af 100644 --- a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4e2fa5cd856..7eb6e78adbb 100644 --- a/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json +++ b/mobile/rpc-foundation/goldens/matrix-linear-detail-barrier-linear.issuecomments-1.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8857f61eb44..175c521bfb4 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 @@ -3,9 +3,9 @@ "family": "linear.select-workspace-picker", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b768681e6da..b7d6e408fb4 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f3178a4b145..88a0ba7d3e4 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9e7fa22c61c..ffd84741682 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f60f1fae84d..fbbd938efd6 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 12ec13cc418..d7ae2f92cfb 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ae519c5a776..f1c3bfa2ed7 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 @@ -3,9 +3,9 @@ "family": "live-worktree-name", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c06a28f67ce..35124105be9 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 88c3da00180..24924f6183d 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 05297dbc5f6..5de44fa83de 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5760331675d..9e3b947dbf4 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 @@ -3,9 +3,9 @@ "family": "nativeChat.session-option-pick", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cdc2d186687..dcb675ae87b 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 @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fe7a65b2fd8..c1f296a1325 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 @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 index 4c6db69e222..c41db86d90c 100644 --- 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 @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "e13d3072f9a0ff4458ec4231013d29f7131144b52089914cd08914652a2e136b", "platform": "darwin", 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 index 1cb4a4b7d0a..896caeef252 100644 --- 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 @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "aca5a21c0928ca5e84aac346f543a6840691c92b124c845cd01e3f2de553ea3d", "platform": "darwin", 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 index 6cb7d00c6a1..579a870647f 100644 --- 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 @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "53c8aa2ecfc045a50180dc707e353e22eef8511c0815ebacd3bda8cfb69d65c0", "platform": "darwin", 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 index daa1a7a2a72..797270ac3a2 100644 --- 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 @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "afd3985ecdc07a1880aaee81739432633a1e87ec2de2c02166f43a6c78cb493b", "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 index eab4804bae2..2fe27a8004d 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 @@ -3,9 +3,9 @@ "family": "notifications.display-test-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "12a04986290715d5db23a1eb5192c1138bb2d375d1b1dd37ba310ea89eb11566", "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 4e5981492dd..c2cfa6b3eac 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 @@ -3,9 +3,9 @@ "family": "notifications.push-dismissal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6c5df040d8a..349d7ba0245 100644 --- a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json +++ b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.registerpush-1.json @@ -3,9 +3,9 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 40391db787f..fc1c17f58b6 100644 --- a/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json +++ b/mobile/rpc-foundation/goldens/matrix-notifications.push-registration-notifications.unregisterpush-1.json @@ -3,9 +3,9 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 98742465b40..9b68676630e 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-direct-status.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e51a0f0128a..51372a18d0a 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a21df87fd27..98282cea495 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 74137acd65f..427e23bef92 100644 --- a/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json +++ b/mobile/rpc-foundation/goldens/matrix-pairing.pre-profile-relay-status.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d202fddbd14..17ebdd980ac 100644 --- a/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-project-explicit-false-github.project.updateissuebyslug-1.json @@ -3,9 +3,9 @@ "family": "project-explicit-false", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "d3b7f33d810e1fa420ac41a628cde9fe4a9e65fd57f89fbca0a40fc7d74951ab", "scenarioSha256": "926f0d8c37a33d465bf3a04f056600cfc9f1669b1eca7e968aa1a1f797a74c61", "platform": "darwin", @@ -190,25 +190,6 @@ } } }, - "1fbd7af5254e": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Failed to update GitHub item" - }, - "204a5c5728c2": { - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "labels": [], - "number": 1, - "repository": "owner/repo" - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, "22021a77bba3": { "error": "Unknown method", "mutating": false, @@ -228,20 +209,6 @@ "ordinal": 4, "value": "transport failure" }, - "29f9b15bed7a": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "labels": [], - "number": 1, - "repository": "owner/repo" - }, - "id": "item-1", - "itemType": "ISSUE" - } - }, "2b3c1b95331e": { "error": "outer refused", "mutating": false, @@ -275,11 +242,6 @@ "itemType": "ISSUE" } }, - "3432c4f21f41": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "349173b5b21b": { "name": "projectRowDetailError", "ordinal": 4, @@ -308,6 +270,29 @@ ] } }, + "3c58a941fdb5": { + "name": "githubProjectTable", + "ordinal": 6, + "value": { + "rows": [ + { + "content": { + "assignees": [], + "labels": [ + { + "color": "808080", + "name": "recorded" + } + ], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + } + ] + } + }, "3f996c0d0403": { "error": "", "mutating": false, @@ -384,6 +369,16 @@ "itemType": "ISSUE" } }, + "6f9e1f332b23": { + "name": "projectMutating", + "ordinal": 8, + "value": false + }, + "72332e237f1f": { + "name": "projectMutating", + "ordinal": 6, + "value": false + }, "78a9fc64d7dd": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -490,6 +485,13 @@ "itemType": "ISSUE" } }, + "7e2bde0922c0": { + "name": "projectRowDetail", + "ordinal": 7, + "value": { + "$rpc": "null" + } + }, "7ecf3a14081d": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -522,6 +524,17 @@ "startedAt": 0 } }, + "810c401fc52a": { + "name": "reply-salvage", + "ordinal": 4, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.updateIssueBySlug", + "operation": "github.project.update-issue", + "variant": "github-project-updated-issue" + } + }, "85734cd25ad9": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -562,6 +575,20 @@ } } }, + "87a06aebc58e": { + "error": "The host sent a reply this app could not read (github.project.updateIssueBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "labels": [], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + } + }, "887e8ce3ae91": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -691,6 +718,30 @@ "itemType": "ISSUE" } }, + "cee96a551fcd": { + "name": "projectRowDetailError", + "ordinal": 4, + "value": "The host sent a reply this app could not read (github.project.updateIssueBySlug)" + }, + "e2a12ae3c71a": { + "name": "projectRowItem", + "ordinal": 5, + "value": { + "content": { + "assignees": [], + "labels": [ + { + "color": "808080", + "name": "recorded" + } + ], + "number": 1, + "repository": "owner/repo" + }, + "id": "item-1", + "itemType": "ISSUE" + } + }, "e506ad19ffcf": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -789,10 +840,10 @@ "$rpc": "null" } }, - "f2f279e9fa21": { + "ffe14a16b6b6": { "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of null (reading 'ok')" + "ordinal": 5, + "value": "Failed to update GitHub item" } }, "recording": { @@ -852,8 +903,8 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "29f9b15bed7a", - "effects": ["5d32aa29303c", "3432c4f21f41", "e9296dde8e41"] + "state": "87a06aebc58e", + "effects": ["5d32aa29303c", "cee96a551fcd", "e9296dde8e41"] } }, { @@ -865,8 +916,8 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "204a5c5728c2", - "effects": ["5d32aa29303c", "f2f279e9fa21", "e9296dde8e41"] + "state": "87a06aebc58e", + "effects": ["5d32aa29303c", "cee96a551fcd", "e9296dde8e41"] } }, { @@ -881,10 +932,11 @@ "state": "7df10429e862", "effects": [ "5d32aa29303c", - "b54187ba0262", - "3621cf5aa876", - "eedadfe7f88b", - "a735fd6aee5f" + "810c401fc52a", + "e2a12ae3c71a", + "3c58a941fdb5", + "7e2bde0922c0", + "6f9e1f332b23" ] } }, @@ -898,7 +950,7 @@ "submit": "eb79a9b3682a" }, "state": "c679565dc881", - "effects": ["5d32aa29303c", "1fbd7af5254e", "e9296dde8e41"] + "effects": ["5d32aa29303c", "810c401fc52a", "ffe14a16b6b6", "72332e237f1f"] } }, { 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 14d1f235908..10bed117f94 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 53f0e0d9af9..3fcc05de9be 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.getendpoints-2.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1ec4060ead4..ec5c3b32f30 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.credential-rotation-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 90b11f9313f..5f0bd13c695 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1b14c795619..bfa13d56b9d 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.getendpoints-2.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e6db06e534a..38aac3e26ae 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.direct-upgrade-pairing.provisionrelay-1.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9efd3a7bbbe..87e01b8a8e8 100644 --- a/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json +++ b/mobile/rpc-foundation/goldens/matrix-relay.pairing-recovery-pairing.getendpoints-1.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "e33d584229530c716ecdc44d198b95fcfb4dfd9468fba7d5222ee3f122950197", "scenarioSha256": "5aaa104a652d4f10cd48ab742112cf59fca22f52bbf85ee3716505a9642fbe37", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.browser-tab-create-browser.tabcreate-1.json b/mobile/rpc-foundation/goldens/matrix-session.browser-tab-create-browser.tabcreate-1.json index 05da09932b7..1edd520cf8c 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.browser-tab-create-browser.tabcreate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.browser-tab-create-browser.tabcreate-1.json @@ -3,9 +3,9 @@ "family": "session.browser-tab-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "6c606813584d6ac89251c725a556d717603acde405a8d45ef6d844e06f2da67a", "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 74d0aaf30d5..f631d9d92bb 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 @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 11600be7f17..3aa79d431e3 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 @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 13d39a9d7eb..1a4ebbeb247 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 @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "5100bd674509d1d83b1e2594eee036af21ea14b12226185b44070555d1d43060", "platform": "darwin", @@ -94,14 +94,6 @@ "message": "Unknown method" } }, - "1fe9fbe7d375": { - "createError": "Cannot read properties of undefined (reading 'capabilities')", - "creatingBrowser": false, - "creatingMarkdown": false, - "pendingBrowserFocusPageId": { - "$rpc": "null" - } - }, "32afb7dc375d": { "name": "toast", "ordinal": 3, @@ -109,6 +101,14 @@ "message": "Remote file changes require a newer Orca server. Update the HUB and try again." } }, + "37185d7089db": { + "createError": "The host sent a reply this app could not read (status.get)", + "creatingBrowser": false, + "creatingMarkdown": false, + "pendingBrowserFocusPageId": { + "$rpc": "null" + } + }, "3e7bfd4c59c3": { "name": "files.open#1", "ordinal": 7, @@ -363,13 +363,6 @@ } } }, - "bde3786de6f8": { - "name": "toast", - "ordinal": 3, - "value": { - "message": "Cannot read properties of null (reading 'capabilities')" - } - }, "bfe4c76a5071": { "name": "status.get#1", "ordinal": 1, @@ -405,13 +398,6 @@ } } }, - "c371c18b9adc": { - "name": "toast", - "ordinal": 3, - "value": { - "message": "Cannot read properties of undefined (reading 'capabilities')" - } - }, "c924e7a5a7da": { "name": "worktree.show#1", "ordinal": 4, @@ -454,16 +440,15 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"status.get\"}" }, - "d574cdcd4bef": { - "createError": "", - "creatingBrowser": false, - "creatingMarkdown": false, - "pendingBrowserFocusPageId": { - "$rpc": "null" + "d25576a14c57": { + "name": "toast", + "ordinal": 3, + "value": { + "message": "The host sent a reply this app could not read (status.get)" } }, - "e1f916d49745": { - "createError": "Cannot read properties of null (reading 'capabilities')", + "d574cdcd4bef": { + "createError": "", "creatingBrowser": false, "creatingMarkdown": false, "pendingBrowserFocusPageId": { @@ -656,8 +641,8 @@ "settlements": { "markdown": "eb79a9b3682a" }, - "state": "1fe9fbe7d375", - "effects": ["c371c18b9adc"] + "state": "37185d7089db", + "effects": ["d25576a14c57"] } }, { @@ -668,8 +653,8 @@ "settlements": { "markdown": "eb79a9b3682a" }, - "state": "e1f916d49745", - "effects": ["bde3786de6f8"] + "state": "37185d7089db", + "effects": ["d25576a14c57"] } }, { 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 ad41f25bf55..0dcec3d44bd 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 @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "b9ca49e401df8710924f200f92a071bac2e120ed43df7be2cfb8a325ab1cd9cb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.create-terminal-session.tabs.createterminal-1.json b/mobile/rpc-foundation/goldens/matrix-session.create-terminal-session.tabs.createterminal-1.json index f975bcbb1d0..7b779b7444d 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.create-terminal-session.tabs.createterminal-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.create-terminal-session.tabs.createterminal-1.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "ae1572c1670073d0ac3d2d3abd0e7bee9910cbe4a0b09ecd941e887eeb1db165", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.create-terminal-terminal.send-1.json b/mobile/rpc-foundation/goldens/matrix-session.create-terminal-terminal.send-1.json index 8ced521fdc6..46f4df26bc0 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.create-terminal-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.create-terminal-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "62930616f1017ffd4b74546c80b17f3aa3bcee52a6ad62ec144d95872fd31321", "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 cd4b9fc11e8..98c3212e52b 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 @@ -3,9 +3,9 @@ "family": "session.diff-notes", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d496225817a..1bf9a0c0811 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 @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 1bcd9557c6d..e33ad5a412c 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-base-ref-show.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3bd1e05e907..b7771d2ccb0 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.branchcompare-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d0772b340af..d015c763425 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-git.status-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2db93a88ddf..7cb7bfbae8e 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-repo.list-1.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ec00373e1d8..5524b4c4cd4 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json +++ b/mobile/rpc-foundation/goldens/matrix-session.diff-review-review-show.json @@ -3,9 +3,9 @@ "family": "session.diff-review", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3f9f39e3d9d..e1d52e5a062 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 @@ -3,9 +3,9 @@ "family": "session.markdown-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 index 161376648e8..dd81114450d 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-page", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518", "scenarioSha256": "8a6f6d37fd7dbc9e0da081565f24b270949306c47a874568874ec8ce2579076b", "platform": "darwin", 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 index acac7116899..bffe60db8f6 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-page", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518", "scenarioSha256": "de804d4fa5287b07be9079d21e0a3cfc7f22d0e4b8649f13a3465a30683a77c8", "platform": "darwin", 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 index 3f20a2041f3..aecf4dd9be4 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-page", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518", "scenarioSha256": "f7535862ae280e7e47916ad25701040e25d3318baceea52515c9d81b4144ae92", "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 2afc4554074..15f3c6f117f 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-readability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bc68dc9e3d1..8cc31127da8 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ff4f4a84e59..76ca8ae5707 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 98712fb0c79..44f0d21b9b9 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 @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a4a4d354ac0..d6f872f14db 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.branchcompare-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 92130aa373f..a06c21dd0ac 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-git.status-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 846a459ad8f..73fbbc5d26f 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-repo.list-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 273e6a90e36..e6ed8e308f7 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-branch-context-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "039f26cc90d2239028d6ad1d9ecae9cc976d48f386f2d29fbfa425afc702657d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prchecks-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prchecks-1.json index 27431d7144b..d2b8397fceb 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "97a92fc3e9b496a6295fb01e490407c1154cd19c54777fdce67377e07af08729", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prforbranch-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prforbranch-1.json index 82b12274b93..69c348d0f47 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prforbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-github.prforbranch-1.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "cb052d2107df7bbf24927199935dde7f30352ce875c7ddd7bbab7d8044da0add", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-hostedreview.forbranch-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-hostedreview.forbranch-1.json index d4f145185dd..8a81f8844c9 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-hostedreview.forbranch-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-hostedreview.forbranch-1.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "461af8bf31bbf47e84f64a9177bae34c9b796a3f0158a16041ccb0a1a3ea62ec", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-worktree.show-1.json b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-worktree.show-1.json index 099564cca5c..7c4b04a5ae3 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-worktree.show-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-sidebar-worktree.show-1.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "1bde693e45b01d09c47a1542cb7e43b4b7798ae52755ba41c5812bc07a425914", "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 356e98e8552..35dbaceb892 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-session.tabs.createterminal-1.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fe3026f5b48..24e1cd5bde6 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.pr-triage-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "a288e105a0af6dbbd9657b84f7c4860826184fb7f50dabc6e31b114a70d7ca44", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-branch-diff-git.branchdiff-1.json b/mobile/rpc-foundation/goldens/matrix-session.review-branch-diff-git.branchdiff-1.json index 706095a20d2..2d5cdc03be5 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-branch-diff-git.branchdiff-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-branch-diff-git.branchdiff-1.json @@ -3,9 +3,9 @@ "family": "session.review-branch-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "05d42780508d46d5c88f0c987448dc693bb49208a4298e6cf2f0d5e3979066af", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-1.json b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-1.json index 90975f26c2c..6856a7ba116 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-1.json @@ -3,9 +3,9 @@ "family": "session.review-file-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "9567f8594e0287954c1b236b2f0617ed06be04d2b97f82e527c8e3ce732e65c1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-2.json b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-2.json index de0f6bb8ea7..5148fed5643 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-2.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-2.json @@ -3,9 +3,9 @@ "family": "session.review-file-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "95c8c5451aabbbebab8422ccd867b70e000ac62aacf1d231ad0d181cbec3a2b0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-3.json b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-3.json index 15dcfc2d3e4..5e891d1a788 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-3.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-file-diff-git.diff-3.json @@ -3,9 +3,9 @@ "family": "session.review-file-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "91558fbfdf10c17a363e38cc0489b1a59e8b1657c51f7444840b2e7d37646851", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.discard-1.json b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.discard-1.json index fcdec35f69f..7df1311bdc0 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.discard-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.discard-1.json @@ -3,9 +3,9 @@ "family": "session.review-git-mutations", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "651cb070a4b4ba7deddeb37c08886094b83f006e7cbe2bef65d5433ce0430dff", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-1.json b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-1.json index 0d68184a6b5..cfa92efcb64 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-1.json @@ -3,9 +3,9 @@ "family": "session.review-git-mutations", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "e0ce643010302d304ba3611bd43932c6cdd0fa9290a3ecd4fffb4fc92c758b77", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-2.json b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-2.json index 704eb920ff5..ec9b6c7c0e7 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-2.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-git-mutations-git.stage-2.json @@ -3,9 +3,9 @@ "family": "session.review-git-mutations", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "c6b3b4be6b55daf53ee1f5ff755e73a032c4da5379f90f4973736c032eb79414", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.review-send-sheet-session.tabs.list-1.json b/mobile/rpc-foundation/goldens/matrix-session.review-send-sheet-session.tabs.list-1.json index e77b8a848aa..186375faa20 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.review-send-sheet-session.tabs.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.review-send-sheet-session.tabs.list-1.json @@ -3,9 +3,9 @@ "family": "session.review-send-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "a71815661dee6129a1b133c398b37ea89a9e4939b45626dada16889acabb2afe", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-1.json b/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-1.json index 17b6070e610..97f6e8281da 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-1.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "f4d1e8eff8e1a3dc7b04fcf5dafb2befca2211922443f1958ba801c49f488152", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-2.json b/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-2.json index 8312b9108d1..aa357733dbb 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-2.json +++ b/mobile/rpc-foundation/goldens/matrix-session.startup-worktree.activate-2.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "7ba969778e57cc5591365c688ef13ce5b09c41db9fa3666d61bbbbfe4e3fd35c", "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 a0448765de7..ec0f82d7653 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 @@ -3,9 +3,9 @@ "family": "session.tab-activation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dcb4310501e..65e44f38dcb 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 @@ -3,9 +3,9 @@ "family": "session.tab-activation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "5b050af6f02aa90f66340838cb5cc53c8fc0d5693d313b653c23881150384874", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-close-session-session.tabs.close-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-close-session-session.tabs.close-1.json index 421ec2ab9da..7fbaa963b7d 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-close-session-session.tabs.close-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-close-session-session.tabs.close-1.json @@ -3,9 +3,9 @@ "family": "session.tab-close-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "64c12ae20aaf7202c2271134d57e4312127e8f909ad086ba69b4662bbd749bb0", "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 0d8f0faf040..9fe003e386f 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 @@ -3,9 +3,9 @@ "family": "session.tab-close", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 75c5e0d6a4d..8a472651da8 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 @@ -3,9 +3,9 @@ "family": "session.tab-documents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "c97d925b63253e87ada0777e95a24ccf4e4e1682eda048800b44e335767df648", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.tab-rename-terminal.rename-1.json b/mobile/rpc-foundation/goldens/matrix-session.tab-rename-terminal.rename-1.json index 311180b974e..82dce625e6b 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-rename-terminal.rename-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-rename-terminal.rename-1.json @@ -3,9 +3,9 @@ "family": "session.tab-rename", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "55c461287c1d8fb6de3c4fe28f801d095678dcf52bfcce39c336c9d61e8be908", "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 a42de3b4d2d..b292de2d3cb 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.activate-1.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7d619f99338..afa1e844c4c 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.tab-reveal-session.tabs.list-1.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0cc764b2729..a3357eef958 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 @@ -3,9 +3,9 @@ "family": "session.tabs-stream-health", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "fab12524a09049d976da752cbe1b837a0aee04ce6e1eef75cbf517c862cb0d4a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-session.terminal-display-mode-terminal.setdisplaymode-1.json b/mobile/rpc-foundation/goldens/matrix-session.terminal-display-mode-terminal.setdisplaymode-1.json index 2aa610442bd..460f5657b19 100644 --- a/mobile/rpc-foundation/goldens/matrix-session.terminal-display-mode-terminal.setdisplaymode-1.json +++ b/mobile/rpc-foundation/goldens/matrix-session.terminal-display-mode-terminal.setdisplaymode-1.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "2ae1839ae5f4fb98c2ef250fb5e071508ec1376e737dab28ac589c08f1a42b0e", "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 index 6e19bec6779..26fe5d1eb88 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.terminal-gesture-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472", "scenarioSha256": "27e0d44ca22593ff2ecef93de075508863024f3f10f00161818962c07e7b59e1", "platform": "darwin", 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 index c09b0c8b563..935d9c56a89 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.terminal-gesture-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472", "scenarioSha256": "53ffb52ef015193fdaaeb1ac5a1c88488a607e6cec2e39e87d1e4e3173321983", "platform": "darwin", 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 index ad57f49569e..ab6e3220111 100644 --- 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 @@ -3,9 +3,9 @@ "family": "session.terminal-gesture-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472", "scenarioSha256": "d7bc4d7a3e7e54accd4b51eef7e83ae70cc0c794738a83af222503a0f12ba70f", "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 f99508a46e1..244bf7bf4ea 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 @@ -3,9 +3,9 @@ "family": "session.terminal-input-send", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 44387dcf84b..95317544fec 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 @@ -3,9 +3,9 @@ "family": "session.terminal-input-send", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 04feb9c7b1c..b0e70b73398 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 @@ -3,9 +3,9 @@ "family": "session.terminal-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5dd25fd6d80..90c0de14cd6 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 @@ -3,9 +3,9 @@ "family": "session.terminal-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f11bcf236ae..67dce89bf12 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 @@ -3,9 +3,9 @@ "family": "session.terminal-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 36e90a0601b..46879348c2a 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 @@ -3,9 +3,9 @@ "family": "session.terminal-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0d859e9ab2a..3255edcb311 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 @@ -3,9 +3,9 @@ "family": "session.worktree-connection", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 be9359a746d..f3d13dfb19d 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 @@ -3,9 +3,9 @@ "family": "session.worktree-connection", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5146f51cabf..5269a74e495 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e1d42458936..083279f2475 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7a96de86b77..800aef2819a 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-agent-read-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bd26365fc3d..5a221046b23 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings-best-effort-settings.update-1.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 72efa822c9b..5b547d08400 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.bot-overrides-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d3bbd4127bb..62e68cc4c2a 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 45aa717656f..f2a3cab2966 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2f2a3f26f59..61a6e64352a 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.home-providers-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "70f601caeaee957bd3b172fc0fc12e85d6e2d6bed7683c86869559c6c9f25834", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-preflight.detectagents-1.json b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-preflight.detectagents-1.json index 6847725b655..74c067342b0 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-preflight.detectagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-preflight.detectagents-1.json @@ -3,9 +3,9 @@ "family": "settings.new-tab-local-agents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "c5db2d14be8dc1b3b3b68c151507da49d1c96b44f94b080c5908a65a885f1763", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-repo.list-1.json b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-repo.list-1.json index 128d8d29bcb..86e72e110e4 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings.new-tab-local-agents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "c9b66eb3c676b1e18db588b8e35f267f5618c007ae0955adcc3292740fddfe23", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-settings.get-1.json b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-settings.get-1.json index 583d9d4d9f4..60f57c5ed2c 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.new-tab-local-agents-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.new-tab-local-agents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "9eaad87e8f648fdbfa33f493f991f9c7943fbf81f93580067819c4bbb02b672f", "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 e1a8df36598..5ffc7523d89 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 @@ -3,9 +3,9 @@ "family": "settings.quick-commands", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0a433c00c8e..692f4873b7e 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 @@ -3,9 +3,9 @@ "family": "settings.quick-commands", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1f07780b2bc..8596bce9612 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-host.platform-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 53ad2712bfb..12812085e1d 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 04163df03dc..ebb59873948 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ca7969c770f..3062dd40cac 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.repo-metadata-ssh.listtargetsummaries-1.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4ff285abd50..a70dd9fb478 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-folderworkspace.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d869fae2e20..5c400e01410 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-projectgroup.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7e212a867e9..44837fb5630 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-repo.list-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 83badcca3c6..b8325fa6609 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8e236f845e7..09f499aef77 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.resume-metadata-worktree.ps-1.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d4e470085f1..a651084a802 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2a3b34365da..6a60e52ae92 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f6324e02e43..cb51f12b037 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 27fdd88625d..d5670e235a0 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-status.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "3f448feff463b59c3927dae020ecd8d4931bb4a6036df6d6af080de2ec5fcf2b", "platform": "darwin", @@ -615,11 +615,6 @@ } } }, - "60b0fde8ea88": { - "name": "error", - "ordinal": 41, - "value": "Cannot read properties of undefined (reading 'capabilities')" - }, "644df42439c4": { "name": "linearWorkspaces", "ordinal": 55, @@ -921,6 +916,11 @@ "ordinal": 52, "value": {} }, + "962af04c16e6": { + "name": "error", + "ordinal": 41, + "value": "The host sent a reply this app could not read (status.get)" + }, "983ee07db023": { "name": "status.get#1", "ordinal": 39, @@ -1193,11 +1193,6 @@ "ordinal": 49, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"preflight.check\"}" }, - "e2892cada877": { - "name": "error", - "ordinal": 41, - "value": "Cannot read properties of null (reading 'capabilities')" - }, "e2c613587259": { "name": "showGitHubProjectPicker", "ordinal": 62, @@ -1503,7 +1498,7 @@ "2d1b83d7dc85", "1221fd1c3ae9", "da3527bc5f58", - "60b0fde8ea88", + "962af04c16e6", "1eb9c1e3ee82" ] } @@ -1556,7 +1551,7 @@ "2d1b83d7dc85", "1221fd1c3ae9", "da3527bc5f58", - "60b0fde8ea88", + "962af04c16e6", "1eb9c1e3ee82" ] } @@ -1609,7 +1604,7 @@ "2d1b83d7dc85", "1221fd1c3ae9", "da3527bc5f58", - "e2892cada877", + "962af04c16e6", "1eb9c1e3ee82" ] } @@ -1662,7 +1657,7 @@ "2d1b83d7dc85", "1221fd1c3ae9", "da3527bc5f58", - "e2892cada877", + "962af04c16e6", "1eb9c1e3ee82" ] } 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 d0770e6cf76..f7ed5c2c98e 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-hydration-ui.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "4438f9fd62876333bb980157612aaf457c5a9b9115659c8c941c3b373ad071dd", "platform": "darwin", @@ -80,16 +80,6 @@ "$rpc": "null" } }, - "1825a87a7ca8": { - "hydrated": false, - "settings": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": ["claude"], - "hostSettingOverrides": {}, - "prBotAuthorOverrides": ["bot-user"], - "visibleTaskProviders": ["github", "linear"] - } - }, "1f75fb0d92bd": { "name": "projectRowItem", "ordinal": 26, @@ -281,11 +271,6 @@ "ordinal": 5, "value": false }, - "378a352b5252": { - "name": "taskStateHydrated", - "ordinal": 53, - "value": false - }, "3b5e5f172050": { "name": "linear.status#1", "ordinal": 46, @@ -535,11 +520,6 @@ "ordinal": 55, "value": [] }, - "660b0d8b305a": { - "name": "error", - "ordinal": 52, - "value": "Cannot read properties of null (reading 'ui')" - }, "6ffbb1794410": { "name": "showLinearFilterPicker", "ordinal": 15, @@ -560,11 +540,6 @@ "ordinal": 13, "value": false }, - "7989e01983ca": { - "name": "error", - "ordinal": 52, - "value": "Cannot read properties of undefined (reading 'ui')" - }, "7b0ad7b958dd": { "name": "tasksSupportState", "ordinal": 2, @@ -1237,7 +1212,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "1825a87a7ca8", + "state": "58c52d8b7c76", "effects": [ "301bdbdf1dec", "7b0ad7b958dd", @@ -1280,8 +1255,24 @@ "3d60f87d082e", "294741680522", "e7538ac5908a", - "7989e01983ca", - "378a352b5252" + "9490fcb6d06d", + "e715718a7e8c", + "2ae9c5d06de2", + "644df42439c4", + "a5110db5951d", + "575605e669c4", + "f7c2d2661209", + "bb8650c59a0f", + "fa73b8d70b9b", + "737d03a180a4", + "06945c581b21", + "b8f36c62d60b", + "ac6cda1d7c7a", + "cb9416350e8d", + "cff6ef7f2791", + "f48548c0c512", + "542593b21c22", + "494f3c869f37" ] } }, @@ -1305,7 +1296,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "1825a87a7ca8", + "state": "58c52d8b7c76", "effects": [ "301bdbdf1dec", "7b0ad7b958dd", @@ -1348,8 +1339,24 @@ "3d60f87d082e", "294741680522", "e7538ac5908a", - "660b0d8b305a", - "378a352b5252" + "9490fcb6d06d", + "e715718a7e8c", + "2ae9c5d06de2", + "644df42439c4", + "a5110db5951d", + "575605e669c4", + "f7c2d2661209", + "bb8650c59a0f", + "fa73b8d70b9b", + "737d03a180a4", + "06945c581b21", + "b8f36c62d60b", + "ac6cda1d7c7a", + "cb9416350e8d", + "cff6ef7f2791", + "f48548c0c512", + "542593b21c22", + "494f3c869f37" ] } }, 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 dae5b37f989..41d7a27eeab 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 3f3d2f691e3..a5e285d78ce 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-create-worktree.create-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "scenarioSha256": "1d7713cf4c23d053105c2abb02340d81d5eb689f4311a0984932d8ebd031b4ce", "platform": "darwin", @@ -156,11 +156,6 @@ "$rpc": "null" } }, - "168de462b844": { - "name": "error", - "ordinal": 11, - "value": "Cannot read properties of null (reading 'worktree')" - }, "1bb065c2a768": { "creating": { "$rpc": "null" @@ -307,11 +302,6 @@ "startedAt": 0 } }, - "5536b8846bae": { - "name": "error", - "ordinal": 11, - "value": "Cannot read properties of undefined (reading 'worktree')" - }, "582028823c76": { "name": "worktree.create#1", "ordinal": 6, @@ -355,16 +345,6 @@ } } }, - "67b44e804cc9": { - "creating": { - "$rpc": "null" - }, - "error": "Cannot read properties of null (reading 'worktree')", - "settings": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } - }, "67e4de286c96": { "name": "worktree.create#1", "ordinal": 6, @@ -407,6 +387,11 @@ } } }, + "71f882fa01cd": { + "name": "error", + "ordinal": 8, + "value": "The host sent a reply this app could not read (worktree.create)" + }, "7abdfe20af50": { "creating": "linear:1", "error": "", @@ -477,31 +462,11 @@ "status": "pending", "startedAt": 0 }, - "97348f3fe285": { - "creating": { - "$rpc": "null" - }, - "error": "Cannot read properties of undefined (reading 'worktree')", - "settings": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } - }, "975f2ff9a730": { "name": "settings.get#1", "ordinal": 4, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"settings.get\"}" }, - "97dc8fc98386": { - "creating": { - "$rpc": "null" - }, - "error": "Cannot read properties of undefined (reading 'displayName')", - "settings": { - "defaultTuiAgent": "codex", - "disabledTuiAgents": [] - } - }, "9b03383cf8c2": { "name": "worktree.create#1", "ordinal": 6, @@ -588,11 +553,6 @@ } } }, - "a87cc5b1a6b1": { - "name": "error", - "ordinal": 11, - "value": "Cannot read properties of undefined (reading 'displayName')" - }, "ba6b37393b35": { "name": "worktree.create#1", "ordinal": 6, @@ -728,6 +688,16 @@ "ordinal": 8, "value": "Unknown method" }, + "df8accf1ced4": { + "creating": { + "$rpc": "null" + }, + "error": "The host sent a reply this app could not read (worktree.create)", + "settings": { + "defaultTuiAgent": "codex", + "disabledTuiAgents": [] + } + }, "e0423a9e6995": { "name": "worktree.create#1", "ordinal": 7, @@ -853,16 +823,13 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "97348f3fe285", + "state": "df8accf1ced4", "effects": [ "e0a8ee1f3c00", "ed3a7d6bc894", "e445683fd6a5", - "ce455f0c9a54", - "85b99a2ca439", - "e969ced16929", - "5536b8846bae", - "15a350feeedb" + "71f882fa01cd", + "f2ebfa81caaf" ] } }, @@ -875,16 +842,13 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "67b44e804cc9", + "state": "df8accf1ced4", "effects": [ "e0a8ee1f3c00", "ed3a7d6bc894", "e445683fd6a5", - "ce455f0c9a54", - "85b99a2ca439", - "e969ced16929", - "168de462b844", - "15a350feeedb" + "71f882fa01cd", + "f2ebfa81caaf" ] } }, @@ -897,16 +861,13 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "97dc8fc98386", + "state": "df8accf1ced4", "effects": [ "e0a8ee1f3c00", "ed3a7d6bc894", "e445683fd6a5", - "ce455f0c9a54", - "85b99a2ca439", - "e969ced16929", - "a87cc5b1a6b1", - "15a350feeedb" + "71f882fa01cd", + "f2ebfa81caaf" ] } }, @@ -919,16 +880,13 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "97dc8fc98386", + "state": "df8accf1ced4", "effects": [ "e0a8ee1f3c00", "ed3a7d6bc894", "e445683fd6a5", - "ce455f0c9a54", - "85b99a2ca439", - "e969ced16929", - "a87cc5b1a6b1", - "15a350feeedb" + "71f882fa01cd", + "f2ebfa81caaf" ] } }, @@ -941,16 +899,13 @@ "mount": "eb79a9b3682a", "submit": "eb79a9b3682a" }, - "state": "97dc8fc98386", + "state": "df8accf1ced4", "effects": [ "e0a8ee1f3c00", "ed3a7d6bc894", "e445683fd6a5", - "ce455f0c9a54", - "85b99a2ca439", - "e969ced16929", - "a87cc5b1a6b1", - "15a350feeedb" + "71f882fa01cd", + "f2ebfa81caaf" ] } }, 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 b09cb97e195..6ff3348f61b 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.task-workspace-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 678c7a48336..10512d60f76 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-linear.status-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0d04a9255f6..88399aa7260 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-preflight.check-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9d57bdcf761..2949d967d3a 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f74d7ca08cb..b43c8a50d1d 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-context-ui.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 20f39baa7fb..c09a9be98ec 100644 --- a/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-settings.workspace-submit-settings.get-1.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 713a0cd34e6..0ee36cd5b7e 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-chunk-speech.dictation.chunk-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-chunk", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 93992ed711d..5e656faf135 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.finish-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 39e805f5e54..cb928c70011 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-session-speech.dictation.start-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b1883731c8f..3caa5ffe039 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.cancel-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8c206359f35..ac03c72ab06 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.dictation-start-speech.dictation.start-1.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1059071cc22..1f347e7343a 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.dictation.setup-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c4e5534d706..a264895a530 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.delete-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9edc4542c2a..78860b1fff4 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.download-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 398dc74a02a..fb78dd82c77 100644 --- a/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json +++ b/mobile/rpc-foundation/goldens/matrix-speech.setup-sheet-speech.models.list-1.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 60218c5419a..bf5456c1a34 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.addprreviewcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "7bf61d34ba5217f7c00925612bb17542f3db17e1298294ca3ed647cd46278745", "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 ff1206bc978..02d893e467c 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.prfilecontents-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "0186ae4ee9b3653fd9e7050a5316608a8e68f8bb463e1391862cdb3cd312676b", "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 c386a1c1d55..36f300f02cd 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "8f5a47f74635937c88584eeac40d2d9bec960823e7bf8f242e48575355be0d4e", "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 27bcab0864a..292d51f4384 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "c91ad2604cacc2b02ccd727333ba66275a27f783f3adb1faf64699ea0ffa67c2", "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 dd7f3b07006..b55a5361082 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-checks-files-github.setprfileviewed-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "984dd772f207f674d511d2711819855c7c6923d858ef87ea159842c337ed3ea0", "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 dccbcaab64f..2b560b7b666 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-github-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7b0c79b6db7..b9b0847009c 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-gitlab.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6bf9a45e5c7..00f26e25c21 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-comment-gitlab-mr-gitlab.addmrcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 76a3ff47a74..8617433c214 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-github-github.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c31f8158d09..e9bb661c9dc 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-gitlab-gitlab.workitemdetails-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0d4df872a14..689749a4403 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d34e141bb2a..287fe82a65b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-linear-linear.issuecomments-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bb061a8efa6..53f125e0509 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listassignableusers-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e3e5e17811f..ba7b04d0a10 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-detail-metadata-github.listlabels-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 25662dc58fa..71ee93d6094 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-merge-gitlab-gitlab.mergemr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-merge-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 df1add05eeb..07eb8e8a867 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-github-github.updatepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 abf2b370766..f20d2ef5bbd 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-gitlab.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9f8b2d52e71..56d01b11005 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-metadata-gitlab-mr-gitlab.updatemr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2c4c1aa1862..56b48d4438d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0131922c00b..653c0c3179b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 78b5413fa43..22f0effe093 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 07b60b96bbf..227793a0286 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-reply-merge-linear.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 44563ca38e4..ff54aab3beb 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e6e5a1a400c..e930f030583 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-review-github-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 871e0a3ee0a..7b214b31110 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-github.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 be7b4d363fc..c3ab18edf80 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-gitlab.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2c4d8fd54ba..1248a482d66 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.item-status-gitlab-mr-gitlab.updatemrstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f007309fd36..9060eb612d2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-connect-linear.connect-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-connect", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 065cadafc8d..334f30d3166 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ad0b0abebde..8a1abd8bb3a 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fd7770d84cd..a276cf1004b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-item-linear.getissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 61f95c9e04a..2d0231f54bd 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.listteams-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cbb11b077a3..08b2a576708 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.linear-team-context-linear.teamstates-1.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ce2ee31498f..ed46d5917c8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.reposlug-1.json @@ -3,11 +3,11 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "749f877ac0c08860f74fc56e34b07f51960dda5bd1fdcf9df847b5200bf67779", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "77b429e1066a877bb3c8513e89e42314bb974478385695ceb36dbaa7c57e654a", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, @@ -117,11 +117,20 @@ } } }, - "09b235c17bb0": { + "088b54714e03": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, @@ -137,32 +146,6 @@ } } }, - "135faf86ace7": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "error": "inner refused", - "ok": false - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "15f59ed83486": { "name": "github.repoSlug#1", "ordinal": 7, @@ -195,37 +178,49 @@ } } }, - "2113a0cc7708": { + "1ffa5b08cd27": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], + "cache": [], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "268181c644a1": { @@ -260,6 +255,25 @@ } } }, + "2689e3903f7b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, "291b7f3e420b": { "name": "github.repoSlug#1", "ordinal": 7, @@ -294,7 +308,73 @@ } } }, - "40b6e1288e8b": { + "3aa88d01ece7": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "$rpc": "null" + } + ], + [ + "repo-2", + { + "$rpc": "null" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "$rpc": "null" + } + }, + "467d1db5ad39": { + "name": "github.workItem#1", + "ordinal": 2, + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" + }, + "4a91480c91b6": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, "args": [ @@ -327,73 +407,21 @@ "id": "frame-2", "ok": true, "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } } } }, - "467d1db5ad39": { - "name": "github.workItem#1", - "ordinal": 2, - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, - "46e234697d93": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'toLowerCase')", - "isRpcDeliveryUnknown": false - } - }, - "4a3429622287": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "4eec4620374a": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "error": { - "message": "inner refused" - }, - "ok": false - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "4f523a012de1": { "name": "github.repoSlug#1", "ordinal": 7, @@ -429,43 +457,23 @@ } } }, - "54e10e591561": { - "name": "gitlab.workItemByPath#1", - "ordinal": 5, - "args": [ - { - "name": "method", - "value": "gitlab.workItemByPath" + "53a164add69c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" }, - { - "name": "params", - "value": { - "host": "gitlab.com", - "iid": 7, - "path": "group/project", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "iid": 7, - "title": "seven" - } - } + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "64b4674b65a8": { @@ -478,14 +486,56 @@ "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "731507dd2e23": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { + "7c0f7e60ac46": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "$rpc": "null" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "9270aeb7d9c6": { @@ -523,29 +573,64 @@ } } }, - "a091594f56e6": { + "97bec1f98b89": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [ [ "repo-1", { - "$rpc": "null" + "owner": "owner", + "repo": "repo" } ] ], "gitlab-path": { - "iid": 7, + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "seven" + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } } }, "ad8adb81a6c7": { @@ -609,76 +694,36 @@ } } }, - "bd533f6b0b40": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "bf2cabd50e5a": { - "name": "github.workItem#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.workItem" - }, - { - "name": "params", - "value": { - "number": 12, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, - "d48fa181d583": { + "c8c091106ead": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [ - [ - "repo-1", - { - "error": "refused" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } + "cache": [] }, "d7c0ded5ee0f": { "name": "github.repoSlug#2", @@ -720,53 +765,6 @@ } } }, - "e2af62b90b0b": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "$rpc": "null" - } - ], - [ - "repo-2", - { - "$rpc": "null" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "$rpc": "null" - } - }, - "e970eb27f5ca": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, "ec92741f4348": { "name": "github.repoSlug#1", "ordinal": 7, @@ -816,6 +814,99 @@ "name": "gitlab.workItemByPath#1", "ordinal": 6, "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\"}}" + }, + "f849aeca5336": { + "name": "gitlab.workItemByPath#1", + "ordinal": 5, + "args": [ + { + "name": "method", + "value": "gitlab.workItemByPath" + }, + { + "name": "params", + "value": { + "host": "gitlab.com", + "iid": 7, + "path": "group/project", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } + }, + "fa6ca8899e53": { + "name": "github.workItem#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.workItem" + }, + { + "name": "params", + "value": { + "number": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } } }, "recording": { @@ -824,54 +915,54 @@ { "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { - "sender": ["bf2cabd50e5a"], + "sender": ["fa6ca8899e53"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "731507dd2e23" + "by-number": "53a164add69c" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.prelude:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b"], + "sender": ["fa6ca8899e53", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23" + "by-number": "53a164add69c", + "by-slug": "53a164add69c" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.prelude:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "4a3429622287", + "state": "1ffa5b08cd27", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "2113a0cc7708", + "state": "97bec1f98b89", "effects": [] } }, @@ -879,9 +970,9 @@ "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "94d41597d82a", "ad8adb81a6c7" ], @@ -893,12 +984,12 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } }, @@ -906,9 +997,9 @@ "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "0576563ad84a", "ad8adb81a6c7" ], @@ -920,57 +1011,93 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "291b7f3e420b"], - "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], + "sender": [ + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", + "291b7f3e420b", + "ad8adb81a6c7" + ], + "payloads": [ + "467d1db5ad39", + "64b4674b65a8", + "f4d2080c6e99", + "72a59aa8bee1", + "d7c0ded5ee0f" + ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", - "repo-slug": "46e234697d93" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", + "repo-slug": "9270aeb7d9c6" }, - "state": "d48fa181d583", + "state": "7c0f7e60ac46", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "0875baed03d5"], - "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], + "sender": [ + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", + "0875baed03d5", + "ad8adb81a6c7" + ], + "payloads": [ + "467d1db5ad39", + "64b4674b65a8", + "f4d2080c6e99", + "72a59aa8bee1", + "d7c0ded5ee0f" + ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", - "repo-slug": "46e234697d93" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", + "repo-slug": "9270aeb7d9c6" }, - "state": "135faf86ace7", + "state": "7c0f7e60ac46", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "ec92741f4348"], - "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], + "sender": [ + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", + "ec92741f4348", + "ad8adb81a6c7" + ], + "payloads": [ + "467d1db5ad39", + "64b4674b65a8", + "f4d2080c6e99", + "72a59aa8bee1", + "d7c0ded5ee0f" + ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", - "repo-slug": "46e234697d93" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", + "repo-slug": "9270aeb7d9c6" }, - "state": "4eec4620374a", + "state": "7c0f7e60ac46", "effects": [] } }, @@ -978,9 +1105,9 @@ "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "4f523a012de1", "ad8adb81a6c7" ], @@ -992,12 +1119,12 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } }, @@ -1005,9 +1132,9 @@ "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "01ebbe1cc2d6", "ad8adb81a6c7" ], @@ -1019,27 +1146,27 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "b97e5d2e7180"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "b97e5d2e7180"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "ee20a1dc39e7" }, - "state": "e2af62b90b0b", + "state": "3aa88d01ece7", "effects": [] } }, @@ -1047,9 +1174,9 @@ "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "15f59ed83486", "ad8adb81a6c7" ], @@ -1061,12 +1188,12 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } }, @@ -1074,9 +1201,9 @@ "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { "sender": [ - "bf2cabd50e5a", - "40b6e1288e8b", - "54e10e591561", + "fa6ca8899e53", + "4a91480c91b6", + "f849aeca5336", "268181c644a1", "ad8adb81a6c7" ], @@ -1088,12 +1215,12 @@ "d7c0ded5ee0f" ], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "9270aeb7d9c6" }, - "state": "a091594f56e6", + "state": "7c0f7e60ac46", "effects": [] } } 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 d49d7db42d6..4562cda4529 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitem-1.json @@ -3,21 +3,30 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "2a11156b7b6d3cf0773c8dc02a72e126bc187dcf62ad7d1bf5f30d7b27192b03", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "8d58d134262cd828348bc3416f7208b51259dff9ea952eeceaab6e6dcfcfd96a", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "09b235c17bb0": { + "088b54714e03": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, @@ -33,49 +42,69 @@ } } }, - "2113a0cc7708": { + "1ffa5b08cd27": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], + "cache": [], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, - "21981303c684": { - "by-number": { - "$rpc": "null" - }, - "by-slug": { - "number": 12, + "2689e3903f7b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } }, "32a7c0ae7918": { "status": "rejected", @@ -87,6 +116,26 @@ "isRpcDeliveryUnknown": false } }, + "32df040f56fa": { + "by-number": { + "$rpc": "null" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [] + }, "3687ec0e447d": { "name": "github.workItem#1", "ordinal": 1, @@ -120,151 +169,39 @@ } } }, - "38e35cd6299a": { + "413b68da0556": { + "by-number": { + "$rpc": "null" + }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "3bae2da7492a": { - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } - } - }, - "3c03bbd195d8": { - "by-number": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, - "3e4f8a2833ba": { - "by-number": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "40b6e1288e8b": { - "name": "github.workItemByOwnerRepo#1", - "ordinal": 3, - "args": [ - { - "name": "method", - "value": "github.workItemByOwnerRepo" }, - { - "name": "params", - "value": { - "number": 12, - "owner": "owner", - "ownerRepo": "repo", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, - "4267f9cc3919": { - "by-number": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } }, "44db4346f965": { "name": "github.workItem#1", @@ -309,31 +246,52 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" }, - "46daeacd502c": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "refused", - "repoId": "repo-1" - } - }, - "4a3429622287": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" + "4a91480c91b6": { + "name": "github.workItemByOwnerRepo#1", + "ordinal": 3, + "args": [ + { + "name": "method", + "value": "github.workItemByOwnerRepo" + }, + { + "name": "params", + "value": { + "number": 12, + "owner": "owner", + "ownerRepo": "repo", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } } }, "4f2d43a2cc6c": { @@ -368,6 +326,25 @@ } } }, + "53a164add69c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, "54dbc839f20c": { "name": "github.workItem#1", "ordinal": 1, @@ -403,65 +380,6 @@ } } }, - "54e10e591561": { - "name": "gitlab.workItemByPath#1", - "ordinal": 5, - "args": [ - { - "name": "method", - "value": "gitlab.workItemByPath" - }, - { - "name": "params", - "value": { - "host": "gitlab.com", - "iid": 7, - "path": "group/project", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "iid": 7, - "title": "seven" - } - } - } - }, - "5b601868bb59": { - "by-number": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "5dda57fc20c6": { "name": "github.workItem#1", "ordinal": 1, @@ -538,6 +456,37 @@ "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" }, + "6c9c41d91800": { + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, "6f0019ab8190": { "name": "github.workItem#1", "ordinal": 1, @@ -576,24 +525,72 @@ "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "731507dd2e23": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { + "7df7e76a816d": { + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - } - }, - "73fe68f6a6fc": { - "by-number": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, + "7e1c5c1598dd": { + "by-number": { + "$rpc": "null" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } + } + }, "7e9dc68e1613": { "name": "github.workItem#1", "ordinal": 1, @@ -630,14 +627,37 @@ } } }, - "894b40a0b814": { + "8aa944d2f7a1": { + "cache": [] + }, + "97bec1f98b89": { "by-number": { - "$rpc": "null" - }, - "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [ [ @@ -649,9 +669,18 @@ ] ], "gitlab-path": { - "iid": 7, + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "seven" + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "repo-slug": { "displayName": "Repo", @@ -661,38 +690,6 @@ } } }, - "8aa944d2f7a1": { - "cache": [] - }, - "9dcdd903c10f": { - "by-number": { - "error": "refused", - "repoId": "repo-1" - }, - "cache": [] - }, - "9e9f15f7df58": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - } - }, - "a7f4472cdb70": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - } - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -739,59 +736,6 @@ } } }, - "ad658847a638": { - "by-number": { - "error": "refused", - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, - "b19c59c5ee88": { - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, - "b70f6ec811e0": { - "by-number": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -802,52 +746,6 @@ "isRpcDeliveryUnknown": false } }, - "bd533f6b0b40": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "bf2cabd50e5a": { - "name": "github.workItem#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.workItem" - }, - { - "name": "params", - "value": { - "number": 12, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, "c16ca7965934": { "name": "github.workItem#1", "ordinal": 1, @@ -890,33 +788,6 @@ }, "cache": [] }, - "c57df09a398c": { - "by-number": { - "error": "refused", - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "c6646b64fc57": { - "by-number": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "cache": [] - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -927,34 +798,83 @@ "isRpcDeliveryUnknown": true } }, - "c9a1abec42e3": { + "c8c091106ead": { "by-number": { - "$rpc": "null" - }, - "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "d65cceb204a7": { - "by-number": { - "error": "refused", - "repoId": "repo-1" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, + "cbda553ec0a3": { + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } + } + }, "db48adb41100": { "name": "github.repoSlug#1", "ordinal": 7, @@ -990,54 +910,17 @@ } } }, - "de772915aa03": { - "by-number": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } + "e8409d747ecd": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (github.workItem)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" } }, - "e970eb27f5ca": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, "ee20a1dc39e7": { "status": "fulfilled", "startedAt": 0, @@ -1060,6 +943,99 @@ "name": "gitlab.workItemByPath#1", "ordinal": 6, "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\"}}" + }, + "f849aeca5336": { + "name": "gitlab.workItemByPath#1", + "ordinal": 5, + "args": [ + { + "name": "method", + "value": "gitlab.workItemByPath" + }, + { + "name": "params", + "value": { + "host": "gitlab.com", + "iid": 7, + "path": "group/project", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } + }, + "fa6ca8899e53": { + "name": "github.workItem#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.workItem" + }, + { + "name": "params", + "value": { + "number": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } } }, "recording": { @@ -1068,54 +1044,54 @@ { "id": "tw-paste-lookup-resolved.normal:by-number", "observation": { - "sender": ["bf2cabd50e5a"], + "sender": ["fa6ca8899e53"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "731507dd2e23" + "by-number": "53a164add69c" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b"], + "sender": ["fa6ca8899e53", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23" + "by-number": "53a164add69c", + "by-slug": "53a164add69c" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "4a3429622287", + "state": "1ffa5b08cd27", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "2113a0cc7708", + "state": "97bec1f98b89", "effects": [] } }, @@ -1125,51 +1101,51 @@ "sender": ["4f2d43a2cc6c"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "ee20a1dc39e7" + "by-number": "e8409d747ecd" }, - "state": "c392cc9aa63a", + "state": "8aa944d2f7a1", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:by-slug", "observation": { - "sender": ["4f2d43a2cc6c", "40b6e1288e8b"], + "sender": ["4f2d43a2cc6c", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c" }, - "state": "21981303c684", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { - "sender": ["4f2d43a2cc6c", "40b6e1288e8b", "54e10e591561"], + "sender": ["4f2d43a2cc6c", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "c9a1abec42e3", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { - "sender": ["4f2d43a2cc6c", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["4f2d43a2cc6c", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "894b40a0b814", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1188,42 +1164,42 @@ { "id": "tw-paste-lookup-resolved.result-null:by-slug", "observation": { - "sender": ["5dda57fc20c6", "40b6e1288e8b"], + "sender": ["5dda57fc20c6", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "21981303c684", + "state": "32df040f56fa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { - "sender": ["5dda57fc20c6", "40b6e1288e8b", "54e10e591561"], + "sender": ["5dda57fc20c6", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "c9a1abec42e3", + "state": "413b68da0556", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { - "sender": ["5dda57fc20c6", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["5dda57fc20c6", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "ee20a1dc39e7", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "894b40a0b814", + "state": "7e1c5c1598dd", "effects": [] } }, @@ -1233,51 +1209,51 @@ "sender": ["54dbc839f20c"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "46daeacd502c" + "by-number": "e8409d747ecd" }, - "state": "9dcdd903c10f", + "state": "8aa944d2f7a1", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:by-slug", "observation": { - "sender": ["54dbc839f20c", "40b6e1288e8b"], + "sender": ["54dbc839f20c", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "46daeacd502c", - "by-slug": "731507dd2e23" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c" }, - "state": "d65cceb204a7", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { - "sender": ["54dbc839f20c", "40b6e1288e8b", "54e10e591561"], + "sender": ["54dbc839f20c", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "46daeacd502c", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "c57df09a398c", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { - "sender": ["54dbc839f20c", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["54dbc839f20c", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "46daeacd502c", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "ad658847a638", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1287,51 +1263,51 @@ "sender": ["aa5e188729d1"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "9e9f15f7df58" + "by-number": "e8409d747ecd" }, - "state": "73fe68f6a6fc", + "state": "8aa944d2f7a1", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:by-slug", "observation": { - "sender": ["aa5e188729d1", "40b6e1288e8b"], + "sender": ["aa5e188729d1", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "9e9f15f7df58", - "by-slug": "731507dd2e23" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c" }, - "state": "b70f6ec811e0", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { - "sender": ["aa5e188729d1", "40b6e1288e8b", "54e10e591561"], + "sender": ["aa5e188729d1", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "9e9f15f7df58", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "3e4f8a2833ba", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { - "sender": ["aa5e188729d1", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["aa5e188729d1", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "9e9f15f7df58", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3c03bbd195d8", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1341,51 +1317,51 @@ "sender": ["44db4346f965"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "a7f4472cdb70" + "by-number": "e8409d747ecd" }, - "state": "c6646b64fc57", + "state": "8aa944d2f7a1", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:by-slug", "observation": { - "sender": ["44db4346f965", "40b6e1288e8b"], + "sender": ["44db4346f965", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "a7f4472cdb70", - "by-slug": "731507dd2e23" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c" }, - "state": "4267f9cc3919", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { - "sender": ["44db4346f965", "40b6e1288e8b", "54e10e591561"], + "sender": ["44db4346f965", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "a7f4472cdb70", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "5b601868bb59", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { - "sender": ["44db4346f965", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["44db4346f965", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "a7f4472cdb70", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "e8409d747ecd", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "de772915aa03", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1404,42 +1380,42 @@ { "id": "tw-paste-lookup-resolved.outer-refused:by-slug", "observation": { - "sender": ["c16ca7965934", "40b6e1288e8b"], + "sender": ["c16ca7965934", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "32a7c0ae7918", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "b19c59c5ee88", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { - "sender": ["c16ca7965934", "40b6e1288e8b", "54e10e591561"], + "sender": ["c16ca7965934", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "32a7c0ae7918", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "38e35cd6299a", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { - "sender": ["c16ca7965934", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["c16ca7965934", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "32a7c0ae7918", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3bae2da7492a", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1458,42 +1434,42 @@ { "id": "tw-paste-lookup-resolved.outer-refused-no-message:by-slug", "observation": { - "sender": ["7e9dc68e1613", "40b6e1288e8b"], + "sender": ["7e9dc68e1613", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "f3b516f62081", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "b19c59c5ee88", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { - "sender": ["7e9dc68e1613", "40b6e1288e8b", "54e10e591561"], + "sender": ["7e9dc68e1613", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "f3b516f62081", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "38e35cd6299a", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { - "sender": ["7e9dc68e1613", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["7e9dc68e1613", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "f3b516f62081", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3bae2da7492a", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1512,42 +1488,42 @@ { "id": "tw-paste-lookup-resolved.method-not-found:by-slug", "observation": { - "sender": ["62a0a6502c89", "40b6e1288e8b"], + "sender": ["62a0a6502c89", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "b948e8307e81", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "b19c59c5ee88", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { - "sender": ["62a0a6502c89", "40b6e1288e8b", "54e10e591561"], + "sender": ["62a0a6502c89", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "b948e8307e81", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "38e35cd6299a", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { - "sender": ["62a0a6502c89", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["62a0a6502c89", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "b948e8307e81", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3bae2da7492a", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1566,42 +1542,42 @@ { "id": "tw-paste-lookup-resolved.transport-rejection:by-slug", "observation": { - "sender": ["3687ec0e447d", "40b6e1288e8b"], + "sender": ["3687ec0e447d", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "a947768bc0ed", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "b19c59c5ee88", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { - "sender": ["3687ec0e447d", "40b6e1288e8b", "54e10e591561"], + "sender": ["3687ec0e447d", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "a947768bc0ed", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "38e35cd6299a", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { - "sender": ["3687ec0e447d", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["3687ec0e447d", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "a947768bc0ed", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3bae2da7492a", + "state": "cbda553ec0a3", "effects": [] } }, @@ -1620,42 +1596,42 @@ { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:by-slug", "observation": { - "sender": ["6f0019ab8190", "40b6e1288e8b"], + "sender": ["6f0019ab8190", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { "by-number": "c7584e82c72f", - "by-slug": "731507dd2e23" + "by-slug": "53a164add69c" }, - "state": "b19c59c5ee88", + "state": "7df7e76a816d", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { - "sender": ["6f0019ab8190", "40b6e1288e8b", "54e10e591561"], + "sender": ["6f0019ab8190", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { "by-number": "c7584e82c72f", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "38e35cd6299a", + "state": "6c9c41d91800", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { - "sender": ["6f0019ab8190", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["6f0019ab8190", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { "by-number": "c7584e82c72f", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "3bae2da7492a", + "state": "cbda553ec0a3", "effects": [] } } 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 3b995af69c7..8518c9bc390 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-github.workitembyownerrepo-1.json @@ -3,16 +3,62 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "4c2560ac236a1cc1ef239b7c97a0436e115b19a6ad3ddd96b3b77970aa631ae3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "4dc2c4cfc9c29ee998796980a7ae6ded99a39f17e143e3db588239bc224b2cc5", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "015cb9515a65": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } + } + }, "01aab95a62ef": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -49,46 +95,20 @@ } } }, - "043383809888": { + "088b54714e03": { "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } - } - }, - "09b235c17bb0": { - "by-number": { + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, @@ -104,65 +124,68 @@ } } }, - "1930e5b10aa4": { + "1ffa5b08cd27": { "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } - } - }, - "2113a0cc7708": { - "by-number": { + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], + "cache": [], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, + "2689e3903f7b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "26ed2adcbac5": { @@ -200,21 +223,6 @@ } } }, - "27ddfa6b2efa": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "cache": [] - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -225,55 +233,43 @@ "isRpcDeliveryUnknown": false } }, - "36efe7e0f4f2": { + "40b412aacafa": { "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "refused", - "repoId": "repo-1" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } - } - }, - "3c4b264bef1c": { - "by-number": { + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "$rpc": "null" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [], "gitlab-path": { - "iid": 7, + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "seven" + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, - "40b6e1288e8b": { + "467d1db5ad39": { + "name": "github.workItem#1", + "ordinal": 2, + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" + }, + "4a91480c91b6": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, "args": [ @@ -306,57 +302,21 @@ "id": "frame-2", "ok": true, "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } } } }, - "467d1db5ad39": { - "name": "github.workItem#1", - "ordinal": 2, - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, - "46daeacd502c": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "refused", - "repoId": "repo-1" - } - }, - "49054e5c9fe8": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "4a3429622287": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "5286143b0092": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -393,43 +353,23 @@ } } }, - "54e10e591561": { - "name": "gitlab.workItemByPath#1", - "ordinal": 5, - "args": [ - { - "name": "method", - "value": "gitlab.workItemByPath" + "53a164add69c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" }, - { - "name": "params", - "value": { - "host": "gitlab.com", - "iid": 7, - "path": "group/project", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "iid": 7, - "title": "seven" - } - } + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "5acbe401b128": { @@ -476,43 +416,24 @@ "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" }, - "6ec2e8b6f903": { + "699a82c0cd35": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { "$rpc": "null" }, - "cache": [] - }, - "72a59aa8bee1": { - "name": "github.repoSlug#1", - "ordinal": 8, - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" - }, - "731507dd2e23": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - } - }, - "873ee3388e70": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, "cache": [ [ "repo-1", @@ -523,9 +444,18 @@ ] ], "gitlab-path": { - "iid": 7, + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, "repoId": "repo-1", - "title": "seven" + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "repo-slug": { "displayName": "Repo", @@ -535,6 +465,31 @@ } } }, + "72a59aa8bee1": { + "name": "github.repoSlug#1", + "ordinal": 8, + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" + }, + "8fd2cb38b7a6": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "$rpc": "null" + }, + "cache": [] + }, "92476b76612b": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -574,24 +529,6 @@ } } }, - "92bb68fe4007": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "95048dc332cc": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -669,26 +606,109 @@ } } }, - "9e9f15f7df58": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" + "97bec1f98b89": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } } }, - "a7f4472cdb70": { - "status": "fulfilled", + "9881b32fa23e": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "$rpc": "null" + }, + "cache": [], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, + "99eb0aa05631": { + "status": "rejected", "startedAt": 0, "settledAt": 0, - "value": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (github.workItemByOwnerRepo)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" } }, "a947768bc0ed": { @@ -701,18 +721,6 @@ "isRpcDeliveryUnknown": true } }, - "ab24157c895e": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "refused", - "repoId": "repo-1" - }, - "cache": [] - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -723,83 +731,6 @@ "isRpcDeliveryUnknown": false } }, - "bd533f6b0b40": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "bf2cabd50e5a": { - "name": "github.workItem#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.workItem" - }, - { - "name": "params", - "value": { - "number": 12, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, - "bf5c299a7c14": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "$rpc": "null" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, "bfef354a374c": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -841,23 +772,6 @@ } } }, - "c2fb4513d62f": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "refused", - "repoId": "repo-1" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -868,6 +782,37 @@ "isRpcDeliveryUnknown": true } }, + "c8c091106ead": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [] + }, "db48adb41100": { "name": "github.repoSlug#1", "ordinal": 7, @@ -903,52 +848,6 @@ } } }, - "dffa1578b2eb": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "e970eb27f5ca": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, - "ebc4e477d2ce": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "cache": [] - }, "ecc8c0927251": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, @@ -1048,6 +947,99 @@ } } } + }, + "f849aeca5336": { + "name": "gitlab.workItemByPath#1", + "ordinal": 5, + "args": [ + { + "name": "method", + "value": "gitlab.workItemByPath" + }, + { + "name": "params", + "value": { + "host": "gitlab.com", + "iid": 7, + "path": "group/project", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } + }, + "fa6ca8899e53": { + "name": "github.workItem#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.workItem" + }, + { + "name": "params", + "value": { + "number": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } } }, "recording": { @@ -1056,474 +1048,474 @@ { "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { - "sender": ["bf2cabd50e5a"], + "sender": ["fa6ca8899e53"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "731507dd2e23" + "by-number": "53a164add69c" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b"], + "sender": ["fa6ca8899e53", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23" + "by-number": "53a164add69c", + "by-slug": "53a164add69c" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "4a3429622287", + "state": "1ffa5b08cd27", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "2113a0cc7708", + "state": "97bec1f98b89", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "26ed2adcbac5"], + "sender": ["fa6ca8899e53", "26ed2adcbac5"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "ee20a1dc39e7" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631" }, - "state": "6ec2e8b6f903", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "26ed2adcbac5", "54e10e591561"], + "sender": ["fa6ca8899e53", "26ed2adcbac5", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "ee20a1dc39e7", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b" }, - "state": "3c4b264bef1c", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "26ed2adcbac5", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "26ed2adcbac5", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "ee20a1dc39e7", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "bf5c299a7c14", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "f53b2d16511c"], + "sender": ["fa6ca8899e53", "f53b2d16511c"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "ee20a1dc39e7" }, - "state": "6ec2e8b6f903", + "state": "8fd2cb38b7a6", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "f53b2d16511c", "54e10e591561"], + "sender": ["fa6ca8899e53", "f53b2d16511c", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "ee20a1dc39e7", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "3c4b264bef1c", + "state": "9881b32fa23e", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "f53b2d16511c", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "f53b2d16511c", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "ee20a1dc39e7", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "bf5c299a7c14", + "state": "699a82c0cd35", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "95048dc332cc"], + "sender": ["fa6ca8899e53", "95048dc332cc"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "46daeacd502c" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631" }, - "state": "ab24157c895e", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "95048dc332cc", "54e10e591561"], + "sender": ["fa6ca8899e53", "95048dc332cc", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "46daeacd502c", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b" }, - "state": "c2fb4513d62f", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "95048dc332cc", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "95048dc332cc", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "46daeacd502c", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "36efe7e0f4f2", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "96b9135240ec"], + "sender": ["fa6ca8899e53", "96b9135240ec"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "9e9f15f7df58" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631" }, - "state": "ebc4e477d2ce", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "96b9135240ec", "54e10e591561"], + "sender": ["fa6ca8899e53", "96b9135240ec", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "9e9f15f7df58", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b" }, - "state": "92bb68fe4007", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "96b9135240ec", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "96b9135240ec", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "9e9f15f7df58", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "873ee3388e70", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "bfef354a374c"], + "sender": ["fa6ca8899e53", "bfef354a374c"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "a7f4472cdb70" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631" }, - "state": "27ddfa6b2efa", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "bfef354a374c", "54e10e591561"], + "sender": ["fa6ca8899e53", "bfef354a374c", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "a7f4472cdb70", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b" }, - "state": "dffa1578b2eb", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "bfef354a374c", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "bfef354a374c", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "a7f4472cdb70", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "99eb0aa05631", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "043383809888", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "ecc8c0927251"], + "sender": ["fa6ca8899e53", "ecc8c0927251"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "32a7c0ae7918" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "ecc8c0927251", "54e10e591561"], + "sender": ["fa6ca8899e53", "ecc8c0927251", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "32a7c0ae7918", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "49054e5c9fe8", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "ecc8c0927251", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "ecc8c0927251", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "32a7c0ae7918", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "1930e5b10aa4", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "5acbe401b128"], + "sender": ["fa6ca8899e53", "5acbe401b128"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "f3b516f62081" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "5acbe401b128", "54e10e591561"], + "sender": ["fa6ca8899e53", "5acbe401b128", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "f3b516f62081", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "49054e5c9fe8", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "5acbe401b128", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "5acbe401b128", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "f3b516f62081", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "1930e5b10aa4", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "92476b76612b"], + "sender": ["fa6ca8899e53", "92476b76612b"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "b948e8307e81" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "92476b76612b", "54e10e591561"], + "sender": ["fa6ca8899e53", "92476b76612b", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "b948e8307e81", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "49054e5c9fe8", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "92476b76612b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "92476b76612b", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "b948e8307e81", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "1930e5b10aa4", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "01aab95a62ef"], + "sender": ["fa6ca8899e53", "01aab95a62ef"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "a947768bc0ed" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "01aab95a62ef", "54e10e591561"], + "sender": ["fa6ca8899e53", "01aab95a62ef", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "a947768bc0ed", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "49054e5c9fe8", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "01aab95a62ef", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "01aab95a62ef", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "a947768bc0ed", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "1930e5b10aa4", + "state": "015cb9515a65", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "5286143b0092"], + "sender": ["fa6ca8899e53", "5286143b0092"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "c7584e82c72f" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "5286143b0092", "54e10e591561"], + "sender": ["fa6ca8899e53", "5286143b0092", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "c7584e82c72f", - "gitlab-path": "bd533f6b0b40" + "gitlab-path": "2689e3903f7b" }, - "state": "49054e5c9fe8", + "state": "40b412aacafa", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "5286143b0092", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "5286143b0092", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", + "by-number": "53a164add69c", "by-slug": "c7584e82c72f", - "gitlab-path": "bd533f6b0b40", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "1930e5b10aa4", + "state": "015cb9515a65", "effects": [] } } 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 f8cffd03e2a..f6fb97019d1 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.paste-lookup-gitlab.workitembypath-1.json @@ -3,11 +3,11 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "ab5511fa34181dc9de590df2fe57a0d061a261e7b204a6ef830c03bc53923d65", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "d622fc252f4e2e1d2e244d8781b260ed6e42dee572b8d2fd39d6c3b49baae04a", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, @@ -51,45 +51,67 @@ } } }, - "06c1311be9ff": { + "088b54714e03": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "$rpc": "null" - } - }, - "09b235c17bb0": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, - "0b3a62a33eb9": { + "0e476f0360cd": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [], - "gitlab-path": { - "error": "refused", - "repoId": "repo-1" + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } } }, "0e9d6525a582": { @@ -104,16 +126,98 @@ } } }, - "2113a0cc7708": { + "1ffa5b08cd27": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, + "2689e3903f7b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, + "29f972110a70": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [ [ @@ -125,9 +229,7 @@ ] ], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" + "$rpc": "null" }, "repo-slug": { "displayName": "Repo", @@ -137,24 +239,6 @@ } } }, - "237ac027130f": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - } - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -165,59 +249,11 @@ "isRpcDeliveryUnknown": false } }, - "40b6e1288e8b": { - "name": "github.workItemByOwnerRepo#1", - "ordinal": 3, - "args": [ - { - "name": "method", - "value": "github.workItemByOwnerRepo" - }, - { - "name": "params", - "value": { - "number": 12, - "owner": "owner", - "ownerRepo": "repo", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, "467d1db5ad39": { "name": "github.workItem#1", "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" }, - "46daeacd502c": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "refused", - "repoId": "repo-1" - } - }, "4a0afb59e862": { "name": "gitlab.workItemByPath#1", "ordinal": 5, @@ -253,38 +289,20 @@ } } }, - "4a3429622287": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "54e10e591561": { - "name": "gitlab.workItemByPath#1", - "ordinal": 5, + "4a91480c91b6": { + "name": "github.workItemByOwnerRepo#1", + "ordinal": 3, "args": [ { "name": "method", - "value": "gitlab.workItemByPath" + "value": "github.workItemByOwnerRepo" }, { "name": "params", "value": { - "host": "gitlab.com", - "iid": 7, - "path": "group/project", + "number": 12, + "owner": "owner", + "ownerRepo": "repo", "repo": "id:repo-1", "type": "issue" } @@ -301,122 +319,53 @@ "startedAt": 0, "settledAt": 0, "value": { - "id": "frame-3", + "id": "frame-2", "ok": true, "result": { - "iid": 7, - "title": "seven" + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } } } }, + "53a164add69c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, "64b4674b65a8": { "name": "github.workItemByOwnerRepo#1", "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItemByOwnerRepo\",\"params\":{\"repo\":\"id:repo-1\",\"owner\":\"owner\",\"ownerRepo\":\"repo\",\"number\":12,\"type\":\"issue\"}}" }, - "6945ba429114": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "error": "refused", - "repoId": "repo-1" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, - "70f924b6a03a": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, "72a59aa8bee1": { "name": "github.repoSlug#1", "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "731507dd2e23": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - } - }, - "754e655d6508": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - } - }, "78414560c302": { "name": "gitlab.workItemByPath#1", "ordinal": 5, @@ -456,34 +405,6 @@ } } }, - "7a02e1f7b185": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, "88ab39f43498": { "name": "gitlab.workItemByPath#1", "ordinal": 5, @@ -556,6 +477,66 @@ } } }, + "97bec1f98b89": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } + } + }, "9e4a40ced7f3": { "name": "gitlab.workItemByPath#1", "ordinal": 5, @@ -595,59 +576,6 @@ } } }, - "9e9f15f7df58": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - } - }, - "a1e6f2b40722": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "$rpc": "null" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, - "a7f4472cdb70": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": { - "message": "inner refused" - }, - "ok": false, - "repoId": "repo-1" - } - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -697,6 +625,17 @@ } } }, + "b57c80c16379": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (gitlab.workItemByPath)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -746,52 +685,6 @@ } } }, - "bd533f6b0b40": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "bf2cabd50e5a": { - "name": "github.workItem#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.workItem" - }, - { - "name": "params", - "value": { - "number": 12, - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } - }, "c7584e82c72f": { "status": "rejected", "startedAt": 0, @@ -802,6 +695,37 @@ "isRpcDeliveryUnknown": true } }, + "c8c091106ead": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [] + }, "d1aaaea74280": { "name": "gitlab.workItemByPath#1", "ordinal": 5, @@ -843,39 +767,6 @@ } } }, - "d1f460d3c414": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], - "gitlab-path": { - "error": "inner refused", - "ok": false, - "repoId": "repo-1" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { - "$rpc": "null" - } - } - }, "db48adb41100": { "name": "github.repoSlug#1", "ordinal": 7, @@ -911,19 +802,6 @@ } } }, - "e970eb27f5ca": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, "ee20a1dc39e7": { "status": "fulfilled", "startedAt": 0, @@ -984,6 +862,133 @@ "name": "gitlab.workItemByPath#1", "ordinal": 6, "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\"}}" + }, + "f849aeca5336": { + "name": "gitlab.workItemByPath#1", + "ordinal": 5, + "args": [ + { + "name": "method", + "value": "gitlab.workItemByPath" + }, + { + "name": "params", + "value": { + "host": "gitlab.com", + "iid": 7, + "path": "group/project", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } + }, + "f9647eec28d3": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [], + "gitlab-path": { + "$rpc": "null" + } + }, + "fa6ca8899e53": { + "name": "github.workItem#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.workItem" + }, + { + "name": "params", + "value": { + "number": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } } }, "recording": { @@ -992,344 +997,344 @@ { "id": "tw-paste-lookup-resolved.prelude:by-number", "observation": { - "sender": ["bf2cabd50e5a"], + "sender": ["fa6ca8899e53"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "731507dd2e23" + "by-number": "53a164add69c" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "tw-paste-lookup-resolved.prelude:by-slug", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b"], + "sender": ["fa6ca8899e53", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23" + "by-number": "53a164add69c", + "by-slug": "53a164add69c" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "4a3429622287", + "state": "1ffa5b08cd27", "effects": [] } }, { "id": "tw-paste-lookup-resolved.normal:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "2113a0cc7708", + "state": "97bec1f98b89", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "4a0afb59e862"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "4a0afb59e862"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "ee20a1dc39e7" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379" }, - "state": "06c1311be9ff", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-absent:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "4a0afb59e862", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "4a0afb59e862", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "ee20a1dc39e7", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379", "repo-slug": "0e9d6525a582" }, - "state": "a1e6f2b40722", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "efa16d03362c"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "efa16d03362c"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "ee20a1dc39e7" }, - "state": "06c1311be9ff", + "state": "f9647eec28d3", "effects": [] } }, { "id": "tw-paste-lookup-resolved.result-null:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "efa16d03362c", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "efa16d03362c", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "ee20a1dc39e7", "repo-slug": "0e9d6525a582" }, - "state": "a1e6f2b40722", + "state": "29f972110a70", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "0674893a13b7"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "0674893a13b7"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "46daeacd502c" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379" }, - "state": "0b3a62a33eb9", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-ok-missing:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "0674893a13b7", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "0674893a13b7", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "46daeacd502c", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379", "repo-slug": "0e9d6525a582" }, - "state": "6945ba429114", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "aac0757d4522"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "aac0757d4522"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "9e9f15f7df58" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379" }, - "state": "237ac027130f", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-string-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "aac0757d4522", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "aac0757d4522", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "9e9f15f7df58", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379", "repo-slug": "0e9d6525a582" }, - "state": "d1f460d3c414", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "d1aaaea74280"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "d1aaaea74280"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "a7f4472cdb70" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379" }, - "state": "754e655d6508", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.inner-false-object-error:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "d1aaaea74280", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "d1aaaea74280", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "a7f4472cdb70", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "b57c80c16379", "repo-slug": "0e9d6525a582" }, - "state": "70f924b6a03a", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "9e4a40ced7f3"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "9e4a40ced7f3"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "32a7c0ae7918" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "9e4a40ced7f3", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "9e4a40ced7f3", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "32a7c0ae7918", "repo-slug": "0e9d6525a582" }, - "state": "7a02e1f7b185", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "b962c6108c5e"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "b962c6108c5e"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "f3b516f62081" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.outer-refused-no-message:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "b962c6108c5e", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "b962c6108c5e", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "f3b516f62081", "repo-slug": "0e9d6525a582" }, - "state": "7a02e1f7b185", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "78414560c302"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "78414560c302"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "b948e8307e81" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.method-not-found:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "78414560c302", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "78414560c302", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "b948e8307e81", "repo-slug": "0e9d6525a582" }, - "state": "7a02e1f7b185", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "973ee70fb70a"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "973ee70fb70a"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "a947768bc0ed" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "973ee70fb70a", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "973ee70fb70a", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "a947768bc0ed", "repo-slug": "0e9d6525a582" }, - "state": "7a02e1f7b185", + "state": "0e476f0360cd", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "88ab39f43498"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "88ab39f43498"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "c7584e82c72f" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "tw-paste-lookup-resolved.transport-rejection-no-message:repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "88ab39f43498", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "88ab39f43498", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", "gitlab-path": "c7584e82c72f", "repo-slug": "0e9d6525a582" }, - "state": "7a02e1f7b185", + "state": "0e476f0360cd", "effects": [] } } 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 7515cdcd59a..aff7fe40e30 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listaccessible-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7c16d49ffeace5c689309316da6e4638fa1b70d3ef52a78d27db934ae56cf64d", "platform": "darwin", @@ -570,16 +570,6 @@ } } }, - "7868f9428edf": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'ok')", - "isRpcDeliveryUnknown": false - } - }, "7a9df0d1a484": { "name": "githubProjectLoading", "ordinal": 25, @@ -810,6 +800,17 @@ "isRpcDeliveryUnknown": true } }, + "aaf09e2731f5": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (github.project.listAccessible)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "b0c25dac9d8e": { "name": "github.project.listViews#2", "ordinal": 26, @@ -1083,16 +1084,6 @@ "ordinal": 24, "value": "" }, - "db45b655b685": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'ok')", - "isRpcDeliveryUnknown": false - } - }, "dfe16215433b": { "name": "github.project.listAccessible#1", "ordinal": 3, @@ -1483,7 +1474,7 @@ "payloads": ["b42c8edc0d53"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "db45b655b685" + "projects-0": "aaf09e2731f5" }, "state": "147d0c98fb46", "effects": ["2085118de92f", "a5a3530ec11c"] @@ -1496,7 +1487,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "db45b655b685", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", @@ -1510,7 +1501,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6", "2423ca7008fd"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "db45b655b685", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, @@ -1547,7 +1538,7 @@ ], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "db45b655b685", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" @@ -1586,7 +1577,7 @@ "payloads": ["b42c8edc0d53"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "7868f9428edf" + "projects-0": "aaf09e2731f5" }, "state": "147d0c98fb46", "effects": ["2085118de92f", "a5a3530ec11c"] @@ -1599,7 +1590,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "7868f9428edf", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", @@ -1613,7 +1604,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6", "2423ca7008fd"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "7868f9428edf", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, @@ -1650,7 +1641,7 @@ ], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "7868f9428edf", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" @@ -1689,7 +1680,7 @@ "payloads": ["b42c8edc0d53"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081" + "projects-0": "aaf09e2731f5" }, "state": "147d0c98fb46", "effects": ["2085118de92f", "a5a3530ec11c"] @@ -1702,7 +1693,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", @@ -1716,7 +1707,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6", "2423ca7008fd"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, @@ -1753,7 +1744,7 @@ ], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" @@ -1792,7 +1783,7 @@ "payloads": ["b42c8edc0d53"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081" + "projects-0": "aaf09e2731f5" }, "state": "147d0c98fb46", "effects": ["2085118de92f", "a5a3530ec11c"] @@ -1805,7 +1796,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb" }, "state": "0e76d492b4f4", @@ -1819,7 +1810,7 @@ "payloads": ["b42c8edc0d53", "a2a600cf1ed6", "2423ca7008fd"], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, @@ -1856,7 +1847,7 @@ ], "settlements": { "mount": "eb79a9b3682a", - "projects-0": "f3b516f62081", + "projects-0": "aaf09e2731f5", "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a", "paste-3": "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 4ffb7dc6896..37b01bbe17b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "c5cc9a11a75a86780195be7d1055d1064c8aba78bb8e4e8bbdf033409c2b2aa5", "platform": "darwin", @@ -132,6 +132,17 @@ } } }, + "10e9934ad7b2": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (github.project.listViews)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "15cb97c93333": { "name": "github.project.listViews#1", "ordinal": 8, @@ -621,16 +632,6 @@ "ordinal": 25, "value": "" }, - "7868f9428edf": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'ok')", - "isRpcDeliveryUnknown": false - } - }, "7a9df0d1a484": { "name": "githubProjectLoading", "ordinal": 25, @@ -1075,16 +1076,6 @@ } } }, - "db45b655b685": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'ok')", - "isRpcDeliveryUnknown": false - } - }, "dc8dd7739c49": { "name": "githubProjectPasteInput", "ordinal": 22, @@ -1395,7 +1386,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "db45b655b685" + "views-1": "10e9934ad7b2" }, "state": "ff43b5ec92a9", "effects": ["2085118de92f", "a5a3530ec11c", "685bc2bda05d", "170fad8cb36b"] @@ -1409,7 +1400,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "db45b655b685", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a" }, "state": "2ab1b35ff194", @@ -1447,7 +1438,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "db45b655b685", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, @@ -1487,7 +1478,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "7868f9428edf" + "views-1": "10e9934ad7b2" }, "state": "ff43b5ec92a9", "effects": ["2085118de92f", "a5a3530ec11c", "685bc2bda05d", "170fad8cb36b"] @@ -1501,7 +1492,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "7868f9428edf", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a" }, "state": "2ab1b35ff194", @@ -1539,7 +1530,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "7868f9428edf", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, @@ -1579,7 +1570,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081" + "views-1": "10e9934ad7b2" }, "state": "ff43b5ec92a9", "effects": ["2085118de92f", "a5a3530ec11c", "685bc2bda05d", "170fad8cb36b"] @@ -1593,7 +1584,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a" }, "state": "2ab1b35ff194", @@ -1631,7 +1622,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, @@ -1671,7 +1662,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081" + "views-1": "10e9934ad7b2" }, "state": "ff43b5ec92a9", "effects": ["2085118de92f", "a5a3530ec11c", "685bc2bda05d", "170fad8cb36b"] @@ -1685,7 +1676,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a" }, "state": "2ab1b35ff194", @@ -1723,7 +1714,7 @@ "settlements": { "mount": "eb79a9b3682a", "projects-0": "eb79a9b3682a", - "views-1": "f3b516f62081", + "views-1": "10e9934ad7b2", "table-2": "eb79a9b3682a", "paste-3": "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 e97b0153871..6c7b125784e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.listviews-2.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "7f748bb55df907bba315ea6899c585837d97fa0ea9b312330cf35d95bda87bd1", "platform": "darwin", @@ -343,6 +343,44 @@ "ordinal": 29, "value": "Connection closed" }, + "50c2d0683abb": { + "error": "The host sent a reply this app could not read (github.project.listViews)", + "loading": false, + "pasteError": "", + "projects": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "table": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "views": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ] + }, "512d99654670": { "name": "githubProjectError", "ordinal": 29, @@ -481,11 +519,6 @@ } ] }, - "714a5fb133aa": { - "name": "githubProjectError", - "ordinal": 29, - "value": "Cannot read properties of null (reading 'ok')" - }, "74ace6b26c7d": { "name": "github.project.listViews#2", "ordinal": 27, @@ -721,49 +754,6 @@ } ] }, - "a250c57b1330": { - "name": "githubProjectError", - "ordinal": 29, - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "a3fbce1fcf8a": { - "error": "Cannot read properties of undefined (reading 'ok')", - "loading": false, - "pasteError": "", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "a4a1ff5df287": { "name": "githubProjectPasteBusy", "ordinal": 18, @@ -965,6 +955,11 @@ } ] }, + "bff57ba49c8b": { + "name": "githubProjectError", + "ordinal": 29, + "value": "The host sent a reply this app could not read (github.project.listViews)" + }, "c180286bc513": { "name": "githubProjectError", "ordinal": 29, @@ -1185,44 +1180,6 @@ } } }, - "f1dd827578d3": { - "error": "Cannot read properties of null (reading 'ok')", - "loading": false, - "pasteError": "", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "fa1d1b339394": { "name": "appliedGithubProjectSearch", "ordinal": 30, @@ -1449,7 +1406,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "a3fbce1fcf8a", + "state": "50c2d0683abb", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1469,7 +1426,7 @@ "c4c4250b0567", "7a9df0d1a484", "8792541c60ad", - "a250c57b1330", + "bff57ba49c8b", "88db645d6267", "53954ecf4db4" ] @@ -1499,7 +1456,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "f1dd827578d3", + "state": "50c2d0683abb", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1519,7 +1476,7 @@ "c4c4250b0567", "7a9df0d1a484", "8792541c60ad", - "714a5fb133aa", + "bff57ba49c8b", "88db645d6267", "53954ecf4db4" ] @@ -1549,7 +1506,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "2ab1b35ff194", + "state": "50c2d0683abb", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1569,7 +1526,7 @@ "c4c4250b0567", "7a9df0d1a484", "8792541c60ad", - "512d99654670", + "bff57ba49c8b", "88db645d6267", "53954ecf4db4" ] @@ -1599,7 +1556,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "2ab1b35ff194", + "state": "50c2d0683abb", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1619,7 +1576,7 @@ "c4c4250b0567", "7a9df0d1a484", "8792541c60ad", - "512d99654670", + "bff57ba49c8b", "88db645d6267", "53954ecf4db4" ] 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 42b7cc40ede..e6952c28254 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.resolveref-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "4ab4e4022cafd69cbc7af45ddf72d2dad3e8215df363511651d7faea014147d3", "platform": "darwin", @@ -59,44 +59,6 @@ "ordinal": 11, "value": "" }, - "12ff41170090": { - "error": "", - "loading": false, - "pasteError": "Cannot read properties of undefined (reading 'ok')", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "15cb97c93333": { "name": "github.project.listViews#1", "ordinal": 8, @@ -288,46 +250,6 @@ "ordinal": 23, "value": "" }, - "47aa692d7dc9": { - "error": "", - "loading": false, - "pasteError": { - "$rpc": "undefined" - }, - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "4eb521bbefdd": { "name": "githubProjectSearch", "ordinal": 15, @@ -462,13 +384,6 @@ "ordinal": 23, "value": "inner refused" }, - "5dd3eb62a8bd": { - "name": "githubProjectPasteError", - "ordinal": 23, - "value": { - "$rpc": "undefined" - } - }, "5f5f56db9d64": { "name": "github.project.viewTable#1", "ordinal": 12, @@ -546,44 +461,6 @@ } ] }, - "7a234b9d2ae3": { - "error": "", - "loading": false, - "pasteError": "Cannot read properties of null (reading 'ok')", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "fields": [], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [], - "selectedView": { - "filter": "is:open", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "7a9df0d1a484": { "name": "githubProjectLoading", "ordinal": 25, @@ -631,6 +508,11 @@ } } }, + "8adfaab42f53": { + "name": "githubProjectPasteError", + "ordinal": 23, + "value": "The host sent a reply this app could not read (github.project.resolveRef)" + }, "8e4dec1aad1f": { "name": "github.project.listViews#2", "ordinal": 28, @@ -774,6 +656,44 @@ "ordinal": 2, "value": [] }, + "afec7622eabf": { + "error": "", + "loading": false, + "pasteError": "The host sent a reply this app could not read (github.project.resolveRef)", + "projects": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "table": { + "fields": [], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [], + "selectedView": { + "filter": "is:open", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + }, + "views": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ] + }, "b42c8edc0d53": { "name": "github.project.listAccessible#1", "ordinal": 4, @@ -851,11 +771,6 @@ "ordinal": 23, "value": "Connection closed" }, - "bd159cd4270a": { - "name": "githubProjectPasteError", - "ordinal": 23, - "value": "Cannot read properties of null (reading 'ok')" - }, "be0da5b53ffb": { "status": "fulfilled", "startedAt": 0, @@ -869,11 +784,6 @@ } ] }, - "c3ebaad2e657": { - "name": "githubProjectPasteError", - "ordinal": 23, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "c453f220a7e2": { "name": "githubProjectLoading", "ordinal": 33, @@ -1402,7 +1312,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "12ff41170090", + "state": "afec7622eabf", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1418,7 +1328,7 @@ "a4a1ff5df287", "7b9d3b33c08b", "fb9764680a74", - "c3ebaad2e657", + "8adfaab42f53", "c515348730c9" ] } @@ -1435,7 +1345,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "7a234b9d2ae3", + "state": "afec7622eabf", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1451,7 +1361,7 @@ "a4a1ff5df287", "7b9d3b33c08b", "fb9764680a74", - "bd159cd4270a", + "8adfaab42f53", "c515348730c9" ] } @@ -1468,7 +1378,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "47aa692d7dc9", + "state": "afec7622eabf", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1484,7 +1394,7 @@ "a4a1ff5df287", "7b9d3b33c08b", "fb9764680a74", - "5dd3eb62a8bd", + "8adfaab42f53", "c515348730c9" ] } @@ -1501,7 +1411,7 @@ "table-2": "eb79a9b3682a", "paste-3": "eb79a9b3682a" }, - "state": "47aa692d7dc9", + "state": "afec7622eabf", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1517,7 +1427,7 @@ "a4a1ff5df287", "7b9d3b33c08b", "fb9764680a74", - "5dd3eb62a8bd", + "8adfaab42f53", "c515348730c9" ] } 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 090209df9e6..04863c77c71 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-board-load-github.project.viewtable-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "cf64dd43e708ff953ba2cbb2a70378aa8ab5d13ede157af7ba0967d913755b82", "platform": "darwin", @@ -147,6 +147,11 @@ "$rpc": "undefined" } }, + "0efd754f1a5c": { + "name": "githubProjectError", + "ordinal": 15, + "value": "The host sent a reply this app could not read (github.project.viewTable)" + }, "15cb97c93333": { "name": "github.project.listViews#1", "ordinal": 8, @@ -172,36 +177,6 @@ "ordinal": 1, "value": "" }, - "23ca3d223b19": { - "name": "githubProjectError", - "ordinal": 15, - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "2538fbdb9ee1": { - "error": "Cannot read properties of undefined (reading 'ok')", - "loading": false, - "pasteError": "", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "$rpc": "null" - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "26921f3a7c09": { "name": "githubProjectPasteError", "ordinal": 18, @@ -308,6 +283,31 @@ } ] }, + "2fc294f6693b": { + "error": "The host sent a reply this app could not read (github.project.viewTable)", + "loading": false, + "pasteError": "", + "projects": [ + { + "host": "github.com", + "number": 3, + "owner": "owner", + "ownerType": "organization", + "title": "Board" + } + ], + "table": { + "$rpc": "null" + }, + "views": [ + { + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + ] + }, "3493818a7239": { "name": "githubProjectPasteBusy", "ordinal": 33, @@ -350,11 +350,6 @@ "ordinal": 17, "value": true }, - "3eb90efe4306": { - "name": "githubProjectError", - "ordinal": 15, - "value": "Cannot read properties of null (reading 'ok')" - }, "43352776b1e1": { "name": "githubProjectTable", "ordinal": 14, @@ -925,31 +920,6 @@ "ordinal": 33, "value": false }, - "c4615593811a": { - "error": "Cannot read properties of null (reading 'ok')", - "loading": false, - "pasteError": "", - "projects": [ - { - "host": "github.com", - "number": 3, - "owner": "owner", - "ownerType": "organization", - "title": "Board" - } - ], - "table": { - "$rpc": "null" - }, - "views": [ - { - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - ] - }, "c4c4250b0567": { "name": "showGitHubProjectPicker", "ordinal": 24, @@ -1506,7 +1476,7 @@ "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, - "state": "2538fbdb9ee1", + "state": "2fc294f6693b", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1516,7 +1486,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "23ca3d223b19", + "0efd754f1a5c", "842c950ee7cc" ] } @@ -1555,7 +1525,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "23ca3d223b19", + "0efd754f1a5c", "842c950ee7cc", "3985399034a2", "26921f3a7c09", @@ -1584,7 +1554,7 @@ "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, - "state": "c4615593811a", + "state": "2fc294f6693b", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1594,7 +1564,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "3eb90efe4306", + "0efd754f1a5c", "842c950ee7cc" ] } @@ -1633,7 +1603,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "3eb90efe4306", + "0efd754f1a5c", "842c950ee7cc", "3985399034a2", "26921f3a7c09", @@ -1662,7 +1632,7 @@ "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, - "state": "376c9e8bd72a", + "state": "2fc294f6693b", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1672,7 +1642,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "5abab014ad66", + "0efd754f1a5c", "842c950ee7cc" ] } @@ -1711,7 +1681,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "5abab014ad66", + "0efd754f1a5c", "842c950ee7cc", "3985399034a2", "26921f3a7c09", @@ -1740,7 +1710,7 @@ "views-1": "be0da5b53ffb", "table-2": "eb79a9b3682a" }, - "state": "376c9e8bd72a", + "state": "2fc294f6693b", "effects": [ "2085118de92f", "a5a3530ec11c", @@ -1750,7 +1720,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "5abab014ad66", + "0efd754f1a5c", "842c950ee7cc" ] } @@ -1789,7 +1759,7 @@ "654693493b51", "0388fa155721", "da50b440ea30", - "5abab014ad66", + "0efd754f1a5c", "842c950ee7cc", "3985399034a2", "26921f3a7c09", 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 c2e688ad1f3..6bdeeef61ae 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-repo-slugs-github.reposlug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-repo-slugs", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c4272385ed3b0de4feab38de9e4f6363ecd6317fdd4de47f76a98eb18abaf371", "scenarioSha256": "667a06cf9ff8129eee64327566012448abe1fe31f58c0d9b882b13e74db5a877", "platform": "darwin", @@ -45,19 +45,6 @@ } } }, - "06e766db7462": { - "name": "githubRepoSlugCache", - "ordinal": 3, - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "error": "inner refused", - "ok": false - } - } - } - }, "09f0440141bc": { "name": "github.repoSlug#1", "ordinal": 1, @@ -93,28 +80,6 @@ } } }, - "0caf56550963": { - "cache": { - "repo-1": { - "path": "/repo", - "repository": { - "error": "refused" - } - } - } - }, - "0f800c2e739d": { - "name": "githubRepoSlugCache", - "ordinal": 3, - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "$rpc": "undefined" - } - } - } - }, "1b6c8cbfdc90": { "cache": { "repo-1": { @@ -171,18 +136,6 @@ } } }, - "3e9e4ea57fa1": { - "name": "githubRepoSlugCache", - "ordinal": 3, - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "error": "refused" - } - } - } - }, "470baf1783c9": { "name": "github.repoSlug#1", "ordinal": 1, @@ -220,16 +173,6 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "4cfa99d7eefa": { - "cache": { - "repo-1": { - "path": "/repo", - "repository": { - "$rpc": "undefined" - } - } - } - }, "53a39b53da01": { "name": "githubRepoSlugCache", "ordinal": 3, @@ -290,21 +233,6 @@ } } }, - "5fca57506026": { - "name": "githubRepoSlugCache", - "ordinal": 3, - "value": { - "repo-1": { - "path": "/repo", - "repository": { - "error": { - "message": "inner refused" - }, - "ok": false - } - } - } - }, "60d253ed9645": { "name": "github.repoSlug#1", "ordinal": 1, @@ -341,17 +269,6 @@ } } }, - "8a9b6f06911d": { - "cache": { - "repo-1": { - "path": "/repo", - "repository": { - "error": "inner refused", - "ok": false - } - } - } - }, "8dd2c55e3056": { "name": "github.repoSlug#1", "ordinal": 1, @@ -556,19 +473,6 @@ } } } - }, - "ffa0fb99ddcc": { - "cache": { - "repo-1": { - "path": "/repo", - "repository": { - "error": { - "message": "inner refused" - }, - "ok": false - } - } - } } }, "recording": { @@ -594,8 +498,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "4cfa99d7eefa", - "effects": ["0f800c2e739d"] + "state": "1b6c8cbfdc90", + "effects": ["53a39b53da01"] } }, { @@ -618,8 +522,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "0caf56550963", - "effects": ["3e9e4ea57fa1"] + "state": "1b6c8cbfdc90", + "effects": ["53a39b53da01"] } }, { @@ -630,8 +534,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "8a9b6f06911d", - "effects": ["06e766db7462"] + "state": "1b6c8cbfdc90", + "effects": ["53a39b53da01"] } }, { @@ -642,8 +546,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "ffa0fb99ddcc", - "effects": ["5fca57506026"] + "state": "1b6c8cbfdc90", + "effects": ["53a39b53da01"] } }, { 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 01a5eb20eca..185ce671ba2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.addissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "9fd4756c2224f3ecbc9ffc82e1ee11615a9e057e600bc56ccaf5c5e2c0e411d8", "platform": "darwin", @@ -18,72 +18,6 @@ "ordinal": 10, "value": "Connection closed" }, - "04cdd10ad87d": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "0646472479ae": { "detail": { "assignees": ["octocat"], @@ -410,11 +344,6 @@ "reviewRequests": [] } }, - "4078377e6c5c": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Cannot read properties of null (reading 'ok')" - }, "41b07d08a3e2": { "detail": { "assignees": ["octocat"], @@ -857,77 +786,6 @@ "itemType": "ISSUE" } }, - "68bd9d026e5d": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "6b62a21f3537": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "6ef3aff4fc24": { "detail": { "assignees": ["octocat"], @@ -994,6 +852,11 @@ "itemType": "ISSUE" } }, + "7217cd2f7c0e": { + "name": "projectRowDetailError", + "ordinal": 10, + "value": "The host sent a reply this app could not read (github.project.addIssueCommentBySlug)" + }, "72332e237f1f": { "name": "projectMutating", "ordinal": 6, @@ -1094,6 +957,72 @@ } } }, + "7e5186008bbd": { + "detail": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "error": "The host sent a reply this app could not read (github.project.addIssueCommentBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "7fea4481563b": { "name": "github.project.addIssueCommentBySlug#1", "ordinal": 8, @@ -1406,6 +1335,11 @@ } } }, + "b573156c1b39": { + "name": "projectRowDetailError", + "ordinal": 11, + "value": "Failed to add comment" + }, "b63d5911050c": { "name": "projectRowDetailError", "ordinal": 13, @@ -1447,6 +1381,55 @@ } } }, + "bd1813cf4a58": { + "name": "projectRowDetail", + "ordinal": 17, + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "an edited comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + } + }, "c31e74598cf0": { "name": "github.project.addIssueCommentBySlug#1", "ordinal": 8, @@ -1647,6 +1630,17 @@ } } }, + "e144dcda2cc3": { + "name": "reply-salvage", + "ordinal": 10, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.addIssueCommentBySlug", + "operation": "github.project.add-issue-comment", + "variant": "github-project-issue-comment" + } + }, "e52eb58ab49e": { "name": "projectCommentDraft", "ordinal": 10, @@ -1731,11 +1725,6 @@ "itemType": "ISSUE" } }, - "f013c0ff634d": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Failed to add comment" - }, "f39ed9ab521e": { "name": "projectMutating", "ordinal": 7, @@ -1893,14 +1882,14 @@ "update-item-0": "eb79a9b3682a", "add-comment-1": "eb79a9b3682a" }, - "state": "04cdd10ad87d", + "state": "7e5186008bbd", "effects": [ "5d32aa29303c", "503675a0f449", "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "68bd9d026e5d", + "7217cd2f7c0e", "47573f68feea" ] } @@ -1923,7 +1912,7 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "68bd9d026e5d", + "7217cd2f7c0e", "47573f68feea", "46bda137acdb", "b63d5911050c", @@ -1944,14 +1933,14 @@ "update-item-0": "eb79a9b3682a", "add-comment-1": "eb79a9b3682a" }, - "state": "6b62a21f3537", + "state": "7e5186008bbd", "effects": [ "5d32aa29303c", "503675a0f449", "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "4078377e6c5c", + "7217cd2f7c0e", "47573f68feea" ] } @@ -1974,7 +1963,7 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "4078377e6c5c", + "7217cd2f7c0e", "47573f68feea", "46bda137acdb", "b63d5911050c", @@ -2002,16 +1991,17 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "f013c0ff634d", - "47573f68feea" + "e144dcda2cc3", + "b573156c1b39", + "ce1f6d47985f" ] } }, { "id": "tk-project-row-comments-issue.inner-ok-missing:update-comment-settled", "observation": { - "sender": ["47fae979383a", "7fea4481563b", "b0ad1ac4ca7f"], - "payloads": ["62af4d257032", "ffd6af1b42e1", "cf9340069209"], + "sender": ["47fae979383a", "7fea4481563b", "f3c022b108d0"], + "payloads": ["62af4d257032", "ffd6af1b42e1", "8633b6c5dd75"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2025,14 +2015,15 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "f013c0ff634d", - "47573f68feea", - "46bda137acdb", - "b63d5911050c", - "2568908fc63f", - "79deaea0e2d8", - "4d199ddf02e0", - "7440f0f1bab9" + "e144dcda2cc3", + "b573156c1b39", + "ce1f6d47985f", + "a8ff11b6adce", + "5c30b4794b57", + "bd1813cf4a58", + "fc8440fdfe7f", + "21dd73202dc8", + "1bf0937a02b9" ] } }, @@ -2053,16 +2044,17 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "f013c0ff634d", - "47573f68feea" + "e144dcda2cc3", + "b573156c1b39", + "ce1f6d47985f" ] } }, { "id": "tk-project-row-comments-issue.inner-false-string-error:update-comment-settled", "observation": { - "sender": ["47fae979383a", "7b851c16d8c4", "b0ad1ac4ca7f"], - "payloads": ["62af4d257032", "ffd6af1b42e1", "cf9340069209"], + "sender": ["47fae979383a", "7b851c16d8c4", "f3c022b108d0"], + "payloads": ["62af4d257032", "ffd6af1b42e1", "8633b6c5dd75"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2076,14 +2068,15 @@ "b2d2c9f55277", "72332e237f1f", "f39ed9ab521e", - "f013c0ff634d", - "47573f68feea", - "46bda137acdb", - "b63d5911050c", - "2568908fc63f", - "79deaea0e2d8", - "4d199ddf02e0", - "7440f0f1bab9" + "e144dcda2cc3", + "b573156c1b39", + "ce1f6d47985f", + "a8ff11b6adce", + "5c30b4794b57", + "bd1813cf4a58", + "fc8440fdfe7f", + "21dd73202dc8", + "1bf0937a02b9" ] } }, 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 bf6551fbbc0..d00bdb76333 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuebyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "cfe0284f502001a57a9d18585222e5ae4b254d9bac32e0bb4080ee9363e8e019", "platform": "darwin", @@ -130,6 +130,11 @@ "ordinal": 4, "value": "outer refused" }, + "169bf3fa2e59": { + "name": "github.project.updateIssueCommentBySlug#1", + "ordinal": 17, + "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\"}}" + }, "1bf0937a02b9": { "name": "projectMutating", "ordinal": 20, @@ -277,11 +282,6 @@ "itemType": "ISSUE" } }, - "1fbd7af5254e": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Failed to update GitHub item" - }, "21dd73202dc8": { "name": "projectEditingCommentDraft", "ordinal": 19, @@ -362,11 +362,6 @@ "ordinal": 4, "value": "inner refused" }, - "3432c4f21f41": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "349173b5b21b": { "name": "projectRowDetailError", "ordinal": 4, @@ -507,6 +502,11 @@ "reviewRequests": [] } }, + "4123bc693ce4": { + "name": "projectMutating", + "ordinal": 14, + "value": true + }, "4324304a281a": { "name": "projectRowDetailError", "ordinal": 4, @@ -567,6 +567,61 @@ } } }, + "4817f206cb1e": { + "name": "projectRowDetail", + "ordinal": 18, + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "an edited comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + } + }, "483cdc3c1f58": { "detail": { "assignees": ["octocat"], @@ -708,6 +763,77 @@ "itemType": "ISSUE" } }, + "4f83399f2bad": { + "detail": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "error": "The host sent a reply this app could not read (github.project.updateIssueBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "503675a0f449": { "name": "projectRowItem", "ordinal": 4, @@ -873,6 +999,13 @@ "itemType": "ISSUE" } }, + "5692863a2168": { + "name": "projectEditingCommentId", + "ordinal": 19, + "value": { + "$rpc": "null" + } + }, "5b59376f85ae": { "name": "projectRowDetail", "ordinal": 16, @@ -1266,6 +1399,82 @@ } } }, + "810c401fc52a": { + "name": "reply-salvage", + "ordinal": 4, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.updateIssueBySlug", + "operation": "github.project.update-issue", + "variant": "github-project-updated-issue" + } + }, + "86052808f005": { + "detail": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "error": "The host sent a reply this app could not read (github.project.updateIssueBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "8633b6c5dd75": { "name": "github.project.updateIssueCommentBySlug#1", "ordinal": 16, @@ -1402,77 +1611,6 @@ "itemType": "ISSUE" } }, - "9e0614dcfad6": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "9ec4dd82804a": { "name": "projectRowDetail", "ordinal": 10, @@ -1573,6 +1711,11 @@ } } }, + "a735fd6aee5f": { + "name": "projectMutating", + "ordinal": 7, + "value": false + }, "a7a04016f46a": { "name": "projectRowDetail", "ordinal": 11, @@ -1674,6 +1817,11 @@ } } }, + "aba945c58a7f": { + "name": "projectMutating", + "ordinal": 21, + "value": false + }, "b0ad1ac4ca7f": { "name": "github.project.updateIssueCommentBySlug#1", "ordinal": 14, @@ -1712,6 +1860,11 @@ } } }, + "b0f2d0edec6a": { + "name": "projectMutating", + "ordinal": 8, + "value": true + }, "b2d2c9f55277": { "name": "githubProjectTable", "ordinal": 5, @@ -1778,6 +1931,11 @@ "ordinal": 13, "value": "" }, + "c10a7352e82b": { + "name": "projectEditingCommentDraft", + "ordinal": 20, + "value": "" + }, "c302f0af45c2": { "name": "github.project.updateIssueBySlug#1", "ordinal": 2, @@ -1859,71 +2017,10 @@ } } }, - "ce1f6d47985f": { - "name": "projectMutating", - "ordinal": 12, - "value": false - }, - "cf9340069209": { - "name": "github.project.updateIssueCommentBySlug#1", - "ordinal": 15, - "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\"}}" - }, - "d4484ddd6b14": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { + "cda7f7d6399d": { + "name": "projectRowItem", + "ordinal": 5, + "value": { "content": { "assignees": [], "issueType": { @@ -1933,6 +2030,7 @@ "number": 1, "repository": "owner/repo", "state": "OPEN", + "title": "Renamed", "url": "https://github.com/owner/repo/issues/1" }, "fieldValuesByFieldId": {}, @@ -1940,6 +2038,70 @@ "itemType": "ISSUE" } }, + "ce1f6d47985f": { + "name": "projectMutating", + "ordinal": 12, + "value": false + }, + "cee96a551fcd": { + "name": "projectRowDetailError", + "ordinal": 4, + "value": "The host sent a reply this app could not read (github.project.updateIssueBySlug)" + }, + "cf9340069209": { + "name": "github.project.updateIssueCommentBySlug#1", + "ordinal": 15, + "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\"}}" + }, + "d09c526ea284": { + "name": "projectRowDetailError", + "ordinal": 15, + "value": "" + }, + "db73382687b9": { + "name": "github.project.addIssueCommentBySlug#1", + "ordinal": 9, + "args": [ + { + "name": "method", + "value": "github.project.addIssueCommentBySlug" + }, + { + "name": "params", + "value": { + "body": "a project comment", + "host": "github.enterprise.test", + "number": 1, + "owner": "owner", + "repo": "repo" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "comment": { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + }, + "ok": true + } + } + } + }, "db89c82fef5f": { "detail": { "assignees": ["octocat"], @@ -2051,70 +2213,10 @@ } } }, - "e26c297a9155": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } + "e3180bc6526a": { + "name": "projectMutating", + "ordinal": 13, + "value": false }, "e477ca22990a": { "detail": { @@ -2264,71 +2366,6 @@ "$rpc": "undefined" } }, - "ec46684b62db": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "ee3092e3ff92": { "detail": { "assignees": ["octocat"], @@ -2400,10 +2437,65 @@ "itemType": "ISSUE" } }, - "f2f279e9fa21": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of null (reading 'ok')" + "f190afd4da68": { + "name": "projectRowDetail", + "ordinal": 12, + "value": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + } + }, + "f20fdbb89152": { + "name": "github.project.addIssueCommentBySlug#1", + "ordinal": 10, + "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\"}}" }, "f39ed9ab521e": { "name": "projectMutating", @@ -2448,6 +2540,72 @@ } } }, + "f810b66585bf": { + "name": "githubProjectTable", + "ordinal": 6, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, + "fa58e3c23334": { + "name": "projectCommentDraft", + "ordinal": 11, + "value": "" + }, "fc8440fdfe7f": { "name": "projectEditingCommentId", "ordinal": 18, @@ -2455,10 +2613,53 @@ "$rpc": "null" } }, + "fe37d4b9e3d4": { + "name": "github.project.updateIssueCommentBySlug#1", + "ordinal": 16, + "args": [ + { + "name": "method", + "value": "github.project.updateIssueCommentBySlug" + }, + { + "name": "params", + "value": { + "body": "an edited comment", + "commentId": 501, + "host": "github.enterprise.test", + "owner": "owner", + "repo": "repo" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, "ffd6af1b42e1": { "name": "github.project.addIssueCommentBySlug#1", "ordinal": 9, "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\"}}" + }, + "ffe14a16b6b6": { + "name": "projectRowDetailError", + "ordinal": 5, + "value": "Failed to update GitHub item" } }, "recording": { @@ -2539,8 +2740,8 @@ "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" }, - "state": "ec46684b62db", - "effects": ["5d32aa29303c", "3432c4f21f41", "e9296dde8e41"] + "state": "86052808f005", + "effects": ["5d32aa29303c", "cee96a551fcd", "e9296dde8e41"] } }, { @@ -2553,10 +2754,10 @@ "update-item-0": "eb79a9b3682a", "add-comment-1": "eb79a9b3682a" }, - "state": "9e0614dcfad6", + "state": "4f83399f2bad", "effects": [ "5d32aa29303c", - "3432c4f21f41", + "cee96a551fcd", "e9296dde8e41", "c99bbd5a8fc1", "440f9692bb00", @@ -2579,7 +2780,7 @@ "state": "1c06180a60fe", "effects": [ "5d32aa29303c", - "3432c4f21f41", + "cee96a551fcd", "e9296dde8e41", "c99bbd5a8fc1", "440f9692bb00", @@ -2603,8 +2804,8 @@ "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" }, - "state": "e26c297a9155", - "effects": ["5d32aa29303c", "f2f279e9fa21", "e9296dde8e41"] + "state": "86052808f005", + "effects": ["5d32aa29303c", "cee96a551fcd", "e9296dde8e41"] } }, { @@ -2617,10 +2818,10 @@ "update-item-0": "eb79a9b3682a", "add-comment-1": "eb79a9b3682a" }, - "state": "d4484ddd6b14", + "state": "4f83399f2bad", "effects": [ "5d32aa29303c", - "f2f279e9fa21", + "cee96a551fcd", "e9296dde8e41", "c99bbd5a8fc1", "440f9692bb00", @@ -2643,7 +2844,7 @@ "state": "1c06180a60fe", "effects": [ "5d32aa29303c", - "f2f279e9fa21", + "cee96a551fcd", "e9296dde8e41", "c99bbd5a8fc1", "440f9692bb00", @@ -2668,14 +2869,20 @@ "update-item-0": "eb79a9b3682a" }, "state": "9188c83ef653", - "effects": ["5d32aa29303c", "503675a0f449", "b2d2c9f55277", "72332e237f1f"] + "effects": [ + "5d32aa29303c", + "810c401fc52a", + "cda7f7d6399d", + "f810b66585bf", + "a735fd6aee5f" + ] } }, { "id": "tk-project-row-comments-issue.inner-ok-missing:add-comment-settled", "observation": { - "sender": ["a35480397ac4", "777239b1f74f"], - "payloads": ["62af4d257032", "ffd6af1b42e1"], + "sender": ["a35480397ac4", "db73382687b9"], + "payloads": ["62af4d257032", "f20fdbb89152"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2684,21 +2891,22 @@ "state": "5198e17de9b3", "effects": [ "5d32aa29303c", - "503675a0f449", - "b2d2c9f55277", - "72332e237f1f", - "f39ed9ab521e", - "e52eb58ab49e", - "a7a04016f46a", - "ce1f6d47985f" + "810c401fc52a", + "cda7f7d6399d", + "f810b66585bf", + "a735fd6aee5f", + "b0f2d0edec6a", + "fa58e3c23334", + "f190afd4da68", + "e3180bc6526a" ] } }, { "id": "tk-project-row-comments-issue.inner-ok-missing:update-comment-settled", "observation": { - "sender": ["a35480397ac4", "777239b1f74f", "f3c022b108d0"], - "payloads": ["62af4d257032", "ffd6af1b42e1", "8633b6c5dd75"], + "sender": ["a35480397ac4", "db73382687b9", "fe37d4b9e3d4"], + "payloads": ["62af4d257032", "f20fdbb89152", "169bf3fa2e59"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2708,19 +2916,20 @@ "state": "527330ed2103", "effects": [ "5d32aa29303c", - "503675a0f449", - "b2d2c9f55277", - "72332e237f1f", - "f39ed9ab521e", - "e52eb58ab49e", - "a7a04016f46a", - "ce1f6d47985f", - "a8ff11b6adce", - "5c30b4794b57", - "3d64c0aecd5d", - "fc8440fdfe7f", - "21dd73202dc8", - "1bf0937a02b9" + "810c401fc52a", + "cda7f7d6399d", + "f810b66585bf", + "a735fd6aee5f", + "b0f2d0edec6a", + "fa58e3c23334", + "f190afd4da68", + "e3180bc6526a", + "4123bc693ce4", + "d09c526ea284", + "4817f206cb1e", + "5692863a2168", + "c10a7352e82b", + "aba945c58a7f" ] } }, @@ -2734,14 +2943,14 @@ "update-item-0": "eb79a9b3682a" }, "state": "4e8e632ab029", - "effects": ["5d32aa29303c", "1fbd7af5254e", "e9296dde8e41"] + "effects": ["5d32aa29303c", "810c401fc52a", "ffe14a16b6b6", "72332e237f1f"] } }, { "id": "tk-project-row-comments-issue.inner-false-string-error:add-comment-settled", "observation": { - "sender": ["aa80e017aa7d", "7e6aaed4b9f4"], - "payloads": ["62af4d257032", "a15e0b2e3e3b"], + "sender": ["aa80e017aa7d", "777239b1f74f"], + "payloads": ["62af4d257032", "ffd6af1b42e1"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2750,20 +2959,21 @@ "state": "1e1fa0e5367c", "effects": [ "5d32aa29303c", - "1fbd7af5254e", - "e9296dde8e41", - "c99bbd5a8fc1", - "440f9692bb00", - "9ec4dd82804a", - "47573f68feea" + "810c401fc52a", + "ffe14a16b6b6", + "72332e237f1f", + "f39ed9ab521e", + "e52eb58ab49e", + "a7a04016f46a", + "ce1f6d47985f" ] } }, { "id": "tk-project-row-comments-issue.inner-false-string-error:update-comment-settled", "observation": { - "sender": ["aa80e017aa7d", "7e6aaed4b9f4", "b0ad1ac4ca7f"], - "payloads": ["62af4d257032", "a15e0b2e3e3b", "cf9340069209"], + "sender": ["aa80e017aa7d", "777239b1f74f", "f3c022b108d0"], + "payloads": ["62af4d257032", "ffd6af1b42e1", "8633b6c5dd75"], "settlements": { "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a", @@ -2773,18 +2983,19 @@ "state": "1c06180a60fe", "effects": [ "5d32aa29303c", - "1fbd7af5254e", - "e9296dde8e41", - "c99bbd5a8fc1", - "440f9692bb00", - "9ec4dd82804a", - "47573f68feea", - "46bda137acdb", - "b63d5911050c", - "5b59376f85ae", - "79deaea0e2d8", - "4d199ddf02e0", - "7440f0f1bab9" + "810c401fc52a", + "ffe14a16b6b6", + "72332e237f1f", + "f39ed9ab521e", + "e52eb58ab49e", + "a7a04016f46a", + "ce1f6d47985f", + "a8ff11b6adce", + "5c30b4794b57", + "3d64c0aecd5d", + "fc8440fdfe7f", + "21dd73202dc8", + "1bf0937a02b9" ] } }, 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 188e51fba30..bbcc96dd2af 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-issue-github.project.updateissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "b21a3b3f568bf6caecca62272f4b7882062027684c70878fd5f883622ff2a9ea", "platform": "darwin", @@ -535,11 +535,6 @@ "ordinal": 3, "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\"}}}" }, - "6fa1c828a0ac": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of null (reading 'ok')" - }, "72332e237f1f": { "name": "projectMutating", "ordinal": 6, @@ -589,6 +584,78 @@ } } }, + "7a7267938637": { + "detail": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + }, + { + "author": "You", + "body": "a project comment", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 906 + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "error": "The host sent a reply this app could not read (github.project.updateIssueCommentBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "7e10007c06c1": { "name": "github.project.updateIssueCommentBySlug#1", "ordinal": 15, @@ -699,78 +766,6 @@ "itemType": "ISSUE" } }, - "848c29b901c6": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "8633b6c5dd75": { "name": "github.project.updateIssueCommentBySlug#1", "ordinal": 16, @@ -1243,83 +1238,16 @@ } } }, + "ccb4b0cca4fb": { + "name": "projectRowDetailError", + "ordinal": 17, + "value": "The host sent a reply this app could not read (github.project.updateIssueCommentBySlug)" + }, "ce1f6d47985f": { "name": "projectMutating", "ordinal": 12, "value": false }, - "d3919ddf3bd4": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - }, - { - "author": "You", - "body": "a project comment", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 906 - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "title": "Renamed", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - } - }, "d42b872468e1": { "detail": { "assignees": ["octocat"], @@ -1560,11 +1488,6 @@ } } }, - "fc81dfe2109f": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "fc8440fdfe7f": { "name": "projectEditingCommentId", "ordinal": 18, @@ -1686,7 +1609,7 @@ "add-comment-1": "eb79a9b3682a", "update-comment-2": "eb79a9b3682a" }, - "state": "d3919ddf3bd4", + "state": "7a7267938637", "effects": [ "5d32aa29303c", "503675a0f449", @@ -1698,7 +1621,7 @@ "ce1f6d47985f", "a8ff11b6adce", "5c30b4794b57", - "fc81dfe2109f", + "ccb4b0cca4fb", "1cc38c8dde55" ] } @@ -1714,7 +1637,7 @@ "add-comment-1": "eb79a9b3682a", "update-comment-2": "eb79a9b3682a" }, - "state": "848c29b901c6", + "state": "7a7267938637", "effects": [ "5d32aa29303c", "503675a0f449", @@ -1726,7 +1649,7 @@ "ce1f6d47985f", "a8ff11b6adce", "5c30b4794b57", - "6fa1c828a0ac", + "ccb4b0cca4fb", "1cc38c8dde55" ] } 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 a9d58716b4c..00a14b3dd42 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-comments-pr-github.project.updatepullrequestbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-pr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "e286edb942c338fd844ce8437ac03c872838228515ce833cfd310332354da725", "platform": "darwin", @@ -83,11 +83,6 @@ "itemType": "PULL_REQUEST" } }, - "1fbd7af5254e": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Failed to update GitHub item" - }, "25607177ea9a": { "name": "github.project.updatePullRequestBySlug#1", "ordinal": 3, @@ -253,16 +248,16 @@ } } }, - "3432c4f21f41": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "349173b5b21b": { "name": "projectRowDetailError", "ordinal": 4, "value": "" }, + "37e2831fb0fe": { + "name": "projectRowDetailError", + "ordinal": 4, + "value": "The host sent a reply this app could not read (github.project.updatePullRequestBySlug)" + }, "3b8c29de1f01": { "name": "github.project.updatePullRequestBySlug#1", "ordinal": 2, @@ -304,6 +299,67 @@ } } }, + "41bc9a6d7d5e": { + "name": "githubProjectTable", + "ordinal": 6, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "name": "Status", + "options": [] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "4324304a281a": { "name": "projectRowDetailError", "ordinal": 4, @@ -374,71 +430,6 @@ "itemType": "PULL_REQUEST" } }, - "49d660b9acf0": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - }, "58df3e1a0f1c": { "name": "github.project.updatePullRequestBySlug#1", "ordinal": 2, @@ -555,6 +546,27 @@ "ordinal": 6, "value": false }, + "7549c585a5d3": { + "name": "projectRowItem", + "ordinal": 5, + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "title": "Renamed", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + }, "79252b22d0fc": { "detail": { "assignees": ["octocat"], @@ -679,6 +691,11 @@ } } }, + "a735fd6aee5f": { + "name": "projectMutating", + "ordinal": 7, + "value": false + }, "aa2ef79d4298": { "name": "githubProjectTable", "ordinal": 5, @@ -817,6 +834,17 @@ } } }, + "c01c2070446f": { + "name": "reply-salvage", + "ordinal": 4, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.updatePullRequestBySlug", + "operation": "github.project.update-pull-request", + "variant": "github-project-updated-pull-request" + } + }, "c089d68bd230": { "detail": { "assignees": ["octocat"], @@ -1054,12 +1082,7 @@ "$rpc": "undefined" } }, - "f2f279e9fa21": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of null (reading 'ok')" - }, - "f7a965ae68e5": { + "ec0cbbd89a4a": { "detail": { "assignees": ["octocat"], "baseSha": "base-sha", @@ -1105,7 +1128,7 @@ }, "reviewRequests": [] }, - "error": "Cannot read properties of null (reading 'ok')", + "error": "The host sent a reply this app could not read (github.project.updatePullRequestBySlug)", "mutating": false, "row": { "content": { @@ -1188,6 +1211,11 @@ "id": "item-2", "itemType": "PULL_REQUEST" } + }, + "ffe14a16b6b6": { + "name": "projectRowDetailError", + "ordinal": 5, + "value": "Failed to update GitHub item" } }, "recording": { @@ -1215,8 +1243,8 @@ "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" }, - "state": "49d660b9acf0", - "effects": ["5d32aa29303c", "3432c4f21f41", "e9296dde8e41"] + "state": "ec0cbbd89a4a", + "effects": ["5d32aa29303c", "37e2831fb0fe", "e9296dde8e41"] } }, { @@ -1228,8 +1256,8 @@ "mount": "eb79a9b3682a", "update-item-0": "eb79a9b3682a" }, - "state": "f7a965ae68e5", - "effects": ["5d32aa29303c", "f2f279e9fa21", "e9296dde8e41"] + "state": "ec0cbbd89a4a", + "effects": ["5d32aa29303c", "37e2831fb0fe", "e9296dde8e41"] } }, { @@ -1242,7 +1270,13 @@ "update-item-0": "eb79a9b3682a" }, "state": "2d1e8ede1fcf", - "effects": ["5d32aa29303c", "9332b39405f1", "aa2ef79d4298", "72332e237f1f"] + "effects": [ + "5d32aa29303c", + "c01c2070446f", + "7549c585a5d3", + "41bc9a6d7d5e", + "a735fd6aee5f" + ] } }, { @@ -1255,7 +1289,7 @@ "update-item-0": "eb79a9b3682a" }, "state": "fce902b2381c", - "effects": ["5d32aa29303c", "1fbd7af5254e", "e9296dde8e41"] + "effects": ["5d32aa29303c", "c01c2070446f", "ffe14a16b6b6", "72332e237f1f"] } }, { 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 6894c8ce011..836650e63f8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-detail-github.project.workitemdetailsbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-detail", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "52b2cc222d9819121ba99f8f603bc76abe420d731e5853116e802a4db59e2d3e", "platform": "darwin", @@ -42,6 +42,13 @@ "ordinal": 16, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.workItemDetailsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\",\"number\":1,\"type\":\"issue\"}}" }, + "183c3c26aba7": { + "detail": { + "$rpc": "null" + }, + "error": "The host sent a reply this app could not read (github.project.workItemDetailsBySlug)", + "loading": false + }, "1e161db29c89": { "name": "projectRowDetail", "ordinal": 17, @@ -278,11 +285,6 @@ } } }, - "6fa1c828a0ac": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of null (reading 'ok')" - }, "742985d99709": { "name": "projectEditingCommentDraft", "ordinal": 5, @@ -327,6 +329,11 @@ } } }, + "9239767275ff": { + "name": "projectRowDetailError", + "ordinal": 17, + "value": "The host sent a reply this app could not read (github.project.workItemDetailsBySlug)" + }, "96d6a5752f05": { "name": "github.project.workItemDetailsBySlug#1", "ordinal": 15, @@ -531,13 +538,6 @@ "ordinal": 13, "value": "" }, - "ba38fcc880dc": { - "detail": { - "$rpc": "null" - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "loading": false - }, "bff535848bcf": { "name": "projectRowDetailError", "ordinal": 17, @@ -605,13 +605,6 @@ "ordinal": 3, "value": "" }, - "f3a26e0bbdca": { - "detail": { - "$rpc": "null" - }, - "error": "Cannot read properties of null (reading 'ok')", - "loading": false - }, "f6a5085dd8e9": { "name": "projectRowDetailLoading", "ordinal": 14, @@ -658,11 +651,6 @@ } } }, - "fc81dfe2109f": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "fdcd0ea3f000": { "name": "prFileCommentDrafts", "ordinal": 10, @@ -709,7 +697,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "ba38fcc880dc", + "state": "183c3c26aba7", "effects": [ "0216abb9c43b", "da1a7926872e", @@ -725,7 +713,7 @@ "2ee1c7329449", "b63d5911050c", "f6a5085dd8e9", - "fc81dfe2109f", + "9239767275ff", "561861a537bb" ] } @@ -738,7 +726,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "f3a26e0bbdca", + "state": "183c3c26aba7", "effects": [ "0216abb9c43b", "da1a7926872e", @@ -754,7 +742,7 @@ "2ee1c7329449", "b63d5911050c", "f6a5085dd8e9", - "6fa1c828a0ac", + "9239767275ff", "561861a537bb" ] } @@ -767,7 +755,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "45b703d1ba29", + "state": "183c3c26aba7", "effects": [ "0216abb9c43b", "da1a7926872e", @@ -783,7 +771,7 @@ "2ee1c7329449", "b63d5911050c", "f6a5085dd8e9", - "bff535848bcf", + "9239767275ff", "561861a537bb" ] } @@ -796,7 +784,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "45b703d1ba29", + "state": "183c3c26aba7", "effects": [ "0216abb9c43b", "da1a7926872e", @@ -812,7 +800,7 @@ "2ee1c7329449", "b63d5911050c", "f6a5085dd8e9", - "bff535848bcf", + "9239767275ff", "561861a537bb" ] } 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 83698a6885b..a329a243916 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.clearitemfield-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "0fe8c60631cf04d33b34371155f5f80c8426b07b1cbec2fabc5d6d619f2633b8", "platform": "darwin", @@ -56,6 +56,86 @@ } } }, + "07aa7656a20e": { + "name": "githubProjectTable", + "ordinal": 17, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "0904adbf0057": { "name": "github.project.clearItemField#1", "ordinal": 8, @@ -198,6 +278,54 @@ } } }, + "1979da54d36e": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 16, + "args": [ + { + "name": "method", + "value": "github.project.updateIssueTypeBySlug" + }, + { + "name": "params", + "value": { + "host": "github.enterprise.test", + "issueTypeId": "type-1", + "number": 1, + "owner": "owner", + "repo": "repo" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "1bf0937a02b9": { + "name": "projectMutating", + "ordinal": 20, + "value": false + }, + "1cc38c8dde55": { + "name": "projectMutating", + "ordinal": 18, + "value": false + }, "21f5072fed24": { "name": "github.project.clearItemField#1", "ordinal": 8, @@ -238,14 +366,26 @@ "ordinal": 10, "value": "Unknown method" }, - "292291b21e81": { - "error": "Cannot read properties of null (reading 'ok')", + "2bcb7b27e290": { + "name": "projectFieldDrafts", + "ordinal": 13, + "value": { + "field-1": "" + } + }, + "2e771597c5e3": { + "error": "The host sent a reply this app could not read (github.project.clearItemField)", "mutating": false, "row": { "content": { "assignees": [], "issueType": { - "$rpc": "null" + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" }, "labels": [], "number": 1, @@ -291,7 +431,12 @@ "content": { "assignees": [], "issueType": { - "$rpc": "null" + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" }, "labels": [], "number": 1, @@ -479,6 +624,11 @@ } } }, + "383fbfbc5ed2": { + "name": "projectMutating", + "ordinal": 14, + "value": false + }, "3938acdb6906": { "name": "githubProjectTable", "ordinal": 16, @@ -658,11 +808,6 @@ } } }, - "4078377e6c5c": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Cannot read properties of null (reading 'ok')" - }, "40dc9d5e44c9": { "name": "projectRowItem", "ordinal": 10, @@ -840,6 +985,121 @@ "ordinal": 16, "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\"}}" }, + "5100ee0d174e": { + "name": "reply-salvage", + "ordinal": 10, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.clearItemField", + "operation": "github.project.clear-item-field", + "variant": "github-project-cleared-field" + } + }, + "554074300348": { + "error": "The host sent a reply this app could not read (github.project.clearItemField)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + "table": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, + "56d129932c99": { + "name": "projectRowDetailError", + "ordinal": 10, + "value": "The host sent a reply this app could not read (github.project.clearItemField)" + }, "57a8b31d7765": { "error": "", "mutating": false, @@ -954,6 +1214,44 @@ "ordinal": 1, "value": true }, + "5deee78f8af8": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 14, + "args": [ + { + "name": "method", + "value": "github.project.updateIssueTypeBySlug" + }, + { + "name": "params", + "value": { + "host": "github.enterprise.test", + "issueTypeId": "type-1", + "number": 1, + "owner": "owner", + "repo": "repo" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, "5f110d72ade0": { "error": "outer refused", "mutating": false, @@ -1053,10 +1351,10 @@ } } }, - "6057cc98210f": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Failed to update project field" + "6257568c133a": { + "name": "projectMutating", + "ordinal": 15, + "value": true }, "6294f739146e": { "error": "Failed to update project field", @@ -1303,115 +1601,6 @@ } } }, - "674d1327dcc8": { - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "68296a29ee63": { "error": "", "mutating": false, @@ -1495,10 +1684,72 @@ } } }, - "68bd9d026e5d": { - "name": "projectRowDetailError", - "ordinal": 10, - "value": "Cannot read properties of undefined (reading 'ok')" + "697ed9a3e2c0": { + "name": "githubProjectTable", + "ordinal": 12, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } }, "71489da56789": { "name": "github.project.clearItemField#1", @@ -1542,6 +1793,11 @@ "ordinal": 6, "value": false }, + "724040de490b": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 15, + "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\"}}" + }, "73039dc59899": { "name": "github.project.updateItemField#1", "ordinal": 2, @@ -1625,6 +1881,11 @@ } } }, + "9698b684302e": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 17, + "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\"}}" + }, "9953d493b601": { "name": "github.project.updateIssueTypeBySlug#1", "ordinal": 13, @@ -1663,115 +1924,6 @@ } } }, - "9b25901e2435": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "a0e3e8b09346": { "name": "projectMutating", "ordinal": 17, @@ -1844,6 +1996,11 @@ } } }, + "a8ff11b6adce": { + "name": "projectMutating", + "ordinal": 13, + "value": true + }, "ac30aa29c702": { "name": "github.project.clearItemField#1", "ordinal": 8, @@ -1918,11 +2075,103 @@ } } }, + "af86734840ac": { + "name": "githubProjectTable", + "ordinal": 19, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "b849b5f1de35": { "name": "github.project.updateItemField#1", "ordinal": 3, "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\"}}}" }, + "bbd5625afbcb": { + "name": "projectRowItem", + "ordinal": 11, + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "bd34a3803a4e": { "error": "inner refused", "mutating": false, @@ -2032,6 +2281,11 @@ } } }, + "becf1a414c04": { + "name": "projectRowDetailError", + "ordinal": 11, + "value": "Failed to update project field" + }, "c0f6974a198e": { "name": "githubProjectTable", "ordinal": 18, @@ -2104,6 +2358,39 @@ } } }, + "c4f9e36cc470": { + "name": "projectRowItem", + "ordinal": 16, + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + } + }, "c5d817856415": { "error": "", "mutating": true, @@ -2411,6 +2698,36 @@ } } }, + "c7c3ebc65bfe": { + "name": "projectRowItem", + "ordinal": 18, + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, + "ce1f6d47985f": { + "name": "projectMutating", + "ordinal": 12, + "value": false + }, "ce418d51fa61": { "name": "projectRowDetailError", "ordinal": 10, @@ -2698,105 +3015,6 @@ "field-1": "" } }, - "e0b55fd5ddd3": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": { - "field-1": { - "color": "YELLOW", - "fieldId": "field-1", - "kind": "single-select", - "name": "In progress", - "optionId": "option-1" - } - }, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "e3180bc6526a": { "name": "projectMutating", "ordinal": 13, @@ -3138,14 +3356,14 @@ "set-field-0": "eb79a9b3682a", "clear-field-1": "eb79a9b3682a" }, - "state": "e0b55fd5ddd3", + "state": "554074300348", "effects": [ "5d32aa29303c", "d0617c2f5659", "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "68bd9d026e5d", + "56d129932c99", "47573f68feea" ] } @@ -3161,14 +3379,14 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "9b25901e2435", + "state": "2e771597c5e3", "effects": [ "5d32aa29303c", "d0617c2f5659", "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "68bd9d026e5d", + "56d129932c99", "47573f68feea", "46bda137acdb", "2f518d42503d", @@ -3187,14 +3405,14 @@ "set-field-0": "eb79a9b3682a", "clear-field-1": "eb79a9b3682a" }, - "state": "292291b21e81", + "state": "554074300348", "effects": [ "5d32aa29303c", "d0617c2f5659", "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "4078377e6c5c", + "56d129932c99", "47573f68feea" ] } @@ -3210,14 +3428,14 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "674d1327dcc8", + "state": "2e771597c5e3", "effects": [ "5d32aa29303c", "d0617c2f5659", "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "4078377e6c5c", + "56d129932c99", "47573f68feea", "46bda137acdb", "2f518d42503d", @@ -3243,18 +3461,19 @@ "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "40dc9d5e44c9", - "a1dab467956d", - "e09e2ac8124b", - "e3180bc6526a" + "5100ee0d174e", + "bbd5625afbcb", + "697ed9a3e2c0", + "2bcb7b27e290", + "383fbfbc5ed2" ] } }, { "id": "tk-project-row-fields.inner-ok-missing:issue-type-settled", "observation": { - "sender": ["73039dc59899", "71489da56789", "e6e6a29e5419"], - "payloads": ["b849b5f1de35", "093815ac28fb", "491a53ca1f35"], + "sender": ["73039dc59899", "71489da56789", "1979da54d36e"], + "payloads": ["b849b5f1de35", "093815ac28fb", "9698b684302e"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3268,14 +3487,15 @@ "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "40dc9d5e44c9", - "a1dab467956d", - "e09e2ac8124b", - "e3180bc6526a", - "4123bc693ce4", - "ef5a2c4ee0b4", - "c0f6974a198e", - "7440f0f1bab9" + "5100ee0d174e", + "bbd5625afbcb", + "697ed9a3e2c0", + "2bcb7b27e290", + "383fbfbc5ed2", + "6257568c133a", + "c7c3ebc65bfe", + "af86734840ac", + "1bf0937a02b9" ] } }, @@ -3296,16 +3516,17 @@ "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "6057cc98210f", - "47573f68feea" + "5100ee0d174e", + "becf1a414c04", + "ce1f6d47985f" ] } }, { "id": "tk-project-row-fields.inner-false-string-error:issue-type-settled", "observation": { - "sender": ["73039dc59899", "e455d5aa185c", "9953d493b601"], - "payloads": ["b849b5f1de35", "093815ac28fb", "d83c1f3a582e"], + "sender": ["73039dc59899", "e455d5aa185c", "5deee78f8af8"], + "payloads": ["b849b5f1de35", "093815ac28fb", "724040de490b"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3319,12 +3540,13 @@ "e969afb182da", "72332e237f1f", "f39ed9ab521e", - "6057cc98210f", - "47573f68feea", - "46bda137acdb", - "2f518d42503d", - "3938acdb6906", - "a0e3e8b09346" + "5100ee0d174e", + "becf1a414c04", + "ce1f6d47985f", + "a8ff11b6adce", + "c4f9e36cc470", + "07aa7656a20e", + "1cc38c8dde55" ] } }, 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 711c99aa549..ef836217bfd 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateissuetypebyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "8ad021e101d8ef17ed47472a5fbfbeaebb2690a4040c89a0e9ee133e69e4fecd", "platform": "darwin", @@ -101,6 +101,22 @@ "ordinal": 9, "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\"}}" }, + "14a902540c80": { + "name": "reply-salvage", + "ordinal": 17, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.updateIssueTypeBySlug", + "operation": "github.project.update-issue-type", + "variant": "github-project-updated-issue-type" + } + }, + "1bf0937a02b9": { + "name": "projectMutating", + "ordinal": 20, + "value": false + }, "1cc38c8dde55": { "name": "projectMutating", "ordinal": 18, @@ -150,11 +166,6 @@ "ordinal": 17, "value": "outer refused" }, - "32537a469112": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Failed to update issue type" - }, "40dc9d5e44c9": { "name": "projectRowItem", "ordinal": 10, @@ -568,89 +579,6 @@ "ordinal": 1, "value": true }, - "609b678e071d": { - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "6623e063706c": { "name": "github.project.clearItemField#1", "ordinal": 8, @@ -854,11 +782,6 @@ } } }, - "6fa1c828a0ac": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of null (reading 'ok')" - }, "72332e237f1f": { "name": "projectMutating", "ordinal": 6, @@ -1263,11 +1186,93 @@ "ordinal": 17, "value": "Unknown method" }, + "aa42e6e6b667": { + "name": "projectRowDetailError", + "ordinal": 17, + "value": "The host sent a reply this app could not read (github.project.updateIssueTypeBySlug)" + }, "ab52357ddee7": { "name": "projectRowDetailError", "ordinal": 17, "value": "inner refused" }, + "af86734840ac": { + "name": "githubProjectTable", + "ordinal": 19, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, + "b30c7912e09d": { + "name": "projectRowDetailError", + "ordinal": 18, + "value": "Failed to update issue type" + }, "b849b5f1de35": { "name": "github.project.updateItemField#1", "ordinal": 3, @@ -1350,6 +1355,31 @@ } } }, + "c7c3ebc65bfe": { + "name": "projectRowItem", + "ordinal": 18, + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "d0617c2f5659": { "name": "projectRowItem", "ordinal": 4, @@ -1557,89 +1587,6 @@ "ordinal": 13, "value": false }, - "e4b835fd05c7": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "e6e6a29e5419": { "name": "github.project.updateIssueTypeBySlug#1", "ordinal": 15, @@ -1832,6 +1779,89 @@ } } }, + "f22adb628ca9": { + "error": "The host sent a reply this app could not read (github.project.updateIssueTypeBySlug)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "table": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "f39ed9ab521e": { "name": "projectMutating", "ordinal": 7, @@ -1875,11 +1905,6 @@ "ok": false } } - }, - "fc81dfe2109f": { - "name": "projectRowDetailError", - "ordinal": 17, - "value": "Cannot read properties of undefined (reading 'ok')" } }, "recording": { @@ -1990,7 +2015,7 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "e4b835fd05c7", + "state": "f22adb628ca9", "effects": [ "5d32aa29303c", "d0617c2f5659", @@ -2002,7 +2027,7 @@ "e09e2ac8124b", "e3180bc6526a", "4123bc693ce4", - "fc81dfe2109f", + "aa42e6e6b667", "1cc38c8dde55" ] } @@ -2018,7 +2043,7 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "609b678e071d", + "state": "f22adb628ca9", "effects": [ "5d32aa29303c", "d0617c2f5659", @@ -2030,7 +2055,7 @@ "e09e2ac8124b", "e3180bc6526a", "4123bc693ce4", - "6fa1c828a0ac", + "aa42e6e6b667", "1cc38c8dde55" ] } @@ -2058,9 +2083,10 @@ "e09e2ac8124b", "e3180bc6526a", "4123bc693ce4", - "ef5a2c4ee0b4", - "c0f6974a198e", - "7440f0f1bab9" + "14a902540c80", + "c7c3ebc65bfe", + "af86734840ac", + "1bf0937a02b9" ] } }, @@ -2087,8 +2113,9 @@ "e09e2ac8124b", "e3180bc6526a", "4123bc693ce4", - "32537a469112", - "1cc38c8dde55" + "14a902540c80", + "b30c7912e09d", + "7440f0f1bab9" ] } }, 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 9d0e0254f8c..425f0384d28 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-fields-github.project.updateitemfield-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "370aeaee59978071ccb821da13c9e6114936c168947b608539cdb80d40cc9889", "scenarioSha256": "4d33ce12f3f35bea8a98fec2c0378e73caf7fbfb93085545e890b082a392cd60", "platform": "darwin", @@ -108,104 +108,6 @@ "ordinal": 9, "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\"}}" }, - "0b08904275ab": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Failed to update project field" - }, - "0f6f9457ff9b": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "100344e42a25": { "error": "Failed to update project field", "mutating": false, @@ -387,6 +289,11 @@ } } }, + "13bb7de71dc8": { + "name": "projectRowDetailError", + "ordinal": 5, + "value": "Failed to update project field" + }, "152150753b1b": { "name": "projectRowItem", "ordinal": 16, @@ -412,6 +319,49 @@ "itemType": "ISSUE" } }, + "1979da54d36e": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 16, + "args": [ + { + "name": "method", + "value": "github.project.updateIssueTypeBySlug" + }, + { + "name": "params", + "value": { + "host": "github.enterprise.test", + "issueTypeId": "type-1", + "number": 1, + "owner": "owner", + "repo": "repo" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "ok": true + } + } + } + }, + "1bf0937a02b9": { + "name": "projectMutating", + "ordinal": 20, + "value": false + }, "1cc38c8dde55": { "name": "projectMutating", "ordinal": 18, @@ -504,16 +454,18 @@ } } }, + "2bcb7b27e290": { + "name": "projectFieldDrafts", + "ordinal": 13, + "value": { + "field-1": "" + } + }, "3081102388ad": { "name": "projectRowDetailError", "ordinal": 4, "value": "inner refused" }, - "3432c4f21f41": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "349173b5b21b": { "name": "projectRowDetailError", "ordinal": 4, @@ -560,6 +512,39 @@ } } }, + "383fbfbc5ed2": { + "name": "projectMutating", + "ordinal": 14, + "value": false + }, + "3872357fbebc": { + "name": "projectRowItem", + "ordinal": 5, + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + } + }, "40dc9d5e44c9": { "name": "projectRowItem", "ordinal": 10, @@ -890,6 +875,11 @@ "itemType": "ISSUE" } }, + "569c195f7453": { + "name": "github.project.clearItemField#1", + "ordinal": 10, + "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\"}}" + }, "56f10066f7c7": { "error": "outer refused", "mutating": false, @@ -1045,6 +1035,81 @@ } } }, + "5cea28c5210a": { + "name": "githubProjectTable", + "ordinal": 6, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": { + "field-1": { + "color": "YELLOW", + "fieldId": "field-1", + "kind": "single-select", + "name": "In progress", + "optionId": "option-1" + } + }, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "5d32aa29303c": { "name": "projectMutating", "ordinal": 1, @@ -1088,89 +1153,6 @@ } } }, - "609b678e071d": { - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "60df1711511a": { "name": "github.project.updateItemField#1", "ordinal": 2, @@ -1213,6 +1195,11 @@ } } }, + "6257568c133a": { + "name": "projectMutating", + "ordinal": 15, + "value": true + }, "652398d776bb": { "name": "github.project.clearItemField#1", "ordinal": 7, @@ -1380,6 +1367,43 @@ } } }, + "672d4cc619a7": { + "name": "github.project.clearItemField#1", + "ordinal": 9, + "args": [ + { + "name": "method", + "value": "github.project.clearItemField" + }, + { + "name": "params", + "value": { + "fieldId": "field-1", + "host": "github.enterprise.test", + "itemId": "item-1", + "projectId": "project-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "ok": true + } + } + } + }, "68296a29ee63": { "error": "", "mutating": false, @@ -1463,6 +1487,73 @@ } } }, + "697ed9a3e2c0": { + "name": "githubProjectTable", + "ordinal": 12, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, "72332e237f1f": { "name": "projectMutating", "ordinal": 6, @@ -1654,19 +1745,19 @@ } } }, - "9187aa80af70": { - "error": "Cannot read properties of null (reading 'ok')", + "9698b684302e": { + "name": "github.project.updateIssueTypeBySlug#1", + "ordinal": 17, + "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\"}}" + }, + "979b91030a71": { + "error": "transport failure", "mutating": false, "row": { "content": { "assignees": [], "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" + "$rpc": "null" }, "labels": [], "number": 1, @@ -1704,12 +1795,7 @@ "content": { "assignees": [], "issueType": { - "color": "RED", - "description": { - "$rpc": "null" - }, - "id": "type-1", - "name": "Bug" + "$rpc": "null" }, "labels": [], "number": 1, @@ -1747,8 +1833,8 @@ } } }, - "979b91030a71": { - "error": "transport failure", + "9fcdd59bae99": { + "error": "The host sent a reply this app could not read (github.project.updateItemField)", "mutating": false, "row": { "content": { @@ -1897,11 +1983,98 @@ } } }, + "a735fd6aee5f": { + "name": "projectMutating", + "ordinal": 7, + "value": false + }, "a8ff11b6adce": { "name": "projectMutating", "ordinal": 13, "value": true }, + "af86734840ac": { + "name": "githubProjectTable", + "ordinal": 19, + "value": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } + }, + "afd7d6c12899": { + "name": "projectRowDetailError", + "ordinal": 4, + "value": "The host sent a reply this app could not read (github.project.updateItemField)" + }, + "b0f2d0edec6a": { + "name": "projectMutating", + "ordinal": 8, + "value": true + }, "b849b5f1de35": { "name": "github.project.updateItemField#1", "ordinal": 3, @@ -1949,6 +2122,26 @@ } } }, + "bbd5625afbcb": { + "name": "projectRowItem", + "ordinal": 11, + "value": { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, "c0f6974a198e": { "name": "githubProjectTable", "ordinal": 18, @@ -2021,6 +2214,42 @@ } } }, + "c7c3ebc65bfe": { + "name": "projectRowItem", + "ordinal": 18, + "value": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + } + }, + "c7fa870aec2b": { + "name": "reply-salvage", + "ordinal": 4, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.updateItemField", + "operation": "github.project.update-item-field", + "variant": "github-project-updated-field" + } + }, "c99bbd5a8fc1": { "name": "projectMutating", "ordinal": 6, @@ -2363,89 +2592,6 @@ "ordinal": 13, "value": false }, - "e4b835fd05c7": { - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false, - "row": { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - "table": { - "fields": [ - { - "dataType": "SINGLE_SELECT", - "id": "field-1", - "kind": "single-select", - "name": "Status", - "options": [ - { - "color": "YELLOW", - "id": "option-1", - "name": "In progress" - } - ] - } - ], - "project": { - "id": "project-1", - "number": 3, - "title": "Board" - }, - "rows": [ - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 1, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/issues/1" - }, - "fieldValuesByFieldId": {}, - "id": "item-1", - "itemType": "ISSUE" - }, - { - "content": { - "assignees": [], - "issueType": { - "$rpc": "null" - }, - "labels": [], - "number": 2, - "repository": "owner/repo", - "state": "OPEN", - "url": "https://github.com/owner/repo/pull/2" - }, - "fieldValuesByFieldId": {}, - "id": "item-2", - "itemType": "PULL_REQUEST" - } - ], - "selectedView": { - "filter": "", - "id": "view-1", - "layout": "TABLE_LAYOUT", - "name": "Table", - "number": 1 - } - } - }, "e5b78d47a406": { "name": "github.project.updateItemField#1", "ordinal": 2, @@ -2685,10 +2831,98 @@ "ordinal": 8, "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\"}}" }, - "f2f279e9fa21": { - "name": "projectRowDetailError", - "ordinal": 4, - "value": "Cannot read properties of null (reading 'ok')" + "f3946eee2c17": { + "error": "The host sent a reply this app could not read (github.project.updateItemField)", + "mutating": false, + "row": { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + "table": { + "fields": [ + { + "dataType": "SINGLE_SELECT", + "id": "field-1", + "kind": "single-select", + "name": "Status", + "options": [ + { + "color": "YELLOW", + "id": "option-1", + "name": "In progress" + } + ] + } + ], + "project": { + "id": "project-1", + "number": 3, + "title": "Board" + }, + "rows": [ + { + "content": { + "assignees": [], + "issueType": { + "color": "RED", + "description": { + "$rpc": "null" + }, + "id": "type-1", + "name": "Bug" + }, + "labels": [], + "number": 1, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/issues/1" + }, + "fieldValuesByFieldId": {}, + "id": "item-1", + "itemType": "ISSUE" + }, + { + "content": { + "assignees": [], + "issueType": { + "$rpc": "null" + }, + "labels": [], + "number": 2, + "repository": "owner/repo", + "state": "OPEN", + "url": "https://github.com/owner/repo/pull/2" + }, + "fieldValuesByFieldId": {}, + "id": "item-2", + "itemType": "PULL_REQUEST" + } + ], + "selectedView": { + "filter": "", + "id": "view-1", + "layout": "TABLE_LAYOUT", + "name": "Table", + "number": 1 + } + } }, "f39ed9ab521e": { "name": "projectMutating", @@ -2813,8 +3047,8 @@ "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" }, - "state": "e4b835fd05c7", - "effects": ["5d32aa29303c", "3432c4f21f41", "e9296dde8e41"] + "state": "9fcdd59bae99", + "effects": ["5d32aa29303c", "afd7d6c12899", "e9296dde8e41"] } }, { @@ -2827,10 +3061,10 @@ "set-field-0": "eb79a9b3682a", "clear-field-1": "eb79a9b3682a" }, - "state": "e4b835fd05c7", + "state": "9fcdd59bae99", "effects": [ "5d32aa29303c", - "3432c4f21f41", + "afd7d6c12899", "e9296dde8e41", "c99bbd5a8fc1", "508399f95679", @@ -2851,10 +3085,10 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "0f6f9457ff9b", + "state": "f3946eee2c17", "effects": [ "5d32aa29303c", - "3432c4f21f41", + "afd7d6c12899", "e9296dde8e41", "c99bbd5a8fc1", "508399f95679", @@ -2877,8 +3111,8 @@ "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a" }, - "state": "609b678e071d", - "effects": ["5d32aa29303c", "f2f279e9fa21", "e9296dde8e41"] + "state": "9fcdd59bae99", + "effects": ["5d32aa29303c", "afd7d6c12899", "e9296dde8e41"] } }, { @@ -2891,10 +3125,10 @@ "set-field-0": "eb79a9b3682a", "clear-field-1": "eb79a9b3682a" }, - "state": "609b678e071d", + "state": "9fcdd59bae99", "effects": [ "5d32aa29303c", - "f2f279e9fa21", + "afd7d6c12899", "e9296dde8e41", "c99bbd5a8fc1", "508399f95679", @@ -2915,10 +3149,10 @@ "clear-field-1": "eb79a9b3682a", "issue-type-2": "eb79a9b3682a" }, - "state": "9187aa80af70", + "state": "f3946eee2c17", "effects": [ "5d32aa29303c", - "f2f279e9fa21", + "afd7d6c12899", "e9296dde8e41", "c99bbd5a8fc1", "508399f95679", @@ -2942,14 +3176,20 @@ "set-field-0": "eb79a9b3682a" }, "state": "424e9a1ae7ed", - "effects": ["5d32aa29303c", "d0617c2f5659", "e969afb182da", "72332e237f1f"] + "effects": [ + "5d32aa29303c", + "c7fa870aec2b", + "3872357fbebc", + "5cea28c5210a", + "a735fd6aee5f" + ] } }, { "id": "tk-project-row-fields.inner-ok-missing:clear-field-settled", "observation": { - "sender": ["35983be2f86f", "6623e063706c"], - "payloads": ["b849b5f1de35", "093815ac28fb"], + "sender": ["35983be2f86f", "672d4cc619a7"], + "payloads": ["b849b5f1de35", "569c195f7453"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2958,22 +3198,23 @@ "state": "68296a29ee63", "effects": [ "5d32aa29303c", - "d0617c2f5659", - "e969afb182da", - "72332e237f1f", - "f39ed9ab521e", - "40dc9d5e44c9", - "a1dab467956d", - "e09e2ac8124b", - "e3180bc6526a" + "c7fa870aec2b", + "3872357fbebc", + "5cea28c5210a", + "a735fd6aee5f", + "b0f2d0edec6a", + "bbd5625afbcb", + "697ed9a3e2c0", + "2bcb7b27e290", + "383fbfbc5ed2" ] } }, { "id": "tk-project-row-fields.inner-ok-missing:issue-type-settled", "observation": { - "sender": ["35983be2f86f", "6623e063706c", "e6e6a29e5419"], - "payloads": ["b849b5f1de35", "093815ac28fb", "491a53ca1f35"], + "sender": ["35983be2f86f", "672d4cc619a7", "1979da54d36e"], + "payloads": ["b849b5f1de35", "569c195f7453", "9698b684302e"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -2983,18 +3224,19 @@ "state": "de29905548eb", "effects": [ "5d32aa29303c", - "d0617c2f5659", - "e969afb182da", - "72332e237f1f", - "f39ed9ab521e", - "40dc9d5e44c9", - "a1dab467956d", - "e09e2ac8124b", - "e3180bc6526a", - "4123bc693ce4", - "ef5a2c4ee0b4", - "c0f6974a198e", - "7440f0f1bab9" + "c7fa870aec2b", + "3872357fbebc", + "5cea28c5210a", + "a735fd6aee5f", + "b0f2d0edec6a", + "bbd5625afbcb", + "697ed9a3e2c0", + "2bcb7b27e290", + "383fbfbc5ed2", + "6257568c133a", + "c7c3ebc65bfe", + "af86734840ac", + "1bf0937a02b9" ] } }, @@ -3008,14 +3250,14 @@ "set-field-0": "eb79a9b3682a" }, "state": "100344e42a25", - "effects": ["5d32aa29303c", "0b08904275ab", "e9296dde8e41"] + "effects": ["5d32aa29303c", "c7fa870aec2b", "13bb7de71dc8", "72332e237f1f"] } }, { "id": "tk-project-row-fields.inner-false-string-error:clear-field-settled", "observation": { - "sender": ["b90aee49fc21", "652398d776bb"], - "payloads": ["b849b5f1de35", "efc003b9e8c2"], + "sender": ["b90aee49fc21", "6623e063706c"], + "payloads": ["b849b5f1de35", "093815ac28fb"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3024,21 +3266,22 @@ "state": "100344e42a25", "effects": [ "5d32aa29303c", - "0b08904275ab", - "e9296dde8e41", - "c99bbd5a8fc1", - "508399f95679", - "cf478c3aed54", - "015cfc810cb3", - "ce1f6d47985f" + "c7fa870aec2b", + "13bb7de71dc8", + "72332e237f1f", + "f39ed9ab521e", + "40dc9d5e44c9", + "a1dab467956d", + "e09e2ac8124b", + "e3180bc6526a" ] } }, { "id": "tk-project-row-fields.inner-false-string-error:issue-type-settled", "observation": { - "sender": ["b90aee49fc21", "652398d776bb", "5deee78f8af8"], - "payloads": ["b849b5f1de35", "efc003b9e8c2", "724040de490b"], + "sender": ["b90aee49fc21", "6623e063706c", "e6e6a29e5419"], + "payloads": ["b849b5f1de35", "093815ac28fb", "491a53ca1f35"], "settlements": { "mount": "eb79a9b3682a", "set-field-0": "eb79a9b3682a", @@ -3048,17 +3291,18 @@ "state": "4535ac294dad", "effects": [ "5d32aa29303c", - "0b08904275ab", - "e9296dde8e41", - "c99bbd5a8fc1", - "508399f95679", - "cf478c3aed54", - "015cfc810cb3", - "ce1f6d47985f", - "a8ff11b6adce", - "152150753b1b", - "57da360e2653", - "1cc38c8dde55" + "c7fa870aec2b", + "13bb7de71dc8", + "72332e237f1f", + "f39ed9ab521e", + "40dc9d5e44c9", + "a1dab467956d", + "e09e2ac8124b", + "e3180bc6526a", + "4123bc693ce4", + "ef5a2c4ee0b4", + "c0f6974a198e", + "7440f0f1bab9" ] } }, 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 bddf71420b5..68ba42b4d0f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.addprreviewcomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "3ed626e9d776e009f008c85f5165c8199bc2b85afd279a435e2e0f800737b42f", "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 7208d0f369c..e901295b429 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.mergepr-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "1e402d7984c7958ba23fb700464a450374ad72424be8f2669f769199a1a2899e", "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 65ffcd7acb7..ce2f727bfc2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.prfilecontents-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "1b2ead3380b546c94c5da2ed61c9208cd158db9a56ca87e3e72e450668e1e507", "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 6eac153f020..77025f85045 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "947b1c1aa9688688a1e4cbdbacfde185fbf5d0b28b13e753ba87bdf7f999aa00", "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 1537d7a76c5..c91ce45ef39 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-files-merge-github.updateprstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "cc450fcf20e403eea6ce1ee103c131feccb2906c0ae31c7cd3f3d3fa0b739d68", "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 5bb6ca7916f..14c0bf9884e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listassignableusersbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "2303fc902e5a6cf6a43db58ef2938538a7b770d1509cc22a9811f4c83051aea1", "platform": "darwin", @@ -47,6 +47,11 @@ } } }, + "06512b81879b": { + "name": "projectAssignableUsersError", + "ordinal": 18, + "value": "The host sent a reply this app could not read (github.project.listAssignableUsersBySlug)" + }, "21ea4fab050f": { "name": "projectAssignableUsers", "ordinal": 18, @@ -195,6 +200,17 @@ } } }, + "41f997281eb8": { + "name": "reply-salvage", + "ordinal": 18, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.listAssignableUsersBySlug", + "operation": "github.project.assignable-users", + "variant": "github-project-assignable-users" + } + }, "485d9242f6f3": { "name": "github.project.listAssignableUsersBySlug#1", "ordinal": 8, @@ -283,24 +299,6 @@ "ordinal": 21, "value": false }, - "4e2291f56b70": { - "name": "projectAssignableUsersError", - "ordinal": 18, - "value": "Cannot read properties of undefined (reading 'ok')" - }, - "554d6896d32c": { - "labels": ["bug"], - "labelsError": "", - "types": [ - { - "id": "type-1", - "name": "Bug" - } - ], - "typesError": "", - "users": [], - "usersError": "Cannot read properties of undefined (reading 'ok')" - }, "55fc5237a996": { "name": "github.project.listIssueTypesBySlug#1", "ordinal": 15, @@ -339,29 +337,11 @@ "ordinal": 16, "value": ["bug"] }, - "63501635672a": { - "labels": ["bug"], - "labelsError": "", - "types": [ - { - "id": "type-1", - "name": "Bug" - } - ], - "typesError": "", - "users": [], - "usersError": "Cannot read properties of null (reading 'ok')" - }, "6d2454f3b7b9": { "name": "projectLabelsLoading", "ordinal": 3, "value": true }, - "6fdc95d90651": { - "name": "projectAssignableUsersError", - "ordinal": 18, - "value": "Failed to load assignees" - }, "81eea9b1a14a": { "name": "github.project.listAssignableUsersBySlug#1", "ordinal": 8, @@ -399,6 +379,11 @@ } } }, + "9137611226ab": { + "name": "projectAssignableUsersError", + "ordinal": 19, + "value": "Failed to load assignees" + }, "9912fbdd457c": { "name": "projectIssueTypesLoading", "ordinal": 11, @@ -459,6 +444,21 @@ } } }, + "a71d7fbf7517": { + "name": "projectIssueTypes", + "ordinal": 21, + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ] + }, + "aa05f01a4255": { + "name": "projectIssueTypesLoading", + "ordinal": 22, + "value": false + }, "bee3fb4d48da": { "name": "projectIssueTypes", "ordinal": 9, @@ -517,11 +517,6 @@ "ordinal": 13, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.project.listLabelsBySlug\",\"params\":{\"owner\":\"owner\",\"repo\":\"repo\",\"host\":\"github.enterprise.test\"}}" }, - "d1967eb80606": { - "name": "projectAssignableUsersError", - "ordinal": 18, - "value": "Cannot read properties of null (reading 'ok')" - }, "d36a9b596499": { "name": "projectLabelsError", "ordinal": 2, @@ -563,11 +558,29 @@ "ordinal": 18, "value": "" }, + "d6657538c321": { + "name": "projectAssignableUsersLoading", + "ordinal": 20, + "value": false + }, "e004f7afb559": { "name": "projectLabelsLoading", "ordinal": 17, "value": false }, + "e2f2bc801b88": { + "labels": ["bug"], + "labelsError": "", + "types": [ + { + "id": "type-1", + "name": "Bug" + } + ], + "typesError": "", + "users": [], + "usersError": "The host sent a reply this app could not read (github.project.listAssignableUsersBySlug)" + }, "e8838734c6bb": { "name": "github.project.listAssignableUsersBySlug#1", "ordinal": 14, @@ -815,7 +828,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "554d6896d32c", + "state": "e2f2bc801b88", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -828,7 +841,7 @@ "9912fbdd457c", "61e9a9d3f2b6", "e004f7afb559", - "4e2291f56b70", + "06512b81879b", "25899527b47b", "f3677b2e5ed9", "4b33e1366553" @@ -843,7 +856,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "63501635672a", + "state": "e2f2bc801b88", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -856,7 +869,7 @@ "9912fbdd457c", "61e9a9d3f2b6", "e004f7afb559", - "d1967eb80606", + "06512b81879b", "25899527b47b", "f3677b2e5ed9", "4b33e1366553" @@ -884,10 +897,11 @@ "9912fbdd457c", "61e9a9d3f2b6", "e004f7afb559", - "6fdc95d90651", - "25899527b47b", - "f3677b2e5ed9", - "4b33e1366553" + "41f997281eb8", + "9137611226ab", + "d6657538c321", + "a71d7fbf7517", + "aa05f01a4255" ] } }, @@ -912,10 +926,11 @@ "9912fbdd457c", "61e9a9d3f2b6", "e004f7afb559", - "6fdc95d90651", - "25899527b47b", - "f3677b2e5ed9", - "4b33e1366553" + "41f997281eb8", + "9137611226ab", + "d6657538c321", + "a71d7fbf7517", + "aa05f01a4255" ] } }, 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 fee6305d6a1..c48a1d9f694 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listissuetypesbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "8b75854487566ca6da98d391b6822c81c99e61011fc094458ae038905c1c9287", "platform": "darwin", @@ -13,11 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "09317122b8cc": { - "name": "projectIssueTypesError", - "ordinal": 20, - "value": "Failed to load issue types" - }, "0bf9ac2a3d0a": { "name": "projectIssueTypesError", "ordinal": 20, @@ -213,6 +208,19 @@ "ordinal": 16, "value": ["bug"] }, + "6394983c1b0a": { + "labels": ["bug"], + "labelsError": "", + "types": [], + "typesError": "The host sent a reply this app could not read (github.project.listIssueTypesBySlug)", + "users": [ + { + "login": "octocat", + "name": "Octo" + } + ], + "usersError": "" + }, "64492996b2ef": { "name": "github.project.listIssueTypesBySlug#1", "ordinal": 12, @@ -254,19 +262,6 @@ "ordinal": 3, "value": true }, - "78836b1c1374": { - "labels": ["bug"], - "labelsError": "", - "types": [], - "typesError": "Cannot read properties of undefined (reading 'ok')", - "users": [ - { - "login": "octocat", - "name": "Octo" - } - ], - "usersError": "" - }, "7c837b386969": { "labels": ["bug"], "labelsError": "", @@ -330,24 +325,6 @@ } } }, - "8cec5485d355": { - "labels": ["bug"], - "labelsError": "", - "types": [], - "typesError": "Cannot read properties of null (reading 'ok')", - "users": [ - { - "login": "octocat", - "name": "Octo" - } - ], - "usersError": "" - }, - "9376eddaaf7f": { - "name": "projectIssueTypesError", - "ordinal": 20, - "value": "Cannot read properties of null (reading 'ok')" - }, "982e4e890e08": { "name": "github.project.listIssueTypesBySlug#1", "ordinal": 12, @@ -437,11 +414,6 @@ } } }, - "a0d20dd617cc": { - "name": "projectIssueTypesError", - "ordinal": 20, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "a5fc70778afe": { "labels": ["bug"], "labelsError": "", @@ -492,6 +464,11 @@ } } }, + "aa05f01a4255": { + "name": "projectIssueTypesLoading", + "ordinal": 22, + "value": false + }, "af11ecca4274": { "name": "github.project.listIssueTypesBySlug#1", "ordinal": 12, @@ -656,6 +633,22 @@ ], "usersError": "" }, + "da8be96a48a0": { + "name": "reply-salvage", + "ordinal": 20, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.listIssueTypesBySlug", + "operation": "github.project.issue-types", + "variant": "github-project-issue-types" + } + }, + "dccbed4e785f": { + "name": "projectIssueTypesError", + "ordinal": 20, + "value": "The host sent a reply this app could not read (github.project.listIssueTypesBySlug)" + }, "e004f7afb559": { "name": "projectLabelsLoading", "ordinal": 17, @@ -764,6 +757,11 @@ "name": "projectAssignableUsersError", "ordinal": 6, "value": "" + }, + "f8df235cff2e": { + "name": "projectIssueTypesError", + "ordinal": 21, + "value": "Failed to load issue types" } }, "recording": { @@ -805,7 +803,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "78836b1c1374", + "state": "6394983c1b0a", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -820,7 +818,7 @@ "e004f7afb559", "21ea4fab050f", "25899527b47b", - "a0d20dd617cc", + "dccbed4e785f", "4b33e1366553" ] } @@ -833,7 +831,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "8cec5485d355", + "state": "6394983c1b0a", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -848,7 +846,7 @@ "e004f7afb559", "21ea4fab050f", "25899527b47b", - "9376eddaaf7f", + "dccbed4e785f", "4b33e1366553" ] } @@ -876,8 +874,9 @@ "e004f7afb559", "21ea4fab050f", "25899527b47b", - "09317122b8cc", - "4b33e1366553" + "da8be96a48a0", + "f8df235cff2e", + "aa05f01a4255" ] } }, @@ -904,8 +903,9 @@ "e004f7afb559", "21ea4fab050f", "25899527b47b", - "09317122b8cc", - "4b33e1366553" + "da8be96a48a0", + "f8df235cff2e", + "aa05f01a4255" ] } }, 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 c747de8e37c..37d85d3ce31 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-metadata-load-github.project.listlabelsbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f8f6e5d500f959b9b15c5498885a05422747880b6aef4ad795bc3064ebbacea6", "scenarioSha256": "7c948e76afb331e4038298215181adc97cd533c4f79e205e183c08e8a2db20fc", "platform": "darwin", @@ -13,6 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "073745984248": { + "name": "reply-salvage", + "ordinal": 16, + "value": { + "droppedCount": 1, + "droppedPaths": ["error"], + "method": "github.project.listLabelsBySlug", + "operation": "github.project.repo-labels", + "variant": "github-project-labels" + } + }, "0bcc456bf76f": { "name": "github.project.listLabelsBySlug#1", "ordinal": 4, @@ -167,11 +178,6 @@ "ordinal": 5, "value": [] }, - "381af2adf79d": { - "name": "projectLabelsError", - "ordinal": 16, - "value": "Failed to load labels" - }, "3902ea43121b": { "name": "projectAssignableUsersLoading", "ordinal": 7, @@ -219,11 +225,6 @@ } } }, - "470f737f0c02": { - "name": "projectLabelsError", - "ordinal": 16, - "value": "Cannot read properties of null (reading 'ok')" - }, "4888b8ed69c4": { "name": "github.project.listLabelsBySlug#1", "ordinal": 4, @@ -352,6 +353,11 @@ ], "usersError": "" }, + "5a71bc1a4967": { + "name": "projectLabelsLoading", + "ordinal": 18, + "value": false + }, "5a98f463c804": { "name": "github.project.listLabelsBySlug#1", "ordinal": 4, @@ -510,11 +516,6 @@ } } }, - "8cd5756b84e6": { - "name": "projectLabelsError", - "ordinal": 16, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "903819696961": { "labels": [], "labelsError": "Failed to load labels", @@ -585,6 +586,26 @@ } } }, + "a71d7fbf7517": { + "name": "projectIssueTypes", + "ordinal": 21, + "value": [ + { + "id": "type-1", + "name": "Bug" + } + ] + }, + "a9db726dabcc": { + "name": "projectLabelsError", + "ordinal": 17, + "value": "Failed to load labels" + }, + "aa05f01a4255": { + "name": "projectIssueTypesLoading", + "ordinal": 22, + "value": false + }, "b2a3d019b4c1": { "name": "github.project.listLabelsBySlug#1", "ordinal": 4, @@ -619,6 +640,21 @@ } } }, + "b5d449c93e42": { + "name": "projectAssignableUsers", + "ordinal": 19, + "value": [ + { + "login": "octocat", + "name": "Octo" + } + ] + }, + "b6a7c936cff9": { + "name": "projectLabelsError", + "ordinal": 16, + "value": "The host sent a reply this app could not read (github.project.listLabelsBySlug)" + }, "bee3fb4d48da": { "name": "projectIssueTypes", "ordinal": 9, @@ -689,9 +725,19 @@ ], "usersError": "" }, - "dba8d8f1c7df": { + "d6657538c321": { + "name": "projectAssignableUsersLoading", + "ordinal": 20, + "value": false + }, + "e004f7afb559": { + "name": "projectLabelsLoading", + "ordinal": 17, + "value": false + }, + "e297dafb80c9": { "labels": [], - "labelsError": "Cannot read properties of undefined (reading 'ok')", + "labelsError": "The host sent a reply this app could not read (github.project.listLabelsBySlug)", "types": [ { "id": "type-1", @@ -707,11 +753,6 @@ ], "usersError": "" }, - "e004f7afb559": { - "name": "projectLabelsLoading", - "ordinal": 17, - "value": false - }, "e2ec2112181a": { "name": "github.project.listLabelsBySlug#1", "ordinal": 4, @@ -786,24 +827,6 @@ "name": "projectLabelsError", "ordinal": 16, "value": "Unknown method" - }, - "f9bf509bfe31": { - "labels": [], - "labelsError": "Cannot read properties of null (reading 'ok')", - "types": [ - { - "id": "type-1", - "name": "Bug" - } - ], - "typesError": "", - "users": [ - { - "login": "octocat", - "name": "Octo" - } - ], - "usersError": "" } }, "recording": { @@ -845,7 +868,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "dba8d8f1c7df", + "state": "e297dafb80c9", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -856,7 +879,7 @@ "bee3fb4d48da", "e918604a4f49", "9912fbdd457c", - "8cd5756b84e6", + "b6a7c936cff9", "e004f7afb559", "21ea4fab050f", "25899527b47b", @@ -873,7 +896,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "f9bf509bfe31", + "state": "e297dafb80c9", "effects": [ "5dd15ec04d86", "d36a9b596499", @@ -884,7 +907,7 @@ "bee3fb4d48da", "e918604a4f49", "9912fbdd457c", - "470f737f0c02", + "b6a7c936cff9", "e004f7afb559", "21ea4fab050f", "25899527b47b", @@ -912,12 +935,13 @@ "bee3fb4d48da", "e918604a4f49", "9912fbdd457c", - "381af2adf79d", - "e004f7afb559", - "21ea4fab050f", - "25899527b47b", - "f3677b2e5ed9", - "4b33e1366553" + "073745984248", + "a9db726dabcc", + "5a71bc1a4967", + "b5d449c93e42", + "d6657538c321", + "a71d7fbf7517", + "aa05f01a4255" ] } }, @@ -940,12 +964,13 @@ "bee3fb4d48da", "e918604a4f49", "9912fbdd457c", - "381af2adf79d", - "e004f7afb559", - "21ea4fab050f", - "25899527b47b", - "f3677b2e5ed9", - "4b33e1366553" + "073745984248", + "a9db726dabcc", + "5a71bc1a4967", + "b5d449c93e42", + "d6657538c321", + "a71d7fbf7517", + "aa05f01a4255" ] } }, 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 c7a1696b3e7..9a00ca88d77 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.prchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 21ce6f4d33f..bef5c89358f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.requestprreviewers-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 47363ada17d..c6e8d31f1b5 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.rerunprchecks-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 afcf2dd3cde..9758718220d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-review-checks-github.setprfileviewed-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e09174b626e..fe98ea6c4e2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addissuecomment-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e5309b4aade..1dc53a9bca8 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.addprreviewcommentreply-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cded21dcce0..913b50116fa 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.project.deleteissuecommentbyslug-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "55058202df36c8b951510215936e496ea88d3d71a6690090a13c52deb13e34e1", "scenarioSha256": "5bc59cfd0d951ae5193df5c49ce3618d9536be0bc8f8192a7b03000963c2001b", "platform": "darwin", @@ -238,103 +238,10 @@ "error": "", "mutating": false }, - "31aef5de0b63": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of undefined (reading 'ok')", - "mutating": false - }, - "3202574ed4db": { - "detail": { - "assignees": ["octocat"], - "baseSha": "base-sha", - "body": "body", - "checks": [], - "comments": [ - { - "author": "octocat", - "body": "please fix", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": 501, - "isResolved": false, - "line": 12, - "path": "src/index.ts", - "threadId": "thread-1" - }, - { - "author": "octocat", - "body": "a thought", - "createdAt": "2020-01-01T00:00:00.000Z", - "id": "comment-2" - } - ], - "files": [ - { - "additions": 2, - "deletions": 1, - "oldPath": { - "$rpc": "undefined" - }, - "path": "src/index.ts", - "status": "modified", - "viewerViewedState": "UNVIEWED" - } - ], - "headSha": "head-sha", - "labels": ["bug"], - "latestReviews": [], - "provider": "github", - "pullRequestId": "PR_kwDO", - "reviewDecision": { - "$rpc": "null" - }, - "reviewRequests": [] - }, - "error": "Cannot read properties of null (reading 'ok')", - "mutating": false + "32dd8a928ba1": { + "name": "projectRowDetailError", + "ordinal": 5, + "value": "The host sent a reply this app could not read (github.project.deleteIssueCommentBySlug)" }, "403b13184ce0": { "name": "itemReplyDrafts", @@ -343,11 +250,6 @@ "comment-2": "a reply" } }, - "48a0d697f700": { - "name": "projectRowDetailError", - "ordinal": 5, - "value": "Cannot read properties of undefined (reading 'ok')" - }, "49a0fd5a9cb8": { "name": "projectRowDetail", "ordinal": 11, @@ -1018,6 +920,55 @@ "ordinal": 5, "value": "" }, + "ba62560eb2ed": { + "detail": { + "assignees": ["octocat"], + "baseSha": "base-sha", + "body": "body", + "checks": [], + "comments": [ + { + "author": "octocat", + "body": "please fix", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": 501, + "isResolved": false, + "line": 12, + "path": "src/index.ts", + "threadId": "thread-1" + }, + { + "author": "octocat", + "body": "a thought", + "createdAt": "2020-01-01T00:00:00.000Z", + "id": "comment-2" + } + ], + "files": [ + { + "additions": 2, + "deletions": 1, + "oldPath": { + "$rpc": "undefined" + }, + "path": "src/index.ts", + "status": "modified", + "viewerViewedState": "UNVIEWED" + } + ], + "headSha": "head-sha", + "labels": ["bug"], + "latestReviews": [], + "provider": "github", + "pullRequestId": "PR_kwDO", + "reviewDecision": { + "$rpc": "null" + }, + "reviewRequests": [] + }, + "error": "The host sent a reply this app could not read (github.project.deleteIssueCommentBySlug)", + "mutating": false + }, "bb6b127da045": { "name": "github.project.deleteIssueCommentBySlug#1", "ordinal": 3, @@ -1397,11 +1348,6 @@ } } }, - "d77f6fa8d216": { - "name": "projectRowDetailError", - "ordinal": 5, - "value": "Cannot read properties of null (reading 'ok')" - }, "e2d6e04c1984": { "detail": { "assignees": ["octocat"], @@ -1815,8 +1761,8 @@ "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" }, - "state": "31aef5de0b63", - "effects": ["5d32aa29303c", "19346a719903", "48a0d697f700", "72332e237f1f"] + "state": "ba62560eb2ed", + "effects": ["5d32aa29303c", "19346a719903", "32dd8a928ba1", "72332e237f1f"] } }, { @@ -1833,7 +1779,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "48a0d697f700", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", @@ -1857,7 +1803,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "48a0d697f700", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", @@ -1887,7 +1833,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "48a0d697f700", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", @@ -1915,8 +1861,8 @@ "mount": "eb79a9b3682a", "delete-comment-0": "eb79a9b3682a" }, - "state": "3202574ed4db", - "effects": ["5d32aa29303c", "19346a719903", "d77f6fa8d216", "72332e237f1f"] + "state": "ba62560eb2ed", + "effects": ["5d32aa29303c", "19346a719903", "32dd8a928ba1", "72332e237f1f"] } }, { @@ -1933,7 +1879,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "d77f6fa8d216", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", @@ -1957,7 +1903,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "d77f6fa8d216", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", @@ -1987,7 +1933,7 @@ "effects": [ "5d32aa29303c", "19346a719903", - "d77f6fa8d216", + "32dd8a928ba1", "72332e237f1f", "f39ed9ab521e", "510db4658728", 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 c68b82b8ade..e250bbf1582 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.project-row-threads-github.resolvereviewthread-1.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 09c2ce741e9..478117de335 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.countworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f787651dc4b..4f8159ca53d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-github.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f7c47b4477b..ec45dc26a9f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.listteams-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 17685cacb4b..4ee49e30325 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-linear.status-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b6c680b4bc7..41ef8a98351 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.provider-load-settings.update-1.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7701d9f3fa4..96db5b6fe50 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 @@ -3,9 +3,9 @@ "family": "tasks.route-repo-list", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "feb6cee1ab7ecff1ba98bfba22d4924c748d3bb6b749db460cb617ee50b92f2c", "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 dd6cc604f29..150a8704b89 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-github.listworkitems-1.json @@ -3,35 +3,71 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "ea5c32c4dbb67aae1ebaf809a28104d52d189e5153d9b28285f4d8a6d78753ea", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "85c9e5107fe3e74f44d8b3e5c791b80ff0370cdc3ada69dc09fe38d8058fb263", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "005749a0bd75": { + "name": "github.listWorkItems#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.listWorkItems" + }, + { + "name": "params", + "value": { + "limit": 36, + "query": "bug", + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "items": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + } + } + } + }, "017731afa453": { "name": "repo.searchRefs#1", "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" }, - "05e9b743fb1d": { - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, "0e58cb09624b": { "name": "github.listWorkItems#1", "ordinal": 1, @@ -66,7 +102,7 @@ } } }, - "13ebc07aa6fe": { + "14429cf6ac3e": { "branches": [ { "localBranchName": "main", @@ -79,106 +115,79 @@ ], "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, - "155f61ed496f": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'items')", - "isRpcDeliveryUnknown": false - } - }, - "253629bd0d20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "25716369cd8f": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [] - }, - "26b4d200dc78": { - "name": "github.listWorkItems#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.listWorkItems" - }, - { - "name": "params", - "value": { - "limit": 36, - "query": "bug", - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "items": [ - { - "number": 1, - "title": "one" - } - ] - } - } - } - }, - "26dc3b7c8299": { + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, - "2cfd107b9660": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], + "2a9f7b1ce8f9": { "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -197,40 +206,7 @@ "isRpcDeliveryUnknown": false } }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -263,7 +239,24 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } @@ -271,7 +264,7 @@ } }, "44136fa355b3": {}, - "518e8334f7d3": { + "4d156675db06": { "branches": [ { "localBranchName": "main", @@ -282,27 +275,58 @@ "refName": "release" } ], - "github": [], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-3" - } - ] - }, - "51a271295555": { - "github": [], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -415,64 +439,99 @@ } } }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ + "6a6dbfc00478": { + "github": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, "repoId": "repo-1", - "title": "two" - } - ] - }, - "71764b0214a9": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, - "867ee0f6f5d8": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [], + "7ef82ed922d5": { "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -552,7 +611,123 @@ } } }, - "8b27fe00715f": { + "8c718e0472ab": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9ca31589d6b9": { "name": "gitlab.listWorkItems#1", "ordinal": 3, "args": [ @@ -591,77 +766,38 @@ }, "items": [ { - "iid": 2, - "title": "two" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "96555ad1314a": { - "github": [] - }, "9e3a28140ba7": { "name": "gitlab.listWorkItems#1", "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" }, - "a4ee5d16b4f6": { - "status": "fulfilled", + "a39f8c177cd2": { + "status": "rejected", "startedAt": 0, "settledAt": 0, - "value": [ - { - "id": "issue-1" - } - ] - }, - "a85937f48d97": { - "github": [], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (github.listWorkItems)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } }, "a947768bc0ed": { "status": "rejected", @@ -673,6 +809,27 @@ "isRpcDeliveryUnknown": true } }, + "aa71e896eae4": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "afb7df66303d": { "name": "github.listWorkItems#1", "ordinal": 1, @@ -721,6 +878,40 @@ } ] }, + "b4056bfa00e3": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -731,12 +922,30 @@ "isRpcDeliveryUnknown": false } }, - "c2bf4ae27078": { - "gitlab": [ + "bb2ecdf1f3da": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -774,34 +983,30 @@ } } }, - "c43e80126d82": { - "branches": [ + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -935,27 +1140,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f3b516f62081": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": false - } + "f0fd94109299": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] }, - "f51f34589c7a": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'items')", - "isRpcDeliveryUnknown": false - } - }, - "f9ed1961ff08": { + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -989,11 +1192,38 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } } }, "recording": { @@ -1002,54 +1232,54 @@ { "id": "tw-smart-search-all-providers.normal:github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1057,11 +1287,11 @@ "id": "tw-smart-search-all-providers.normal:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1071,13 +1301,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, @@ -1087,7 +1317,7 @@ "sender": ["afb7df66303d"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "f51f34589c7a" + "github": "a39f8c177cd2" }, "state": "44136fa355b3", "effects": [] @@ -1096,42 +1326,42 @@ { "id": "tw-smart-search-all-providers.result-absent:gitlab-items", "observation": { - "sender": ["afb7df66303d", "8b27fe00715f"], + "sender": ["afb7df66303d", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "f51f34589c7a", - "gitlab": "6e2d75e3bbd7" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { - "sender": ["afb7df66303d", "8b27fe00715f", "43c49932439f"], + "sender": ["afb7df66303d", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "f51f34589c7a", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { - "sender": ["afb7df66303d", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["afb7df66303d", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "f51f34589c7a", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1140,10 +1370,10 @@ "observation": { "sender": [ "afb7df66303d", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1153,13 +1383,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "f51f34589c7a", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1169,7 +1399,7 @@ "sender": ["6716d719ca36"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "155f61ed496f" + "github": "a39f8c177cd2" }, "state": "44136fa355b3", "effects": [] @@ -1178,42 +1408,42 @@ { "id": "tw-smart-search-all-providers.result-null:gitlab-items", "observation": { - "sender": ["6716d719ca36", "8b27fe00715f"], + "sender": ["6716d719ca36", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "155f61ed496f", - "gitlab": "6e2d75e3bbd7" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { - "sender": ["6716d719ca36", "8b27fe00715f", "43c49932439f"], + "sender": ["6716d719ca36", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "155f61ed496f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { - "sender": ["6716d719ca36", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["6716d719ca36", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "155f61ed496f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1222,10 +1452,10 @@ "observation": { "sender": [ "6716d719ca36", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1235,13 +1465,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "155f61ed496f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1251,51 +1481,51 @@ "sender": ["5c0150354bb2"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "25716369cd8f" + "github": "a39f8c177cd2" }, - "state": "96555ad1314a", + "state": "44136fa355b3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:gitlab-items", "observation": { - "sender": ["5c0150354bb2", "8b27fe00715f"], + "sender": ["5c0150354bb2", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e" }, - "state": "51a271295555", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { - "sender": ["5c0150354bb2", "8b27fe00715f", "43c49932439f"], + "sender": ["5c0150354bb2", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "a85937f48d97", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { - "sender": ["5c0150354bb2", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["5c0150354bb2", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "867ee0f6f5d8", + "state": "8c718e0472ab", "effects": [] } }, @@ -1304,10 +1534,10 @@ "observation": { "sender": [ "5c0150354bb2", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1317,13 +1547,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "518e8334f7d3", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1333,51 +1563,51 @@ "sender": ["8afaa5a6fc54"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "25716369cd8f" + "github": "a39f8c177cd2" }, - "state": "96555ad1314a", + "state": "44136fa355b3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:gitlab-items", "observation": { - "sender": ["8afaa5a6fc54", "8b27fe00715f"], + "sender": ["8afaa5a6fc54", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e" }, - "state": "51a271295555", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { - "sender": ["8afaa5a6fc54", "8b27fe00715f", "43c49932439f"], + "sender": ["8afaa5a6fc54", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "a85937f48d97", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { - "sender": ["8afaa5a6fc54", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["8afaa5a6fc54", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "867ee0f6f5d8", + "state": "8c718e0472ab", "effects": [] } }, @@ -1386,10 +1616,10 @@ "observation": { "sender": [ "8afaa5a6fc54", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1399,13 +1629,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "518e8334f7d3", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1415,51 +1645,51 @@ "sender": ["89dc1db6a99b"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "25716369cd8f" + "github": "a39f8c177cd2" }, - "state": "96555ad1314a", + "state": "44136fa355b3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:gitlab-items", "observation": { - "sender": ["89dc1db6a99b", "8b27fe00715f"], + "sender": ["89dc1db6a99b", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e" }, - "state": "51a271295555", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { - "sender": ["89dc1db6a99b", "8b27fe00715f", "43c49932439f"], + "sender": ["89dc1db6a99b", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "a85937f48d97", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { - "sender": ["89dc1db6a99b", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["89dc1db6a99b", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "867ee0f6f5d8", + "state": "8c718e0472ab", "effects": [] } }, @@ -1468,10 +1698,10 @@ "observation": { "sender": [ "89dc1db6a99b", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1481,13 +1711,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "25716369cd8f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "a39f8c177cd2", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "518e8334f7d3", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1506,42 +1736,42 @@ { "id": "tw-smart-search-all-providers.outer-refused:gitlab-items", "observation": { - "sender": ["e5ef401a9fc3", "8b27fe00715f"], + "sender": ["e5ef401a9fc3", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { "github": "32a7c0ae7918", - "gitlab": "6e2d75e3bbd7" + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { - "sender": ["e5ef401a9fc3", "8b27fe00715f", "43c49932439f"], + "sender": ["e5ef401a9fc3", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { "github": "32a7c0ae7918", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { - "sender": ["e5ef401a9fc3", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["e5ef401a9fc3", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { "github": "32a7c0ae7918", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1550,10 +1780,10 @@ "observation": { "sender": [ "e5ef401a9fc3", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1564,12 +1794,12 @@ ], "settlements": { "github": "32a7c0ae7918", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1588,42 +1818,42 @@ { "id": "tw-smart-search-all-providers.outer-refused-no-message:gitlab-items", "observation": { - "sender": ["5e6a0a523ff5", "8b27fe00715f"], + "sender": ["5e6a0a523ff5", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { "github": "f3b516f62081", - "gitlab": "6e2d75e3bbd7" + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { - "sender": ["5e6a0a523ff5", "8b27fe00715f", "43c49932439f"], + "sender": ["5e6a0a523ff5", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { "github": "f3b516f62081", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { - "sender": ["5e6a0a523ff5", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["5e6a0a523ff5", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { "github": "f3b516f62081", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1632,10 +1862,10 @@ "observation": { "sender": [ "5e6a0a523ff5", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1646,12 +1876,12 @@ ], "settlements": { "github": "f3b516f62081", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1670,42 +1900,42 @@ { "id": "tw-smart-search-all-providers.method-not-found:gitlab-items", "observation": { - "sender": ["eb25c8b22cdc", "8b27fe00715f"], + "sender": ["eb25c8b22cdc", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { "github": "b948e8307e81", - "gitlab": "6e2d75e3bbd7" + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { - "sender": ["eb25c8b22cdc", "8b27fe00715f", "43c49932439f"], + "sender": ["eb25c8b22cdc", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { "github": "b948e8307e81", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { - "sender": ["eb25c8b22cdc", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["eb25c8b22cdc", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { "github": "b948e8307e81", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1714,10 +1944,10 @@ "observation": { "sender": [ "eb25c8b22cdc", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1728,12 +1958,12 @@ ], "settlements": { "github": "b948e8307e81", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1752,42 +1982,42 @@ { "id": "tw-smart-search-all-providers.transport-rejection:gitlab-items", "observation": { - "sender": ["c3fb0edebef4", "8b27fe00715f"], + "sender": ["c3fb0edebef4", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { "github": "a947768bc0ed", - "gitlab": "6e2d75e3bbd7" + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { - "sender": ["c3fb0edebef4", "8b27fe00715f", "43c49932439f"], + "sender": ["c3fb0edebef4", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { "github": "a947768bc0ed", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { - "sender": ["c3fb0edebef4", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["c3fb0edebef4", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { "github": "a947768bc0ed", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1796,10 +2026,10 @@ "observation": { "sender": [ "c3fb0edebef4", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1810,12 +2040,12 @@ ], "settlements": { "github": "a947768bc0ed", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } }, @@ -1834,42 +2064,42 @@ { "id": "tw-smart-search-all-providers.transport-rejection-no-message:gitlab-items", "observation": { - "sender": ["0e58cb09624b", "8b27fe00715f"], + "sender": ["0e58cb09624b", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { "github": "c7584e82c72f", - "gitlab": "6e2d75e3bbd7" + "gitlab": "2868ae2bd70e" }, - "state": "c2bf4ae27078", + "state": "2a9f7b1ce8f9", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { - "sender": ["0e58cb09624b", "8b27fe00715f", "43c49932439f"], + "sender": ["0e58cb09624b", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { "github": "c7584e82c72f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "05e9b743fb1d", + "state": "7ef82ed922d5", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { - "sender": ["0e58cb09624b", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["0e58cb09624b", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { "github": "c7584e82c72f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "71764b0214a9", + "state": "8c718e0472ab", "effects": [] } }, @@ -1878,10 +2108,10 @@ "observation": { "sender": [ "0e58cb09624b", - "8b27fe00715f", - "43c49932439f", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1892,12 +2122,12 @@ ], "settlements": { "github": "c7584e82c72f", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "13ebc07aa6fe", + "state": "14429cf6ac3e", "effects": [] } } 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 81af08208dd..5c68cb25094 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-gitlab.listworkitems-1.json @@ -3,47 +3,17 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "541a282829d3aa5d6b66eeba06e783368f397178ff0d2bdf3e87bccdc62b690f", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "0db7a8e1e5e740c341167bf045a0ab858f61708e995777fa4cf2e88cff1ec727", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "017731afa453": { - "name": "repo.searchRefs#1", - "ordinal": 8, - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, - "24e67c350a20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [] - }, - "253629bd0d20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "25716369cd8f": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [] - }, - "26b4d200dc78": { + "005749a0bd75": { "name": "github.listWorkItems#1", "ordinal": 1, "args": [ @@ -76,37 +46,157 @@ "result": { "items": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "26dc3b7c8299": { + "00c8ba6b4417": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (gitlab.listWorkItems)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, + "017731afa453": { + "name": "repo.searchRefs#1", + "ordinal": 8, + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" + }, + "07b347b9845f": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "172f547faf02": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" - } - ] - }, - "2cfd107b9660": { - "github": [ - { - "number": 1, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -125,18 +215,6 @@ "isRpcDeliveryUnknown": false } }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, "3b1185e88013": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -176,28 +254,7 @@ } } }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -230,13 +287,96 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } } }, + "4d156675db06": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "60585a117837": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -276,69 +416,59 @@ } } }, - "6c647ccd3cff": { + "6a6dbfc00478": { "github": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], - "gitlab": [], - "linear": [ + "gitlab": [ { - "id": "issue-1" - } - ] - }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" - } - ] - }, - "6f4bd0fc6d8b": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-1" - } - ] - }, - "74bc6b65cdef": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [], - "linear": [ - { - "id": "issue-3" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -457,77 +587,6 @@ } } }, - "82f9caba201c": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "8b27fe00715f": { - "name": "gitlab.listWorkItems#1", - "ordinal": 3, - "args": [ - { - "name": "method", - "value": "gitlab.listWorkItems" - }, - { - "name": "params", - "value": { - "page": 1, - "perPage": 50, - "query": "bug", - "repo": "id:repo-1", - "state": "opened" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-2", - "ok": true, - "result": { - "error": { - "message": "missing", - "type": "not_found" - }, - "items": [ - { - "iid": 2, - "title": "two" - } - ] - } - } - } - }, "966b46a1669b": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -605,6 +664,128 @@ } } }, + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9ca31589d6b9": { + "name": "gitlab.listWorkItems#1", + "ordinal": 3, + "args": [ + { + "name": "method", + "value": "gitlab.listWorkItems" + }, + { + "name": "params", + "value": { + "page": 1, + "perPage": 50, + "query": "bug", + "repo": "id:repo-1", + "state": "opened" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-2", + "ok": true, + "result": { + "error": { + "message": "missing", + "type": "not_found" + }, + "items": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + } + } + } + }, "9e3a28140ba7": { "name": "gitlab.listWorkItems#1", "ordinal": 4, @@ -649,82 +830,6 @@ } } }, - "9f9af59ae576": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "a25ac3f73d46": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'error')", - "isRpcDeliveryUnknown": false - } - }, - "a4ee5d16b4f6": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "id": "issue-1" - } - ] - }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -735,6 +840,27 @@ "isRpcDeliveryUnknown": true } }, + "aa71e896eae4": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b015aaf3a53a": { "status": "fulfilled", "startedAt": 0, @@ -750,6 +876,40 @@ } ] }, + "b4056bfa00e3": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -760,44 +920,57 @@ "isRpcDeliveryUnknown": false } }, - "be85b10635d4": { - "status": "rejected", + "bb2ecdf1f3da": { + "status": "fulfilled", "startedAt": 0, "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'error')", - "isRpcDeliveryUnknown": false - } + "value": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] }, - "c43e80126d82": { - "branches": [ + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -811,6 +984,46 @@ "isRpcDeliveryUnknown": true } }, + "d54bee7e4e42": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "d5902b36fc28": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -893,41 +1106,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f0a975a83b87": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], + "f0fd94109299": { "github": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" - } - ], - "linear": [ - { - "id": "issue-3" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, - "f3b516f62081": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": false - } - }, - "f9ed1961ff08": { + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -961,12 +1158,39 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, "ff6c222d28a8": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -1009,54 +1233,54 @@ { "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1064,11 +1288,11 @@ "id": "tw-smart-search-all-providers.normal:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1078,55 +1302,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "ff6c222d28a8"], + "sender": ["005749a0bd75", "ff6c222d28a8"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "be85b10635d4" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { - "sender": ["26b4d200dc78", "ff6c222d28a8", "43c49932439f"], + "sender": ["005749a0bd75", "ff6c222d28a8", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "be85b10635d4", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { - "sender": ["26b4d200dc78", "ff6c222d28a8", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "ff6c222d28a8", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "be85b10635d4", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1134,11 +1358,11 @@ "id": "tw-smart-search-all-providers.result-absent:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "ff6c222d28a8", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1148,55 +1372,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "be85b10635d4", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "7ce8ad5067fc"], + "sender": ["005749a0bd75", "7ce8ad5067fc"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "a25ac3f73d46" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { - "sender": ["26b4d200dc78", "7ce8ad5067fc", "43c49932439f"], + "sender": ["005749a0bd75", "7ce8ad5067fc", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "a25ac3f73d46", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { - "sender": ["26b4d200dc78", "7ce8ad5067fc", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "7ce8ad5067fc", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "a25ac3f73d46", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1204,11 +1428,11 @@ "id": "tw-smart-search-all-providers.result-null:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "7ce8ad5067fc", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1218,55 +1442,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "a25ac3f73d46", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "966b46a1669b"], + "sender": ["005749a0bd75", "966b46a1669b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417" }, - "state": "24e67c350a20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { - "sender": ["26b4d200dc78", "966b46a1669b", "43c49932439f"], + "sender": ["005749a0bd75", "966b46a1669b", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539" }, - "state": "6c647ccd3cff", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { - "sender": ["26b4d200dc78", "966b46a1669b", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "966b46a1669b", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "9f9af59ae576", + "state": "172f547faf02", "effects": [] } }, @@ -1274,11 +1498,11 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "966b46a1669b", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1288,55 +1512,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "74bc6b65cdef", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "9f369b95afbb"], + "sender": ["005749a0bd75", "9f369b95afbb"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417" }, - "state": "24e67c350a20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { - "sender": ["26b4d200dc78", "9f369b95afbb", "43c49932439f"], + "sender": ["005749a0bd75", "9f369b95afbb", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539" }, - "state": "6c647ccd3cff", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "9f369b95afbb", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9f369b95afbb", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "9f9af59ae576", + "state": "172f547faf02", "effects": [] } }, @@ -1344,11 +1568,11 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "9f369b95afbb", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1358,55 +1582,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "74bc6b65cdef", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "75501ab17e66"], + "sender": ["005749a0bd75", "75501ab17e66"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417" }, - "state": "24e67c350a20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { - "sender": ["26b4d200dc78", "75501ab17e66", "43c49932439f"], + "sender": ["005749a0bd75", "75501ab17e66", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539" }, - "state": "6c647ccd3cff", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "75501ab17e66", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "75501ab17e66", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "9f9af59ae576", + "state": "172f547faf02", "effects": [] } }, @@ -1414,11 +1638,11 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "75501ab17e66", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1428,55 +1652,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "25716369cd8f", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "00c8ba6b4417", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "74bc6b65cdef", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "97a94cc90271"], + "sender": ["005749a0bd75", "97a94cc90271"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "32a7c0ae7918" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { - "sender": ["26b4d200dc78", "97a94cc90271", "43c49932439f"], + "sender": ["005749a0bd75", "97a94cc90271", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "32a7c0ae7918", - "linear": "a4ee5d16b4f6" + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { - "sender": ["26b4d200dc78", "97a94cc90271", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "97a94cc90271", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "32a7c0ae7918", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1484,11 +1708,11 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "97a94cc90271", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1498,55 +1722,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "32a7c0ae7918", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "3b1185e88013"], + "sender": ["005749a0bd75", "3b1185e88013"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "f3b516f62081" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { - "sender": ["26b4d200dc78", "3b1185e88013", "43c49932439f"], + "sender": ["005749a0bd75", "3b1185e88013", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "f3b516f62081", - "linear": "a4ee5d16b4f6" + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "3b1185e88013", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "3b1185e88013", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "f3b516f62081", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1554,11 +1778,11 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "3b1185e88013", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1568,55 +1792,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "f3b516f62081", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "60585a117837"], + "sender": ["005749a0bd75", "60585a117837"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "b948e8307e81" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { - "sender": ["26b4d200dc78", "60585a117837", "43c49932439f"], + "sender": ["005749a0bd75", "60585a117837", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "b948e8307e81", - "linear": "a4ee5d16b4f6" + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { - "sender": ["26b4d200dc78", "60585a117837", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "60585a117837", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "b948e8307e81", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1624,11 +1848,11 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "60585a117837", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1638,55 +1862,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "b948e8307e81", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "d5902b36fc28"], + "sender": ["005749a0bd75", "d5902b36fc28"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "a947768bc0ed" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { - "sender": ["26b4d200dc78", "d5902b36fc28", "43c49932439f"], + "sender": ["005749a0bd75", "d5902b36fc28", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "a947768bc0ed", - "linear": "a4ee5d16b4f6" + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { - "sender": ["26b4d200dc78", "d5902b36fc28", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "d5902b36fc28", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "a947768bc0ed", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1694,11 +1918,11 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "d5902b36fc28", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1708,55 +1932,55 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "a947768bc0ed", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "7e8a3d5e4c6c"], + "sender": ["005749a0bd75", "7e8a3d5e4c6c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "c7584e82c72f" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { - "sender": ["26b4d200dc78", "7e8a3d5e4c6c", "43c49932439f"], + "sender": ["005749a0bd75", "7e8a3d5e4c6c", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "c7584e82c72f", - "linear": "a4ee5d16b4f6" + "linear": "c6df6f81c539" }, - "state": "6f4bd0fc6d8b", + "state": "d54bee7e4e42", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "7e8a3d5e4c6c", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "7e8a3d5e4c6c", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "c7584e82c72f", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "82f9caba201c", + "state": "172f547faf02", "effects": [] } }, @@ -1764,11 +1988,11 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", + "005749a0bd75", "7e8a3d5e4c6c", - "43c49932439f", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1778,13 +2002,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", + "github": "aa71e896eae4", "gitlab": "c7584e82c72f", - "linear": "a4ee5d16b4f6", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "f0a975a83b87", + "state": "07b347b9845f", "effects": [] } } 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 fd246219a5e..cbde580887a 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.listissues-1.json @@ -3,21 +3,82 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "767044526344237daee0a3f981a10615fbb9ebc3f45c2f6f41f9b8b16d362082", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "5d9211140d751c6cc844775d3e818f125483f1dac5b78960557ccfe73f41d08f", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "005749a0bd75": { + "name": "github.listWorkItems#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.listWorkItems" + }, + { + "name": "params", + "value": { + "limit": 36, + "query": "bug", + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "items": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + } + } + } + }, "017731afa453": { "name": "repo.searchRefs#1", "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" }, + "216978499a3f": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (linear.listIssues)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "2238dace1c39": { "name": "linear.listIssues#1", "ordinal": 9, @@ -57,79 +118,24 @@ } } }, - "253629bd0d20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "26b4d200dc78": { - "name": "github.listWorkItems#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.listWorkItems" - }, - { - "name": "params", - "value": { - "limit": 36, - "query": "bug", - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "items": [ - { - "number": 1, - "title": "one" - } - ] - } - } - } - }, - "26dc3b7c8299": { + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" - } - ] - }, - "2cfd107b9660": { - "github": [ - { - "number": 1, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -148,40 +154,7 @@ "isRpcDeliveryUnknown": false } }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -214,7 +187,24 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } @@ -260,6 +250,72 @@ } } }, + "4d156675db06": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "5f95109e07b9": { "name": "linear.listIssues#1", "ordinal": 9, @@ -377,15 +433,59 @@ } } }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ + "6a6dbfc00478": { + "github": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, "repoId": "repo-1", - "title": "two" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -428,7 +528,144 @@ } } }, - "8b27fe00715f": { + "97320b400cf5": { + "name": "linear.listIssues#1", + "ordinal": 9, + "args": [ + { + "name": "method", + "value": "linear.listIssues" + }, + { + "name": "params", + "value": { + "filter": "assigned", + "limit": 50, + "workspaceId": { + "$rpc": "undefined" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9c7143723afe": { + "name": "linear.listIssues#1", + "ordinal": 9, + "args": [ + { + "name": "method", + "value": "linear.listIssues" + }, + { + "name": "params", + "value": { + "filter": "assigned", + "limit": 50, + "workspaceId": { + "$rpc": "undefined" + } + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-5", + "ok": true + } + } + }, + "9ca31589d6b9": { "name": "gitlab.listWorkItems#1", "ordinal": 3, "args": [ @@ -467,95 +704,23 @@ }, "items": [ { - "iid": 2, - "title": "two" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "957cc0c5ead6": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "Unexpected Linear tasks response", - "isRpcDeliveryUnknown": false - } - }, - "97320b400cf5": { - "name": "linear.listIssues#1", - "ordinal": 9, - "args": [ - { - "name": "method", - "value": "linear.listIssues" - }, - { - "name": "params", - "value": { - "filter": "assigned", - "limit": 50, - "workspaceId": { - "$rpc": "undefined" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": true - } - } - }, - "9c7143723afe": { - "name": "linear.listIssues#1", - "ordinal": 9, - "args": [ - { - "name": "method", - "value": "linear.listIssues" - }, - { - "name": "params", - "value": { - "filter": "assigned", - "limit": 50, - "workspaceId": { - "$rpc": "undefined" - } - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-5", - "ok": true - } - } - }, "9cfc1bbb7f81": { "name": "linear.listIssues#1", "ordinal": 9, @@ -597,47 +762,6 @@ "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" }, - "a4ee5d16b4f6": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "id": "issue-1" - } - ] - }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -648,6 +772,27 @@ "isRpcDeliveryUnknown": true } }, + "aa71e896eae4": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b015aaf3a53a": { "status": "fulfilled", "startedAt": 0, @@ -663,6 +808,40 @@ } ] }, + "b4056bfa00e3": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -673,34 +852,57 @@ "isRpcDeliveryUnknown": false } }, - "c43e80126d82": { - "branches": [ + "bb2ecdf1f3da": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } - ], - "github": [ + ] + }, + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -799,17 +1001,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f3b516f62081": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": false - } + "f0fd94109299": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] }, - "f9ed1961ff08": { + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -843,11 +1053,38 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } } }, "recording": { @@ -856,54 +1093,54 @@ { "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -911,11 +1148,11 @@ "id": "tw-smart-search-all-providers.normal:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -925,13 +1162,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, @@ -939,9 +1176,9 @@ "id": "tw-smart-search-all-providers.result-absent:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "9c7143723afe" ], @@ -953,13 +1190,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "957cc0c5ead6" + "linear-assigned": "216978499a3f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -967,9 +1204,9 @@ "id": "tw-smart-search-all-providers.result-null:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "623c81d79962" ], @@ -981,13 +1218,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "957cc0c5ead6" + "linear-assigned": "216978499a3f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -995,9 +1232,9 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "68c83637164c" ], @@ -1009,13 +1246,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "957cc0c5ead6" + "linear-assigned": "216978499a3f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1023,9 +1260,9 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "4ae002eea800" ], @@ -1037,13 +1274,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "957cc0c5ead6" + "linear-assigned": "216978499a3f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1051,9 +1288,9 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "5f95109e07b9" ], @@ -1065,13 +1302,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "957cc0c5ead6" + "linear-assigned": "216978499a3f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1079,9 +1316,9 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "d2bdf2c5d932" ], @@ -1093,13 +1330,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", "linear-assigned": "32a7c0ae7918" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1107,9 +1344,9 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "2238dace1c39" ], @@ -1121,13 +1358,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", "linear-assigned": "f3b516f62081" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1135,9 +1372,9 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "7778c67f2d2e" ], @@ -1149,13 +1386,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", "linear-assigned": "b948e8307e81" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1163,9 +1400,9 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "9cfc1bbb7f81" ], @@ -1177,13 +1414,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", "linear-assigned": "a947768bc0ed" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -1191,9 +1428,9 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", "97320b400cf5" ], @@ -1205,13 +1442,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", "linear-assigned": "c7584e82c72f" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } } 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 4f772399ed4..a854f290022 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-linear.searchissues-1.json @@ -3,31 +3,17 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "40a8ea6a916d4266bd80148e40fd817bbe80cefa02465b88d37c42cebed44f22", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "1cfdbdeca951545a4fafd23649991e93a02feea72d174a7c469f18dc64decfc4", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "017731afa453": { - "name": "repo.searchRefs#1", - "ordinal": 8, - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, - "253629bd0d20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "26b4d200dc78": { + "005749a0bd75": { "name": "github.listWorkItems#1", "ordinal": 1, "args": [ @@ -60,37 +46,46 @@ "result": { "items": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "26dc3b7c8299": { + "017731afa453": { + "name": "repo.searchRefs#1", + "ordinal": 8, + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" + }, + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" - } - ] - }, - "2cfd107b9660": { - "github": [ - { - "number": 1, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -146,18 +141,6 @@ "isRpcDeliveryUnknown": false } }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, "3e6d0868ec66": { "name": "linear.searchIssues#1", "ordinal": 5, @@ -195,28 +178,7 @@ } } }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -249,13 +211,96 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } } }, + "4d156675db06": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "5028fbac776a": { "name": "linear.searchIssues#1", "ordinal": 5, @@ -293,15 +338,59 @@ } } }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ + "6a6dbfc00478": { + "github": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, "repoId": "repo-1", - "title": "two" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -411,7 +500,73 @@ } } }, - "8b27fe00715f": { + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9ca31589d6b9": { "name": "gitlab.listWorkItems#1", "ordinal": 3, "args": [ @@ -450,24 +605,23 @@ }, "items": [ { - "iid": 2, - "title": "two" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "957cc0c5ead6": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "Unexpected Linear tasks response", - "isRpcDeliveryUnknown": false - } - }, "9e3a28140ba7": { "name": "gitlab.listWorkItems#1", "ordinal": 4, @@ -509,47 +663,6 @@ } } }, - "a4ee5d16b4f6": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "id": "issue-1" - } - ] - }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -560,6 +673,27 @@ "isRpcDeliveryUnknown": true } }, + "aa71e896eae4": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b015aaf3a53a": { "status": "fulfilled", "startedAt": 0, @@ -575,6 +709,40 @@ } ] }, + "b4056bfa00e3": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -585,6 +753,33 @@ "isRpcDeliveryUnknown": false } }, + "bb2ecdf1f3da": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "bf95741c4070": { "name": "linear.searchIssues#1", "ordinal": 5, @@ -622,60 +817,30 @@ } } }, - "c2b41e1dbaf8": { - "branches": [ + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ] - }, - "c43e80126d82": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -723,6 +888,61 @@ } } }, + "d6bd05073901": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, + "d857a531c892": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (linear.searchIssues)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "df9cac7fb20b": { "name": "linear.searchIssues#1", "ordinal": 6, @@ -769,17 +989,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f3b516f62081": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": false - } + "f0fd94109299": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] }, - "f9ed1961ff08": { + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -813,12 +1041,39 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } + }, "ffab4cf1b659": { "name": "linear.searchIssues#1", "ordinal": 5, @@ -862,54 +1117,54 @@ { "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -917,11 +1172,11 @@ "id": "tw-smart-search-all-providers.normal:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -931,42 +1186,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "85b58b07b12a"], + "sender": ["005749a0bd75", "9ca31589d6b9", "85b58b07b12a"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "85b58b07b12a", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "85b58b07b12a", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -974,11 +1229,11 @@ "id": "tw-smart-search-all-providers.result-absent:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "85b58b07b12a", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -988,42 +1243,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "ffab4cf1b659"], + "sender": ["005749a0bd75", "9ca31589d6b9", "ffab4cf1b659"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "ffab4cf1b659", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "ffab4cf1b659", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1031,11 +1286,11 @@ "id": "tw-smart-search-all-providers.result-null:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "ffab4cf1b659", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1045,42 +1300,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "a266a509c048"], + "sender": ["005749a0bd75", "9ca31589d6b9", "a266a509c048"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "a266a509c048", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "a266a509c048", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1088,11 +1343,11 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "a266a509c048", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1102,42 +1357,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "31d31e2ff02f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "31d31e2ff02f"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "31d31e2ff02f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "31d31e2ff02f", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1145,11 +1400,11 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "31d31e2ff02f", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1159,42 +1414,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "7ede09628f88"], + "sender": ["005749a0bd75", "9ca31589d6b9", "7ede09628f88"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "7ede09628f88", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "7ede09628f88", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1202,11 +1457,11 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "7ede09628f88", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1216,42 +1471,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "957cc0c5ead6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "d857a531c892", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "bf95741c4070"], + "sender": ["005749a0bd75", "9ca31589d6b9", "bf95741c4070"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "32a7c0ae7918" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "bf95741c4070", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "bf95741c4070", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "32a7c0ae7918", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1259,11 +1514,11 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "bf95741c4070", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1273,42 +1528,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "32a7c0ae7918", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "3e6d0868ec66"], + "sender": ["005749a0bd75", "9ca31589d6b9", "3e6d0868ec66"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "f3b516f62081" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "3e6d0868ec66", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "3e6d0868ec66", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "f3b516f62081", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1316,11 +1571,11 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "3e6d0868ec66", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1330,42 +1585,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "f3b516f62081", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "5028fbac776a"], + "sender": ["005749a0bd75", "9ca31589d6b9", "5028fbac776a"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "b948e8307e81" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "5028fbac776a", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "5028fbac776a", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "b948e8307e81", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1373,11 +1628,11 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "5028fbac776a", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1387,42 +1642,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "b948e8307e81", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "d4338d6464ec"], + "sender": ["005749a0bd75", "9ca31589d6b9", "d4338d6464ec"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "a947768bc0ed" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "d4338d6464ec", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "d4338d6464ec", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "a947768bc0ed", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1430,11 +1685,11 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "d4338d6464ec", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1444,42 +1699,42 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "a947768bc0ed", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "7757a883e729"], + "sender": ["005749a0bd75", "9ca31589d6b9", "7757a883e729"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "c7584e82c72f" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "7757a883e729", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "7757a883e729", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "c7584e82c72f", "branches": "b015aaf3a53a" }, - "state": "c2b41e1dbaf8", + "state": "d6bd05073901", "effects": [] } }, @@ -1487,11 +1742,11 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", + "005749a0bd75", + "9ca31589d6b9", "7757a883e729", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1501,13 +1756,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", "linear": "c7584e82c72f", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } } 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 1f8d094f08a..8474ed30777 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.smart-source-search-repo.searchrefs-1.json @@ -3,16 +3,66 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "aa06630cd902fd5dde5181bddd38f5478ae5b48044a3105b090728158aa9a621", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "9fc0825ec19c2c90cec44ee284e7c54399e1552bdb15c329727921a15ad62944", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "005749a0bd75": { + "name": "github.listWorkItems#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.listWorkItems" + }, + { + "name": "params", + "value": { + "limit": 36, + "query": "bug", + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "items": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + } + } + } + }, "0102809852e7": { "name": "repo.searchRefs#1", "ordinal": 7, @@ -52,27 +102,16 @@ "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" }, - "071e0e8e68dc": { - "branches": [], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] + "05e258da6c04": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (repo.searchRefs)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } }, "16ea2a94f677": { "name": "repo.searchRefs#1", @@ -149,12 +188,59 @@ } } }, - "253629bd0d20": { + "1e3df56bcc7f": { "github": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -164,70 +250,24 @@ "settledAt": 0, "value": [] }, - "26b4d200dc78": { - "name": "github.listWorkItems#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.listWorkItems" - }, - { - "name": "params", - "value": { - "limit": 36, - "query": "bug", - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "items": [ - { - "number": 1, - "title": "one" - } - ] - } - } - } - }, - "26dc3b7c8299": { + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" - } - ] - }, - "2cfd107b9660": { - "github": [ - { - "number": 1, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -280,40 +320,7 @@ "isRpcDeliveryUnknown": false } }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -346,7 +353,24 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } @@ -423,6 +447,72 @@ } } }, + "4d156675db06": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "57f937d1bfb0": { "name": "repo.searchRefs#1", "ordinal": 7, @@ -460,19 +550,165 @@ } } }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ + "6a6dbfc00478": { + "github": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, "repoId": "repo-1", - "title": "two" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, - "8b27fe00715f": { + "92ce3b555d91": { + "name": "repo.searchRefs#1", + "ordinal": 7, + "args": [ + { + "name": "method", + "value": "repo.searchRefs" + }, + { + "name": "params", + "value": { + "limit": 20, + "query": "bug", + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 30000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-4", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9ca31589d6b9": { "name": "gitlab.listWorkItems#1", "ordinal": 3, "args": [ @@ -511,87 +747,28 @@ }, "items": [ { - "iid": 2, - "title": "two" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "92ce3b555d91": { - "name": "repo.searchRefs#1", - "ordinal": 7, - "args": [ - { - "name": "method", - "value": "repo.searchRefs" - }, - { - "name": "params", - "value": { - "limit": 20, - "query": "bug", - "repo": "id:repo-1" - } - }, - { - "name": "options", - "value": { - "timeoutMs": 30000 - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-4", - "ok": true, - "result": { - "$rpc": "null" - } - } - } - }, "9e3a28140ba7": { "name": "gitlab.listWorkItems#1", "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" }, - "a4263a13d324": { - "branches": [], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "a4ee5d16b4f6": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "id": "issue-1" - } - ] - }, "a5b2768e50c8": { "name": "repo.searchRefs#1", "ordinal": 7, @@ -629,37 +806,6 @@ } } }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] - }, "a947768bc0ed": { "status": "rejected", "startedAt": 0, @@ -670,6 +816,84 @@ "isRpcDeliveryUnknown": true } }, + "aa71e896eae4": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, + "ab4087446a02": { + "branches": [], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, "b015aaf3a53a": { "status": "fulfilled", "startedAt": 0, @@ -685,6 +909,40 @@ } ] }, + "b4056bfa00e3": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -695,44 +953,114 @@ "isRpcDeliveryUnknown": false } }, - "c30c54d734bc": { - "status": "rejected", + "bb2ecdf1f3da": { + "status": "fulfilled", "startedAt": 0, "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'refDetails')", - "isRpcDeliveryUnknown": false - } - }, - "c43e80126d82": { - "branches": [ + "value": [ { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } - ], + ] + }, + "befeead7a0b8": { + "branches": [], "github": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "linear": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -746,27 +1074,6 @@ "isRpcDeliveryUnknown": true } }, - "d1572a7d1ddb": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" - } - ] - }, "df9cac7fb20b": { "name": "linear.searchIssues#1", "ordinal": 6, @@ -850,27 +1157,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f3b516f62081": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "", - "isRpcDeliveryUnknown": false - } + "f0fd94109299": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] }, - "f582af356003": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'refDetails')", - "isRpcDeliveryUnknown": false - } - }, - "f9ed1961ff08": { + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -904,11 +1209,38 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } + }, + "f3b516f62081": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": false + } } }, "recording": { @@ -917,54 +1249,54 @@ { "id": "tw-smart-search-all-providers.prelude:github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "tw-smart-search-all-providers.prelude:linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "tw-smart-search-all-providers.normal:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -972,11 +1304,11 @@ "id": "tw-smart-search-all-providers.normal:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -986,28 +1318,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-absent:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "4505b193fcd4"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "4505b193fcd4"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", - "branches": "c30c54d734bc" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", + "branches": "05e258da6c04" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1015,11 +1347,11 @@ "id": "tw-smart-search-all-providers.result-absent:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "4505b193fcd4", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1029,28 +1361,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", - "branches": "c30c54d734bc", - "linear-assigned": "26dc3b7c8299" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", + "branches": "05e258da6c04", + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.result-null:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "92ce3b555d91"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "92ce3b555d91"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", - "branches": "f582af356003" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", + "branches": "05e258da6c04" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1058,11 +1390,11 @@ "id": "tw-smart-search-all-providers.result-null:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "92ce3b555d91", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1072,28 +1404,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", - "branches": "f582af356003", - "linear-assigned": "26dc3b7c8299" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", + "branches": "05e258da6c04", + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-ok-missing:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "18310d48d7ce"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "18310d48d7ce"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f" }, - "state": "a4263a13d324", + "state": "befeead7a0b8", "effects": [] } }, @@ -1101,11 +1433,11 @@ "id": "tw-smart-search-all-providers.inner-ok-missing:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "18310d48d7ce", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1115,28 +1447,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "071e0e8e68dc", + "state": "ab4087446a02", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-string-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "e42b0aa4e6a3"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "e42b0aa4e6a3"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f" }, - "state": "a4263a13d324", + "state": "befeead7a0b8", "effects": [] } }, @@ -1144,11 +1476,11 @@ "id": "tw-smart-search-all-providers.inner-false-string-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "e42b0aa4e6a3", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1158,28 +1490,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "071e0e8e68dc", + "state": "ab4087446a02", "effects": [] } }, { "id": "tw-smart-search-all-providers.inner-false-object-error:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "16ea2a94f677"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "16ea2a94f677"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f" }, - "state": "a4263a13d324", + "state": "befeead7a0b8", "effects": [] } }, @@ -1187,11 +1519,11 @@ "id": "tw-smart-search-all-providers.inner-false-object-error:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "16ea2a94f677", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1201,28 +1533,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "25716369cd8f", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "071e0e8e68dc", + "state": "ab4087446a02", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "57f937d1bfb0"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "57f937d1bfb0"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "32a7c0ae7918" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1230,11 +1562,11 @@ "id": "tw-smart-search-all-providers.outer-refused:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "57f937d1bfb0", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1244,28 +1576,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "32a7c0ae7918", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.outer-refused-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "475ebb657faa"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "475ebb657faa"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "f3b516f62081" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1273,11 +1605,11 @@ "id": "tw-smart-search-all-providers.outer-refused-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "475ebb657faa", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1287,28 +1619,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "f3b516f62081", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.method-not-found:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "a5b2768e50c8"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "a5b2768e50c8"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b948e8307e81" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1316,11 +1648,11 @@ "id": "tw-smart-search-all-providers.method-not-found:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "a5b2768e50c8", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1330,28 +1662,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b948e8307e81", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "0102809852e7"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "0102809852e7"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "a947768bc0ed" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1359,11 +1691,11 @@ "id": "tw-smart-search-all-providers.transport-rejection:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "0102809852e7", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1373,28 +1705,28 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "a947768bc0ed", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } }, { "id": "tw-smart-search-all-providers.transport-rejection-no-message:branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "320aea4f349e"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "320aea4f349e"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "c7584e82c72f" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, @@ -1402,11 +1734,11 @@ "id": "tw-smart-search-all-providers.transport-rejection-no-message:linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "320aea4f349e", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -1416,13 +1748,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "c7584e82c72f", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "d1572a7d1ddb", + "state": "1e3df56bcc7f", "effects": [] } } 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 1c8d9b98380..edc6afb0d06 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-github.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 73baed72eba..b6c4e148af6 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-github-repo.update-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e17907ed11a..29d9df51fc3 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-gitlab-gitlab.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0fe0d2a1663..8207dbf877b 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-create-linear-linear.createissue-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cea112fa62a..c1326a94c85 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-items-gitlab.listworkitems-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-items", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "038221907a57f5bb25338f9b07a744dbac3ea0a7ea2ba43281f171912f45a586", "platform": "darwin", @@ -288,12 +288,6 @@ } } }, - "4913662b5375": { - "error": "Cannot read properties of undefined (reading 'error')", - "items": [], - "loading": false, - "refreshing": false - }, "4b933ef4d8e8": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -335,12 +329,6 @@ } } }, - "4f894b5fafff": { - "error": "Cannot read properties of null (reading 'error')", - "items": [], - "loading": false, - "refreshing": false - }, "59ae87905e65": { "name": "gitlab.listWorkItems#1", "ordinal": 3, @@ -396,10 +384,11 @@ "ordinal": 2, "value": true }, - "6510b18b6b22": { - "name": "error", - "ordinal": 6, - "value": "Cannot read properties of undefined (reading 'error')" + "63f4bd373653": { + "error": "The host sent a reply this app could not read (gitlab.listWorkItems)", + "items": [], + "loading": false, + "refreshing": false }, "820944a2683d": { "error": "outer refused", @@ -496,11 +485,6 @@ } } }, - "9c00e902782d": { - "name": "error", - "ordinal": 6, - "value": "Cannot read properties of undefined (reading 'map')" - }, "a2f93be0d571": { "name": "items", "ordinal": 5, @@ -568,10 +552,10 @@ } } }, - "a6e42d3d0cf5": { + "c0eea71a0827": { "name": "error", "ordinal": 6, - "value": "Cannot read properties of null (reading 'error')" + "value": "The host sent a reply this app could not read (gitlab.listWorkItems)" }, "eb79a9b3682a": { "status": "fulfilled", @@ -634,12 +618,6 @@ "name": "error", "ordinal": 6, "value": "outer refused" - }, - "f8405106f8fb": { - "error": "Cannot read properties of undefined (reading 'map')", - "items": [], - "loading": false, - "refreshing": false } }, "recording": { @@ -674,12 +652,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "4913662b5375", + "state": "63f4bd373653", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "6510b18b6b22", + "c0eea71a0827", "5ac1816a09df", "411aee2eccd9" ] @@ -694,12 +672,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "4f894b5fafff", + "state": "63f4bd373653", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "a6e42d3d0cf5", + "c0eea71a0827", "5ac1816a09df", "411aee2eccd9" ] @@ -714,12 +692,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "f8405106f8fb", + "state": "63f4bd373653", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "9c00e902782d", + "c0eea71a0827", "5ac1816a09df", "411aee2eccd9" ] @@ -734,12 +712,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "f8405106f8fb", + "state": "63f4bd373653", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "9c00e902782d", + "c0eea71a0827", "5ac1816a09df", "411aee2eccd9" ] @@ -754,12 +732,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "f8405106f8fb", + "state": "63f4bd373653", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "9c00e902782d", + "c0eea71a0827", "5ac1816a09df", "411aee2eccd9" ] 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 1ea2f163624..97e2afc3922 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-gitlab-todos-gitlab.todos-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-todos", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "e36b90621e11880ec1e6c16e8e3c89cc14f5d68a4a9e06b8a3098fc0bd0104a2", "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 362d54d4381..10242b3cb1f 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.listissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "39ef28af17e4d3774b42bba1555606770667bc9010692fb1a4492413a940c0a0", "platform": "darwin", @@ -211,12 +211,6 @@ } } }, - "2ca7c411bba8": { - "error": "Unexpected Linear tasks response", - "items": [], - "loading": false, - "refreshing": false - }, "34d17f188229": { "name": "refreshing", "ordinal": 14, @@ -264,6 +258,12 @@ "ordinal": 1, "value": "" }, + "3a35a9dd2f88": { + "error": "The host sent a reply this app could not read (linear.listIssues)", + "items": [], + "loading": false, + "refreshing": false + }, "3edde845aed1": { "error": "", "items": [ @@ -397,6 +397,11 @@ } ] }, + "8b78413be50a": { + "name": "error", + "ordinal": 6, + "value": "The host sent a reply this app could not read (linear.listIssues)" + }, "8f4406e0198e": { "name": "error", "ordinal": 6, @@ -759,11 +764,6 @@ "$rpc": "undefined" } }, - "ecbd40ee4587": { - "name": "error", - "ordinal": 6, - "value": "Unexpected Linear tasks response" - }, "ed9157827399": { "name": "linear.searchIssues#1", "ordinal": 10, @@ -951,12 +951,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -972,12 +972,12 @@ "load-0": "eb79a9b3682a", "set-query-1": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -999,7 +999,7 @@ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9", "e492cb3deb38", @@ -1019,12 +1019,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1040,12 +1040,12 @@ "load-0": "eb79a9b3682a", "set-query-1": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1067,7 +1067,7 @@ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9", "e492cb3deb38", @@ -1087,12 +1087,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1108,12 +1108,12 @@ "load-0": "eb79a9b3682a", "set-query-1": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1135,7 +1135,7 @@ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9", "e492cb3deb38", @@ -1155,12 +1155,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1176,12 +1176,12 @@ "load-0": "eb79a9b3682a", "set-query-1": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1203,7 +1203,7 @@ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9", "e492cb3deb38", @@ -1223,12 +1223,12 @@ "mount": "eb79a9b3682a", "load-0": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1244,12 +1244,12 @@ "load-0": "eb79a9b3682a", "set-query-1": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "3a35a9dd2f88", "effects": [ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9" ] @@ -1271,7 +1271,7 @@ "39f99cf479f0", "609f32a21704", "1f4eeb3dcff1", - "ecbd40ee4587", + "8b78413be50a", "5ac1816a09df", "411aee2eccd9", "e492cb3deb38", 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 15407d310c3..bec9249689d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.task-list-linear-linear.searchissues-1.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "c589700af145f58c37292dafb891b3b7d50302fd4ec044155c044ccd48f79c74", "platform": "darwin", @@ -29,12 +29,6 @@ "loading": false, "refreshing": false }, - "2ca7c411bba8": { - "error": "Unexpected Linear tasks response", - "items": [], - "loading": false, - "refreshing": false - }, "34d17f188229": { "name": "refreshing", "ordinal": 14, @@ -128,16 +122,22 @@ } } }, - "5dbe1b841a86": { - "name": "error", - "ordinal": 13, - "value": "Unexpected Linear tasks response" - }, "609f32a21704": { "name": "loading", "ordinal": 2, "value": true }, + "6471b12e6bc2": { + "error": "The host sent a reply this app could not read (linear.searchIssues)", + "items": [], + "loading": false, + "refreshing": false + }, + "68051d50754d": { + "name": "error", + "ordinal": 13, + "value": "The host sent a reply this app could not read (linear.searchIssues)" + }, "6d7869e6f6ea": { "name": "loading", "ordinal": 6, @@ -939,7 +939,7 @@ "set-query-1": "eb79a9b3682a", "load-2": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "6471b12e6bc2", "effects": [ "39f99cf479f0", "609f32a21704", @@ -949,7 +949,7 @@ "104bf14d3af8", "5b1f238d80cf", "126a1c470845", - "5dbe1b841a86", + "68051d50754d", "83e72fb8e8cd", "d0a895d46972" ] @@ -966,7 +966,7 @@ "set-query-1": "eb79a9b3682a", "load-2": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "6471b12e6bc2", "effects": [ "39f99cf479f0", "609f32a21704", @@ -976,7 +976,7 @@ "104bf14d3af8", "5b1f238d80cf", "126a1c470845", - "5dbe1b841a86", + "68051d50754d", "83e72fb8e8cd", "d0a895d46972" ] @@ -993,7 +993,7 @@ "set-query-1": "eb79a9b3682a", "load-2": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "6471b12e6bc2", "effects": [ "39f99cf479f0", "609f32a21704", @@ -1003,7 +1003,7 @@ "104bf14d3af8", "5b1f238d80cf", "126a1c470845", - "5dbe1b841a86", + "68051d50754d", "83e72fb8e8cd", "d0a895d46972" ] @@ -1020,7 +1020,7 @@ "set-query-1": "eb79a9b3682a", "load-2": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "6471b12e6bc2", "effects": [ "39f99cf479f0", "609f32a21704", @@ -1030,7 +1030,7 @@ "104bf14d3af8", "5b1f238d80cf", "126a1c470845", - "5dbe1b841a86", + "68051d50754d", "83e72fb8e8cd", "d0a895d46972" ] @@ -1047,7 +1047,7 @@ "set-query-1": "eb79a9b3682a", "load-2": "eb79a9b3682a" }, - "state": "2ca7c411bba8", + "state": "6471b12e6bc2", "effects": [ "39f99cf479f0", "609f32a21704", @@ -1057,7 +1057,7 @@ "104bf14d3af8", "5b1f238d80cf", "126a1c470845", - "5dbe1b841a86", + "68051d50754d", "83e72fb8e8cd", "d0a895d46972" ] 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 072852e9d63..099d1dbe64c 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.searchrefs-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "9e91d46870cd69279cc7d8ebfd317ab8b13136ccff9662876c7601a3a83ecafe", "platform": "darwin", @@ -13,19 +13,6 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "0045016f4149": { - "branchError": "Cannot read properties of null (reading 'refDetails')", - "branches": [], - "presets": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ], - "presetsError": "", - "presetsLoaded": true - }, "02e24a49522e": { "name": "repo.sparsePresets#1", "ordinal": 8, @@ -301,6 +288,11 @@ "ordinal": 2, "value": false }, + "742be05f358a": { + "name": "workspaceBaseBranchError", + "ordinal": 18, + "value": "The host sent a reply this app could not read (repo.searchRefs)" + }, "802594b0307e": { "name": "workspaceBaseBranchLoading", "ordinal": 6, @@ -405,11 +397,6 @@ } } }, - "977695d19ae3": { - "name": "workspaceBaseBranchError", - "ordinal": 18, - "value": "Cannot read properties of undefined (reading 'refDetails')" - }, "a135d4b358aa": { "name": "workspaceBaseBranchResults", "ordinal": 17, @@ -563,6 +550,19 @@ "presetsError": "", "presetsLoaded": true }, + "c9f98134ce15": { + "branchError": "The host sent a reply this app could not read (repo.searchRefs)", + "branches": [], + "presets": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "presetsError": "", + "presetsLoaded": true + }, "ce8866aa2620": { "name": "repo.searchRefs#1", "ordinal": 15, @@ -614,24 +614,6 @@ "ordinal": 19, "value": false }, - "e4bad139cb5f": { - "branchError": "Cannot read properties of undefined (reading 'refDetails')", - "branches": [], - "presets": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ], - "presetsError": "", - "presetsLoaded": true - }, - "e6c05ef46848": { - "name": "workspaceBaseBranchError", - "ordinal": 18, - "value": "Cannot read properties of null (reading 'refDetails')" - }, "eb79a9b3682a": { "status": "fulfilled", "startedAt": 0, @@ -750,7 +732,7 @@ "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "e4bad139cb5f", + "state": "c9f98134ce15", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -765,7 +747,7 @@ "215f6b1d86cd", "d8718329d555", "8fe83a6c2d9c", - "977695d19ae3", + "742be05f358a", "e3d6000f59c4" ] } @@ -779,7 +761,7 @@ "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "0045016f4149", + "state": "c9f98134ce15", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -794,7 +776,7 @@ "215f6b1d86cd", "d8718329d555", "8fe83a6c2d9c", - "e6c05ef46848", + "742be05f358a", "e3d6000f59c4" ] } 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 226be37b9b8..aa6278f1e38 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-source-repo.sparsepresets-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "2d4a681bffbc5ff9d3040ea0d6bb2603ee940c3c497269d0b63caca564fb25e1", "platform": "darwin", @@ -142,6 +142,11 @@ "$rpc": "null" } }, + "2af3f3992a54": { + "name": "workspaceSparsePresetsError", + "ordinal": 12, + "value": "The host sent a reply this app could not read (repo.sparsePresets)" + }, "2d51b99817b1": { "name": "workspaceSparsePresetsError", "ordinal": 12, @@ -247,18 +252,6 @@ } ] }, - "513bb01f2f25": { - "branchError": "", - "branches": [ - { - "localBranchName": "main", - "refName": "main" - } - ], - "presets": [], - "presetsError": "", - "presetsLoaded": true - }, "57f06e6e349e": { "branchError": "", "branches": [], @@ -296,11 +289,6 @@ "ordinal": 10, "value": true }, - "661eabd19d54": { - "name": "workspaceSparsePresetsError", - "ordinal": 12, - "value": "Cannot read properties of undefined (reading 'presets')" - }, "666bd27e7019": { "name": "workspaceSparsePresetsLoaded", "ordinal": 2, @@ -322,18 +310,6 @@ } ] }, - "844c1ccf1f9a": { - "branchError": "", - "branches": [ - { - "localBranchName": "main", - "refName": "main" - } - ], - "presets": [], - "presetsError": "Cannot read properties of undefined (reading 'presets')", - "presetsLoaded": false - }, "8aa6d1392eee": { "name": "workspaceSparsePresetsLoading", "ordinal": 13, @@ -391,11 +367,6 @@ "ordinal": 16, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"main\",\"limit\":20}}" }, - "97e60fcf2eeb": { - "name": "workspaceSparsePresetsError", - "ordinal": 12, - "value": "Cannot read properties of null (reading 'presets')" - }, "985b44577ba8": { "name": "workspaceSparsePresets", "ordinal": 9, @@ -411,6 +382,13 @@ } ] }, + "a6fa05557638": { + "branchError": "", + "branches": [], + "presets": [], + "presetsError": "The host sent a reply this app could not read (repo.sparsePresets)", + "presetsLoaded": false + }, "b1a04831ac75": { "name": "repo.sparsePresets#1", "ordinal": 4, @@ -516,7 +494,7 @@ "ordinal": 12, "value": "" }, - "bf004df2bf3d": { + "c3b3a45a3ff6": { "branchError": "", "branches": [ { @@ -525,28 +503,14 @@ } ], "presets": [], - "presetsError": "Cannot read properties of null (reading 'presets')", + "presetsError": "The host sent a reply this app could not read (repo.sparsePresets)", "presetsLoaded": false }, - "c58cdfec29bd": { - "branchError": "", - "branches": [], - "presets": [], - "presetsError": "", - "presetsLoaded": true - }, "c7283eee09be": { "name": "workspaceSparsePresetsError", "ordinal": 12, "value": "outer refused" }, - "c909c6a474d9": { - "branchError": "", - "branches": [], - "presets": [], - "presetsError": "Cannot read properties of undefined (reading 'presets')", - "presetsLoaded": false - }, "c9379c8a3ba8": { "branchError": "", "branches": [], @@ -554,13 +518,6 @@ "presetsError": "outer refused", "presetsLoaded": false }, - "c9e6bb8f5e61": { - "branchError": "", - "branches": [], - "presets": [], - "presetsError": "Cannot read properties of null (reading 'presets')", - "presetsLoaded": false - }, "ce4aab89eed0": { "branchError": "", "branches": [], @@ -868,7 +825,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "c909c6a474d9", + "state": "a6fa05557638", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -879,7 +836,7 @@ "985b44577ba8", "fe3395a9e94f", "22b30d5c0550", - "661eabd19d54", + "2af3f3992a54", "8aa6d1392eee" ] } @@ -893,7 +850,7 @@ "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "844c1ccf1f9a", + "state": "c3b3a45a3ff6", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -904,7 +861,7 @@ "985b44577ba8", "fe3395a9e94f", "22b30d5c0550", - "661eabd19d54", + "2af3f3992a54", "8aa6d1392eee", "fc781d1cd78a", "07fd885757be", @@ -921,7 +878,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "c9e6bb8f5e61", + "state": "a6fa05557638", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -932,7 +889,7 @@ "985b44577ba8", "fe3395a9e94f", "22b30d5c0550", - "97e60fcf2eeb", + "2af3f3992a54", "8aa6d1392eee" ] } @@ -946,7 +903,7 @@ "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "bf004df2bf3d", + "state": "c3b3a45a3ff6", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -957,7 +914,7 @@ "985b44577ba8", "fe3395a9e94f", "22b30d5c0550", - "97e60fcf2eeb", + "2af3f3992a54", "8aa6d1392eee", "fc781d1cd78a", "07fd885757be", @@ -974,7 +931,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "c58cdfec29bd", + "state": "a6fa05557638", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -983,22 +940,23 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a" + "2af3f3992a54", + "8aa6d1392eee" ] } }, { "id": "tw-workspace-source-presets.inner-ok-missing:branches-loaded", "observation": { - "sender": ["e985893a3dd9", "2198c28257cb"], - "payloads": ["02e24a49522e", "94be039bc034"], + "sender": ["e985893a3dd9", "d8e98566a985"], + "payloads": ["02e24a49522e", "df951f37c86a"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "513bb01f2f25", + "state": "c3b3a45a3ff6", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -1007,13 +965,14 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a", - "215f6b1d86cd", - "d8718329d555", - "a135d4b358aa", - "329626b87ebb" + "2af3f3992a54", + "8aa6d1392eee", + "fc781d1cd78a", + "07fd885757be", + "4f1e08644618", + "e3d6000f59c4" ] } }, @@ -1025,7 +984,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "c58cdfec29bd", + "state": "a6fa05557638", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -1034,22 +993,23 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a" + "2af3f3992a54", + "8aa6d1392eee" ] } }, { "id": "tw-workspace-source-presets.inner-false-string-error:branches-loaded", "observation": { - "sender": ["4b44c817b2a0", "2198c28257cb"], - "payloads": ["02e24a49522e", "94be039bc034"], + "sender": ["4b44c817b2a0", "d8e98566a985"], + "payloads": ["02e24a49522e", "df951f37c86a"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "513bb01f2f25", + "state": "c3b3a45a3ff6", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -1058,13 +1018,14 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a", - "215f6b1d86cd", - "d8718329d555", - "a135d4b358aa", - "329626b87ebb" + "2af3f3992a54", + "8aa6d1392eee", + "fc781d1cd78a", + "07fd885757be", + "4f1e08644618", + "e3d6000f59c4" ] } }, @@ -1076,7 +1037,7 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "c58cdfec29bd", + "state": "a6fa05557638", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -1085,22 +1046,23 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a" + "2af3f3992a54", + "8aa6d1392eee" ] } }, { "id": "tw-workspace-source-presets.inner-false-object-error:branches-loaded", "observation": { - "sender": ["b1a04831ac75", "2198c28257cb"], - "payloads": ["02e24a49522e", "94be039bc034"], + "sender": ["b1a04831ac75", "d8e98566a985"], + "payloads": ["02e24a49522e", "df951f37c86a"], "settlements": { "mount": "eb79a9b3682a", "branch-query": "eb79a9b3682a" }, - "state": "513bb01f2f25", + "state": "c3b3a45a3ff6", "effects": [ "faf6e6083f43", "666bd27e7019", @@ -1109,13 +1071,14 @@ "802594b0307e", "f7ab22c990a5", "985b44577ba8", - "653409308f6c", + "fe3395a9e94f", "22b30d5c0550", - "395b11d2530a", - "215f6b1d86cd", - "d8718329d555", - "a135d4b358aa", - "329626b87ebb" + "2af3f3992a54", + "8aa6d1392eee", + "fc781d1cd78a", + "07fd885757be", + "4f1e08644618", + "e3d6000f59c4" ] } }, 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 c07d9624ef2..91c650c5fd0 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-repo.savesparsepreset-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3d4637406e2d658b72f73153f0a5e176cb8b143593b72bce0cdf979bc6e4cbdd", "platform": "darwin", @@ -236,10 +236,23 @@ "ordinal": 8, "value": "Connection closed" }, - "6507bcd3f279": { + "5c6943c3209d": { "name": "workspaceSparsePresetsError", "ordinal": 8, - "value": "Cannot read properties of undefined (reading 'preset')" + "value": "The host sent a reply this app could not read (repo.saveSparsePreset)" + }, + "6060569496ff": { + "presets": [], + "presetsError": "The host sent a reply this app could not read (repo.saveSparsePreset)", + "saving": false, + "ssh": { + "error": { + "$rpc": "null" + }, + "reconnectAttempt": 0, + "status": "connected", + "targetId": "ssh-1" + } }, "6acbe9247ed7": { "name": "repo.saveSparsePreset#1", @@ -349,19 +362,6 @@ } } }, - "8e410711e308": { - "presets": [], - "presetsError": "Cannot read properties of undefined (reading 'preset')", - "saving": false, - "ssh": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } - }, "973f31a4e64b": { "name": "workspaceSparsePresetsError", "ordinal": 5, @@ -528,11 +528,6 @@ } } }, - "b7145acda208": { - "name": "workspaceSparsePresetsError", - "ordinal": 8, - "value": "Cannot read properties of null (reading 'preset')" - }, "bcfc7df6e4f2": { "presets": [], "presetsError": "", @@ -646,19 +641,6 @@ } } }, - "e52233a9ff71": { - "presets": [], - "presetsError": "Cannot read properties of null (reading 'preset')", - "saving": false, - "ssh": { - "error": { - "$rpc": "null" - }, - "reconnectAttempt": 0, - "status": "connected", - "targetId": "ssh-1" - } - }, "e91b0fb80adc": { "name": "repo.saveSparsePreset#1", "ordinal": 6, @@ -795,12 +777,12 @@ "mount": "eb79a9b3682a", "save": "eb79a9b3682a" }, - "state": "8e410711e308", + "state": "6060569496ff", "effects": [ "de95b19c6158", "ea6e5bf810d9", "973f31a4e64b", - "6507bcd3f279", + "5c6943c3209d", "37c5cc533ab4" ] } @@ -814,12 +796,12 @@ "mount": "eb79a9b3682a", "save": "eb79a9b3682a" }, - "state": "e52233a9ff71", + "state": "6060569496ff", "effects": [ "de95b19c6158", "ea6e5bf810d9", "973f31a4e64b", - "b7145acda208", + "5c6943c3209d", "37c5cc533ab4" ] } 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 a654fd7f045..4fa610171c2 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-sparse-ssh.getstate-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3453024581230908d1e0e9335f5310e7b4ae03faf50d93654b9ff28c464fb95f", "platform": "darwin", @@ -13,11 +13,32 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "003266639675": { + "name": "workspaceSshState", + "ordinal": 3, + "value": { + "error": "The host sent a reply this app could not read (ssh.getState)", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + } + }, "02daf4600c50": { "name": "repo.saveSparsePreset#1", "ordinal": 7, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"repo.saveSparsePreset\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"docs\",\"directories\":[\"docs\"]}}" }, + "0ca333d433d1": { + "presets": [], + "presetsError": "", + "saving": false, + "ssh": { + "error": "The host sent a reply this app could not read (ssh.getState)", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + } + }, "196cd7f8b6a9": { "name": "ssh.getState#1", "ordinal": 1, @@ -97,16 +118,6 @@ } } }, - "328fb20b8fbf": { - "name": "workspaceSshState", - "ordinal": 3, - "value": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "3f5e10171cd3": { "name": "workspaceSparsePresetId", "ordinal": 10, @@ -131,17 +142,6 @@ "targetId": "ssh-1" } }, - "44ca8518769a": { - "presets": [], - "presetsError": "", - "saving": false, - "ssh": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "47b768ac4603": { "name": "workspaceSshState", "ordinal": 3, @@ -243,23 +243,6 @@ "targetId": "ssh-1" } }, - "7a26c9dceb4c": { - "presets": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ], - "presetsError": "", - "saving": false, - "ssh": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "7e5ba73897a1": { "presets": [], "presetsError": "", @@ -271,23 +254,6 @@ "targetId": "ssh-1" } }, - "80431b2fc9cd": { - "presets": [ - { - "directories": ["docs"], - "id": "p1", - "name": "docs" - } - ], - "presetsError": "", - "saving": false, - "ssh": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "813df5a46a4a": { "presets": [], "presetsError": "", @@ -299,17 +265,6 @@ "targetId": "ssh-1" } }, - "81af687a998a": { - "presets": [], - "presetsError": "", - "saving": false, - "ssh": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "86a756c43eee": { "name": "ssh.getState#1", "ordinal": 1, @@ -451,16 +406,6 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"ssh.getState\",\"params\":{\"targetId\":\"ssh-1\"}}" }, - "a15d9c7aae00": { - "name": "workspaceSshState", - "ordinal": 3, - "value": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "a16210531185": { "presets": [], "presetsError": "", @@ -482,6 +427,23 @@ "targetId": "ssh-1" } }, + "af0d2d6c02df": { + "presets": [ + { + "directories": ["docs"], + "id": "p1", + "name": "docs" + } + ], + "presetsError": "", + "saving": false, + "ssh": { + "error": "The host sent a reply this app could not read (ssh.getState)", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + } + }, "b40e13ca49f3": { "name": "workspaceSshState", "ordinal": 3, @@ -857,8 +819,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "44ca8518769a", - "effects": ["328fb20b8fbf"] + "state": "0ca333d433d1", + "effects": ["003266639675"] } }, { @@ -870,9 +832,9 @@ "mount": "eb79a9b3682a", "save": "eb79a9b3682a" }, - "state": "7a26c9dceb4c", + "state": "af0d2d6c02df", "effects": [ - "328fb20b8fbf", + "003266639675", "ea6e5bf810d9", "973f31a4e64b", "1bc7cf6bcbaf", @@ -891,8 +853,8 @@ "settlements": { "mount": "eb79a9b3682a" }, - "state": "81af687a998a", - "effects": ["a15d9c7aae00"] + "state": "0ca333d433d1", + "effects": ["003266639675"] } }, { @@ -904,9 +866,9 @@ "mount": "eb79a9b3682a", "save": "eb79a9b3682a" }, - "state": "80431b2fc9cd", + "state": "af0d2d6c02df", "effects": [ - "a15d9c7aae00", + "003266639675", "ea6e5bf810d9", "973f31a4e64b", "1bc7cf6bcbaf", 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 2d784076cab..1c2b894301d 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-local-preflight.detectagents-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e41ae95673e..66baf87e32e 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-preflight.detectremoteagents-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f13aad5836d..a1dadc60fc7 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-repo.hooks-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "39451d3c811068754f91ac243fe1208f4ce742df53261314345d8209ba761e94", "platform": "darwin", @@ -13,6 +13,17 @@ "projectionVersion": 2, "goldenFormatVersion": 5, "values": { + "06f3dbe600c4": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (repo.hooks)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "0ba2cee4b538": { "status": "fulfilled", "startedAt": 0, @@ -262,16 +273,6 @@ } } }, - "6139c7d2716a": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of null (reading 'hooks')", - "isRpcDeliveryUnknown": false - } - }, "6a7c5f87227e": { "name": "repo.hooks#1", "ordinal": 13, @@ -617,16 +618,6 @@ } } }, - "f21c4f69fe5a": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot read properties of undefined (reading 'hooks')", - "isRpcDeliveryUnknown": false - } - }, "f3b516f62081": { "status": "rejected", "startedAt": 0, @@ -773,7 +764,7 @@ "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", - "setup": "f21c4f69fe5a" + "setup": "06f3dbe600c4" }, "state": "a1f755a38636", "effects": [ @@ -796,7 +787,7 @@ "settlements": { "mount": "eb79a9b3682a", "connect": "eb79a9b3682a", - "setup": "6139c7d2716a" + "setup": "06f3dbe600c4" }, "state": "a1f755a38636", "effects": [ 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 260ba4720d0..348451ef2f5 100644 --- a/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json +++ b/mobile/rpc-foundation/goldens/matrix-tasks.workspace-ssh-ssh.connect-1.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "5cc1773d06d49d2616da72f2790753322edda6d67e12b5e41116971d34787391", "platform": "darwin", @@ -371,6 +371,16 @@ } } }, + "6b6100c1c1e4": { + "name": "workspaceSshState", + "ordinal": 11, + "value": { + "error": "The host sent a reply this app could not read (ssh.connect)", + "reconnectAttempt": 0, + "status": "error", + "targetId": "ssh-1" + } + }, "6d2db0d7fee0": { "agent": "claude", "connecting": false, @@ -418,11 +428,13 @@ } } }, - "6e8ee29ff682": { - "name": "workspaceSshState", - "ordinal": 11, - "value": { - "error": "Cannot read properties of null (reading 'state')", + "7dd30a2d39c7": { + "agent": "claude", + "connecting": false, + "detected": ["codex"], + "setup": "unresolved", + "ssh": { + "error": "The host sent a reply this app could not read (ssh.connect)", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" @@ -565,16 +577,6 @@ } } }, - "b8589ebe20a6": { - "name": "workspaceSshState", - "ordinal": 11, - "value": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "b8c64c3eae3b": { "name": "ssh.connect#1", "ordinal": 9, @@ -622,19 +624,7 @@ "ordinal": 14, "json": "{\"id\":\"frame-3\",\"deviceToken\":\"recording-device\",\"method\":\"repo.hooks\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "cabfead2f0ff": { - "agent": "claude", - "connecting": false, - "detected": ["codex"], - "setup": "unresolved", - "ssh": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, - "ce5554d7557b": { + "cf105a6ee444": { "agent": "claude", "connecting": false, "detected": ["codex"], @@ -648,7 +638,7 @@ "source": "repo" }, "ssh": { - "error": "Cannot read properties of undefined (reading 'state')", + "error": "The host sent a reply this app could not read (ssh.connect)", "reconnectAttempt": 0, "status": "error", "targetId": "ssh-1" @@ -754,26 +744,6 @@ "targetId": "ssh-1" } }, - "e17430747d93": { - "agent": "claude", - "connecting": false, - "detected": ["codex"], - "setup": { - "command": "pnpm install", - "kind": "prompt", - "setupTrust": { - "contentHash": "hash-1", - "scriptContent": "pnpm install" - }, - "source": "repo" - }, - "ssh": { - "error": "Cannot read properties of null (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "e44d3b580ab0": { "name": "workspaceSshConnecting", "ordinal": 12, @@ -872,18 +842,6 @@ } } }, - "f066aa754e25": { - "agent": "claude", - "connecting": false, - "detected": ["codex"], - "setup": "unresolved", - "ssh": { - "error": "Cannot read properties of undefined (reading 'state')", - "reconnectAttempt": 0, - "status": "error", - "targetId": "ssh-1" - } - }, "f3578583dfdc": { "name": "ssh.connect#1", "ordinal": 9, @@ -1008,7 +966,7 @@ "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" }, - "state": "f066aa754e25", + "state": "7dd30a2d39c7", "effects": [ "11405363c62d", "a9ec92743b9e", @@ -1016,7 +974,7 @@ "13e6d0c47ca4", "d68ba9a6772a", "84149cfb1467", - "b8589ebe20a6", + "6b6100c1c1e4", "e44d3b580ab0" ] } @@ -1031,7 +989,7 @@ "connect": "eb79a9b3682a", "setup": "0ba2cee4b538" }, - "state": "ce5554d7557b", + "state": "cf105a6ee444", "effects": [ "11405363c62d", "a9ec92743b9e", @@ -1039,7 +997,7 @@ "13e6d0c47ca4", "d68ba9a6772a", "84149cfb1467", - "b8589ebe20a6", + "6b6100c1c1e4", "e44d3b580ab0" ] } @@ -1053,7 +1011,7 @@ "mount": "eb79a9b3682a", "connect": "eb79a9b3682a" }, - "state": "cabfead2f0ff", + "state": "7dd30a2d39c7", "effects": [ "11405363c62d", "a9ec92743b9e", @@ -1061,7 +1019,7 @@ "13e6d0c47ca4", "d68ba9a6772a", "84149cfb1467", - "6e8ee29ff682", + "6b6100c1c1e4", "e44d3b580ab0" ] } @@ -1076,7 +1034,7 @@ "connect": "eb79a9b3682a", "setup": "0ba2cee4b538" }, - "state": "e17430747d93", + "state": "cf105a6ee444", "effects": [ "11405363c62d", "a9ec92743b9e", @@ -1084,7 +1042,7 @@ "13e6d0c47ca4", "d68ba9a6772a", "84149cfb1467", - "6e8ee29ff682", + "6b6100c1c1e4", "e44d3b580ab0" ] } 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 58e955ee259..8e9202e39c5 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.query-reply-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5da2430ef82..c23f23fae37 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-orchestration.workerterminaluserinput-1.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9722f8727e1..59eea8adaf5 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.raw-input-terminal.send-1.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1d94f4a1611..7022f01a9c2 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-1.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8bd928b3381..fedc6f670e4 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.takeover-report-orchestration.workerterminaluserinput-2.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d7163f4540d..819c215398a 100644 --- a/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json +++ b/mobile/rpc-foundation/goldens/matrix-terminal.viewport-refit-terminal.updateviewport-1.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f1f56683c61..c0b4bc956fc 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.capability-probe-status.get-1.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 41ee30cac75..cceca150889 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.host-status-gates-status.get-1.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 931f7567225..3d55104a6e2 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-direct-status.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 610b01d8e3f..0d70ccff73a 100644 --- a/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json +++ b/mobile/rpc-foundation/goldens/matrix-transport.pairing-race-relay-status.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "34b382b13fe75e8ef4002325287c95b3c4db62eeaaf3762af7fbaf6f836c2fa1", "scenarioSha256": "048ee6d7848e0e4b8d6463ff9dc4124bfd478114ab87f6b52ff82a1dfd6ebc04", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/matrix-worktree.agent-launch-create-agent.launch-1.json b/mobile/rpc-foundation/goldens/matrix-worktree.agent-launch-create-agent.launch-1.json new file mode 100644 index 00000000000..7ca2011a123 --- /dev/null +++ b/mobile/rpc-foundation/goldens/matrix-worktree.agent-launch-create-agent.launch-1.json @@ -0,0 +1,806 @@ +{ + "operation": "tasks.worktree-create-retry", + "family": "worktree.agent-launch-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "a499dada6eb797b02693c25933149221336859d1", + "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "887b5d16b4bee027edf5e2f1122a79a34b223f6926322a99f6e3de83f40bf6ee", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "12ace8a26229": { + "outcome": { + "error": "outer refused" + } + }, + "240b0b1c72b2": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": "" + } + }, + "25b1c746e7e7": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + } + }, + "2d650f172c7e": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "refused" + } + } + } + }, + "368f594f7f00": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "$rpc": "null" + } + } + } + }, + "3f946ad0279c": { + "outcome": "uncreated" + }, + "69b9efd3c553": { + "name": "worktree.create#1", + "ordinal": 3, + "args": [ + { + "name": "method", + "value": "worktree.create" + }, + { + "name": "params", + "value": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "7665e4eb5ce2": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": "outer refused" + } + }, + "772c3ce6f514": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "", + "isRpcDeliveryUnknown": true + } + } + }, + "7d651cae8837": { + "outcome": { + "error": "" + } + }, + "882a241ecac4": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": "inner refused", + "ok": false + } + } + } + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "97555d579c32": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "name": "kestrel", + "warning": "startup terminal failed", + "worktreeId": "repo-1::/w" + } + }, + "9df0ac2b0247": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": "Failed to create workspace" + } + }, + "a19446c94e4f": { + "name": "agent.launch#1", + "ordinal": 2, + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agent.launch\",\"params\":{\"agent\":\"codex\",\"target\":{\"kind\":\"create-worktree\",\"create\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}}}" + }, + "a947768bc0ed": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "Error", + "message": "transport failure", + "isRpcDeliveryUnknown": true + } + }, + "b070f4a5c63f": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "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 + } + }, + "d13a578180f9": { + "name": "worktree.create#1", + "ordinal": 4, + "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.create\",\"params\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}" + }, + "d4b99c221491": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true + } + } + }, + "d53c007d1e7a": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "method_not_found", + "message": "Unknown method" + }, + "id": "frame-1", + "ok": false + } + } + }, + "e32d599d417d": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "error": { + "message": "inner refused" + }, + "ok": false + } + } + } + }, + "ea58146f75c4": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (agent.launch)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, + "ed1eb862d036": { + "outcome": { + "error": "Failed to create workspace" + } + }, + "f02b3d4d2928": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "f4c2ee5db891": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "error": { + "code": "refused", + "message": "" + }, + "id": "frame-1", + "ok": false + } + } + }, + "f53a3cfe8aa9": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "outcome": { + "handle": "t-1", + "kind": "structured", + "sessionId": "sess-1" + }, + "receipt": { + "detail": "Structured session created.", + "mode": "structured", + "preferred": "structured", + "reason": "user_default" + }, + "warning": " startup terminal failed ", + "worktreeId": "repo-1::/w" + } + } + } + }, + "f800fc04633e": { + "outcome": { + "name": "kestrel", + "warning": "startup terminal failed", + "worktreeId": "repo-1::/w" + } + } + }, + "recording": { + "scenario": "matrix-worktree.agent-launch-create-agent.launch-1", + "checkpoints": [ + { + "id": "tw-create-retry-agent-launched.prelude:sent", + "observation": { + "sender": ["f02b3d4d2928"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "9270aeb7d9c6" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.normal:launched", + "observation": { + "sender": ["f53a3cfe8aa9"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "97555d579c32" + }, + "state": "f800fc04633e", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.result-absent:launched", + "observation": { + "sender": ["d4b99c221491"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "ea58146f75c4" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.result-null:launched", + "observation": { + "sender": ["368f594f7f00"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "ea58146f75c4" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.inner-ok-missing:launched", + "observation": { + "sender": ["2d650f172c7e"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "9df0ac2b0247" + }, + "state": "ed1eb862d036", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.inner-false-string-error:launched", + "observation": { + "sender": ["882a241ecac4"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "9df0ac2b0247" + }, + "state": "ed1eb862d036", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.inner-false-object-error:launched", + "observation": { + "sender": ["e32d599d417d"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "9df0ac2b0247" + }, + "state": "ed1eb862d036", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.outer-refused:launched", + "observation": { + "sender": ["b070f4a5c63f"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "7665e4eb5ce2" + }, + "state": "12ace8a26229", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.outer-refused-no-message:launched", + "observation": { + "sender": ["f4c2ee5db891"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "240b0b1c72b2" + }, + "state": "7d651cae8837", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.method-not-found:launched", + "observation": { + "sender": ["d53c007d1e7a", "69b9efd3c553"], + "payloads": ["a19446c94e4f", "d13a578180f9"], + "settlements": { + "create": "9270aeb7d9c6" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.transport-rejection:launched", + "observation": { + "sender": ["25b1c746e7e7"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "a947768bc0ed" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "tw-create-retry-agent-launched.transport-rejection-no-message:launched", + "observation": { + "sender": ["772c3ce6f514"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "c7584e82c72f" + }, + "state": "3f946ad0279c", + "effects": [] + } + } + ] + } +} 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 ccd5c6d43f2..ee24fffaabd 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.catalog-snapshot-worktree.ps-1.json @@ -3,9 +3,9 @@ "family": "worktree.catalog-snapshot", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 288ecb721e5..5865f0ef63a 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.create-retry-worktree.create-1.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "e93a36ef900de27e1a566cdb2389ba4f900a330eadbb476b9bfb1ef05707b352", "platform": "darwin", "scenarioVersion": 1, @@ -183,6 +183,17 @@ } } }, + "67a20c90d720": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (worktree.create)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "7665e4eb5ce2": { "status": "fulfilled", "startedAt": 0, @@ -308,14 +319,6 @@ } } }, - "9df0ac2b0247": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "error": "Failed to create workspace" - } - }, "a47d068fc282": { "name": "worktree.create#1", "ordinal": 1, @@ -501,11 +504,6 @@ } } } - }, - "ed1eb862d036": { - "outcome": { - "error": "Failed to create workspace" - } } }, "recording": { @@ -529,9 +527,9 @@ "sender": ["9cc25d051b87"], "payloads": ["06b14e4985de"], "settlements": { - "create": "9df0ac2b0247" + "create": "67a20c90d720" }, - "state": "ed1eb862d036", + "state": "3f946ad0279c", "effects": [] } }, @@ -541,9 +539,9 @@ "sender": ["e6492b79ae1b"], "payloads": ["06b14e4985de"], "settlements": { - "create": "9df0ac2b0247" + "create": "67a20c90d720" }, - "state": "ed1eb862d036", + "state": "3f946ad0279c", "effects": [] } }, @@ -553,9 +551,9 @@ "sender": ["636b0892097b"], "payloads": ["06b14e4985de"], "settlements": { - "create": "9df0ac2b0247" + "create": "67a20c90d720" }, - "state": "ed1eb862d036", + "state": "3f946ad0279c", "effects": [] } }, @@ -565,9 +563,9 @@ "sender": ["810f613e774d"], "payloads": ["06b14e4985de"], "settlements": { - "create": "9df0ac2b0247" + "create": "67a20c90d720" }, - "state": "ed1eb862d036", + "state": "3f946ad0279c", "effects": [] } }, @@ -577,9 +575,9 @@ "sender": ["af1cf5b96577"], "payloads": ["06b14e4985de"], "settlements": { - "create": "9df0ac2b0247" + "create": "67a20c90d720" }, - "state": "ed1eb862d036", + "state": "3f946ad0279c", "effects": [] } }, 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 a6a97d645fb..225cd85e9f8 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.home-catalog-worktree.ps-1.json @@ -3,9 +3,9 @@ "family": "worktree.home-catalog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 042de6949ac..8b9b342ff38 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolvemrbase-1.json @@ -3,10 +3,10 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "a84f8a5acfd428eb77b5c02a3de0fa8b780c666db31bbe574ecf76cdf84adeb2", "platform": "darwin", "scenarioVersion": 1, @@ -103,16 +103,6 @@ "isRpcDeliveryUnknown": false } }, - "2c7f810cc819": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "[object Object]", - "isRpcDeliveryUnknown": false - } - }, "32a7c0ae7918": { "status": "rejected", "startedAt": 0, @@ -214,16 +204,6 @@ "compareBaseRef": "origin/main" } }, - "7214459608bf": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot use 'in' operator to search for 'error' in null", - "isRpcDeliveryUnknown": false - } - }, "8b00f7de0885": { "name": "worktree.resolveMrBase#1", "ordinal": 3, @@ -258,6 +238,17 @@ } } }, + "924a3decea89": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (worktree.resolveMrBase)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "92df85b51d0c": { "name": "worktree.resolveMrBase#1", "ordinal": 4, @@ -278,16 +269,6 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" }, - "ae5862eb7a20": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot use 'in' operator to search for 'error' in undefined", - "isRpcDeliveryUnknown": false - } - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -625,7 +606,7 @@ "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { "pr": "5428de0f5130", - "mr": "ae5862eb7a20" + "mr": "924a3decea89" }, "state": "236529aa012d", "effects": [] @@ -638,7 +619,7 @@ "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { "pr": "5428de0f5130", - "mr": "7214459608bf" + "mr": "924a3decea89" }, "state": "236529aa012d", "effects": [] @@ -677,7 +658,7 @@ "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { "pr": "5428de0f5130", - "mr": "2c7f810cc819" + "mr": "924a3decea89" }, "state": "236529aa012d", "effects": [] 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 04955f9edb1..6fe55a595a5 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.hosted-base-worktree.resolveprbase-1.json @@ -3,10 +3,10 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "45783a7cbb44b04dbbd6bfd6735799bb4c75e503f43f1821cf8640d11f7464ad", "platform": "darwin", "scenarioVersion": 1, @@ -216,16 +216,6 @@ "isRpcDeliveryUnknown": false } }, - "2c7f810cc819": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "Error", - "message": "[object Object]", - "isRpcDeliveryUnknown": false - } - }, "31a22b101a8c": { "name": "worktree.resolvePrBase#1", "ordinal": 1, @@ -273,6 +263,17 @@ "isRpcDeliveryUnknown": false } }, + "3aecf21b9f18": { + "status": "rejected", + "startedAt": 0, + "settledAt": 0, + "error": { + "category": "RpcIncompatibleReplyError", + "message": "The host sent a reply this app could not read (worktree.resolvePrBase)", + "isRpcDeliveryUnknown": false, + "code": "incompatible_reply" + } + }, "3cca8119f144": { "mrBase": { "baseBranch": "develop" @@ -402,16 +403,6 @@ } } }, - "7214459608bf": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot use 'in' operator to search for 'error' in null", - "isRpcDeliveryUnknown": false - } - }, "92df85b51d0c": { "name": "worktree.resolveMrBase#1", "ordinal": 4, @@ -468,16 +459,6 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"worktree.resolvePrBase\",\"params\":{\"repo\":\"id:repo-1\",\"prNumber\":12,\"headRefName\":\"feature\"}}" }, - "ae5862eb7a20": { - "status": "rejected", - "startedAt": 0, - "settledAt": 0, - "error": { - "category": "TypeError", - "message": "Cannot use 'in' operator to search for 'error' in undefined", - "isRpcDeliveryUnknown": false - } - }, "b948e8307e81": { "status": "rejected", "startedAt": 0, @@ -634,7 +615,7 @@ "sender": ["c61debc4c0da"], "payloads": ["aafcb4cd89c9"], "settlements": { - "pr": "ae5862eb7a20" + "pr": "3aecf21b9f18" }, "state": "c57e06c96492", "effects": [] @@ -646,7 +627,7 @@ "sender": ["c61debc4c0da", "d29aaf6d46d3"], "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { - "pr": "ae5862eb7a20", + "pr": "3aecf21b9f18", "mr": "fd552ecb03da" }, "state": "0ace0141301c", @@ -659,7 +640,7 @@ "sender": ["002fc122fadf"], "payloads": ["aafcb4cd89c9"], "settlements": { - "pr": "7214459608bf" + "pr": "3aecf21b9f18" }, "state": "c57e06c96492", "effects": [] @@ -671,7 +652,7 @@ "sender": ["002fc122fadf", "d29aaf6d46d3"], "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { - "pr": "7214459608bf", + "pr": "3aecf21b9f18", "mr": "fd552ecb03da" }, "state": "0ace0141301c", @@ -734,7 +715,7 @@ "sender": ["2960b5e672d1"], "payloads": ["aafcb4cd89c9"], "settlements": { - "pr": "2c7f810cc819" + "pr": "3aecf21b9f18" }, "state": "c57e06c96492", "effects": [] @@ -746,7 +727,7 @@ "sender": ["2960b5e672d1", "d29aaf6d46d3"], "payloads": ["aafcb4cd89c9", "92df85b51d0c"], "settlements": { - "pr": "2c7f810cc819", + "pr": "3aecf21b9f18", "mr": "fd552ecb03da" }, "state": "0ace0141301c", 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 32a05d13390..070c338c295 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.retired-names-worktree.listretirednames-1.json @@ -3,9 +3,9 @@ "family": "worktree.retired-names", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5938a39dbc4..cb4e7d96119 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.review-link-worktree.set-1.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 32678f81210..7b028e431bb 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.runtime-capabilities-status.get-1.json @@ -3,10 +3,10 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "f70c6b1753377b5a502bf7d1e69dc95617f24c42137471320eb393567efbe735", "platform": "darwin", "scenarioVersion": 1, 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 1e30f6cde5d..75e7f15133f 100644 --- a/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json +++ b/mobile/rpc-foundation/goldens/matrix-worktree.setup-hook-trust-ui.set-1.json @@ -3,10 +3,10 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "8487fd14ed779708415b264e2b80b26b0d5094e379a04f4f32c2cd75ec469182", "platform": "darwin", "scenarioVersion": 1, 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 b7a268f4128..81b5e62f866 100644 --- a/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json +++ b/mobile/rpc-foundation/goldens/native-chat-image-paste-single.json @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 05acf1ac9ff..0545fd2c00f 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4be512b077c..95d4c4d4e0a 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e1a2ed5c448..dee75d219c6 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 378aa18c656..bb8088b652a 100644 --- a/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-cancelled.json @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ff32c4fefb4..7e5d0d78c2a 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5dd7102f481..55dcab1a85f 100644 --- a/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-single.json @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8c4bb7b5554..983ed418b0f 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 @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b572b8bd922..d17c2b61bca 100644 --- a/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json +++ b/mobile/rpc-foundation/goldens/native-chat-image-upload-two.json @@ -3,9 +3,9 @@ "family": "nativeChat.image-upload", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 index 3c57369a162..62615ab22b6 100644 --- a/mobile/rpc-foundation/goldens/native-chat-page-earlier.json +++ b/mobile/rpc-foundation/goldens/native-chat-page-earlier.json @@ -3,9 +3,9 @@ "family": "session.native-chat-page", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "60ce67f66134d6385aa7fb47f2135436a7b3ce0221e3b2514bea65e06dba5518", "scenarioSha256": "674cab85ed9896dae311bfc0acfb1d1d1a2a7f25b7546b4714edbb0a585e6178", "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 d89498a04a3..3f2e7e17292 100644 --- a/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json +++ b/mobile/rpc-foundation/goldens/native-chat-readability-local-repo.json @@ -3,9 +3,9 @@ "family": "session.native-chat-readability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 34683cbb058..1dd4af3da5c 100644 --- a/mobile/rpc-foundation/goldens/native-chat-readability-refused.json +++ b/mobile/rpc-foundation/goldens/native-chat-readability-refused.json @@ -3,9 +3,9 @@ "family": "session.native-chat-readability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 81b6f3ff557..b6ed9316230 100644 --- a/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json +++ b/mobile/rpc-foundation/goldens/native-chat-readability-remote-repo.json @@ -3,9 +3,9 @@ "family": "session.native-chat-readability", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8b8e57c5056..85052c9898e 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 @@ -3,9 +3,9 @@ "family": "nativeChat.session-option-pick", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 17fc4f7361c..f8d769075fe 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 @@ -3,9 +3,9 @@ "family": "nativeChat.session-option-pick", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a06933fe98d..5daa59fa9cc 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 @@ -3,9 +3,9 @@ "family": "nativeChat.session-option-pick", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4aca4d47c0a..2217ae78609 100644 --- a/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json +++ b/mobile/rpc-foundation/goldens/native-chat-stop-accepted.json @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 701ab5a5237..b582b8b8239 100644 --- a/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json +++ b/mobile/rpc-foundation/goldens/native-chat-stop-both-rejected.json @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 54df83fb927..e14e9d38f42 100644 --- a/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json +++ b/mobile/rpc-foundation/goldens/native-chat-stop-delivery-unknown.json @@ -3,9 +3,9 @@ "family": "session.native-chat-stop", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b2b01267434..d63cc2bc27d 100644 --- a/mobile/rpc-foundation/goldens/native-chat-write-accepted.json +++ b/mobile/rpc-foundation/goldens/native-chat-write-accepted.json @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b1b56999f3d..81bb708ef6b 100644 --- a/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json +++ b/mobile/rpc-foundation/goldens/native-chat-write-clear-line.json @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cf0b888bdaf..5f256a25d7c 100644 --- a/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json +++ b/mobile/rpc-foundation/goldens/native-chat-write-delivery-unknown.json @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9e4bdb82218..838a11b6805 100644 --- a/mobile/rpc-foundation/goldens/native-chat-write-rejected.json +++ b/mobile/rpc-foundation/goldens/native-chat-write-rejected.json @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 75684f75a50..6b9c8a6c66c 100644 --- a/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json +++ b/mobile/rpc-foundation/goldens/native-chat-write-typed-command.json @@ -3,9 +3,9 @@ "family": "nativeChat.terminal-write", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b98a3ca3818678b88cf629bc4635300a103637126a136f025a1600dc16f08008", "scenarioSha256": "a89ff803859c60e5645126de8b0f423807c435dcd856fe8825721f71f3b5bec5", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/new-tab-local-agents.json b/mobile/rpc-foundation/goldens/new-tab-local-agents.json index 5b365fcd0c5..0da9a1ea61f 100644 --- a/mobile/rpc-foundation/goldens/new-tab-local-agents.json +++ b/mobile/rpc-foundation/goldens/new-tab-local-agents.json @@ -3,9 +3,9 @@ "family": "settings.new-tab-local-agents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "448cdbd12f4f6a14bb33947bfbbb1837aebeb28979db70c62f2ba2fbb4d89c8f", "scenarioSha256": "ef016c6b4b77ba0c40b6feba2f670398c641f8ce9f411896e3ae41f38d8be17d", "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 15d8fbdc3c7..c470e5e7e07 100644 --- a/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json +++ b/mobile/rpc-foundation/goldens/new-workspace-repositories-fulfilled.json @@ -3,9 +3,9 @@ "family": "components.new-workspace-repositories", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 index 206e310a409..6b15b3cff67 100644 --- a/mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json +++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream-closed.json @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "24f8c05639f82bc5e32abe3864c3d01a0589e295369028929fed2f0c684f1d0c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json b/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json index 6dca5668fd6..a46de912ca6 100644 --- a/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json +++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream-replayed.json @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "0495c25d6e5d8a84fe4192d7aa0e2901fe86ede19ac9c4d72dee27da6694878b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-desktop-stream.json b/mobile/rpc-foundation/goldens/notifications-desktop-stream.json index 9c46de9eea3..d97e6a5ba84 100644 --- a/mobile/rpc-foundation/goldens/notifications-desktop-stream.json +++ b/mobile/rpc-foundation/goldens/notifications-desktop-stream.json @@ -3,9 +3,9 @@ "family": "notifications.desktop-stream", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "eacf859143588ae6bee2804975d642b6c1088d57ae77ffe298620250d9a9f0e4", "scenarioSha256": "359add5203e68fcb85586f06babb694ee9d548e1dc58481e6d03871ab9f922cb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json index ad207af305b..1c3796d0bd0 100644 --- a/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json +++ b/mobile/rpc-foundation/goldens/notifications-display-test-accepted.json @@ -3,9 +3,9 @@ "family": "notifications.display-test-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "12a04986290715d5db23a1eb5192c1138bb2d375d1b1dd37ba310ea89eb11566", "scenarioSha256": "e19c4ff95d568edbb5c0d6058eb17843be31bdfd528825985963f8ece8cbc652", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-not-registered.json b/mobile/rpc-foundation/goldens/notifications-display-test-not-registered.json index 3e82a608be6..d5050fa0fe8 100644 --- a/mobile/rpc-foundation/goldens/notifications-display-test-not-registered.json +++ b/mobile/rpc-foundation/goldens/notifications-display-test-not-registered.json @@ -3,9 +3,9 @@ "family": "notifications.display-test-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "12a04986290715d5db23a1eb5192c1138bb2d375d1b1dd37ba310ea89eb11566", "scenarioSha256": "3edeb5f744ed832104df750544b99fea1a1cd9d1b8d2f3f9a5e7c13b415edc3e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-rate-limited.json b/mobile/rpc-foundation/goldens/notifications-display-test-rate-limited.json index de5f8a2e057..70acf5addd3 100644 --- a/mobile/rpc-foundation/goldens/notifications-display-test-rate-limited.json +++ b/mobile/rpc-foundation/goldens/notifications-display-test-rate-limited.json @@ -3,9 +3,9 @@ "family": "notifications.display-test-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "12a04986290715d5db23a1eb5192c1138bb2d375d1b1dd37ba310ea89eb11566", "scenarioSha256": "53827d812956f05e86d72e44effd017270328eb36588ca90431cf9a8ae97b146", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/notifications-display-test-unknown-reason.json b/mobile/rpc-foundation/goldens/notifications-display-test-unknown-reason.json index b665aae01c8..554178c75ab 100644 --- a/mobile/rpc-foundation/goldens/notifications-display-test-unknown-reason.json +++ b/mobile/rpc-foundation/goldens/notifications-display-test-unknown-reason.json @@ -3,9 +3,9 @@ "family": "notifications.display-test-screen", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "12a04986290715d5db23a1eb5192c1138bb2d375d1b1dd37ba310ea89eb11566", "scenarioSha256": "37439be5aba4a84cf6c12c5f583a0334405792387edb72ceab388e7c64109eff", "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 1398d63066b..bc4ebc5bc37 100644 --- a/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json +++ b/mobile/rpc-foundation/goldens/notifications-push-gateway-rejected.json @@ -3,9 +3,9 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 50d70ef9cd5..ab4649951f5 100644 --- a/mobile/rpc-foundation/goldens/notifications-push-registered.json +++ b/mobile/rpc-foundation/goldens/notifications-push-registered.json @@ -3,9 +3,9 @@ "family": "notifications.push-registration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 458941da721..1d162c5875f 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-direct-wins-and-provisions.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e41e4107ff8..7393a3d3a3e 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-provision-unsupported-saves-direct-host.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 45d01f4dded..087bbe3ef77 100644 --- a/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json +++ b/mobile/rpc-foundation/goldens/pairing-pre-profile-times-out.json @@ -3,9 +3,9 @@ "family": "pairing.pre-profile", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d8b7931db5e..34bac6acfeb 100644 --- a/mobile/rpc-foundation/goldens/pr-branch-identity.json +++ b/mobile/rpc-foundation/goldens/pr-branch-identity.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c2134775381..841ba519219 100644 --- a/mobile/rpc-foundation/goldens/pr-branch-repo-context.json +++ b/mobile/rpc-foundation/goldens/pr-branch-repo-context.json @@ -3,9 +3,9 @@ "family": "session.pr-branch-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8626f563edb..4a6128a8c07 100644 --- a/mobile/rpc-foundation/goldens/pr-comment-mutation.json +++ b/mobile/rpc-foundation/goldens/pr-comment-mutation.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9f47470fc86..903b43ef738 100644 --- a/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json +++ b/mobile/rpc-foundation/goldens/pr-comment-resolve-unconfirmed.json @@ -3,9 +3,9 @@ "family": "github.pr-comment-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1e3a97be036..6ca245bd9cd 100644 --- a/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json +++ b/mobile/rpc-foundation/goldens/pr-mutation-in-band-failure.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ecb594a5f36..ad80341a51f 100644 --- a/mobile/rpc-foundation/goldens/pr-mutation-status.json +++ b/mobile/rpc-foundation/goldens/pr-mutation-status.json @@ -3,9 +3,9 @@ "family": "github.pr-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5c43c0fd1cb..5c3c8dc15b1 100644 --- a/mobile/rpc-foundation/goldens/pr-read-fork-routing.json +++ b/mobile/rpc-foundation/goldens/pr-read-fork-routing.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 788711f1fcb..a0dd24a0206 100644 --- a/mobile/rpc-foundation/goldens/pr-read-surface.json +++ b/mobile/rpc-foundation/goldens/pr-read-surface.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7e2ecfe64fd..48c33dbcee5 100644 --- a/mobile/rpc-foundation/goldens/pr-read-upstream-error.json +++ b/mobile/rpc-foundation/goldens/pr-read-upstream-error.json @@ -3,9 +3,9 @@ "family": "github.pr-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "f560ff1582487c118756c527faa1fb1f65e37ce22ca9573491fd4b2dbcedf38d", "scenarioSha256": "b2445b299e18664b698d659c5041860b8a253314687666ae467aab441ab07235", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-sidebar-checks-refused.json b/mobile/rpc-foundation/goldens/pr-sidebar-checks-refused.json index 931f166fb1d..f018de55958 100644 --- a/mobile/rpc-foundation/goldens/pr-sidebar-checks-refused.json +++ b/mobile/rpc-foundation/goldens/pr-sidebar-checks-refused.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "1b489d319f6517fe2ee33beaeedf4e0cb0f531c952dc7e9f833ca814366d60cb", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-sidebar-load.json b/mobile/rpc-foundation/goldens/pr-sidebar-load.json index 7f3cce7fce0..a9cc4316d14 100644 --- a/mobile/rpc-foundation/goldens/pr-sidebar-load.json +++ b/mobile/rpc-foundation/goldens/pr-sidebar-load.json @@ -3,9 +3,9 @@ "family": "session.pr-sidebar", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "87ffa2daea415d2682f1112025b5bd9d52404c6fc7c239180a3ad2120678ff1f", "scenarioSha256": "d4da89a37325ac4e92d9eae8de33f9cc6d9414fcf89a4f44064a7b1e4254102a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/pr-title-mutation.json b/mobile/rpc-foundation/goldens/pr-title-mutation.json index d78e75f0480..e3d17323774 100644 --- a/mobile/rpc-foundation/goldens/pr-title-mutation.json +++ b/mobile/rpc-foundation/goldens/pr-title-mutation.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 63ea2785640..c860e87cf79 100644 --- a/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json +++ b/mobile/rpc-foundation/goldens/pr-title-unconfirmed.json @@ -3,9 +3,9 @@ "family": "github.pr-title-mutation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f8cf1bb395e..ef7b5e3d68e 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json +++ b/mobile/rpc-foundation/goldens/pr-triage-invalid-terminal.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d0b48f6232c..10744a6d37b 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-launch.json +++ b/mobile/rpc-foundation/goldens/pr-triage-launch.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 94d86083d0f..5b6b0e5c416 100644 --- a/mobile/rpc-foundation/goldens/pr-triage-send-locked.json +++ b/mobile/rpc-foundation/goldens/pr-triage-send-locked.json @@ -3,9 +3,9 @@ "family": "session.pr-triage", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 002ad28716d..ba31d3ec761 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-both-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ae81a1a9d5e..6aeb781dd16 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-null-sibling-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f6cdcd4644a..59f9634d2bb 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-refused-sibling-rejects.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c8177cac646..aeeac10a94a 100644 --- a/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json +++ b/mobile/rpc-foundation/goldens/probe-new-tab-rejects-sibling-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 da6928f7fff..dea66b03d34 100644 --- a/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json +++ b/mobile/rpc-foundation/goldens/push-dismissal-tray-reconciled.json @@ -3,9 +3,9 @@ "family": "notifications.push-dismissal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cf1f35911ed..ffdb6fa28ce 100644 --- a/mobile/rpc-foundation/goldens/quick-commands-load-refused.json +++ b/mobile/rpc-foundation/goldens/quick-commands-load-refused.json @@ -3,9 +3,9 @@ "family": "settings.quick-commands", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 89e1baa0122..119d2336ab1 100644 --- a/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json +++ b/mobile/rpc-foundation/goldens/quick-commands-loaded-and-saved.json @@ -3,9 +3,9 @@ "family": "settings.quick-commands", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fa26f02a609..6ce024caddc 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 @@ -3,9 +3,9 @@ "family": "settings.quick-commands", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 db268f9f6f7..520780e03e7 100644 --- a/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json +++ b/mobile/rpc-foundation/goldens/relay-direct-upgrade-commits.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 46fb3cc1378..0b002cb0c94 100644 --- a/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json +++ b/mobile/rpc-foundation/goldens/relay-direct-upgrade-unsupported-host-declines.json @@ -3,9 +3,9 @@ "family": "relay.direct-upgrade", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2ea00ab4dcc..bbf82b64be3 100644 --- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json +++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-invite-authorizes.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c28be6adf0c..905c03a2b70 100644 --- a/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json +++ b/mobile/rpc-foundation/goldens/relay-pairing-recovery-resume-committed.json @@ -3,9 +3,9 @@ "family": "relay.pairing-recovery", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 67d9040ffff..587f55c2836 100644 --- a/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json +++ b/mobile/rpc-foundation/goldens/relay-rotation-installs-and-commits.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 30212c3d02e..cbedd5ecdbd 100644 --- a/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json +++ b/mobile/rpc-foundation/goldens/relay-rotation-resumes-committed-pending.json @@ -3,9 +3,9 @@ "family": "relay.credential-rotation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "651e75383caf1b30c329dec2d5d4f0da5358c410402d03cbb087f39600d7a4d2", "scenarioSha256": "96df784c1d56de3bdd04afe20ab019339c7d9a616528ca2617e2fffe4f0157c8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/review-branch-diff-shapes.json b/mobile/rpc-foundation/goldens/review-branch-diff-shapes.json index 4c81045eeec..1a7317309bd 100644 --- a/mobile/rpc-foundation/goldens/review-branch-diff-shapes.json +++ b/mobile/rpc-foundation/goldens/review-branch-diff-shapes.json @@ -3,9 +3,9 @@ "family": "session.review-branch-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "36dbf57e82d87819b403839c22044209f0f399057f62efa7004bb8b899fdbe81", "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 a828d3c8da0..ed33618a08f 100644 --- a/mobile/rpc-foundation/goldens/review-create-terminal-refused.json +++ b/mobile/rpc-foundation/goldens/review-create-terminal-refused.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "af837de2e273c5f03130b51d6e1a9bff9ff99a4e8d1c9554a53134acb5924c72", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/review-file-diff-shapes.json b/mobile/rpc-foundation/goldens/review-file-diff-shapes.json index 816f89cc05c..80a07106559 100644 --- a/mobile/rpc-foundation/goldens/review-file-diff-shapes.json +++ b/mobile/rpc-foundation/goldens/review-file-diff-shapes.json @@ -3,9 +3,9 @@ "family": "session.review-file-diff", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a8016eb61915cf80a3bdeb622ee67d35be8b4b9862a75e4ef2e8f4ff8e93e7f2", "scenarioSha256": "30f0d2ecb8ab5a51a85037196325d5bbac53eb48c5d59a5af62e3ab1fc9420e7", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/review-git-mutations-run.json b/mobile/rpc-foundation/goldens/review-git-mutations-run.json index e3cbdd23f5c..71c782a3b3e 100644 --- a/mobile/rpc-foundation/goldens/review-git-mutations-run.json +++ b/mobile/rpc-foundation/goldens/review-git-mutations-run.json @@ -3,9 +3,9 @@ "family": "session.review-git-mutations", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "7981ac87c4397b9703330835327c70828cb5a76633f1c4803ded1b66520d184d", "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 c4bb6eceb91..eb6d335c46b 100644 --- a/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json +++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-persists.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 558baf17f8b..c10296b421b 100644 --- a/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json +++ b/mobile/rpc-foundation/goldens/review-mark-reviewed-rolls-back.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 d39dfb6acf4..d6692c1d80f 100644 --- a/mobile/rpc-foundation/goldens/review-open-in-session.json +++ b/mobile/rpc-foundation/goldens/review-open-in-session.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 2fe6134e30a..01b38742290 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 @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "7099d7311b2046dde21a2750201718995c0869bc4f17fb7f3ce2b997ce0e6506", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/review-send-sheet-lists-terminals.json b/mobile/rpc-foundation/goldens/review-send-sheet-lists-terminals.json index 5a6e6883fb5..82256a0526d 100644 --- a/mobile/rpc-foundation/goldens/review-send-sheet-lists-terminals.json +++ b/mobile/rpc-foundation/goldens/review-send-sheet-lists-terminals.json @@ -3,9 +3,9 @@ "family": "session.review-send-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "scenarioSha256": "8b4a06c1b2918d5ed5f40102c1c7cb411e02aba5e7601e98658d673634784bb0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/review-stage-file.json b/mobile/rpc-foundation/goldens/review-stage-file.json index 1df18d880c0..8e94845c5aa 100644 --- a/mobile/rpc-foundation/goldens/review-stage-file.json +++ b/mobile/rpc-foundation/goldens/review-stage-file.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 3a3abf73d30..262a3235da2 100644 --- a/mobile/rpc-foundation/goldens/review-stage-refused.json +++ b/mobile/rpc-foundation/goldens/review-stage-refused.json @@ -3,9 +3,9 @@ "family": "session.diff-review-actions", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "2d72b8e68a66a906394167beb8c78f1c0521ca1e731976fd26963ec3bfa9cca4", "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 3559ec35598..91e1b8ed2ad 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-default.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-default.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a4c4b5f95b1..a573ae5aa5b 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-repo-fallback.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 69e4831597d..c195b4f5bd8 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-unavailable.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5edbf2e7f5c..8530adfaffa 100644 --- a/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json +++ b/mobile/rpc-foundation/goldens/sc-base-ref-worktree-hit.json @@ -3,9 +3,9 @@ "family": "git.base-ref-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "5e47c7960b9352753f0751d4ccf5e3ff7fb7b74a63cc4e4df3c3ffdcc6c1e66b", "scenarioSha256": "f3b193f93f6c9de41d11e706ecbd99648eb2ed41ccb7c66cdb80c934e780ed7c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-branch-diff-previewed.json b/mobile/rpc-foundation/goldens/sc-branch-diff-previewed.json index cec8cb8a178..0dc2abf6c45 100644 --- a/mobile/rpc-foundation/goldens/sc-branch-diff-previewed.json +++ b/mobile/rpc-foundation/goldens/sc-branch-diff-previewed.json @@ -3,9 +3,9 @@ "family": "git.branch-diff-preview", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "819d010b9a8bb2741b09f104415f648e0e65d797882a2152ccfa4fb8a107cafc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-changes-loaded.json b/mobile/rpc-foundation/goldens/sc-changes-loaded.json index a48c1424b5c..524d073e424 100644 --- a/mobile/rpc-foundation/goldens/sc-changes-loaded.json +++ b/mobile/rpc-foundation/goldens/sc-changes-loaded.json @@ -3,9 +3,9 @@ "family": "git.changes-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "f2c4d64b3761fcd036d9538155037edc4e35492e67ce5eb158372ddc76e55cc9", "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 de0b19d0a6d..7339e436116 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-cancel-rejected.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 da2e10d7501..40b2b066333 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-canceled.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e2b84d53f48..194b85173ed 100644 --- a/mobile/rpc-foundation/goldens/sc-commit-message-generated.json +++ b/mobile/rpc-foundation/goldens/sc-commit-message-generated.json @@ -3,9 +3,9 @@ "family": "git.commit-message-ai", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b6f88d7de27..021c239ae57 100644 --- a/mobile/rpc-foundation/goldens/sc-create-existing-review.json +++ b/mobile/rpc-foundation/goldens/sc-create-existing-review.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 342bec01865..55109ed3b3c 100644 --- a/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json +++ b/mobile/rpc-foundation/goldens/sc-create-intent-stage-commit-push-create.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "447f9b3d697dbfe21cb7fb6e12d1bf5fa94b023b7e1697bdc2dc82ce7072183f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-create-intent-unlisted-provider.json b/mobile/rpc-foundation/goldens/sc-create-intent-unlisted-provider.json index 9051f15d781..c2e4ecdfc30 100644 --- a/mobile/rpc-foundation/goldens/sc-create-intent-unlisted-provider.json +++ b/mobile/rpc-foundation/goldens/sc-create-intent-unlisted-provider.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-intent", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "7a032109038c14b0a0f254097939b877eba62c10ba7b963070988bb4a1c06ef0", "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 a19de889b2e..98c30ea4480 100644 --- a/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json +++ b/mobile/rpc-foundation/goldens/sc-create-link-failure-is-non-fatal.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 757a86c7eac..bd8a596284e 100644 --- a/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json +++ b/mobile/rpc-foundation/goldens/sc-create-pushes-then-creates.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9138e4c3d4f..1f7a60c2dae 100644 --- a/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-create-refused-empty-message.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b4b158771fa..2f0e6a67476 100644 --- a/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-create-rejected-empty-message.json @@ -3,9 +3,9 @@ "family": "hostedReview.create-chain", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8a70a80db61..de2f1742b00 100644 --- a/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json +++ b/mobile/rpc-foundation/goldens/sc-eligibility-fetched.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c582ce355b0704b38d7e84cbce352630096c91231bf09aecd1f6dbb409fed17f", "scenarioSha256": "f6a1595073abe11b33973e8865900a1d849f44221961da5c12ea13aa696f6490", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-history-commit-files.json b/mobile/rpc-foundation/goldens/sc-history-commit-files.json index 3ae8b12a03c..04bbfdcffa0 100644 --- a/mobile/rpc-foundation/goldens/sc-history-commit-files.json +++ b/mobile/rpc-foundation/goldens/sc-history-commit-files.json @@ -3,9 +3,9 @@ "family": "git.history-commit-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "48ccada93f208a24160483e98ee94a771ab6d63222f29ac4bbd6979157f98333", "scenarioSha256": "27e71d989da152adcbe40a02186df8b8a2e19a6a0e8bfe727e2133c4360f7639", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/sc-history-loaded.json b/mobile/rpc-foundation/goldens/sc-history-loaded.json index b1a960f67eb..4ece0fdd560 100644 --- a/mobile/rpc-foundation/goldens/sc-history-loaded.json +++ b/mobile/rpc-foundation/goldens/sc-history-loaded.json @@ -3,9 +3,9 @@ "family": "git.history-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dc86418b52d..3680596f1b9 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-hosted-review.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 56cbc5bd0b2..7654b459cf5 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-read.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-read.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c505eb4af7a..706d233ce5e 100644 --- a/mobile/rpc-foundation/goldens/sc-pr-link-set.json +++ b/mobile/rpc-foundation/goldens/sc-pr-link-set.json @@ -3,9 +3,9 @@ "family": "worktree.review-link", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 396ff97b27d..5a292ad6201 100644 --- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json +++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-refusal.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7d16570491d..f311b266f56 100644 --- a/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json +++ b/mobile/rpc-foundation/goldens/sc-prefill-unavailable-on-rejection.json @@ -3,9 +3,9 @@ "family": "hostedReview.eligibility", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 11e5c6e044c..8d765989c4a 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-force-with-lease.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 03cf4d4dbf7..dc9ef542598 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-publish.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 002e040e0e8..e3b988845a2 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-push.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-push.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f967a5eb430..f5cd5c4d28d 100644 --- a/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json +++ b/mobile/rpc-foundation/goldens/sc-prerequisite-skipped.json @@ -3,9 +3,9 @@ "family": "git.remote-prerequisite", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 09c585cba01..9db7e7e9ba2 100644 --- a/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json +++ b/mobile/rpc-foundation/goldens/sc-reveal-first-poll.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 95d716d7dd4..714fc98da73 100644 --- a/mobile/rpc-foundation/goldens/sc-reveal-timeout.json +++ b/mobile/rpc-foundation/goldens/sc-reveal-timeout.json @@ -3,9 +3,9 @@ "family": "session.tab-reveal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ae83ed68c74..9d49ce9edbd 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-inner-failure.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 551c4507f71..1030b4678bf 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-refused-empty-message.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ba9c353d902..29fe0cd1460 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit-rejected.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d2b53321270..a04bb3243dd 100644 --- a/mobile/rpc-foundation/goldens/sc-review-commit.json +++ b/mobile/rpc-foundation/goldens/sc-review-commit.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8eda9d14648..9780ae0f692 100644 --- a/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json +++ b/mobile/rpc-foundation/goldens/sc-review-status-entries-not-array.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8ac6830b53a..5a1382b9cc7 100644 --- a/mobile/rpc-foundation/goldens/sc-review-status-normalized.json +++ b/mobile/rpc-foundation/goldens/sc-review-status-normalized.json @@ -3,9 +3,9 @@ "family": "git.review-preparation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f3881601cae..8b2b8d737e5 100644 --- a/mobile/rpc-foundation/goldens/schedules-b3.json +++ b/mobile/rpc-foundation/goldens/schedules-b3.json @@ -3,9 +3,9 @@ "family": "linear-detail-barrier", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 86ba5ca5999..819321be7ed 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-home-providers-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cec708384e5..388d569c76f 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-new-tab-ssh.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 79cdc0ae857..27b7050da1d 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-repo-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4f569d4cbd2..ce861b535aa 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-resume-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0751844504f..98950e3e313 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0216db6fc04..e2893ebed89 100644 --- a/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/schedules-settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fc73116d95985606fe32f22d3f14f434a6d5cd49219416c9fa0f47f971fa6ff0", "scenarioSha256": "eb980fc027ca0200212ba6ad3bf9a1ab3460936a7bb4b04353a9462eecd287a1", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-browser-tab-created.json b/mobile/rpc-foundation/goldens/session-browser-tab-created.json index 9eb85e737b0..21e6322c58e 100644 --- a/mobile/rpc-foundation/goldens/session-browser-tab-created.json +++ b/mobile/rpc-foundation/goldens/session-browser-tab-created.json @@ -3,9 +3,9 @@ "family": "session.browser-tab-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "b4b584b1da9569f18475211ff84d157de3e5d3f300719f6848ac51c01d011531", "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 c8a5b0466c3..15ee8889091 100644 --- a/mobile/rpc-foundation/goldens/session-create-browser-refused.json +++ b/mobile/rpc-foundation/goldens/session-create-browser-refused.json @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dccb4fb1754..eadb134129c 100644 --- a/mobile/rpc-foundation/goldens/session-create-browser-tab.json +++ b/mobile/rpc-foundation/goldens/session-create-browser-tab.json @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8574324be1a..dc2bb4f0ffd 100644 --- a/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json +++ b/mobile/rpc-foundation/goldens/session-create-markdown-name-collision.json @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fbcb0e78a76..75ea5f2bd13 100644 --- a/mobile/rpc-foundation/goldens/session-create-markdown-note.json +++ b/mobile/rpc-foundation/goldens/session-create-markdown-note.json @@ -3,9 +3,9 @@ "family": "session.content-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "4118eea1175cba0f15174072f5715f9054ded09a4cb0c359fc4ee41ad00e9440", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-ignores-a-second-create-in-flight.json b/mobile/rpc-foundation/goldens/session-create-terminal-ignores-a-second-create-in-flight.json index f8c5c46c462..06da3d44d26 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-ignores-a-second-create-in-flight.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-ignores-a-second-create-in-flight.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "df99b9c0ebcffb3d8f173c87783862edb0a66befcc3cd73f1096871f45963913", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-launches-an-agent-quick-command.json b/mobile/rpc-foundation/goldens/session-create-terminal-launches-an-agent-quick-command.json index aab3cb4b768..cb25003b54e 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-launches-an-agent-quick-command.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-launches-an-agent-quick-command.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "fb9828d5e13917ce394061b2d702890e5198df04ce803363b2ce9f939921d00e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-refused.json b/mobile/rpc-foundation/goldens/session-create-terminal-refused.json index 4cb927ce78d..6af8a22683b 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-refused.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-refused.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "e9c32bdf3357ca5d69ac07cb7bbc63fe279c1a23c44e5c79fa0b1db4fd1c55dd", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-replaces-active.json b/mobile/rpc-foundation/goldens/session-create-terminal-replaces-active.json index ec357d5542f..dd49e64069e 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-replaces-active.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-replaces-active.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "726e19307f1e82f0c8ae9a555ec9c27c8eea7f8f40fa700dc0b71c54ecc9ca11", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-runs-a-quick-command.json b/mobile/rpc-foundation/goldens/session-create-terminal-runs-a-quick-command.json index f35e5b46ccc..3d7f5526bdf 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-runs-a-quick-command.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-runs-a-quick-command.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "4dfbe31daae64a03fc588f2095235fdd9b37f26ecccefe596c35c8ef8f623651", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-with-prompt.json b/mobile/rpc-foundation/goldens/session-create-terminal-with-prompt.json index 8d1ae2417a9..a0a4d00c21f 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-with-prompt.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-with-prompt.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "fd654a7e34ae8004543a34a7a301d51858989fdc2bffb02ddf6edb814071b22d", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-without-active-tab.json b/mobile/rpc-foundation/goldens/session-create-terminal-without-active-tab.json index 52b8dae1014..1019bfc84bb 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-without-active-tab.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-without-active-tab.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "da78ad25ea15e1c714f0147d34207529362743a56a519153f36b09345dee0ebc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-create-terminal-without-handle.json b/mobile/rpc-foundation/goldens/session-create-terminal-without-handle.json index 01bee25e299..6f4f4007834 100644 --- a/mobile/rpc-foundation/goldens/session-create-terminal-without-handle.json +++ b/mobile/rpc-foundation/goldens/session-create-terminal-without-handle.json @@ -3,9 +3,9 @@ "family": "session.create-terminal", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "fa7d9fd6428e89282f08e04fefba4289000eb3aed1462489a2f11efed374382c", "scenarioSha256": "f1952a0e2c9108dadf2f5b85ac1f43ec9db09db0ce81a575bb4dd3a8d18d9c83", "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 5a12d71506d..23ef0bb6f41 100644 --- a/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json +++ b/mobile/rpc-foundation/goldens/session-diff-notes-load-refused.json @@ -3,9 +3,9 @@ "family": "session.diff-notes", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f32757a8ec0..ea9b1721609 100644 --- a/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json +++ b/mobile/rpc-foundation/goldens/session-diff-notes-loaded.json @@ -3,9 +3,9 @@ "family": "session.diff-notes", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ee7e8db7861..8f40d7b81dd 100644 --- a/mobile/rpc-foundation/goldens/session-file-tab-read.json +++ b/mobile/rpc-foundation/goldens/session-file-tab-read.json @@ -3,9 +3,9 @@ "family": "session.tab-documents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7d69dfe51e6..23d1675e984 100644 --- a/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json +++ b/mobile/rpc-foundation/goldens/session-markdown-save-conflict.json @@ -3,9 +3,9 @@ "family": "session.markdown-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ef6f39bc612..9b8d6e5be3c 100644 --- a/mobile/rpc-foundation/goldens/session-markdown-saved.json +++ b/mobile/rpc-foundation/goldens/session-markdown-saved.json @@ -3,9 +3,9 @@ "family": "session.markdown-save", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4473624058f..c685198cc33 100644 --- a/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-disk-fallback.json @@ -3,9 +3,9 @@ "family": "session.tab-documents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ef4e5951d0a..863b240c3f7 100644 --- a/mobile/rpc-foundation/goldens/session-markdown-tab-read.json +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-read.json @@ -3,9 +3,9 @@ "family": "session.tab-documents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 67afd7aaf7a..286a1174a1f 100644 --- a/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json +++ b/mobile/rpc-foundation/goldens/session-markdown-tab-refused.json @@ -3,9 +3,9 @@ "family": "session.tab-documents", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "a3daf9a05d05424959baf77feb45cb0c076d77d8c49e877941ed612cc1e5ce95", "scenarioSha256": "63227f28110e90acac78058baa875b1bc7f8895b5033e47016a2ffa9f42f66ce", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-startup-both-activation-sites.json b/mobile/rpc-foundation/goldens/session-startup-both-activation-sites.json index 207172935a8..bb812c318e7 100644 --- a/mobile/rpc-foundation/goldens/session-startup-both-activation-sites.json +++ b/mobile/rpc-foundation/goldens/session-startup-both-activation-sites.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "efb7ff45ac09f1b7f0f3ad7f1b6f09d4d5c349e22de7d9c4d63ca93530552418", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-startup-floating-route-skips-activation.json b/mobile/rpc-foundation/goldens/session-startup-floating-route-skips-activation.json index 8fe277a0d68..597f3f48e8a 100644 --- a/mobile/rpc-foundation/goldens/session-startup-floating-route-skips-activation.json +++ b/mobile/rpc-foundation/goldens/session-startup-floating-route-skips-activation.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "82ff29efaa6ee0bf49ce41bfe7dff2083d0f942c10cc9d8bab48925354d17519", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-startup-keeps-terminals-visible-on-reconnect.json b/mobile/rpc-foundation/goldens/session-startup-keeps-terminals-visible-on-reconnect.json index d6e922e0166..6af0815e4bd 100644 --- a/mobile/rpc-foundation/goldens/session-startup-keeps-terminals-visible-on-reconnect.json +++ b/mobile/rpc-foundation/goldens/session-startup-keeps-terminals-visible-on-reconnect.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "f540e4a06380a6a5d82d670230c76b7afc2c60302bc27dda13156b620095c5cc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-startup-refused-tab-load-still-loads-terminals.json b/mobile/rpc-foundation/goldens/session-startup-refused-tab-load-still-loads-terminals.json index 42ecbc1857a..321e9e38aa5 100644 --- a/mobile/rpc-foundation/goldens/session-startup-refused-tab-load-still-loads-terminals.json +++ b/mobile/rpc-foundation/goldens/session-startup-refused-tab-load-still-loads-terminals.json @@ -3,9 +3,9 @@ "family": "session.startup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "6b08c394e37fd572cf63a4c11934247d379008f11117aa5af33b2926fbd32d1e", "scenarioSha256": "18d0bbda11a394a13d0eaea12b8748dbeede1ae7212907b0ca70a9bafa037424", "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 b226ff4d272..f957fe451b0 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 @@ -3,9 +3,9 @@ "family": "session.tab-activation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 75ec8917a91..08c9a1bcbff 100644 --- a/mobile/rpc-foundation/goldens/session-tab-activation-refused.json +++ b/mobile/rpc-foundation/goldens/session-tab-activation-refused.json @@ -3,9 +3,9 @@ "family": "session.tab-activation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7f54b378fd3..91178b0f8f2 100644 --- a/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json +++ b/mobile/rpc-foundation/goldens/session-tab-activation-transport-error.json @@ -3,9 +3,9 @@ "family": "session.tab-activation", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 22cd2675778..733a46b3fc8 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 @@ -3,9 +3,9 @@ "family": "session.tab-close", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 78d6cd4c93c..852bb2aff20 100644 --- a/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json +++ b/mobile/rpc-foundation/goldens/session-tab-close-session-tab.json @@ -3,9 +3,9 @@ "family": "session.tab-close", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3c05bb8fd1a..b2d6120d9be 100644 --- a/mobile/rpc-foundation/goldens/session-tab-close-terminal.json +++ b/mobile/rpc-foundation/goldens/session-tab-close-terminal.json @@ -3,9 +3,9 @@ "family": "session.tab-close", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "194b010d00fdeca85418870fd053ac500c38cae02e98c4bfc544b8fea78bbcb8", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-tab-closed.json b/mobile/rpc-foundation/goldens/session-tab-closed.json index a1a1d74ecca..8110154dbf2 100644 --- a/mobile/rpc-foundation/goldens/session-tab-closed.json +++ b/mobile/rpc-foundation/goldens/session-tab-closed.json @@ -3,9 +3,9 @@ "family": "session.tab-close-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "334b50e135103db21b93e60acff31047823371049171b57388df050179a6dcbc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-tab-rename.json b/mobile/rpc-foundation/goldens/session-tab-rename.json index c32c1e6b08b..a172e0622bd 100644 --- a/mobile/rpc-foundation/goldens/session-tab-rename.json +++ b/mobile/rpc-foundation/goldens/session-tab-rename.json @@ -3,9 +3,9 @@ "family": "session.tab-close", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "9e877af8539e5425f65edd6b3ff8af73e719aae2033980411a8e8a3b508dcd9e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-tab-renamed.json b/mobile/rpc-foundation/goldens/session-tab-renamed.json index c44d9a664dc..cd56958f25f 100644 --- a/mobile/rpc-foundation/goldens/session-tab-renamed.json +++ b/mobile/rpc-foundation/goldens/session-tab-renamed.json @@ -3,9 +3,9 @@ "family": "session.tab-rename", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "562c2f4ab669e774dd7045ecd9518e483845433fef6034688090f3b056df2815", "scenarioSha256": "927e7cda255922c2e6ac893f0068679774ce5de988376df1ff8b7d5072f7d127", "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 1a1bab9ed42..f2bb4d6e690 100644 --- a/mobile/rpc-foundation/goldens/session-tabs-health-errored.json +++ b/mobile/rpc-foundation/goldens/session-tabs-health-errored.json @@ -3,9 +3,9 @@ "family": "session.tabs-stream-health", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ce2a57b08b1..f22a5a560e9 100644 --- a/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json +++ b/mobile/rpc-foundation/goldens/session-tabs-health-reconciled.json @@ -3,9 +3,9 @@ "family": "session.tabs-stream-health", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a5e8b3b85cd..a3936a83adf 100644 --- a/mobile/rpc-foundation/goldens/session-tabs-health-refused.json +++ b/mobile/rpc-foundation/goldens/session-tabs-health-refused.json @@ -3,9 +3,9 @@ "family": "session.tabs-stream-health", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f087d24f4f7..b86d32197fb 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 @@ -3,9 +3,9 @@ "family": "session.tabs-stream-health", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4a1e81ab3229c8fd10b3ad435568efec11a944e0f02a183f94e4b1f44a7e5de0", "scenarioSha256": "5381b6ade796596ac362d4ed64349266e65fe8fd2b4fc778a54315d4b6fda3da", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-take-floor.json b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-take-floor.json index 2d9e1c9064a..37a919591b5 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-take-floor.json +++ b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-take-floor.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "a4ba13014a128c0e06a3d40b9e3fa3b0136b07f52a92c89a9afa3c73bc39d69f", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-device-token.json b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-device-token.json index d95d1e4d61a..ed6a20d3fe0 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-device-token.json +++ b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-device-token.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "10295c4779f010c5040a7a04264a8094c342752ea5d75d887ab99f1a57ba4b2e", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-viewport.json b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-viewport.json index c6291aaf490..c3345509262 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-viewport.json +++ b/mobile/rpc-foundation/goldens/session-terminal-display-mode-auto-without-viewport.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "bb278c4da53b82d84cf50b308901ce196cc1f07c1a84790ad491319ee6746541", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-terminal-display-mode-drops-second-toggle.json b/mobile/rpc-foundation/goldens/session-terminal-display-mode-drops-second-toggle.json index e070e5b2574..c41a95f3101 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-display-mode-drops-second-toggle.json +++ b/mobile/rpc-foundation/goldens/session-terminal-display-mode-drops-second-toggle.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "16f645f758f2463bf6e16559d581afbc8794aa56069210f13a45952158d35a4c", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/session-terminal-display-mode-to-desktop.json b/mobile/rpc-foundation/goldens/session-terminal-display-mode-to-desktop.json index b70123b5a53..93f4162032e 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-display-mode-to-desktop.json +++ b/mobile/rpc-foundation/goldens/session-terminal-display-mode-to-desktop.json @@ -3,9 +3,9 @@ "family": "session.terminal-display-mode", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9e90ad39a8d4257adf30166757a6364c4710dc3ae9f06365f80a3dd8f1c94d89", "scenarioSha256": "fc81b0ac28970f9db27276c90f486306d74387f1404d757216a09823fedf680c", "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 be15bc96ea8..06c800b8c31 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json +++ b/mobile/rpc-foundation/goldens/session-terminal-list-dedupes-handles.json @@ -3,9 +3,9 @@ "family": "session.terminal-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0a8ead62b8a..9141268ab79 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json +++ b/mobile/rpc-foundation/goldens/session-terminal-list-empty-guarded.json @@ -3,9 +3,9 @@ "family": "session.terminal-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3e5aae1a444..8d8ed55215e 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-list-merged.json +++ b/mobile/rpc-foundation/goldens/session-terminal-list-merged.json @@ -3,9 +3,9 @@ "family": "session.terminal-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a24b1dfda2b..3dcbedc9011 100644 --- a/mobile/rpc-foundation/goldens/session-terminal-list-refused.json +++ b/mobile/rpc-foundation/goldens/session-terminal-list-refused.json @@ -3,9 +3,9 @@ "family": "session.terminal-inventory", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 71cd1936d48..1cdd20989a2 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 275718cd2a1..935303e83e2 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refresh-refused.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b60264f7c21..a1b044ddb9d 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-refused.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 64c0dfe31e3..a9c319b7dc6 100644 --- a/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-bot-overrides-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.bot-overrides", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bd6e15bb46a..837a27cc392 100644 --- a/mobile/rpc-foundation/goldens/settings-home-coalesced.json +++ b/mobile/rpc-foundation/goldens/settings-home-coalesced.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 449d92e71c0..12ad73fbff2 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0353c8948d2..6cf786b77f4 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6db75b76556..525e1db1171 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-refused.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-refused.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 06b951bb826..612940c1839 100644 --- a/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-home-providers-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.home-providers", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a8b0a4b9deb..c80bbfa41af 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-refused.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-refused.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f8ed2b549c7..8886a86185c 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-ssh.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 772df48eae0..17e0400d58c 100644 --- a/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-new-tab-transport-error.json @@ -3,9 +3,9 @@ "family": "settings-agent-read", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0ca5884e88b..fb2627ce961 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json +++ b/mobile/rpc-foundation/goldens/settings-repo-cache-expiry.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 baaecf604a5..0b7a2cae384 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0276872193d..71653c128f1 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 03acf6b8b3b..9002b58fd62 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-refused.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fbea53935ae..c514c1b1f89 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-single-host.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 11ebbbc4d86..de905a5a0df 100644 --- a/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-repo-metadata-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.repo-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 97c05dea38b..00f0594834d 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 04c5919506e..746e41ba5b1 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 5ff08593e3f..cd807a6e78b 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-refused.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 cfe2cdac2b3..bfa60242c7f 100644 --- a/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-resume-metadata-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.resume-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 579e72ad2d9..bc91059b220 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 03742628ad6..268692e991e 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 634e1dba785..56f703b3ec0 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-refused.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 be25d7c4aa9..38d2fd08bda 100644 --- a/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-task-hydration-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.task-hydration", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ca08cededde..9fd82bfc916 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-create-linear.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 09ec0bedb10..d66e80c2949 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-create-pr-start-point.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 58a4b087d9e..0e7486dbb2e 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 1ac3171c08d..82851e6e9ae 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-refused.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 d656f6ee4a8..fa58d477833 100644 --- a/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-task-workspace-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.task-workspace", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 505b8ee532c..d8b77f03b92 100644 --- a/mobile/rpc-foundation/goldens/settings-task-write.json +++ b/mobile/rpc-foundation/goldens/settings-task-write.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a7c83105e62..48d1c35e11e 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 76017588382..a2621932a01 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-refuse-after-data.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b990d0a6cad..a89624d7521 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-refused.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7d0261986a5..bafc81e262d 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-context-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.workspace-context", "namedDeltas": ["new-workspace-runtime-context-null-results-degrade-to-absent"], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1b92d0e58f1..ddee80123da 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-fulfilled.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 5773598fced..0fb9c9ac86e 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-refused.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 8b670bf63af..ad3dce6ba8e 100644 --- a/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json +++ b/mobile/rpc-foundation/goldens/settings-workspace-submit-transport-error.json @@ -3,9 +3,9 @@ "family": "settings.workspace-submit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c2eed306311a844cd6f2f84b6513c0a1182f86a5e3cace434385b8287c80d7c5", "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 46b95755901..fc5bbc80fb0 100644 --- a/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json +++ b/mobile/rpc-foundation/goldens/speech-audio-chunk-acknowledged.json @@ -3,9 +3,9 @@ "family": "speech.dictation-chunk", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0b8fd74bdf2..3ea7c56c4b0 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-fulfilled.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c1319efcb58..c37f476412b 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-recording-failed.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2a2b465b210..3337d105c58 100644 --- a/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json +++ b/mobile/rpc-foundation/goldens/speech-desktop-start-superseded.json @@ -3,9 +3,9 @@ "family": "speech.dictation-start", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4b3cb3a3837..e373772a2c9 100644 --- a/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json +++ b/mobile/rpc-foundation/goldens/speech-dictation-session-cancelled.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4516057fc32..5baec9b7b62 100644 --- a/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json +++ b/mobile/rpc-foundation/goldens/speech-dictation-session-transcript.json @@ -3,9 +3,9 @@ "family": "speech.dictation-session", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9afa1280356..8cc61d4ff12 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-denied-to-mobile.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a1819938ad7..1e6f15a791d 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-fulfilled.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dbedcff455e..4755bcf99f7 100644 --- a/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json +++ b/mobile/rpc-foundation/goldens/speech-setup-sheet-legacy-desktop.json @@ -3,9 +3,9 @@ "family": "speech.setup-sheet", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "3ddb44511547ae2fc97340e5a49393233f6716f9704b7b994f43bc030788b25b", "scenarioSha256": "0ba2d8283fe98206c7500b62732e30acdc5b8e55f50b7ea8cae96403b803d519", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/structured-agent-session-created.json b/mobile/rpc-foundation/goldens/structured-agent-session-created.json index 2875d5374be..3cb19db3031 100644 --- a/mobile/rpc-foundation/goldens/structured-agent-session-created.json +++ b/mobile/rpc-foundation/goldens/structured-agent-session-created.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-create", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "d340697a64a198066b1037a550afb9a0de7507246a545901d2fc0a23407f38d6", "scenarioSha256": "6e2d1633645a3072241729328cc71ea2979533d28797c14de86c8b3457ac018a", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/structured-launch-created.json b/mobile/rpc-foundation/goldens/structured-launch-created.json index 21332689f67..2519dd33fb2 100644 --- a/mobile/rpc-foundation/goldens/structured-launch-created.json +++ b/mobile/rpc-foundation/goldens/structured-launch-created.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 201da09468f..65bdc35eb86 100644 --- a/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json +++ b/mobile/rpc-foundation/goldens/structured-launch-definitive-refusal.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dc1c2cf38a6..2125f29a447 100644 --- a/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json +++ b/mobile/rpc-foundation/goldens/structured-launch-replays-dropped-create.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 90a1463c8a8..adbc987e17a 100644 --- a/mobile/rpc-foundation/goldens/structured-launch-support-refused.json +++ b/mobile/rpc-foundation/goldens/structured-launch-support-refused.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 028efa6fcf4..d1107fa5d5b 100644 --- a/mobile/rpc-foundation/goldens/structured-launch-unsupported.json +++ b/mobile/rpc-foundation/goldens/structured-launch-unsupported.json @@ -3,9 +3,9 @@ "family": "agentSession.structured-launch", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 88c14a8b993..a499777860d 100644 --- a/mobile/rpc-foundation/goldens/tasks-route-repo-list.json +++ b/mobile/rpc-foundation/goldens/tasks-route-repo-list.json @@ -3,9 +3,9 @@ "family": "tasks.route-repo-list", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "feb6cee1ab7ecff1ba98bfba22d4924c748d3bb6b749db460cb617ee50b92f2c", "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 index 10ed5d0be0a..2b5e8e61e2e 100644 --- a/mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json +++ b/mobile/rpc-foundation/goldens/terminal-gesture-flush-and-clear.json @@ -3,9 +3,9 @@ "family": "session.terminal-gesture-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "9d119d5ec320e2538105d6ff673b9f4b8e3decbe46527947489dffbcf2ac0472", "scenarioSha256": "97e6d63c6b4bc154e94be6cf3dcd25620b4656cacd2b62cdc872ff793b39ebd2", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json index c3d5586a7fd..c4de1fb9786 100644 --- a/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-input-send-accepted.json @@ -3,9 +3,9 @@ "family": "session.terminal-input-send", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 692af11490e..41bb7c4bb98 100644 --- a/mobile/rpc-foundation/goldens/terminal-input-send-refused.json +++ b/mobile/rpc-foundation/goldens/terminal-input-send-refused.json @@ -3,9 +3,9 @@ "family": "session.terminal-input-send", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1fd2a3ccc32..8bbdf138859 100644 --- a/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-live-input-accepted.json @@ -3,9 +3,9 @@ "family": "session.terminal-input-send", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9699672147f..0f2e1d83cf1 100644 --- a/mobile/rpc-foundation/goldens/terminal-paste-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-paste-accepted.json @@ -3,9 +3,9 @@ "family": "session.terminal-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4eede84ebed..ce879346673 100644 --- a/mobile/rpc-foundation/goldens/terminal-paste-refused.json +++ b/mobile/rpc-foundation/goldens/terminal-paste-refused.json @@ -3,9 +3,9 @@ "family": "session.terminal-paste", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 dd3d2eeadb9..a44e47b4936 100644 --- a/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-query-reply-accepted.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b59286daec0..51cc905c21f 100644 --- a/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json +++ b/mobile/rpc-foundation/goldens/terminal-query-reply-unsubscribed.json @@ -3,9 +3,9 @@ "family": "terminal.query-reply", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 80d56ba51ce..3f1f3a63074 100644 --- a/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json +++ b/mobile/rpc-foundation/goldens/terminal-raw-input-refused.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 26e2e0b0269..bd2706235d1 100644 --- a/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json +++ b/mobile/rpc-foundation/goldens/terminal-raw-input-reported.json @@ -3,9 +3,9 @@ "family": "terminal.raw-input", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 16ef468eee6..f9bc7238023 100644 --- a/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json +++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-accepted.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ce7967a8b4e..8ccd5674eb1 100644 --- a/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json +++ b/mobile/rpc-foundation/goldens/terminal-takeover-report-retried.json @@ -3,9 +3,9 @@ "family": "terminal.takeover-report", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 52f91b8c8bb..0aeb2fca7f8 100644 --- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json +++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-applied.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4ea88f991a4..72cb585a3fb 100644 --- a/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json +++ b/mobile/rpc-foundation/goldens/terminal-viewport-refit-legacy-desktop.json @@ -3,9 +3,9 @@ "family": "terminal.viewport-refit", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 90e2b54599d..31cb88ff92c 100644 --- a/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json +++ b/mobile/rpc-foundation/goldens/terminal-worktree-connection-resolved.json @@ -3,9 +3,9 @@ "family": "session.worktree-connection", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 679889f5d6d..99894d048ee 100644 --- a/mobile/rpc-foundation/goldens/tk-create-github.json +++ b/mobile/rpc-foundation/goldens/tk-create-github.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9f6aa3a713a..33dd6e3947e 100644 --- a/mobile/rpc-foundation/goldens/tk-create-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-create-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8e9a71f7be0..9e86f73b90c 100644 --- a/mobile/rpc-foundation/goldens/tk-create-linear.json +++ b/mobile/rpc-foundation/goldens/tk-create-linear.json @@ -3,9 +3,9 @@ "family": "tasks.task-create-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c91db10f978..042c06bb6cb 100644 --- a/mobile/rpc-foundation/goldens/tk-item-checks-files.json +++ b/mobile/rpc-foundation/goldens/tk-item-checks-files.json @@ -3,9 +3,9 @@ "family": "tasks.item-checks-files", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8c4218bfb2af227da5386f29989cec438f2c6187f39ce1c06859e136ea920bfa", "scenarioSha256": "644a27c1e3fa6bfa73c7822c2949e9534508e5e3a996b0e8e56be6326658d123", "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 300db0fb4dc..1f57489bbd6 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 17787946d22..f918c1e8b4c 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 12d35bee4c7..3188c43955c 100644 --- a/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-comment-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-comment-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "8f68885d57a9aa76d80ba0ee29a95bdbaa98cef29c79c68ce75d67202cde7bfe", "scenarioSha256": "d993b9f74cf8c5d7af8d31a73cf19d97141c54f6fcf009e98ca5b9106f3ba35b", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-github-reactions.json b/mobile/rpc-foundation/goldens/tk-item-detail-github-reactions.json index 8ddf8470b09..d696be74f52 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-github-reactions.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-github-reactions.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "885dafb68162f5777fc050af34dbe3443940d041a45bfb18c51dfcf433ed54f3", "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 6080456bfdb..a06d6703087 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "5fbff075d7da476f93c2a7da871c2afacc67822d1317acf6c23000195e2b2576", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab-reactions.json b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab-reactions.json index a471901d19a..4f58560b4b4 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab-reactions.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab-reactions.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "c0ef16b959002e4a3c5347114a0844b95670e274ef010d910b6671ac5f49e783", "scenarioSha256": "c49d2df6c31f37c488ce9d29a801dd8ad0aa668ae380fc60b1f790ef508281d8", "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 970119b811d..d9dbc249351 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c59aacd80ba..f555e92722e 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-linear.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-linear.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3ec4196696c..c007661d169 100644 --- a/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json +++ b/mobile/rpc-foundation/goldens/tk-item-detail-metadata.json @@ -3,9 +3,9 @@ "family": "tasks.item-detail-metadata", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 23737e11887..14568a50a75 100644 --- a/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-merge-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-merge-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 8898a7a6cf4..fca176529c0 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 e6fd22f3448..ae1b2cbb893 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 05fe7bed753..dac7d3f807d 100644 --- a/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-metadata-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-metadata-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f1596685d4c..d5dd42704c2 100644 --- a/mobile/rpc-foundation/goldens/tk-item-reply-merge.json +++ b/mobile/rpc-foundation/goldens/tk-item-reply-merge.json @@ -3,9 +3,9 @@ "family": "tasks.item-reply-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 174f0dd221a..e7339ccda04 100644 --- a/mobile/rpc-foundation/goldens/tk-item-review-github.json +++ b/mobile/rpc-foundation/goldens/tk-item-review-github.json @@ -3,9 +3,9 @@ "family": "tasks.item-review-github", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 bcb8ca6fcd9..baff6ef9227 100644 --- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json +++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab-mr.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab-mr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0150f5b3d0e..244729d94d1 100644 --- a/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json +++ b/mobile/rpc-foundation/goldens/tk-item-status-gitlab.json @@ -3,9 +3,9 @@ "family": "tasks.item-status-gitlab", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 4e3ece4377f..76937d17dca 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-connect.json +++ b/mobile/rpc-foundation/goldens/tk-linear-connect.json @@ -3,9 +3,9 @@ "family": "tasks.linear-connect", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 03a8896563f..b1f4c3e0646 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-item.json +++ b/mobile/rpc-foundation/goldens/tk-linear-item.json @@ -3,9 +3,9 @@ "family": "tasks.linear-item", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d0ae9313d06..0dc33285669 100644 --- a/mobile/rpc-foundation/goldens/tk-linear-team-context.json +++ b/mobile/rpc-foundation/goldens/tk-linear-team-context.json @@ -3,9 +3,9 @@ "family": "tasks.linear-team-context", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 d43eb7c936a..514941bda32 100644 --- a/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json +++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-items.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-items", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 15bef70907e..02830ea9447 100644 --- a/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json +++ b/mobile/rpc-foundation/goldens/tk-list-gitlab-todos.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-gitlab-todos", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "07a15e900363faa25bc364f5bc1c330f96798abfeaed35210428c2ac558586b8", "scenarioSha256": "ba91378284c5dc3dc470f0601e4ff0202622a8d1fb97f27ab45c096d65c0bb48", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/tk-list-linear.json b/mobile/rpc-foundation/goldens/tk-list-linear.json index e66ef49f67b..7d58d6b6895 100644 --- a/mobile/rpc-foundation/goldens/tk-list-linear.json +++ b/mobile/rpc-foundation/goldens/tk-list-linear.json @@ -3,9 +3,9 @@ "family": "tasks.task-list-linear", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 23f2d55d5d1..86dcf765207 100644 --- a/mobile/rpc-foundation/goldens/tk-project-board-load.json +++ b/mobile/rpc-foundation/goldens/tk-project-board-load.json @@ -3,9 +3,9 @@ "family": "tasks.project-board-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 1d2e81152a2..eac86edc1b4 100644 --- a/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json +++ b/mobile/rpc-foundation/goldens/tk-project-repo-slugs.json @@ -3,9 +3,9 @@ "family": "tasks.project-repo-slugs", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 6d449295a73..5d5cca5d465 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-issue.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-issue", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a49ff0043ca..704de917e75 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-comments-pr.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-comments-pr", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 3e637f11e03..b2bdfa799fb 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-detail.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-detail.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-detail", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2cc1e011357..0afff87352d 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-fields.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-fields.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-fields", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b9ba1edcdc2..00e940c2d55 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-files-merge.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-files-merge", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "b228732762828412ad3d9eec3ece00a897d866046e37044322c3911758d6e0a9", "scenarioSha256": "fef96700723edcf7d0a55ee05928a0293b8a28217b161cd3823437f3bc33b1ec", "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 f9e0400d447..d84c80d79ab 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-metadata-load.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-metadata-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 7de09b03876..56ea97d769f 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-review-checks.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-review-checks", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 64a6757f022..fe0b44b398e 100644 --- a/mobile/rpc-foundation/goldens/tk-project-row-threads.json +++ b/mobile/rpc-foundation/goldens/tk-project-row-threads.json @@ -3,9 +3,9 @@ "family": "tasks.project-row-threads", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 810ca7c2e0f..748705b639b 100644 --- a/mobile/rpc-foundation/goldens/tk-provider-load.json +++ b/mobile/rpc-foundation/goldens/tk-provider-load.json @@ -3,9 +3,9 @@ "family": "tasks.provider-load", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c4106076fb5..98c979bc749 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-cutover-reasks-fast.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 18bc0a976bf..a363f7ab5f0 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-non-string-capabilities-drop.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 9460756d325..1b73f0c4cd4 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-publishes.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 2f1002412c2..18ab61a65cc 100644 --- a/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json +++ b/mobile/rpc-foundation/goldens/transport-capability-probe-refused-backs-off.json @@ -3,9 +3,9 @@ "family": "transport.capability-probe", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f76b77b59be..065cf74ce7c 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-drop-keeps-capabilities.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f7ca9688871..e090b8a34b1 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-ready.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a7a598a370f..24ef0e65638 100644 --- a/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json +++ b/mobile/rpc-foundation/goldens/transport-host-status-gates-refused-degrades.json @@ -3,9 +3,9 @@ "family": "transport.host-status-gates", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 fc2b4f0a635..927b3c6d747 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-both-refused.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 33b29474da6..a8e380907e6 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-direct-completes-first.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 29282858759..abf5d23cb1d 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-completes-first.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0864413de0e..68160913c64 100644 --- a/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json +++ b/mobile/rpc-foundation/goldens/transport-pairing-race-relay-wins-when-direct-refused.json @@ -3,9 +3,9 @@ "family": "transport.pairing-race", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 ba9cab377e3..3736603ac41 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-advertised.json @@ -3,10 +3,10 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "9d79bcfd6957d11d5ce8c3296f1038a3cfab81eedad7f990b44071104dfd0f91", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json index 2772cb9b5cc..980dbcd5774 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-cutover-retried.json @@ -3,10 +3,10 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "fb9c0e4b7c34f9bd1bd355b606c6ba75a7583cff3788000b7ed013612f5574fe", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json index 46c8edee23b..9457d7cc8b2 100644 --- a/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json +++ b/mobile/rpc-foundation/goldens/tw-capabilities-legacy-idempotency.json @@ -3,10 +3,10 @@ "family": "worktree.runtime-capabilities", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "d73fed49e0a7e3e054d5c2fa75780f98bf78b6fa7e02f1ccb2fdc49465cf2fe5", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-agent-launched.json b/mobile/rpc-foundation/goldens/tw-create-retry-agent-launched.json new file mode 100644 index 00000000000..4ce7fe4d267 --- /dev/null +++ b/mobile/rpc-foundation/goldens/tw-create-retry-agent-launched.json @@ -0,0 +1,163 @@ +{ + "operation": "tasks.worktree-create-retry", + "family": "worktree.agent-launch-create", + "namedDeltas": [], + "runnerVersion": 1, + "baseline": "a499dada6eb797b02693c25933149221336859d1", + "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "85595f5fdde16441d22bf07c14c65edda6cb90019d036aae2c5031d19664e66f", + "platform": "darwin", + "scenarioVersion": 1, + "projectionVersion": 2, + "goldenFormatVersion": 5, + "values": { + "3f946ad0279c": { + "outcome": "uncreated" + }, + "9270aeb7d9c6": { + "status": "pending", + "startedAt": 0 + }, + "97555d579c32": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "name": "kestrel", + "warning": "startup terminal failed", + "worktreeId": "repo-1::/w" + } + }, + "a19446c94e4f": { + "name": "agent.launch#1", + "ordinal": 2, + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"agent.launch\",\"params\":{\"agent\":\"codex\",\"target\":{\"kind\":\"create-worktree\",\"create\":{\"repo\":\"id:repo-1\",\"name\":\"kestrel\",\"clientMutationId\":\"mutation-1\"}}}}" + }, + "f02b3d4d2928": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "pending", + "startedAt": 0 + } + }, + "f53a3cfe8aa9": { + "name": "agent.launch#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "agent.launch" + }, + { + "name": "params", + "value": { + "agent": "codex", + "target": { + "create": { + "clientMutationId": "mutation-1", + "name": "kestrel", + "repo": "id:repo-1" + }, + "kind": "create-worktree" + } + } + }, + { + "name": "options", + "value": { + "timeoutMs": 600000 + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "outcome": { + "handle": "t-1", + "kind": "structured", + "sessionId": "sess-1" + }, + "receipt": { + "detail": "Structured session created.", + "mode": "structured", + "preferred": "structured", + "reason": "user_default" + }, + "warning": " startup terminal failed ", + "worktreeId": "repo-1::/w" + } + } + } + }, + "f800fc04633e": { + "outcome": { + "name": "kestrel", + "warning": "startup terminal failed", + "worktreeId": "repo-1::/w" + } + } + }, + "recording": { + "scenario": "tw-create-retry-agent-launched", + "checkpoints": [ + { + "id": "sent", + "observation": { + "sender": ["f02b3d4d2928"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "9270aeb7d9c6" + }, + "state": "3f946ad0279c", + "effects": [] + } + }, + { + "id": "launched", + "observation": { + "sender": ["f53a3cfe8aa9"], + "payloads": ["a19446c94e4f"], + "settlements": { + "create": "97555d579c32" + }, + "state": "f800fc04633e", + "effects": [] + } + } + ] + } +} 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 c31814b0955..e6101b2d1eb 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-after-drop.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "a99bb80a5826af1df8d74114fcc5654aa42c9208747b512cea9bd5ca65b64ccb", "platform": "darwin", "scenarioVersion": 1, 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 b7d6117ed44..0a0ff44d51a 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-while-connected.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "3cda09e4a4ad4092f5f9a48b7c9715a99a51eb3bc4bed00f7054537a9e21cea9", "platform": "darwin", "scenarioVersion": 1, 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 42e552c3c0c..496141e346b 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-ambiguous-without-idempotency.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "61097c13b262a4454510936fa9c9554a07865b610f18407f1b67bdd74476df08", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-create-retry-created.json b/mobile/rpc-foundation/goldens/tw-create-retry-created.json index bbc55561df7..a1664eea62d 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-created.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-created.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "0278216fee698c00118bb0e73a7fe755dc59c3b8e2b0459153edae64f155774c", "platform": "darwin", "scenarioVersion": 1, 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 30855660899..837a0723c4f 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-name-collision.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "6cb658dadc9e146c4f36c6ce643451e72300b8cdda19cc684ffa9fb2b0822c0a", "platform": "darwin", "scenarioVersion": 1, 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 d97cbe20d8a..c0ec329a77e 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-unretryable-refusal.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "16abe9e1a8d4cff17b3ea29d40277ae30a3d555a4a9efa08b2745c3a85b02740", "platform": "darwin", "scenarioVersion": 1, 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 b99fffa0a37..646c3c7b811 100644 --- a/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json +++ b/mobile/rpc-foundation/goldens/tw-create-retry-warning-kept.json @@ -3,10 +3,10 @@ "family": "worktree.create-retry", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "f469b2b7d61e7fc500fa97b5548f5a3732b0dbcdb405412a514a609f786dfbb5", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json index 921420d9b13..639dc5dd0c9 100644 --- a/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json +++ b/mobile/rpc-foundation/goldens/tw-hosted-base-resolved.json @@ -3,10 +3,10 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "b3734c24f8a083d3efcdd995ea6a57e608d3d3ae3bbbd514db19dcf69448fa48", "platform": "darwin", "scenarioVersion": 1, 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 36ecfda917d..fda913eb1d2 100644 --- a/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json +++ b/mobile/rpc-foundation/goldens/tw-hosted-base-soft-error.json @@ -3,10 +3,10 @@ "family": "worktree.hosted-base", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "451e74a430d2549976fa360a0e43e76a8d855b1470b8e313797019770ceca4cb", "platform": "darwin", "scenarioVersion": 1, diff --git a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json index e9c13c3136a..e51e2d3a8b9 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-resolved.json @@ -3,21 +3,30 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "1fb1cdc8a2544e25547175760143a61355900a3ed4b87e08a1fa0dd2409e317d", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "81be14c5ec31045004465de4234d1f682f5946d6f8dac7a42263e285b1f24591", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "09b235c17bb0": { + "088b54714e03": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "cache": [] }, @@ -33,40 +42,76 @@ } } }, - "2113a0cc7708": { + "1ffa5b08cd27": { "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" }, - "cache": [ - [ - "repo-1", - { - "owner": "owner", - "repo": "repo" - } - ] - ], + "cache": [], "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - }, - "repo-slug": { - "displayName": "Repo", - "id": "repo-1", - "slug": { + "author": { "$rpc": "null" - } + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, - "40b6e1288e8b": { + "2689e3903f7b": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + }, + "467d1db5ad39": { + "name": "github.workItem#1", + "ordinal": 2, + "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" + }, + "4a91480c91b6": { "name": "github.workItemByOwnerRepo#1", "ordinal": 3, "args": [ @@ -99,72 +144,38 @@ "id": "frame-2", "ok": true, "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, - "title": "twelve" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } } } }, - "467d1db5ad39": { - "name": "github.workItem#1", - "ordinal": 2, - "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.workItem\",\"params\":{\"repo\":\"id:repo-1\",\"number\":12}}" - }, - "4a3429622287": { - "by-number": { + "53a164add69c": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [], - "gitlab-path": { - "iid": 7, - "repoId": "repo-1", - "title": "seven" - } - }, - "54e10e591561": { - "name": "gitlab.workItemByPath#1", - "ordinal": 5, - "args": [ - { - "name": "method", - "value": "gitlab.workItemByPath" - }, - { - "name": "params", - "value": { - "host": "gitlab.com", - "iid": 7, - "path": "group/project", - "repo": "id:repo-1", - "type": "issue" - } - }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-3", - "ok": true, - "result": { - "iid": 7, - "title": "seven" - } - } + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } }, "64b4674b65a8": { @@ -177,61 +188,96 @@ "ordinal": 8, "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"github.repoSlug\",\"params\":{\"repo\":\"id:repo-1\"}}" }, - "731507dd2e23": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { + "97bec1f98b89": { + "by-number": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], "number": 12, "repoId": "repo-1", - "title": "twelve" - } - }, - "bd533f6b0b40": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "iid": 7, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, "repoId": "repo-1", - "title": "seven" + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [ + [ + "repo-1", + { + "owner": "owner", + "repo": "repo" + } + ] + ], + "gitlab-path": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "repoId": "repo-1", + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "repo-slug": { + "displayName": "Repo", + "id": "repo-1", + "slug": { + "$rpc": "null" + } } }, - "bf2cabd50e5a": { - "name": "github.workItem#1", - "ordinal": 1, - "args": [ - { - "name": "method", - "value": "github.workItem" + "c8c091106ead": { + "by-number": { + "author": { + "$rpc": "null" }, - { - "name": "params", - "value": { - "number": 12, - "repo": "id:repo-1" - } + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "by-slug": { + "author": { + "$rpc": "null" }, - { - "name": "options", - "value": { - "$rpc": "absent" - } - } - ], - "settlement": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": { - "id": "frame-1", - "ok": true, - "result": { - "number": 12, - "title": "twelve" - } - } - } + "id": "issue:12", + "labels": [], + "number": 12, + "repoId": "repo-1", + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + }, + "cache": [] }, "db48adb41100": { "name": "github.repoSlug#1", @@ -268,23 +314,103 @@ } } }, - "e970eb27f5ca": { - "by-number": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "by-slug": { - "number": 12, - "repoId": "repo-1", - "title": "twelve" - }, - "cache": [] - }, "f4d2080c6e99": { "name": "gitlab.workItemByPath#1", "ordinal": 6, "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\"}}" + }, + "f849aeca5336": { + "name": "gitlab.workItemByPath#1", + "ordinal": 5, + "args": [ + { + "name": "method", + "value": "gitlab.workItemByPath" + }, + { + "name": "params", + "value": { + "host": "gitlab.com", + "iid": 7, + "path": "group/project", + "repo": "id:repo-1", + "type": "issue" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-3", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:7", + "labels": [], + "number": 7, + "state": "opened", + "title": "seven", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } + }, + "fa6ca8899e53": { + "name": "github.workItem#1", + "ordinal": 1, + "args": [ + { + "name": "method", + "value": "github.workItem" + }, + { + "name": "params", + "value": { + "number": 12, + "repo": "id:repo-1" + } + }, + { + "name": "options", + "value": { + "$rpc": "absent" + } + } + ], + "settlement": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": { + "id": "frame-1", + "ok": true, + "result": { + "author": { + "$rpc": "null" + }, + "id": "issue:12", + "labels": [], + "number": 12, + "state": "open", + "title": "twelve", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + } + } } }, "recording": { @@ -293,54 +419,54 @@ { "id": "by-number", "observation": { - "sender": ["bf2cabd50e5a"], + "sender": ["fa6ca8899e53"], "payloads": ["467d1db5ad39"], "settlements": { - "by-number": "731507dd2e23" + "by-number": "53a164add69c" }, - "state": "09b235c17bb0", + "state": "088b54714e03", "effects": [] } }, { "id": "by-slug", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b"], + "sender": ["fa6ca8899e53", "4a91480c91b6"], "payloads": ["467d1db5ad39", "64b4674b65a8"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23" + "by-number": "53a164add69c", + "by-slug": "53a164add69c" }, - "state": "e970eb27f5ca", + "state": "c8c091106ead", "effects": [] } }, { "id": "gitlab-path", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40" + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b" }, - "state": "4a3429622287", + "state": "1ffa5b08cd27", "effects": [] } }, { "id": "repo-slug-matched", "observation": { - "sender": ["bf2cabd50e5a", "40b6e1288e8b", "54e10e591561", "db48adb41100"], + "sender": ["fa6ca8899e53", "4a91480c91b6", "f849aeca5336", "db48adb41100"], "payloads": ["467d1db5ad39", "64b4674b65a8", "f4d2080c6e99", "72a59aa8bee1"], "settlements": { - "by-number": "731507dd2e23", - "by-slug": "731507dd2e23", - "gitlab-path": "bd533f6b0b40", + "by-number": "53a164add69c", + "by-slug": "53a164add69c", + "gitlab-path": "2689e3903f7b", "repo-slug": "0e9d6525a582" }, - "state": "2113a0cc7708", + "state": "97bec1f98b89", "effects": [] } } 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 0fa5e27d409..936e16e2839 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-refused.json @@ -3,10 +3,10 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "e9d85c576adf93063a8f56d49d28869c402cad38122732b46b8ec021d25db5e3", "platform": "darwin", "scenarioVersion": 1, 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 60cc7853e51..f94d1f11abb 100644 --- a/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json +++ b/mobile/rpc-foundation/goldens/tw-paste-lookup-slug-unsupported.json @@ -3,10 +3,10 @@ "family": "tasks.paste-lookup", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "14509b4c1cc3beb00cc329b6bae46913f59b3938f76c0bd3bf3e374f34fb680d", "platform": "darwin", "scenarioVersion": 1, 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 c8c284de912..8bb3754cae4 100644 --- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json +++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-always.json @@ -3,10 +3,10 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "0d2e3f48aadf45abbf6927b72ed5fef4caa8e3eb2efd1046339a3fbfab6f9f18", "platform": "darwin", "scenarioVersion": 1, 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 c02b1b022fe..53b87c77aec 100644 --- a/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json +++ b/mobile/rpc-foundation/goldens/tw-setup-hook-trust-approved.json @@ -3,10 +3,10 @@ "family": "worktree.setup-hook-trust", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "f54f5c6dbbe7dbcf8e85e9bd36b27ca9bea7de65d5e35dabace49b3fc766a403", "platform": "darwin", "scenarioVersion": 1, 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 2d404030082..3b68f9afdea 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-all-providers.json @@ -3,31 +3,17 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "283849e17fb47ad5f9c128cef37a18e869a132357b332b40bec955292db2af3f", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "5d869d55848aea469954eb945ddc2b74f366387f8fc2853b7ae01de779208c4a", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "017731afa453": { - "name": "repo.searchRefs#1", - "ordinal": 8, - "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" - }, - "253629bd0d20": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "26b4d200dc78": { + "005749a0bd75": { "name": "github.listWorkItems#1", "ordinal": 1, "args": [ @@ -60,37 +46,46 @@ "result": { "items": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } } } }, - "26dc3b7c8299": { + "017731afa453": { + "name": "repo.searchRefs#1", + "ordinal": 8, + "json": "{\"id\":\"frame-4\",\"deviceToken\":\"recording-device\",\"method\":\"repo.searchRefs\",\"params\":{\"repo\":\"id:repo-1\",\"query\":\"bug\",\"limit\":20}}" + }, + "2868ae2bd70e": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-3" - } - ] - }, - "2cfd107b9660": { - "github": [ - { - "number": 1, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -99,40 +94,7 @@ "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"github.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"limit\":36,\"query\":\"bug\"}}" }, - "36290ab254a4": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ] - }, - "41d2452d4ebe": { - "github": [ - { - "number": 1, - "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-1" - } - ] - }, - "43c49932439f": { + "40d2922bb77c": { "name": "linear.searchIssues#1", "ordinal": 5, "args": [ @@ -165,26 +127,219 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } } }, - "6e2d75e3bbd7": { - "status": "fulfilled", - "startedAt": 0, - "settledAt": 0, - "value": [ + "4d156675db06": { + "branches": [ { - "iid": 2, + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, "repoId": "repo-1", - "title": "two" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, - "8b27fe00715f": { + "6a6dbfc00478": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9c65a9888b9c": { + "branches": [ + { + "localBranchName": "main", + "refName": "main" + }, + { + "localBranchName": "release", + "refName": "release" + } + ], + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "gitlab": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "repoId": "repo-1", + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ], + "linear": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "9ca31589d6b9": { "name": "gitlab.listWorkItems#1", "ordinal": 3, "args": [ @@ -223,8 +378,17 @@ }, "items": [ { - "iid": 2, - "title": "two" + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] } @@ -236,44 +400,24 @@ "ordinal": 4, "json": "{\"id\":\"frame-2\",\"deviceToken\":\"recording-device\",\"method\":\"gitlab.listWorkItems\",\"params\":{\"repo\":\"id:repo-1\",\"state\":\"opened\",\"page\":1,\"perPage\":50,\"query\":\"bug\"}}" }, - "a4ee5d16b4f6": { + "aa71e896eae4": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-1" - } - ] - }, - "a92cd1dd05af": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], - "github": [ - { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" - } - ], - "gitlab": [ - { - "iid": 2, - "repoId": "repo-1", - "title": "two" - } - ], - "linear": [ - { - "id": "issue-3" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ] }, @@ -292,34 +436,91 @@ } ] }, - "c43e80126d82": { - "branches": [ - { - "localBranchName": "main", - "refName": "main" - }, - { - "localBranchName": "release", - "refName": "release" - } - ], + "b4056bfa00e3": { "github": [ { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], "number": 1, "repoId": "repo-1", - "title": "one" + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } ], "gitlab": [ { - "iid": 2, + "author": { + "$rpc": "null" + }, + "id": "issue:2", + "labels": [], + "number": 2, "repoId": "repo-1", - "title": "two" + "state": "opened", + "title": "two", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" } - ], - "linear": [ + ] + }, + "bb2ecdf1f3da": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ { - "id": "issue-1" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "c6df6f81c539": { + "status": "fulfilled", + "startedAt": 0, + "settledAt": 0, + "value": [ + { + "id": "issue-1", + "identifier": "ENG-1", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "A searched issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -369,7 +570,25 @@ "ordinal": 10, "json": "{\"id\":\"frame-5\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" }, - "f9ed1961ff08": { + "f0fd94109299": { + "github": [ + { + "author": { + "$rpc": "null" + }, + "id": "issue:1", + "labels": [], + "number": 1, + "repoId": "repo-1", + "state": "open", + "title": "one", + "type": "issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "" + } + ] + }, + "f1d5de4d4483": { "name": "linear.listIssues#1", "ordinal": 9, "args": [ @@ -403,7 +622,24 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "labels": [], + "priority": 2, + "state": { + "color": "#111", + "name": "In Progress", + "type": "started" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-02T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } @@ -416,54 +652,54 @@ { "id": "github-items", "observation": { - "sender": ["26b4d200dc78"], + "sender": ["005749a0bd75"], "payloads": ["2d9caaaffaed"], "settlements": { - "github": "36290ab254a4" + "github": "aa71e896eae4" }, - "state": "253629bd0d20", + "state": "f0fd94109299", "effects": [] } }, { "id": "gitlab-items", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f"], + "sender": ["005749a0bd75", "9ca31589d6b9"], "payloads": ["2d9caaaffaed", "9e3a28140ba7"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e" }, - "state": "2cfd107b9660", + "state": "b4056bfa00e3", "effects": [] } }, { "id": "linear-search", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6" + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539" }, - "state": "41d2452d4ebe", + "state": "6a6dbfc00478", "effects": [] } }, { "id": "branch-refs", "observation": { - "sender": ["26b4d200dc78", "8b27fe00715f", "43c49932439f", "eae99168231b"], + "sender": ["005749a0bd75", "9ca31589d6b9", "40d2922bb77c", "eae99168231b"], "payloads": ["2d9caaaffaed", "9e3a28140ba7", "df9cac7fb20b", "017731afa453"], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a" }, - "state": "c43e80126d82", + "state": "9c65a9888b9c", "effects": [] } }, @@ -471,11 +707,11 @@ "id": "linear-assigned-listed", "observation": { "sender": [ - "26b4d200dc78", - "8b27fe00715f", - "43c49932439f", + "005749a0bd75", + "9ca31589d6b9", + "40d2922bb77c", "eae99168231b", - "f9ed1961ff08" + "f1d5de4d4483" ], "payloads": [ "2d9caaaffaed", @@ -485,13 +721,13 @@ "ef18db5bf24a" ], "settlements": { - "github": "36290ab254a4", - "gitlab": "6e2d75e3bbd7", - "linear": "a4ee5d16b4f6", + "github": "aa71e896eae4", + "gitlab": "2868ae2bd70e", + "linear": "c6df6f81c539", "branches": "b015aaf3a53a", - "linear-assigned": "26dc3b7c8299" + "linear-assigned": "bb2ecdf1f3da" }, - "state": "a92cd1dd05af", + "state": "4d156675db06", "effects": [] } } 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 86bcf47b0a3..bb8002ff88c 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-gitlab-provider-error.json @@ -3,10 +3,10 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", "scenarioSha256": "4537bf83f7a030521eec549adf4490da5be183471d5a9f9e58b71815b29481ff", "platform": "darwin", "scenarioVersion": 1, 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 b33f959d32b..ea293365069 100644 --- a/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json +++ b/mobile/rpc-foundation/goldens/tw-smart-search-linear-listed.json @@ -3,17 +3,17 @@ "family": "tasks.smart-source-search", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", - "adapterSha256": "343b97826782820b7aecaddd13a4c8cdbbbca057c83021863d577a677934f3a3", - "scenarioSha256": "34ab4edb621856980c8678629bd809c100d27dcd0747db5abbf4508c7231b7e5", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", + "adapterSha256": "52a76b7a830b32287bce14abbe1b9d9ac70e71eafe5b4c6801c2eb14a4150125", + "scenarioSha256": "9681485eec93644a01dd6dff0d07f9629361a86989a900176c5aaff3d5805db3", "platform": "darwin", "scenarioVersion": 1, "projectionVersion": 2, "goldenFormatVersion": 5, "values": { - "251733144c41": { + "15d6e85f9f78": { "name": "linear.listIssues#1", "ordinal": 1, "args": [ @@ -47,19 +47,77 @@ "ok": true, "result": [ { - "id": "issue-2" + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] } } }, - "a95bdb94e589": { + "5ada0ba09955": { "status": "fulfilled", "startedAt": 0, "settledAt": 0, "value": [ { - "id": "issue-2" + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" + } + ] + }, + "68e656392151": { + "linear": [ + { + "id": "issue-2", + "identifier": "ENG-2", + "labels": [], + "priority": 0, + "state": { + "color": "#000", + "name": "Todo", + "type": "unstarted" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "title": "An assigned issue", + "updatedAt": "2020-01-01T00:00:00.000Z", + "url": "", + "workspaceId": "linear-workspace" } ] }, @@ -67,13 +125,6 @@ "name": "linear.listIssues#1", "ordinal": 2, "json": "{\"id\":\"frame-1\",\"deviceToken\":\"recording-device\",\"method\":\"linear.listIssues\",\"params\":{\"filter\":\"assigned\",\"limit\":50}}" - }, - "f2b981b0b281": { - "linear": [ - { - "id": "issue-2" - } - ] } }, "recording": { @@ -82,12 +133,12 @@ { "id": "linear-assigned", "observation": { - "sender": ["251733144c41"], + "sender": ["15d6e85f9f78"], "payloads": ["b272a4494870"], "settlements": { - "linear": "a95bdb94e589" + "linear": "5ada0ba09955" }, - "state": "f2b981b0b281", + "state": "68e656392151", "effects": [] } } 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 f8c25998789..d3ae79ae879 100644 --- a/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json +++ b/mobile/rpc-foundation/goldens/tw-task-preferences-resume-write.json @@ -3,9 +3,9 @@ "family": "settings-best-effort", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 46afa3852f6..9a38066c514 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets-refused.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 20e9b3d74e1..f3bda761cb0 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-source-presets.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-source", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 b64ab3f8da8..f6e34114d61 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-missing-preset.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 52e96024192..d23bc81a4ab 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-sparse-saved.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-sparse", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0a96053fb6f..14c02e05c57 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connect-refused.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 489e3ce8ce8..bcc44c7e389 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-connected.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 c56b199d7a2..3fd365bcd6f 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-local-agents.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh-local", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 0dfee1e946a..c6f280c500f 100644 --- a/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json +++ b/mobile/rpc-foundation/goldens/tw-workspace-ssh-not-ready.json @@ -3,9 +3,9 @@ "family": "tasks.workspace-ssh", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e567302ac8acffcfd602c9b323ecf8b5b7c0c4692bda1a4c881011a91d98979", "scenarioSha256": "3aa23f15da8fe9972e47c767db454b41750ca353ab10797082fde4514ffe9da0", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot-unreadable.json b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot-unreadable.json index 23579ab83d9..bf7f97a3ad7 100644 --- a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot-unreadable.json +++ b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot-unreadable.json @@ -3,9 +3,9 @@ "family": "worktree.catalog-snapshot", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "e28e66567389598edbc720c89f5af73b5beca836cd0357af235d8ddc3d29fbfc", "platform": "darwin", diff --git a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json index 8fb1c209d6d..4c7c342ea50 100644 --- a/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json +++ b/mobile/rpc-foundation/goldens/worktree-catalog-snapshot.json @@ -3,9 +3,9 @@ "family": "worktree.catalog-snapshot", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 a56b9030a58..6bcf0e63f8a 100644 --- a/mobile/rpc-foundation/goldens/worktree-home-catalog.json +++ b/mobile/rpc-foundation/goldens/worktree-home-catalog.json @@ -3,9 +3,9 @@ "family": "worktree.home-catalog", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "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 f86c95cd2dc..42e950dee5a 100644 --- a/mobile/rpc-foundation/goldens/worktree-retired-names.json +++ b/mobile/rpc-foundation/goldens/worktree-retired-names.json @@ -3,9 +3,9 @@ "family": "worktree.retired-names", "namedDeltas": [], "runnerVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "lockfileSha256": "4568633356187895ccda8e2ff83245c37d5621832c69e268733733b6947971e3", - "recorderSha256": "d4fa125899cd863c03dbf96657d46b8c7d6c0ccf522b342bc4f164ed1e3becfe", + "recorderSha256": "1d8cf6624653d15b5b32bd2871d4d93739d4092a06f10dab24a795702422bb31", "adapterSha256": "4e942ddfbaa0ba6bfc2993969276987f6528ac53765d125e99a830e261f93a8e", "scenarioSha256": "2faa07ee5f12b3ed584117359d3b7aeb9c78a04e8fc49e753372f8c3927a3740", "platform": "darwin", diff --git a/mobile/rpc-foundation/pilot-scenarios.json b/mobile/rpc-foundation/pilot-scenarios.json index 95f4ad73ac4..0c12de62f2f 100644 --- a/mobile/rpc-foundation/pilot-scenarios.json +++ b/mobile/rpc-foundation/pilot-scenarios.json @@ -1,6 +1,6 @@ { "schemaVersion": 1, - "baseline": "3e32b8352262d0038878f2c4937297c7b977e314", + "baseline": "a499dada6eb797b02693c25933149221336859d1", "scenarios": [ { "id": "b1", @@ -5820,6 +5820,64 @@ } ] }, + { + "id": "tw-create-retry-agent-launched", + "operation": "tasks.worktree-create-retry", + "version": 1, + "family": "worktree.agent-launch-create", + "sites": [ + "mobile/src/tasks/worktree-create-retry.ts", + "mobile/src/tasks/agent-launch-worktree-create.ts" + ], + "schedules": [], + "steps": [ + { + "action": "create", + "id": "create", + "args": { + "agentLaunch": true + } + }, + { + "checkpoint": "sent" + }, + { + "complete": "agent.launch#1", + "params": { + "agent": "codex", + "target": { + "kind": "create-worktree", + "create": { + "repo": "id:repo-1", + "name": "kestrel", + "clientMutationId": "mutation-1" + } + } + }, + "reply": { + "ok": true, + "result": { + "outcome": { + "kind": "structured", + "sessionId": "sess-1", + "handle": "t-1" + }, + "worktreeId": "repo-1::/w", + "warning": " startup terminal failed ", + "receipt": { + "mode": "structured", + "preferred": "structured", + "reason": "user_default", + "detail": "Structured session created." + } + } + } + }, + { + "checkpoint": "launched" + } + ] + }, { "id": "tw-capabilities-advertised", "operation": "tasks.worktree-capabilities", @@ -6129,8 +6187,15 @@ "result": { "items": [ { + "id": "issue:1", + "type": "issue", "number": 1, - "title": "one" + "title": "one", + "state": "open", + "url": "", + "labels": [], + "updatedAt": "2020-01-01T00:00:00.000Z", + "author": null } ] } @@ -6157,8 +6222,15 @@ "result": { "items": [ { - "iid": 2, - "title": "two" + "id": "issue:2", + "type": "issue", + "number": 2, + "title": "two", + "state": "opened", + "url": "", + "labels": [], + "updatedAt": "2020-01-01T00:00:00.000Z", + "author": null } ], "error": { @@ -6187,7 +6259,24 @@ "result": { "items": [ { - "id": "issue-1" + "id": "issue-1", + "identifier": "ENG-1", + "title": "A searched issue", + "url": "", + "state": { + "name": "Todo", + "type": "unstarted", + "color": "#000" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "labels": [], + "priority": 0, + "updatedAt": "2020-01-01T00:00:00.000Z", + "workspaceId": "linear-workspace" } ] } @@ -6238,7 +6327,24 @@ "ok": true, "result": [ { - "id": "issue-3" + "id": "issue-3", + "identifier": "ENG-3", + "title": "An assigned issue", + "url": "", + "state": { + "name": "In Progress", + "type": "started", + "color": "#111" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "labels": [], + "priority": 2, + "updatedAt": "2020-01-02T00:00:00.000Z", + "workspaceId": "linear-workspace" } ] } @@ -6277,7 +6383,24 @@ "ok": true, "result": [ { - "id": "issue-2" + "id": "issue-2", + "identifier": "ENG-2", + "title": "An assigned issue", + "url": "", + "state": { + "name": "Todo", + "type": "unstarted", + "color": "#000" + }, + "team": { + "id": "team-1", + "key": "ENG", + "name": "Engineering" + }, + "labels": [], + "priority": 0, + "updatedAt": "2020-01-01T00:00:00.000Z", + "workspaceId": "linear-workspace" } ] } @@ -6374,8 +6497,15 @@ "reply": { "ok": true, "result": { + "id": "issue:12", + "type": "issue", "number": 12, - "title": "twelve" + "title": "twelve", + "state": "open", + "url": "", + "labels": [], + "updatedAt": "2020-01-01T00:00:00.000Z", + "author": null } } }, @@ -6398,8 +6528,15 @@ "reply": { "ok": true, "result": { + "id": "issue:12", + "type": "issue", "number": 12, - "title": "twelve" + "title": "twelve", + "state": "open", + "url": "", + "labels": [], + "updatedAt": "2020-01-01T00:00:00.000Z", + "author": null } } }, @@ -6422,8 +6559,15 @@ "reply": { "ok": true, "result": { - "iid": 7, - "title": "seven" + "id": "issue:7", + "type": "issue", + "number": 7, + "title": "seven", + "state": "opened", + "url": "", + "labels": [], + "updatedAt": "2020-01-01T00:00:00.000Z", + "author": null } } }, diff --git a/mobile/src/components/use-new-workspace-execution-target.ts b/mobile/src/components/use-new-workspace-execution-target.ts index 1a3c7798931..ce7a7a3f307 100644 --- a/mobile/src/components/use-new-workspace-execution-target.ts +++ b/mobile/src/components/use-new-workspace-execution-target.ts @@ -1,5 +1,4 @@ import { useEffect, useState } from 'react' -import type { SshConnectionState } from '../../../src/shared/ssh-types' import type { RpcClient } from '../transport/rpc-client' import { localAgentDetectionRead, @@ -7,7 +6,11 @@ import { sshRepoConnectRun, sshRepoStateRead } from '../tasks/mobile-workspace-source-operations' -import { deriveWorkspaceSshGate, type WorkspaceSshGate } from '../tasks/workspace-ssh-gate' +import { + deriveWorkspaceSshGate, + type WorkspaceSshGate, + type WorkspaceSshRecord +} from '../tasks/workspace-ssh-gate' type DetectedAgentIdsState = { connectionId: string | null @@ -16,9 +19,9 @@ type DetectedAgentIdsState = { function fallbackSshState( targetId: string, - status: SshConnectionState['status'], + status: WorkspaceSshRecord['status'], error: string | null -): SshConnectionState { +): WorkspaceSshRecord { return { targetId, status, error, reconnectAttempt: 0 } } @@ -32,7 +35,7 @@ export function useNewWorkspaceExecutionTarget(args: { connect: () => Promise } { const { client, connectionId, visible } = args - const [sshState, setSshState] = useState(null) + const [sshState, setSshState] = useState(null) const [connectingTargetId, setConnectingTargetId] = useState(null) const [detectedAgentIdsState, setDetectedAgentIdsState] = useState( null @@ -59,8 +62,7 @@ export function useNewWorkspaceExecutionTarget(args: { if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const state = sshRepoStateRead.interpret(reply) as SshConnectionState | null | undefined + const state = sshRepoStateRead.interpret(reply) setSshState(state ?? fallbackSshState(connectionId, 'disconnected', null)) }) .catch((error) => { @@ -94,8 +96,7 @@ export function useNewWorkspaceExecutionTarget(args: { if (!stale) { setDetectedAgentIdsState({ connectionId, - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - ids: detected.accepted ? new Set(detected.value as string[]) : new Set() + ids: detected.accepted ? new Set(detected.value) : new Set() }) } } catch { @@ -121,8 +122,7 @@ export function useNewWorkspaceExecutionTarget(args: { { targetId: connectionId }, { timeoutMs: 120_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const state = sshRepoConnectRun.interpret(reply) as SshConnectionState | null | undefined + const state = sshRepoConnectRun.interpret(reply) setSshState(state ?? fallbackSshState(connectionId, 'connected', null)) } catch (error) { setSshState( diff --git a/mobile/src/files/mobile-file-mutation-ownership.ts b/mobile/src/files/mobile-file-mutation-ownership.ts index 978cb0796d8..634f90f0637 100644 --- a/mobile/src/files/mobile-file-mutation-ownership.ts +++ b/mobile/src/files/mobile-file-mutation-ownership.ts @@ -1,6 +1,5 @@ import { parseExecutionHostId } from '../../../src/shared/execution-host' import { assertFileMutationOwnershipCapability } from '../../../src/shared/file-mutation-ownership' -import type { RuntimeStatus } from '../../../src/shared/runtime-types' import type { SshConnectionState, SshMutationExpectation } from '../../../src/shared/ssh-types' import { fileOwnershipRuntimeStatusRead, @@ -45,11 +44,7 @@ export async function captureMobileFileMutationOwnership( const statusReply = await fileOwnershipRuntimeStatusRead.request(client, undefined, { timeoutMs: FILE_MUTATION_TIMEOUT_MS }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const status = fileOwnershipRuntimeStatusRead.interpret(statusReply) as Pick< - RuntimeStatus, - 'capabilities' - > + const status = fileOwnershipRuntimeStatusRead.interpret(statusReply) assertFileMutationOwnershipCapability(status) const worktreeReply = await fileOwnershipWorktreeRead.request( diff --git a/mobile/src/home/mobile-home-host-requests.ts b/mobile/src/home/mobile-home-host-requests.ts index 008cbeb777c..67fdb913c34 100644 --- a/mobile/src/home/mobile-home-host-requests.ts +++ b/mobile/src/home/mobile-home-host-requests.ts @@ -14,14 +14,6 @@ type HomeTaskSettings = { visibleTaskProviders?: unknown } -type HomePreflightStatus = { - glab?: { installed?: boolean } -} - -type HomeLinearStatus = { - connected?: boolean -} - export type HomeStatsSetter = ( updater: (previous: Record) => Record ) => void @@ -90,15 +82,9 @@ export function fetchMobileHomeTaskProviders( ((settingsResult.value ?? {}) as HomeTaskSettings) : {} const preflightResult = taskPreflightRead.interpret(preflightResponse) - const preflight = preflightResult.accepted - ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (preflightResult.value as HomePreflightStatus) - : null + const preflight = preflightResult.accepted ? preflightResult.value : null const linearResult = taskLinearStatusRead.interpret(linearResponse) - const linear = linearResult.accepted - ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (linearResult.value as HomeLinearStatus) - : null + const linear = linearResult.accepted ? linearResult.value : null const providers = filterAvailableTaskProviders( normalizeVisibleTaskProviders(settings.visibleTaskProviders), { diff --git a/mobile/src/tasks/blank-workspace-create.test.ts b/mobile/src/tasks/blank-workspace-create.test.ts index 61930859b7f..97b977e7e87 100644 --- a/mobile/src/tasks/blank-workspace-create.test.ts +++ b/mobile/src/tasks/blank-workspace-create.test.ts @@ -343,39 +343,50 @@ describe('createBlankWorkspace', () => { expect(calls).toHaveLength(1) }) - it.each([ - { label: 'worktree.create', supported: false, agent: undefined, reply: { worktree: {} } }, - { - label: 'agent.launch', - supported: { replay: false }, - agent: 'codex' as const, - reply: { outcome: { kind: 'structured', sessionId: 's-1' } } - } - ])( - 'fails without retrying when an accepted $label reply names no workspace', - async ({ supported, agent, reply }) => { - // The break branch. The host accepted the call but the reply carries no workspace, so there - // is nothing to navigate to and a retry cannot help — a malformed reply is not a name - // collision. Both routes reach it: worktree.create with no `worktree.id`, agent.launch with - // no `worktreeId`. Before the guard, the legacy route read `.worktree.displayName` straight - // off the reply and surfaced a TypeError instead of a message. - const calls: Call[] = [] - const client = fakeClient(() => reply, calls) + // The break branch, and the two routes now answer it differently. + // + // `agent.launch` still reports it as a message: its reader guards `worktreeId` itself and answers + // null, which the retry loop turns into "Failed to create workspace". `worktree.create` does not: + // the create screen reads `result.worktree.id` unguarded into the session route, so the checked + // reader requires it and a reply without one is named as unreadable rather than reported as a + // create that failed. Both surface at the same catch; only the sentence changes. + it('names an accepted worktree.create reply that carries no workspace id', async () => { + const calls: Call[] = [] + const client = fakeClient(() => ({ worktree: {} }), calls) - const result = await createBlankWorkspace({ + await expect( + createBlankWorkspace({ client, repoId: 'repo-1', baseName: 'octopus', - createdWithAgentId: agent, + createdWithAgentId: undefined, comment: undefined, setupDecision: 'inherit', nameWasGenerated: false, worktreeCreateIdempotency: IDEMPOTENT_CREATE_SUPPORT, - agentLaunchSupported: supported + agentLaunchSupported: false }) + ).rejects.toThrow('worktree.create') + expect(calls).toHaveLength(1) + }) - expect(result).toEqual({ error: 'Failed to create workspace' }) - expect(calls).toHaveLength(1) - } - ) + it('fails without retrying when an accepted agent.launch reply names no workspace', async () => { + const calls: Call[] = [] + const client = fakeClient(() => ({ outcome: { kind: 'structured', sessionId: 's-1' } }), calls) + + const result = await createBlankWorkspace({ + client, + repoId: 'repo-1', + baseName: 'octopus', + createdWithAgentId: 'codex', + comment: undefined, + setupDecision: 'inherit', + nameWasGenerated: false, + worktreeCreateIdempotency: IDEMPOTENT_CREATE_SUPPORT, + agentLaunchSupported: { replay: false } + }) + + expect(result).toEqual({ error: 'Failed to create workspace' }) + expect(calls).toHaveLength(1) + }) }) diff --git a/mobile/src/tasks/composer-source-base-resolve.ts b/mobile/src/tasks/composer-source-base-resolve.ts index 40419993970..4de4e197a5d 100644 --- a/mobile/src/tasks/composer-source-base-resolve.ts +++ b/mobile/src/tasks/composer-source-base-resolve.ts @@ -9,8 +9,6 @@ export type ComposerHostedBase = Pick< 'baseBranch' | 'compareBaseRef' | 'pushTarget' | 'branchNameOverride' | 'maintainerCanModify' > -type HostedBaseResult = ComposerHostedBase | { error: string } - // Resolves a GitHub PR's base via worktree.resolvePrBase, mirroring desktop's // select-time resolution. The runtime returns a soft { error } payload rather // than an RPC error for provider failures. @@ -34,12 +32,12 @@ export async function resolveComposerPrBase(args: { }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = worktreePrBaseResolve.interpret(reply) as GitHubPrStartPoint | { error: string } + const result = worktreePrBaseResolve.interpret(reply) if ('error' in result) { throw new Error(result.error) } - return result + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the resolved arm requires `baseBranch`; `compareBaseRef`, `pushTarget`, `branchNameOverride` and `maintainerCanModify` are optional on GitHubPrStartPoint and stay optional here, and unknown members pass through to the create. + return result as GitHubPrStartPoint } // Resolves a GitLab MR's base via worktree.resolveMrBase. @@ -63,10 +61,10 @@ export async function resolveComposerMrBase(args: { }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = worktreeMrBaseResolve.interpret(reply) as HostedBaseResult + const result = worktreeMrBaseResolve.interpret(reply) if ('error' in result) { throw new Error(result.error) } - return result + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: as the PR resolver above. + return result as ComposerHostedBase } diff --git a/mobile/src/tasks/linear-mobile-issue-read.test.ts b/mobile/src/tasks/linear-mobile-issue-read.test.ts deleted file mode 100644 index 00dba8fd8bf..00000000000 --- a/mobile/src/tasks/linear-mobile-issue-read.test.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { describe, expect, it } from 'vitest' -import { extractLinearIssueReadItems, type LinearMobileIssue } from './linear-mobile-issue-read' - -function issue(id: string): LinearMobileIssue { - return { - id, - identifier: `ENG-${id}`, - title: `Issue ${id}`, - url: `https://linear.app/acme/issue/ENG-${id}`, - state: { name: 'Todo', type: 'unstarted', color: '#999999' }, - team: { id: 'team-1', name: 'Engineering', key: 'ENG' }, - labels: [], - priority: 0, - updatedAt: '2026-06-03T12:00:00.000Z' - } -} - -describe('extractLinearIssueReadItems', () => { - it('keeps searchIssues array results unchanged', () => { - const issues = [issue('1'), issue('2')] - - expect(extractLinearIssueReadItems(issues)).toBe(issues) - }) - - it('unwraps listIssues collection results', () => { - const issues = [issue('1')] - - expect(extractLinearIssueReadItems({ items: issues, hasMore: true })).toBe(issues) - }) - - it('throws a clear error for unsupported payloads', () => { - expect(() => extractLinearIssueReadItems({ hasMore: false })).toThrow( - 'Unexpected Linear tasks response' - ) - }) -}) diff --git a/mobile/src/tasks/linear-mobile-issue-read.ts b/mobile/src/tasks/linear-mobile-issue-read.ts index a13cde609d5..597479146d9 100644 --- a/mobile/src/tasks/linear-mobile-issue-read.ts +++ b/mobile/src/tasks/linear-mobile-issue-read.ts @@ -17,23 +17,3 @@ export type LinearMobileIssue = { priority: number updatedAt: string } - -type LinearIssueReadEnvelope = { - items?: unknown -} - -export function extractLinearIssueReadItems(result: unknown): LinearMobileIssue[] { - if (Array.isArray(result)) { - return result as LinearMobileIssue[] - } - - if ( - result && - typeof result === 'object' && - Array.isArray((result as LinearIssueReadEnvelope).items) - ) { - return (result as { items: LinearMobileIssue[] }).items - } - - throw new Error('Unexpected Linear tasks response') -} diff --git a/mobile/src/tasks/mobile-task-project-board-operations.ts b/mobile/src/tasks/mobile-task-project-board-operations.ts index 783962ad7d8..ea0c0137ccf 100644 --- a/mobile/src/tasks/mobile-task-project-board-operations.ts +++ b/mobile/src/tasks/mobile-task-project-board-operations.ts @@ -1,11 +1,31 @@ import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' -import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' +import { rpcResultVariant } from '../transport/rpc-operation-result-reader' +import { githubPrRepoSlugSchema } from '../session/github-pr-read-reply-schema' +import { + taskProjectAccessibleListSchema, + taskProjectAssignableUserListSchema, + taskProjectCommentMutationSchema, + taskProjectCommentWriteSchema, + taskProjectIssueTypeListSchema, + taskProjectLabelListSchema, + taskProjectMutationStatusSchema, + taskProjectRefSchema, + taskProjectRowDetailSchema, + taskProjectViewListSchema, + taskProjectViewTableSchema +} from './task-project-board-reply-schema' // The GitHub Projects board. Every `github.project.*` reply is an accepted result carrying its own // `{ ok, error }` envelope, which the board reads itself and whose message it prefers over its own // copy; the acceptance policy only decides whether there is an envelope to read. The board also // sends the plain `github.*` pull-request operations in mobile-task-item-state-operations.ts, // with a `prRepo` the item screen does not send — same method, same acceptance, one operation. +// +// Every reader here is checked against task-project-board-reply-schema.ts, which records the +// consumer line behind each requirement. No acceptance changes: `require-result-or-throw-message` +// still carries a refusal to the site's own catch, and it is that policy — not the reader, which +// only ever answers `compatible: false` — that turns an unreadable envelope into the thrown +// RpcIncompatibleReplyError the site reports. export const githubProjectListRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -13,7 +33,7 @@ export const githubProjectListRead = bindDeferredRpcOperation( method: 'github.project.listAccessible', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-list') + read: rpcResultVariant('github-project-list', taskProjectAccessibleListSchema) }) ) @@ -23,7 +43,7 @@ export const githubProjectViewListRead = bindDeferredRpcOperation( method: 'github.project.listViews', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-views') + read: rpcResultVariant('github-project-views', taskProjectViewListSchema) }) ) @@ -33,7 +53,7 @@ export const githubProjectViewTableRead = bindDeferredRpcOperation( method: 'github.project.viewTable', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-table') + read: rpcResultVariant('github-project-table', taskProjectViewTableSchema) }) ) @@ -45,7 +65,7 @@ export const githubProjectRefResolve = bindDeferredRpcOperation( method: 'github.project.resolveRef', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-ref') + read: rpcResultVariant('github-project-ref', taskProjectRefSchema) }) ) @@ -55,7 +75,7 @@ export const githubProjectRowDetailRead = bindDeferredRpcOperation( method: 'github.project.workItemDetailsBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-row-details') + read: rpcResultVariant('github-project-row-details', taskProjectRowDetailSchema) }) ) @@ -65,7 +85,7 @@ export const githubProjectLabelListRead = bindDeferredRpcOperation( method: 'github.project.listLabelsBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-labels') + read: rpcResultVariant('github-project-labels', taskProjectLabelListSchema) }) ) @@ -75,7 +95,7 @@ export const githubProjectAssignableUserListRead = bindDeferredRpcOperation( method: 'github.project.listAssignableUsersBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-assignable-users') + read: rpcResultVariant('github-project-assignable-users', taskProjectAssignableUserListSchema) }) ) @@ -85,15 +105,18 @@ export const githubProjectIssueTypeListRead = bindDeferredRpcOperation( method: 'github.project.listIssueTypesBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-issue-types') + read: rpcResultVariant('github-project-issue-types', taskProjectIssueTypeListSchema) }) ) /** * A board row's issue edits. Two call sites send it — the metadata sheet's labels and assignees, - * and the row editor's title, body and state — and they disagree about a null reply: the metadata - * sheet reads `result.ok` off it and throws a property-read TypeError, which #20563 left in place - * as recorded behaviour. That difference is in the call sites, not in the acceptance. + * and the row editor's title, body and state — and both read `result.ok` off the payload. + * + * #20563 left a null reply reaching that read as a property-read TypeError, which the + * `project.update-metadata` b2 seed records. The checked reader names it instead: a payload that is + * not an envelope at all is an incompatible `github.project.updateIssueBySlug` reply, and the two + * sites still differ only in the copy their own catch shows. */ export const githubProjectIssueUpdate = bindDeferredRpcOperation( defineRpcOperation({ @@ -101,7 +124,7 @@ export const githubProjectIssueUpdate = bindDeferredRpcOperation( method: 'github.project.updateIssueBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-updated-issue') + read: rpcResultVariant('github-project-updated-issue', taskProjectMutationStatusSchema) }) ) @@ -111,7 +134,7 @@ export const githubProjectPullRequestUpdate = bindDeferredRpcOperation( method: 'github.project.updatePullRequestBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-updated-pull-request') + read: rpcResultVariant('github-project-updated-pull-request', taskProjectMutationStatusSchema) }) ) @@ -121,7 +144,7 @@ export const githubProjectIssueTypeUpdate = bindDeferredRpcOperation( method: 'github.project.updateIssueTypeBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-updated-issue-type') + read: rpcResultVariant('github-project-updated-issue-type', taskProjectMutationStatusSchema) }) ) @@ -131,7 +154,7 @@ export const githubProjectFieldUpdate = bindDeferredRpcOperation( method: 'github.project.updateItemField', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-updated-field') + read: rpcResultVariant('github-project-updated-field', taskProjectMutationStatusSchema) }) ) @@ -141,7 +164,7 @@ export const githubProjectFieldClear = bindDeferredRpcOperation( method: 'github.project.clearItemField', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-cleared-field') + read: rpcResultVariant('github-project-cleared-field', taskProjectMutationStatusSchema) }) ) @@ -151,7 +174,7 @@ export const githubProjectCommentWrite = bindDeferredRpcOperation( method: 'github.project.addIssueCommentBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-issue-comment') + read: rpcResultVariant('github-project-issue-comment', taskProjectCommentWriteSchema) }) ) @@ -161,7 +184,7 @@ export const githubProjectCommentUpdate = bindDeferredRpcOperation( method: 'github.project.updateIssueCommentBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-updated-comment') + read: rpcResultVariant('github-project-updated-comment', taskProjectCommentMutationSchema) }) ) @@ -171,7 +194,7 @@ export const githubProjectCommentDelete = bindDeferredRpcOperation( method: 'github.project.deleteIssueCommentBySlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-project-deleted-comment') + read: rpcResultVariant('github-project-deleted-comment', taskProjectCommentMutationSchema) }) ) @@ -180,7 +203,9 @@ export const githubProjectCommentDelete = bindDeferredRpcOperation( * against Orca repos and must distinguish "this repo has no slug" from "the ask failed", so it * throws and caches the failure for retry; the Smart picker's paste lookup in * mobile-task-source-search-operations.ts caches a refusal as "no slug" and carries on, so there - * a refusal is a skip. One reader serves both. + * a refusal is a skip. One reader serves both — literally: both operations read through + * `githubPrRepoSlugSchema`, the schema the session domain already wrote for this same reply, since + * `github.repoSlug` has one shape and three consumers that all answer null without a slug. */ export const githubProjectRepoSlugRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -188,6 +213,6 @@ export const githubProjectRepoSlugRead = bindDeferredRpcOperation( method: 'github.repoSlug', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('repo-slug') + read: rpcResultVariant('repo-slug', githubPrRepoSlugSchema) }) ) diff --git a/mobile/src/tasks/mobile-task-runtime-operations.ts b/mobile/src/tasks/mobile-task-runtime-operations.ts index 3bc2ecce48c..138d364d2e9 100644 --- a/mobile/src/tasks/mobile-task-runtime-operations.ts +++ b/mobile/src/tasks/mobile-task-runtime-operations.ts @@ -1,10 +1,17 @@ import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcResultVariant } from '../transport/rpc-operation-result-reader' import { - rpcUncheckedMemberReader, - rpcUncheckedPayloadReader -} from '../transport/rpc-reader-payload' + taskLinearStatusSchema, + taskPreferenceWriteSchema, + taskPreflightSchema, + taskRuntimeStatusSchema, + taskUiStateSchema +} from './task-runtime-reply-schema' // What the Tasks screen reads once per host to hydrate, and the preferences it writes back. +// +// Readers are checked against task-runtime-reply-schema.ts. The three writes read `z.unknown()` +// there: no call site interprets their body, so a requirement would have no reader behind it. /** * status.get read for task hydration, with its own policy on that method: a refused status stops @@ -17,7 +24,7 @@ export const taskRuntimeStatusRead = bindDeferredRpcOperation( method: 'status.get', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('runtime-status') + read: rpcResultVariant('runtime-status', taskRuntimeStatusSchema) }) ) @@ -31,7 +38,7 @@ export const taskUiStateRead = bindDeferredRpcOperation( method: 'ui.get', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedMemberReader('ui-state-member', 'ui') + read: rpcResultVariant('ui-state-member', taskUiStateSchema) }) ) @@ -42,7 +49,7 @@ export const taskPreflightRead = bindDeferredRpcOperation( method: 'preflight.check', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('task-preflight') + read: rpcResultVariant('task-preflight', taskPreflightSchema) }) ) @@ -53,7 +60,7 @@ export const taskLinearStatusRead = bindDeferredRpcOperation( method: 'linear.status', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('linear-status') + read: rpcResultVariant('linear-status', taskLinearStatusSchema) }) ) @@ -68,7 +75,7 @@ export const taskUiStateWrite = bindDeferredRpcOperation( method: 'ui.set', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('ui-state-written') + read: rpcResultVariant('ui-state-written', taskPreferenceWriteSchema) }) ) @@ -82,7 +89,7 @@ export const taskSettingsWrite = bindDeferredRpcOperation( method: 'settings.update', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('setting-written') + read: rpcResultVariant('setting-written', taskPreferenceWriteSchema) }) ) @@ -93,7 +100,8 @@ export const taskSettingsWrite = bindDeferredRpcOperation( * 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. + * unvalidated-rpc-request-port-inventory.ts for the ticket. The checked reader keeps that: its + * schema is `z.unknown()`, so no payload can make this site fail where main's did not. */ export const linearWorkspaceSelect = bindDeferredRpcOperation( defineRpcOperation({ @@ -101,6 +109,6 @@ export const linearWorkspaceSelect = bindDeferredRpcOperation( method: 'linear.selectWorkspace', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('linear-workspace-selection') + read: rpcResultVariant('linear-workspace-selection', taskPreferenceWriteSchema) }) ) diff --git a/mobile/src/tasks/mobile-task-source-search-operations.ts b/mobile/src/tasks/mobile-task-source-search-operations.ts index 7460c42bfad..59882b26fab 100644 --- a/mobile/src/tasks/mobile-task-source-search-operations.ts +++ b/mobile/src/tasks/mobile-task-source-search-operations.ts @@ -1,10 +1,16 @@ import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' -import type { RpcCompatibleReader } from '../transport/rpc-operation-contract' -import { rpcReadUnchecked, rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' -import { extractLinearIssueReadItems } from './linear-mobile-issue-read' +import { rpcResultVariant } from '../transport/rpc-operation-result-reader' +import { githubPrRepoSlugSchema } from '../session/github-pr-read-reply-schema' +import { + taskGitHubWorkItemListSchema, + taskGitLabWorkItemListSchema, + taskLinearIssueListSchema, + taskWorkItemLookupSchema +} from './task-source-search-reply-schema' // The Smart workspace-source picker's provider reads: per-repo search, and the single-item lookups -// a pasted link or number resolves to. Provider-specific fallbacks stay at their own call sites. +// a pasted link or number resolves to. Provider-specific fallbacks stay at their own call sites, +// and the readers are checked against task-source-search-reply-schema.ts. export const githubWorkItemSearchRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -12,7 +18,7 @@ export const githubWorkItemSearchRead = bindDeferredRpcOperation( method: 'github.listWorkItems', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-work-items') + read: rpcResultVariant('github-work-items', taskGitHubWorkItemListSchema) }) ) @@ -23,15 +29,16 @@ export const gitlabWorkItemSearchRead = bindDeferredRpcOperation( method: 'gitlab.listWorkItems', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('gitlab-work-items') + read: rpcResultVariant('gitlab-work-items', taskGitLabWorkItemListSchema) }) ) // Linear replies either as a bare array or as an `{ items }` envelope, and the picker has always // accepted both through this projection. Two operations share it because the empty-query path asks -// a different method, not because the two answers differ. -const linearIssueReader: RpcCompatibleReader = (raw) => - rpcReadUnchecked('linear-issues', extractLinearIssueReadItems(raw)) +// a different method, not because the two answers differ. The union in the schema is what used to +// be linear-mobile-issue-read.ts's hand reader, whose `throw new Error('Unexpected Linear tasks +// response')` reached the screen as unattributed copy; the same payloads now name the method. +const linearIssueReader = rpcResultVariant('linear-issues', taskLinearIssueListSchema) export const linearIssueSearchRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -65,7 +72,7 @@ export const githubRepoSlugRead = bindDeferredRpcOperation( method: 'github.repoSlug', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('repo-slug') + read: rpcResultVariant('repo-slug', githubPrRepoSlugSchema) }) ) @@ -75,7 +82,7 @@ export const githubWorkItemByNumberRead = bindDeferredRpcOperation( method: 'github.workItem', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-work-item') + read: rpcResultVariant('github-work-item', taskWorkItemLookupSchema) }) ) @@ -85,7 +92,7 @@ export const githubWorkItemBySlugRead = bindDeferredRpcOperation( method: 'github.workItemByOwnerRepo', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('github-work-item') + read: rpcResultVariant('github-work-item', taskWorkItemLookupSchema) }) ) @@ -95,6 +102,6 @@ export const gitlabWorkItemByPathRead = bindDeferredRpcOperation( method: 'gitlab.workItemByPath', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('gitlab-work-item') + read: rpcResultVariant('gitlab-work-item', taskWorkItemLookupSchema) }) ) diff --git a/mobile/src/tasks/mobile-tasks-dependencies.ts b/mobile/src/tasks/mobile-tasks-dependencies.ts index 0834ed8bfe3..697eb509497 100644 --- a/mobile/src/tasks/mobile-tasks-dependencies.ts +++ b/mobile/src/tasks/mobile-tasks-dependencies.ts @@ -127,7 +127,6 @@ export type { TaskProvider } from './mobile-task-providers' export { hasSettledHostRepoList } from './host-repo-list' export { useHostRepoList } from './use-host-repo-list' export { isHostedTaskRepo, reconcileRepoSelection } from './hosted-repo-selection' -export { extractLinearIssueReadItems } from './linear-mobile-issue-read' export type { LinearMobileIssue } from './linear-mobile-issue-read' export { MOBILE_TUI_AGENT_AUTO_PICK_ORDER } from './mobile-tui-agents' export { resolveComposerBranchSelection } from './mobile-composer-branch-selection' diff --git a/mobile/src/tasks/mobile-tasks-project-workspace-types.ts b/mobile/src/tasks/mobile-tasks-project-workspace-types.ts index 7a334a83e67..4fbadec4650 100644 --- a/mobile/src/tasks/mobile-tasks-project-workspace-types.ts +++ b/mobile/src/tasks/mobile-tasks-project-workspace-types.ts @@ -87,7 +87,8 @@ export type SetupPrompt = { sparseCheckoutOverride?: { directories: string[]; presetId?: string } repoName: string command: string - source: string | null + /** Absent as well as null: `repo.hooks` need not report where the setup script came from. */ + source: string | null | undefined } export type WorkspaceCreateArgs = { diff --git a/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts b/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts index 5b75e958fb4..e73cc4e7985 100644 --- a/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts +++ b/mobile/src/tasks/mobile-tasks-refactor-parity.test.ts @@ -55,11 +55,36 @@ const hash = (parts: string[] | string): string => // declaration hash and the three arm literals, `semantics` 3,281 -> 3,278. `status` keeps its arms // and moves nothing, because its only consumer sends it back as a param the host validates against // the same set. Hook, statement and render hashes do not move; nothing executable changed. -const SCREEN_RPC_SCREEN_HOOKS = 'a550246eac444aea535ab18d50bc4db6204195ae812665a6beb40a3f5ab553d8' +// +// Step 7's tasks-2 half moves the hook, statement, declaration and semantic hashes once more, for +// the board, runtime, search, workspace-source and workspace-create operations, and moves no count: +// hooks stay at 350, statements at 417, declarations at 194. `semantics` is a pure deletion of four +// lines, 3,278 -> 3,274, and all four are the literals inside the one inline cast type this half +// deletes in use-mobile-tasks-project-detail-loading.tsx — `'DISMISSED'`, `'VIEWED'`, `'UNVIEWED'` +// and the `['status']` index into GitHubDetailFile. No method literal and no `rpc:` call signature +// moves. +// +// The hook and statement hashes also move for comment text alone: `normalized` reads a statement's +// full span, so a comment nested inside one is hashed with it. They move once more when the two +// halves are deduplicated: the project pane's five collection casts and the assignee list's are +// deleted where the entity schemas from the item half now type those rows. +// +// Round 2 of tasks-2 moves the hook and statement hashes a last time, and only those two. One +// statement changes: the Linear list cast (`found as LinearIssue[]`) becomes `found`, because the +// nine members linearIssueRowSchema requires make the value assignable to the mobile alias without +// it. The rest is comment text nested inside statements — three `SAFETY:` lines rewritten to argue +// from the schemas that landed instead of the fixtures round 1 deleted. Counts are unchanged at 350 +// hooks and 417 statements; the declaration, semantic, render and style hashes do not move, which +// is the evidence that deleting the cast changed no type and no call. +// +// The pullfrog pass on the same round moved both once more, again by comment text alone: the +// GitHub search `SAFETY:` line now separates the two members the schema requires (`items`, +// `labels`) from the eight it only types. No statement, type or call changed; counts hold. +const SCREEN_RPC_SCREEN_HOOKS = 'be9bb8e21c3a8c0912e8b9256a7c8e5c9ca08ebb776d57cf4fff1101fb060095' const PRE_REFACTOR_DIFF_HOOKS = '93c7189b32bed8456cc51814fffa8ce80cf62011ef968a9d53ddec2b9686f58f' -const SCREEN_RPC_STATEMENTS = 'ffa60f57cb239bf02c4c7080847565711cb5c59e3b09d4850a6ce62e986624fa' -const MAIN_REBASED_DECLARATIONS = 'da0a29f09d8a2178e1a937988484f95ffa2938aea94a50a56f797fd631df6072' -const SCREEN_RPC_SEMANTICS = '8d5ea095e1cda2bce6921ac88e73ad09b95fd10b70ab3e44d2f49d4567cc9046' +const SCREEN_RPC_STATEMENTS = '5fb5ffb187b4b62bdd84e4ad49aaf0d481d943e09e8c4f37433a9eb2ca40c533' +const MAIN_REBASED_DECLARATIONS = '920a1b66445d10e2a64fbdbe9d7138a4ebe21bbccde1b9ac9c89267cecc584b9' +const SCREEN_RPC_SEMANTICS = '763f4ffc60b8b335eaab4a51820dc782be430ada879564888a5d28929c9e938b' const PRE_REFACTOR_STYLES = '1db6af69c791d9963928541ad5310942fcbda6d984b422c90b6eb92b6816579a' const SCREEN_RPC_RENDER_TREE = '46d5a3ce9d71a8281a1e7b17411fb1dd963a4f392a5d095bc126b6a7cff4b92d' @@ -88,7 +113,7 @@ describe('Mobile Tasks refactor parity', () => { it('preserves RPC calls, runtime strings, and JSX host signatures', () => { const semantics = readMobileTasksSemanticSource() - expect(semantics.split('\n')).toHaveLength(3_278) + expect(semantics.split('\n')).toHaveLength(3_274) expect(hash(semantics)).toBe(SCREEN_RPC_SEMANTICS) }) diff --git a/mobile/src/tasks/mobile-tasks-repository-presentation.ts b/mobile/src/tasks/mobile-tasks-repository-presentation.ts index ae263793304..dd4ebf36e83 100644 --- a/mobile/src/tasks/mobile-tasks-repository-presentation.ts +++ b/mobile/src/tasks/mobile-tasks-repository-presentation.ts @@ -29,7 +29,9 @@ export function getRepoBadgeColor(repo: RepoSummary | undefined, fallbackName: s return repo?.badgeColor || repoColor(repo?.displayName ?? fallbackName) } -export function setupSourceLabel(source: string | null): string { +// `undefined` as well as `null`: a checked `repo.hooks` reader does not require `source`, and the +// recorded reply for a repo with no hooks file carries none. +export function setupSourceLabel(source: string | null | undefined): string { if (source === 'orca.yaml') { return 'orca.yaml' } diff --git a/mobile/src/tasks/mobile-workspace-create-operations.ts b/mobile/src/tasks/mobile-workspace-create-operations.ts index ed223a129b0..590fca765fc 100644 --- a/mobile/src/tasks/mobile-workspace-create-operations.ts +++ b/mobile/src/tasks/mobile-workspace-create-operations.ts @@ -5,9 +5,18 @@ import { } from '../../../src/shared/agent-launch-intent' import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' import { rpcResultVariant } from '../transport/rpc-operation-result-reader' -import { rpcUncheckedPayloadReader } from '../transport/rpc-reader-payload' +import { + agentLaunchCreateReceiptSchema, + worktreeCreateReceiptSchema, + worktreeHostedBaseSchema +} from './workspace-create-reply-schema' +import { taskRuntimeStatusSchema } from './task-runtime-reply-schema' -// Legacy readers preserve their existing validation; the replay-required route validates receipts. +// Creating a workspace from a task. Checked against workspace-create-reply-schema.ts; the +// create-time status probe reads through the Tasks screen's own status schema, because the two +// operations differ in acceptance and not in what the host sends. The replay-required launch keeps +// the shared `isAgentLaunchResult` guard it shipped with rather than the receipt schema beside it: +// a replayed receipt is the host's own record, so it is held to the full shared contract. /** * worktree.create. A lost reply is *unknown*, never failed — `worktree-create-retry.ts` replays on @@ -21,7 +30,7 @@ export const worktreeCreateRun = bindDeferredRpcOperation( method: 'worktree.create', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('created-worktree') + read: rpcResultVariant('created-worktree', worktreeCreateReceiptSchema) }) ) @@ -36,7 +45,7 @@ export const agentLaunchRun = bindDeferredRpcOperation( method: 'agent.launch', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('agent-launch-receipt') + read: rpcResultVariant('agent-launch-receipt', agentLaunchCreateReceiptSchema) }) ) @@ -60,7 +69,7 @@ export const worktreePrBaseResolve = bindDeferredRpcOperation( method: 'worktree.resolvePrBase', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('pr-start-point') + read: rpcResultVariant('pr-start-point', worktreeHostedBaseSchema) }) ) @@ -71,7 +80,7 @@ export const worktreeMrBaseResolve = bindDeferredRpcOperation( method: 'worktree.resolveMrBase', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('mr-start-point') + read: rpcResultVariant('mr-start-point', worktreeHostedBaseSchema) }) ) @@ -81,7 +90,7 @@ export const worktreeMrBaseResolve = bindDeferredRpcOperation( * Separately named because the callers disagree about what a refused status means: the * Tasks screen cannot hydrate without it and surfaces the host's message (`taskRuntimeStatusRead`), * while create-time capability probing degrades to "no capabilities" and creates anyway, so here a - * refusal is a skip. One reader serves both — the payload is unchecked in each. + * refusal is a skip. One reader serves both, and it is now the same checked schema in each. */ export const worktreeCreateCapabilityRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -89,6 +98,6 @@ export const worktreeCreateCapabilityRead = bindDeferredRpcOperation( method: 'status.get', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('runtime-status') + read: rpcResultVariant('runtime-status', taskRuntimeStatusSchema) }) ) diff --git a/mobile/src/tasks/mobile-workspace-source-operations.ts b/mobile/src/tasks/mobile-workspace-source-operations.ts index 3126682c9a1..8f7a5420b15 100644 --- a/mobile/src/tasks/mobile-workspace-source-operations.ts +++ b/mobile/src/tasks/mobile-workspace-source-operations.ts @@ -1,13 +1,19 @@ import { bindDeferredRpcOperation, defineRpcOperation } from '../transport/rpc-operation' +import { rpcResultVariant } from '../transport/rpc-operation-result-reader' import { - rpcUncheckedMemberReader, - rpcUncheckedPayloadReader -} from '../transport/rpc-reader-payload' + detectedAgentIdsSchema, + repoBaseRefSearchSchema, + repoSetupHooksSchema, + repoSparsePresetListSchema, + repoSparsePresetSaveSchema, + sshConnectionStateSchema +} from './workspace-source-reply-schema' // The repo and SSH reads the workspace-create drawer runs: connection state, agent detection, -// repo-owned setup hooks, sparse presets and base-branch search. +// repo-owned setup hooks, sparse presets and base-branch search. Checked against +// workspace-source-reply-schema.ts. -const sshConnectionStateReader = rpcUncheckedMemberReader('ssh-connection-state', 'state') +const sshConnectionStateReader = rpcResultVariant('ssh-connection-state', sshConnectionStateSchema) /** Connecting an SSH repo before create. The reply's only read field is `state`. */ export const sshRepoConnectRun = bindDeferredRpcOperation( @@ -39,7 +45,7 @@ export const remoteAgentDetectionRead = bindDeferredRpcOperation( method: 'preflight.detectRemoteAgents', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('detected-agent-ids') + read: rpcResultVariant('detected-agent-ids', detectedAgentIdsSchema) }) ) @@ -50,7 +56,7 @@ export const localAgentDetectionRead = bindDeferredRpcOperation( method: 'preflight.detectAgents', acceptance: 'success-result-or-skip', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('detected-agent-ids') + read: rpcResultVariant('detected-agent-ids', detectedAgentIdsSchema) }) ) @@ -61,7 +67,7 @@ export const repoSetupHooksRead = bindDeferredRpcOperation( method: 'repo.hooks', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('repo-hooks') + read: rpcResultVariant('repo-hooks', repoSetupHooksSchema) }) ) @@ -71,7 +77,7 @@ export const repoSparsePresetListRead = bindDeferredRpcOperation( method: 'repo.sparsePresets', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedMemberReader('sparse-presets', 'presets') + read: rpcResultVariant('sparse-presets', repoSparsePresetListSchema) }) ) @@ -81,14 +87,14 @@ export const repoSparsePresetSaveRun = bindDeferredRpcOperation( method: 'repo.saveSparsePreset', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedMemberReader('saved-sparse-preset', 'preset') + read: rpcResultVariant('saved-sparse-preset', repoSparsePresetSaveSchema) }) ) /** - * Base-branch search. The payload is unchecked: both callers — the drawer's picker effect and the - * Smart source picker — spell their own `refDetails ?? refs.map(...)` fallback, and reproducing - * that in the reader would need a type assertion the operation fence rightly bans. + * Base-branch search. Both callers — the drawer's picker effect and the Smart source picker — + * spell their own `refDetails ?? refs.map(...)` fallback, and that stays where it is: the schema + * requires neither member, so the choice between them is still the call site's. */ export const repoBaseRefSearchRead = bindDeferredRpcOperation( defineRpcOperation({ @@ -96,6 +102,6 @@ export const repoBaseRefSearchRead = bindDeferredRpcOperation( method: 'repo.searchRefs', acceptance: 'require-result-or-throw-message', barrier: 'after-caller-barrier', - read: rpcUncheckedPayloadReader('base-ref-search') + read: rpcResultVariant('base-ref-search', repoBaseRefSearchSchema) }) ) diff --git a/mobile/src/tasks/setup-hook-trust.ts b/mobile/src/tasks/setup-hook-trust.ts index e6cb492e617..7342c65ae65 100644 --- a/mobile/src/tasks/setup-hook-trust.ts +++ b/mobile/src/tasks/setup-hook-trust.ts @@ -52,11 +52,16 @@ export async function persistSetupHookTrustApproval(args: { return next } +// Takes a partial record because a checked `repo.hooks` reader requires neither member: the +// recorded reply carries a hooks payload with no setupTrust at all, so the pair is proven here +// rather than declared upstream. The spread keeps whatever else the host sent on the record. export function normalizeSetupHookTrust( - setupTrust: SetupHookTrust | null | undefined + setupTrust: { contentHash?: string; scriptContent?: string } | null | undefined ): SetupHookTrust | null { - if (!setupTrust?.contentHash || !setupTrust.scriptContent) { + const contentHash = setupTrust?.contentHash + const scriptContent = setupTrust?.scriptContent + if (!contentHash || !scriptContent) { return null } - return setupTrust + return { ...setupTrust, contentHash, scriptContent } } diff --git a/mobile/src/tasks/smart-source-fan-out.test.ts b/mobile/src/tasks/smart-source-fan-out.test.ts index cffdc287e22..b6935ee2b55 100644 --- a/mobile/src/tasks/smart-source-fan-out.test.ts +++ b/mobile/src/tasks/smart-source-fan-out.test.ts @@ -22,6 +22,23 @@ function fakeClient(byMethod: Record, calls: Call[]): RpcClient } as unknown as RpcClient } +const workItem = { + state: 'open', + url: '', + labels: [], + updatedAt: '2020-01-01T00:00:00.000Z', + author: null +} + +const linearIssue = { + url: '', + state: { name: 'Todo', type: 'unstarted', color: '#000' }, + team: { id: 'team-1', key: 'ENG', name: 'Engineering' }, + labels: [], + priority: 0, + updatedAt: '2020-01-01T00:00:00.000Z' +} + const smartArgs = { mode: 'smart' as const, query: 'bug', @@ -38,9 +55,15 @@ describe('fanOutSmartSearch', () => { const calls: Call[] = [] const client = fakeClient( { - 'github.listWorkItems': { items: [{ id: 'g1', type: 'issue', number: 1, title: 'A' }] }, - 'gitlab.listWorkItems': { items: [{ id: 'gl1', type: 'mr', number: 2, title: 'B' }] }, - 'linear.searchIssues': { items: [{ id: 'l1', identifier: 'ENG-1', title: 'C' }] }, + 'github.listWorkItems': { + items: [{ ...workItem, id: 'g1', type: 'issue', number: 1, title: 'A' }] + }, + 'gitlab.listWorkItems': { + items: [{ ...workItem, id: 'gl1', type: 'mr', number: 2, title: 'B' }] + }, + 'linear.searchIssues': { + items: [{ ...linearIssue, id: 'l1', identifier: 'ENG-1', title: 'C' }] + }, 'repo.searchRefs': { refDetails: [{ refName: 'main', localBranchName: 'main' }] } }, calls @@ -64,7 +87,9 @@ describe('fanOutSmartSearch', () => { const client = fakeClient( { 'github.listWorkItems': new Error('gh down'), - 'gitlab.listWorkItems': { items: [{ id: 'gl1', type: 'mr', number: 2, title: 'B' }] }, + 'gitlab.listWorkItems': { + items: [{ ...workItem, id: 'gl1', type: 'mr', number: 2, title: 'B' }] + }, 'linear.searchIssues': { items: [] }, 'repo.searchRefs': { refDetails: [] } }, diff --git a/mobile/src/tasks/smart-source-paste-intent.ts b/mobile/src/tasks/smart-source-paste-intent.ts index 87715eab039..30d87b0e71b 100644 --- a/mobile/src/tasks/smart-source-paste-intent.ts +++ b/mobile/src/tasks/smart-source-paste-intent.ts @@ -124,8 +124,7 @@ export async function findRepoMatchingSlugForPaste( return null } const slug = githubRepoSlugRead.interpret(reply) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - resolved = slug.accepted ? (slug.value as RepoSlug | null) : null + resolved = slug.accepted ? slug.value : null } catch { resolved = null } @@ -147,7 +146,7 @@ export async function lookupGitHubItemByNumber( repo: `id:${repoId}`, number }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the lookup decodes the same `workItemRow`, so the assertion only fills in members the row omits, each read through a guard or interpolated as text; what the schema adds is that a non-object payload is now a named incompatible reply rather than a spread over a string. const item = githubWorkItemByNumberRead.interpret(reply) as GitHubWorkItem | null return item ? { ...item, repoId } : null } @@ -167,7 +166,7 @@ export async function lookupGitHubItemByOwnerRepo( number, type }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: as above. const item = githubWorkItemBySlugRead.interpret(reply) as GitHubWorkItem | null return item ? { ...item, repoId } : null } @@ -184,7 +183,7 @@ export async function lookupGitLabItemByPath( iid: link.number, type: link.type }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: as above, against `GitLabWorkItem`. const item = gitlabWorkItemByPathRead.interpret(reply) as GitLabWorkItem | null return item ? { ...item, repoId } : null } diff --git a/mobile/src/tasks/smart-source-search-requests.ts b/mobile/src/tasks/smart-source-search-requests.ts index 432e6f1c6bc..e353925c9f5 100644 --- a/mobile/src/tasks/smart-source-search-requests.ts +++ b/mobile/src/tasks/smart-source-search-requests.ts @@ -36,11 +36,11 @@ export async function searchGitHubItems( limit: PER_REPO_FETCH_LIMIT, query: scopeGitHubQuery(query) }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const envelope = githubWorkItemSearchRead.interpret(reply) as { items: GitHubWorkItem[] } + const envelope = githubWorkItemSearchRead.interpret(reply) // Stamp repoId so the shared row builder + create flow can attribute each item // to the searched repo (the runtime omits it, like the desktop fetcher). - return (envelope.items ?? []).map((item) => ({ ...item, repoId })) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: `workItemRow` types every member at `GitHubWorkItem`'s own type and requires the ones a consumer reads unguarded, so the assertion only fills in members the row omits; each of those is read through a guard or interpolated as text (task-source-search-reply-schema.ts:10-12). + return envelope.items.map((item) => ({ ...item, repoId })) as GitHubWorkItem[] } export async function searchGitLabItems( @@ -56,15 +56,12 @@ export async function searchGitLabItems( perPage: GITLAB_PER_PAGE, query: query.trim() || undefined }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const envelope = gitlabWorkItemSearchRead.interpret(reply) as { - items: GitLabWorkItem[] - error?: { type?: string; message: string } - } + const envelope = gitlabWorkItemSearchRead.interpret(reply) if (envelope.error?.type && envelope.error.type !== 'not_found') { - throw new Error(envelope.error.message) + throw new Error(envelope.error.message ?? '') } - return (envelope.items ?? []).map((item) => ({ ...item, repoId })) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: same row rule as the GitHub search above, against `GitLabWorkItem`. + return envelope.items.map((item) => ({ ...item, repoId })) as GitLabWorkItem[] } export async function searchLinearIssues( @@ -92,7 +89,7 @@ export async function searchLinearIssues( workspaceId: linearWorkspaceId ?? undefined }) ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: linearIssueRowSchema requires all nine members this row is read for (`id`, `identifier`, `title`, `url`, `updatedAt`, `priority`, `labels`, `state`, `team`), so the only gap left is `labelIds`: the schema salvages it to `string[] | undefined` while the shared LinearIssue declares it `string[]`. No mobile code reads it. return issues as LinearIssue[] } @@ -106,11 +103,7 @@ export async function searchBranches( { repo: `id:${repoId}`, query: query.trim(), limit: BRANCH_LIMIT }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = repoBaseRefSearchRead.interpret(reply) as { - refDetails?: BaseRefSearchResult[] - refs?: string[] - } + const result = repoBaseRefSearchRead.interpret(reply) return ( result.refDetails ?? (result.refs ?? []).map((refName) => ({ refName, localBranchName: refName })) diff --git a/mobile/src/tasks/task-item-detail-reply-schema.ts b/mobile/src/tasks/task-item-detail-reply-schema.ts index 947f8c56869..b91e5e3a403 100644 --- a/mobile/src/tasks/task-item-detail-reply-schema.ts +++ b/mobile/src/tasks/task-item-detail-reply-schema.ts @@ -26,7 +26,7 @@ import { * A GitHub work item's detail pane. * * Object or `null`, and nothing inside is required: `if (!details) throw` at - * use-mobile-tasks-item-detail-loading.tsx:51 is the whole identity test, and :58-69 reads every + * use-mobile-tasks-item-detail-loading.tsx:52 is the whole identity test, and :58-69 reads every * member behind `??` or `?.`. What the schema adds is the container — main read `details.body` off * a string reply and published an empty sheet as if the host had answered, and off `null` it threw * a property-read TypeError the sheet showed verbatim. @@ -117,49 +117,53 @@ export const gitlabWorkItemDetailSchema = z * `estimate` keeps an explicit `null`: the host writes `issue.estimate ?? null` * (src/main/linear/mappers.ts:112), so `null` is the value "no estimate" and absence is a host * that did not report one. + * + * The row is shared: the smart picker's search and list readers decode the same `LinearIssue` out + * of `linear.searchIssues` and `linear.listIssues`, so they import `linearIssueRowSchema` rather + * than declaring a second one. */ -export const linearIssueSchema = z - .looseObject({ - id: z.string(), - identifier: z.string(), - title: z.string(), - url: z.string(), - updatedAt: z.string(), - priority: z.number().finite(), - labels: salvagingArray(z.string()), - state: z.looseObject({ name: z.string(), type: z.string(), color: z.string() }), - team: z.looseObject({ id: z.string(), name: z.string(), key: z.string() }), - workspaceId: prText('workspaceId'), - workspaceName: prText('workspaceName'), - description: prText('description'), - labelIds: prStringList('labelIds'), - estimate: salvagedOptional('estimate', z.number().finite().nullable()), - assignee: salvagedOptional( - 'assignee', - z.looseObject({ id: prText('id'), displayName: z.string() }) - ), - project: salvagedOptional( - 'project', +export const linearIssueRowSchema = z.looseObject({ + id: z.string(), + identifier: z.string(), + title: z.string(), + url: z.string(), + updatedAt: z.string(), + priority: z.number().finite(), + labels: salvagingArray(z.string()), + state: z.looseObject({ name: z.string(), type: z.string(), color: z.string() }), + team: z.looseObject({ id: z.string(), name: z.string(), key: z.string() }), + workspaceId: prText('workspaceId'), + workspaceName: prText('workspaceName'), + description: prText('description'), + labelIds: prStringList('labelIds'), + estimate: salvagedOptional('estimate', z.number().finite().nullable()), + assignee: salvagedOptional( + 'assignee', + z.looseObject({ id: prText('id'), displayName: z.string() }) + ), + project: salvagedOptional( + 'project', + z.looseObject({ + id: z.string(), + name: z.string(), + url: prText('url'), + color: prText('color') + }) + ), + subIssues: salvagedOptional( + 'subIssues', + salvagingArray( z.looseObject({ id: z.string(), - name: z.string(), - url: prText('url'), - color: prText('color') + identifier: z.string(), + title: z.string(), + url: z.string() }) - ), - subIssues: salvagedOptional( - 'subIssues', - salvagingArray( - z.looseObject({ - id: z.string(), - identifier: z.string(), - title: z.string(), - url: z.string() - }) - ) ) - }) - .nullable() + ) +}) + +export const linearIssueSchema = linearIssueRowSchema.nullable() /** * The comment list beside a Linear issue. diff --git a/mobile/src/tasks/task-list-reply-schema.ts b/mobile/src/tasks/task-list-reply-schema.ts index acb903c8635..23ce22e6de9 100644 --- a/mobile/src/tasks/task-list-reply-schema.ts +++ b/mobile/src/tasks/task-list-reply-schema.ts @@ -100,7 +100,7 @@ export const gitlabTodoListSchema = salvagingArray(gitlabTodoSchema).nullish() /** * Connecting a Linear account with a pasted API key, and the repository issue-source write. * - * The connect reply is the standard envelope: use-mobile-tasks-task-pagination-actions.tsx:54 + * The connect reply is the standard envelope: use-mobile-tasks-task-pagination-actions.tsx:55 * reads `ok === false` and raises `error` or its own copy, and nothing else in the reply. */ export const linearAccountConnectedSchema = taskMutationEnvelopeSchema diff --git a/mobile/src/tasks/task-project-board-reply-schema.test.ts b/mobile/src/tasks/task-project-board-reply-schema.test.ts new file mode 100644 index 00000000000..841dcb9d741 --- /dev/null +++ b/mobile/src/tasks/task-project-board-reply-schema.test.ts @@ -0,0 +1,284 @@ +import { describe, expect, it } from 'vitest' +import type { GitHubProjectOwnerType } from '../../../src/shared/github/project-types' +import { + taskProjectAccessibleListSchema, + taskProjectAssignableUserListSchema, + taskProjectCommentMutationSchema, + taskProjectCommentWriteSchema, + taskProjectIssueTypeListSchema, + taskProjectLabelListSchema, + taskProjectMutationStatusSchema, + taskProjectRefSchema, + taskProjectRowDetailSchema, + taskProjectViewListSchema, + taskProjectViewTableSchema +} from './task-project-board-reply-schema' + +// Pins the decisions task-project-board-reply-schema.ts documents: the one closed enum, the one +// open-vocabulary string beside it, the row drops, and the tri-state the detail pane forwards. + +describe('project envelopes', () => { + it('reads the recorded accessible-project list whole', () => { + const parsed = taskProjectAccessibleListSchema.safeParse({ + ok: true, + projects: [ + { owner: 'owner', ownerType: 'organization', number: 3, title: 'Board', host: 'github.com' } + ], + partialFailures: [] + }) + expect(parsed.success && parsed.data).toEqual({ + ok: true, + projects: [ + { owner: 'owner', ownerType: 'organization', number: 3, title: 'Board', host: 'github.com' } + ], + partialFailures: [] + }) + }) + + it('drops a project row with no title, which the picker search lowercases unguarded', () => { + const row = { owner: 'owner', ownerType: 'organization', number: 3, title: 'Board' } + const { title: _title, ...noTitle } = row + const parsed = taskProjectAccessibleListSchema.safeParse({ + ok: true, + projects: [row, noTitle] + }) + expect(parsed.success && parsed.data).toMatchObject({ projects: [row] }) + }) + + it('requires the message the refusal arm is thrown with', () => { + const parsed = taskProjectAccessibleListSchema.safeParse({ + ok: false, + error: { type: 'not_found', message: 'gone' } + }) + expect(parsed.success && parsed.data).toMatchObject({ ok: false, error: { message: 'gone' } }) + }) + + it('refuses an envelope with no ok, which main read as a property access on undefined', () => { + expect(taskProjectAccessibleListSchema.safeParse({ projects: [] }).success).toBe(false) + expect(taskProjectAccessibleListSchema.safeParse(null).success).toBe(false) + }) +}) + +describe('ownerType is a closed enum', () => { + it('takes both arms the host validates', () => { + // Keyed by the host's own type, so an arm added to GitHubProjectOwnerType fails tsc here + // rather than silently dropping every row that carries it. + const HOST_OWNER_TYPES: Record = { + organization: true, + user: true + } + for (const ownerType of Object.keys(HOST_OWNER_TYPES)) { + const parsed = taskProjectRefSchema.safeParse({ ok: true, owner: 'o', ownerType, number: 3 }) + expect(parsed.success && parsed.data).toMatchObject({ ownerType }) + } + }) + + it('refuses an arm it does not know, because the value is echoed into listViews params', () => { + const parsed = taskProjectRefSchema.safeParse({ + ok: true, + owner: 'o', + ownerType: 'enterprise', + number: 3 + }) + expect(parsed.success).toBe(false) + }) + + it('drops a project row carrying an unknown ownerType rather than failing the list', () => { + const parsed = taskProjectAccessibleListSchema.safeParse({ + ok: true, + projects: [ + { owner: 'a', ownerType: 'organization', number: 1, title: 'A' }, + { owner: 'b', ownerType: 'enterprise', number: 2, title: 'B' } + ] + }) + expect(parsed.success && parsed.data).toMatchObject({ + projects: [{ owner: 'a', ownerType: 'organization', number: 1, title: 'A' }] + }) + }) +}) + +describe('layout stays an open vocabulary', () => { + it('keeps a view whose layout this build has never heard of', () => { + const parsed = taskProjectViewListSchema.safeParse({ + ok: true, + views: [{ id: 'v1', number: 1, name: 'Timeline', layout: 'TIMELINE_LAYOUT' }] + }) + expect(parsed.success && parsed.data).toMatchObject({ + views: [{ id: 'v1', layout: 'TIMELINE_LAYOUT' }] + }) + }) + + it('drops a view with no id, which nothing could have selected', () => { + const parsed = taskProjectViewListSchema.safeParse({ + ok: true, + views: [{ number: 1, layout: 'TABLE_LAYOUT' }] + }) + expect(parsed.success && parsed.data).toMatchObject({ views: [] }) + }) +}) + +describe('the board table', () => { + it('reads the recorded table, whose project carries only id/title/number', () => { + const parsed = taskProjectViewTableSchema.safeParse({ + ok: true, + data: { + project: { id: 'project-1', title: 'Board', number: 3 }, + selectedView: { id: 'view-1', number: 1, name: 'Table', filter: 'is:open' }, + fields: [], + rows: [] + } + }) + expect(parsed.success).toBe(true) + }) + + it('refuses a table with no selectedView, which was a read on undefined', () => { + const parsed = taskProjectViewTableSchema.safeParse({ + ok: true, + data: { project: { id: 'p' }, rows: [] } + }) + expect(parsed.success).toBe(false) + }) +}) + +describe('the row detail pane preserves reviewDecision as a tri-state', () => { + const detail = (item: unknown) => + taskProjectRowDetailSchema.safeParse({ ok: true, details: { item } }) + + it('keeps an explicit null', () => { + const parsed = detail({ reviewDecision: null }) + expect(parsed.success && parsed.data).toMatchObject({ + details: { item: { reviewDecision: null } } + }) + // JSON drops an absent key and keeps an explicit null, which is the whole distinction here. + expect(JSON.stringify(parsed)).toContain('"reviewDecision":null') + }) + + it('keeps absence absent rather than collapsing it to null', () => { + const parsed = detail({ labels: [] }) + expect(JSON.stringify(parsed)).not.toContain('reviewDecision') + }) + + it('keeps a decision the host reports', () => { + const parsed = detail({ reviewDecision: 'APPROVED' }) + expect(parsed.success && parsed.data).toMatchObject({ + details: { item: { reviewDecision: 'APPROVED' } } + }) + }) +}) + +describe('the guarded reads require nothing but the container', () => { + it('accepts a label list with no ok and no labels, which main read as a refusal', () => { + expect(taskProjectLabelListSchema.safeParse({}).success).toBe(true) + expect(taskProjectLabelListSchema.safeParse(null).success).toBe(false) + }) + + it('drops a non-string label rather than failing the picker', () => { + const parsed = taskProjectLabelListSchema.safeParse({ ok: true, labels: ['bug', 7] }) + expect(parsed.success && parsed.data).toMatchObject({ labels: ['bug'] }) + }) + + it('drops an issue type with no id, which the write could not have sent', () => { + const parsed = taskProjectIssueTypeListSchema.safeParse({ + ok: true, + types: [{ id: 'type-1', name: 'Bug' }, { name: 'Task' }] + }) + expect(parsed.success && parsed.data).toMatchObject({ types: [{ id: 'type-1', name: 'Bug' }] }) + }) + + it('names the b2 seed null reply instead of reading .ok off it', () => { + expect(taskProjectMutationStatusSchema.safeParse(null).success).toBe(false) + expect(taskProjectMutationStatusSchema.safeParse({ ok: true }).success).toBe(true) + }) +}) + +describe('the comment replies', () => { + it('keeps the recorded numeric comment id', () => { + const parsed = taskProjectCommentWriteSchema.safeParse({ + ok: true, + comment: { id: 906, author: 'You', body: 'a project comment' } + }) + expect(parsed.success && parsed.data).toMatchObject({ comment: { id: 906 } }) + }) + + it('drops a comment with no id rather than appending an unkeyed row', () => { + const parsed = taskProjectCommentWriteSchema.safeParse({ ok: true, comment: { body: 'hi' } }) + expect(parsed.success && parsed.data).toEqual({ ok: true }) + }) + + it('keeps a bare-string error, which both mutation call sites branch on', () => { + const parsed = taskProjectCommentMutationSchema.safeParse({ ok: false, error: 'nope' }) + expect(parsed.success && parsed.data).toMatchObject({ ok: false, error: 'nope' }) + }) + + it('keeps an enveloped error too', () => { + const parsed = taskProjectCommentMutationSchema.safeParse({ + ok: false, + error: { message: 'nope' } + }) + expect(parsed.success && parsed.data).toMatchObject({ error: { message: 'nope' } }) + }) +}) + +// The five collections and the assignee list are typed by the item half's entity schemas now, so a +// row the pane would have crashed on drops instead of reaching a consumer as the declared type. +// No scenario reply carries any of them non-empty, so these pins are the only thing that observes +// the change — the goldens cannot. +describe('the detail collections are the shared entity rows', () => { + const details = (value: Record) => + taskProjectRowDetailSchema.safeParse({ ok: true, details: value }) + + it('drops a comment with no body, which the thread renders unguarded', () => { + const parsed = details({ comments: [{ id: 1, body: 'kept' }, { id: 2 }] }) + expect(parsed.success && parsed.data).toMatchObject({ + details: { comments: [{ id: 1, body: 'kept' }] } + }) + }) + + it('drops a reviewer with no login, which the merge reads as `login.trim()`', () => { + const parsed = details({ item: { reviewRequests: [{ login: 'octocat' }, { name: 'nobody' }] } }) + expect(parsed.success && parsed.data).toMatchObject({ + details: { item: { reviewRequests: [{ login: 'octocat' }] } } + }) + }) + + it('keeps a reviewer row null name and avatar rather than collapsing them', () => { + const parsed = details({ + item: { reviewRequests: [{ login: 'octocat', name: null, avatarUrl: null }] } + }) + expect(JSON.stringify(parsed)).toContain('"name":null') + expect(JSON.stringify(parsed)).toContain('"avatarUrl":null') + }) + + it('drops a review with no login and a check with no name', () => { + const reviews = details({ item: { latestReviews: [{ state: 'APPROVED' }] } }) + expect(reviews.success && reviews.data).toMatchObject({ + details: { item: { latestReviews: [] } } + }) + const checks = details({ + checks: [{ name: 'build', status: 'COMPLETED' }, { status: 'QUEUED' }] + }) + expect(checks.success && checks.data).toMatchObject({ + details: { checks: [{ name: 'build', status: 'COMPLETED' }] } + }) + }) + + it('drops a file with no path, which no expansion or comment anchor could match', () => { + const parsed = details({ files: [{ path: 'a.ts' }, { additions: 3 }] }) + expect(parsed.success && parsed.data).toMatchObject({ details: { files: [{ path: 'a.ts' }] } }) + }) + + it('keeps an empty collection, which is what every recorded detail reply carries', () => { + const parsed = details({ comments: [], checks: [], files: [], item: { reviewRequests: [] } }) + expect(parsed.success).toBe(true) + }) + + it('drops an assignable user with no login and keeps the rest of the row', () => { + const parsed = taskProjectAssignableUserListSchema.safeParse({ + ok: true, + users: [{ login: 'octocat', name: null, avatarUrl: null }, { name: 'nobody' }] + }) + expect(parsed.success && parsed.data).toMatchObject({ + users: [{ login: 'octocat', name: null, avatarUrl: null }] + }) + }) +}) diff --git a/mobile/src/tasks/task-project-board-reply-schema.ts b/mobile/src/tasks/task-project-board-reply-schema.ts new file mode 100644 index 00000000000..7ae763440ab --- /dev/null +++ b/mobile/src/tasks/task-project-board-reply-schema.ts @@ -0,0 +1,328 @@ +import { z } from 'zod' +import { salvagedOptional, salvagingArray } from '../../../src/shared/zod-salvage' +import { + assignableUserListSchema, + detailCheckListSchema, + detailCommentListSchema, + detailFileListSchema, + reviewSummaryListSchema +} from './task-provider-entity-reply-schema' + +// The sixteen `github.project.*` replies the Projects board reads. Every one of them is an +// accepted result carrying its own `{ ok, error }` envelope, published by +// src/main/runtime/rpc/methods/github-project-methods.ts and typed in +// src/shared/github/project-result-types.ts. +// +// Two shapes appear here, and which one a reply gets is decided by its consumer, not by the host: +// +// - a discriminated union, where the consumer reads a member off BOTH arms without a guard +// (`result.error.message` on the refusal arm and the payload on the success arm). `ok` is +// load-bearing there, so an envelope without it is an incompatible reply rather than the +// property-read TypeError main threw; +// - a flat passthrough object, where the consumer guards every member it reads +// (`result.error?.message ?? '...'`, `result.labels ?? []`). Nothing is required there beyond +// the container, because requiring a member the consumer already defaults would refuse a reply +// main rendered. +// +// Required members are only ever ones a recorded golden shows the host sending AND a consumer +// reads unguarded. Nothing deeper is declared: the project table's rows, for instance, have no +// recorded row to check a deeper requirement against, so requiring one would be a claim about the +// wire that this corpus cannot support. + +/** + * `owner`/`ownerType`/`number` compose the persisted project key, so every row carries them. + * + * CLOSED, and the one enum here that is. The two arms are GitHubProjectOwnerType verbatim + * (src/shared/github/project-types.ts:8), which is the type the handler's own params and results + * are declared in — not mobile's restatement of it. It stays closed because a decoded `ownerType` + * is echoed straight back into the params of the next project call + * (mobile-tasks-github-project-pickers.tsx:227, use-mobile-tasks-project-loading-actions.tsx:75, + * :110, :269), and remote-wire-compatibility.md rule 4 forbids letting a fallback shape a param + * the host reads back. An unknown arm therefore drops its row rather than inventing an owner type. + * The corpus exercises `'organization'` (`tk-project-board-load`); `'user'` is unexercised but + * inside the set, so no reply can drop on it. + */ +const PROJECT_OWNER_TYPE = ['organization', 'user'] as const + +const projectMessage = (name: string) => salvagedOptional(name, z.string()) +const projectCount = (name: string) => salvagedOptional(name, z.number()) + +/** The refusal arm's message, read unguarded as `result.error.message`. */ +const requiredProjectError = z + .looseObject({ message: projectMessage('message') }) + .transform((error) => ({ + ...error, + message: error.message ?? '' + })) + +/** The refusal arm's message where the consumer already spells `?? 'Failed to …'`. */ +const optionalProjectError = salvagedOptional( + 'error', + z.looseObject({ message: projectMessage('message') }) +) + +/** `ok` where the consumer tests it rather than switching on it: absent still reads as refused. */ +const optionalOk = salvagedOptional('ok', z.boolean()) + +/** + * One accessible project. + * + * `owner` is required because githubProjectIdentityKey calls `.toLowerCase()` on it + * (src/shared/github/project-identity.ts:13) for every row the picker stores or compares, and + * `ownerType`/`number` are the rest of that key. `title` is required for the same reason one step + * later: the picker's search spells `project.title.toLowerCase()` with no guard + * (use-mobile-tasks-provider-view-projection.tsx:213), it is non-optional on GitHubProjectSummary + * (src/shared/github/project-types.ts:200-209), and the recorded reply carries it. A row without + * any of the four is dropped rather than failing the list, which keeps the banner and the + * remaining projects. + * + * `id`, `url` and `source` stay undeclared: the recorded reply (`tk-project-board-load`, + * `github.project.listAccessible#1`) carries none of them, so requiring what the shared type + * declares would refuse main's own fixture. + */ +const projectSummary = z.looseObject({ + owner: z.string(), + ownerType: z.enum(PROJECT_OWNER_TYPE), + number: z.number(), + title: z.string(), + host: projectMessage('host') +}) + +/** + * The accessible-project list. + * + * `projects` is required on the success arm: use-mobile-tasks-project-loading-actions.tsx:62 hands + * it straight to `setGithubProjects`, and `partialFailures` is not, because :64 spells `?? []`. + * `error.message` is required on the refusal arm because :59 throws it unguarded. + */ +export const taskProjectAccessibleListSchema = z.union([ + z.looseObject({ + ok: z.literal(true), + projects: salvagingArray(projectSummary), + partialFailures: salvagedOptional( + 'partialFailures', + salvagingArray( + z.looseObject({ owner: projectMessage('owner'), message: projectMessage('message') }) + ) + ) + }), + z.looseObject({ ok: z.literal(false), error: requiredProjectError }) +]) + +/** + * A project's views. + * + * `views` is required: :84 publishes it and :85 returns it, and :191/:196/:210/:220 run `find` and + * `filter` over the same array with no guard. A view needs the `id` the selection is committed + * under (:225 → githubProjectSettings.lastViewByProject), so a row without one drops. + * + * `layout` is a plain string, not an enum. Every reader is an equality test against + * `'TABLE_LAYOUT'` (:196/:204/:210/:220), so a layout arm this build has not heard of already + * reads as "not supported" — closing the set would instead drop the row and change the count the + * "no supported views" copy is decided by. That is remote-wire-compatibility.md rule 4. + */ +export const taskProjectViewListSchema = z.union([ + z.looseObject({ + ok: z.literal(true), + views: salvagingArray( + z.looseObject({ + id: z.string(), + number: projectCount('number'), + name: projectMessage('name'), + layout: projectMessage('layout') + }) + ) + }), + z.looseObject({ ok: z.literal(false), error: requiredProjectError }) +]) + +/** + * The board table. + * + * `data` and `data.selectedView` are required because :126 reads `data.selectedView.filter` and + * :128-:137 read four more members off it, all unguarded — a reply without the container was a + * property read on undefined. `project.id` is required for the same reason at + * use-mobile-tasks-project-metadata-actions.tsx:160/:172, which sends it as `projectId` on every field + * mutation. + * + * Nothing inside `selectedView` or `rows` is required. The recorded table + * (`tk-project-board-load`, `github.project.viewTable#1`) carries a `project` with no `owner`, + * `ownerType` or `url` and an empty `rows`, so this corpus has no evidence for a deeper claim. + */ +export const taskProjectViewTableSchema = z.union([ + z.looseObject({ + ok: z.literal(true), + data: z.looseObject({ + project: z.looseObject({ id: z.string() }), + selectedView: z.looseObject({ + id: projectMessage('id'), + number: projectCount('number'), + name: projectMessage('name'), + layout: projectMessage('layout'), + filter: projectMessage('filter') + }), + rows: salvagedOptional('rows', salvagingArray(z.looseObject({ id: z.string() }))) + }) + }), + z.looseObject({ + ok: z.literal(false), + error: requiredProjectError, + totalCount: projectCount('totalCount') + }) +]) + +/** + * A pasted project URL or `owner/number`, resolved. + * + * `owner`, `ownerType` and `number` are required: + * use-mobile-tasks-project-loading-actions.tsx:267-:272 forward all three into + * `selectGitHubProject`, which puts them in the key and in the next `github.project.listViews` + * params. `ownerType` is therefore a CLOSED enum with no fallback — it is echoed into a param, and + * remote-wire-compatibility.md rule 4 forbids a reply-schema fallback from shaping one. The arm + * set is genuinely closed host-side: project-view-listing.ts:23 answers `validation_error` for any + * other value, so degrading an unknown arm would only put a value the host refuses on the wire. + * + * `title` is optional because no mobile consumer reads it. `host` is optional because + * use-mobile-tasks-project-loading-actions.tsx:271 coalesces it (`result.host ?? parsed.host`), + * and `viewNumber` because :190 tests `typeof options.viewNumber === 'number'` before using it. + */ +export const taskProjectRefSchema = z.union([ + z.looseObject({ + ok: z.literal(true), + owner: z.string(), + ownerType: z.enum(PROJECT_OWNER_TYPE), + number: z.number(), + title: projectMessage('title'), + host: projectMessage('host'), + viewNumber: projectCount('viewNumber') + }), + z.looseObject({ ok: z.literal(false), error: requiredProjectError }) +]) + +/** + * A board row's detail pane. + * + * `details` is required: use-mobile-tasks-project-detail-loading.tsx:110-:121 reads eleven members + * off it, each defaulted but the container itself never guarded. `error.message` is required + * because :102 throws it. + * + * `item.reviewDecision` is nullable AND optional and stays that way. :121 forwards it verbatim + * into `projectRowDetail`, where `null` ("reviewed, no decision") and absent ("this host does not + * report one") are different states — collapsing either into the other with a `??` here would be + * the null-collapse the session domain shipped and had caught two review rounds later. + */ +export const taskProjectRowDetailSchema = z.union([ + z.looseObject({ + ok: z.literal(true), + details: z.looseObject({ + body: projectMessage('body'), + comments: salvagedOptional('comments', detailCommentListSchema), + item: salvagedOptional( + 'item', + z.looseObject({ + labels: salvagedOptional('labels', salvagingArray(z.string())), + reviewDecision: salvagedOptional('reviewDecision', z.string().nullable()), + reviewRequests: salvagedOptional('reviewRequests', assignableUserListSchema), + latestReviews: salvagedOptional('latestReviews', reviewSummaryListSchema) + }) + ), + assignees: salvagedOptional('assignees', salvagingArray(z.string())), + headSha: projectMessage('headSha'), + baseSha: projectMessage('baseSha'), + pullRequestId: projectMessage('pullRequestId'), + checks: salvagedOptional('checks', detailCheckListSchema), + files: salvagedOptional('files', detailFileListSchema) + }) + }), + z.looseObject({ ok: z.literal(false), error: requiredProjectError }) +]) + +/** + * The repo label list. + * + * Flat, not a union: use-mobile-tasks-project-metadata-loading.tsx:53 spells + * `result.error?.message ?? 'Failed to load labels'` and :55 spells `result.labels ?? []`, so + * every member is already defaulted and an envelope with no `ok` still reads as refused. What the + * schema adds is the container and the element type — a `labels` that is not an array of strings + * reached the label picker as rendered garbage. + */ +export const taskProjectLabelListSchema = z.looseObject({ + ok: optionalOk, + labels: salvagedOptional('labels', salvagingArray(z.string())), + error: optionalProjectError +}) + +/** The assignable-user list, guarded the same way at :105-:110. The row is + * `assignableUserListSchema`, the same entity the item sheet's reviewer picker decodes: `login` is + * what both key on, and `name`/`avatarUrl` keep their explicit `null`. */ +export const taskProjectAssignableUserListSchema = z.looseObject({ + ok: optionalOk, + users: salvagedOptional('users', assignableUserListSchema), + error: optionalProjectError +}) + +/** The repo issue types, guarded the same way at :159-:164. `id` is the mutation's own param + * (use-mobile-tasks-project-metadata-actions.tsx:240), so a row without one cannot be applied. */ +export const taskProjectIssueTypeListSchema = z.looseObject({ + ok: optionalOk, + types: salvagedOptional( + 'types', + salvagingArray(z.looseObject({ id: z.string(), name: projectMessage('name') })) + ), + error: optionalProjectError +}) + +/** + * The five board mutations whose reply is only a verdict: the issue and pull-request metadata + * writes, the issue-type write, and the field set/clear pair. + * + * Every consumer tests `result.ok === false` and then `result.error?.message ?? '…'` + * (use-mobile-tasks-project-metadata-actions.tsx:63/:182/:245 and + * use-mobile-tasks-project-workspace-comment-actions.tsx:142), so nothing but the container is + * required. The container is the change: `project.update-metadata`'s `b2` seed answers + * `result: null`, which main read as `null.ok` and #20563 left recorded as a TypeError. It is now + * named as an incompatible `github.project.updateIssueBySlug` reply instead. + */ +export const taskProjectMutationStatusSchema = z.looseObject({ + ok: optionalOk, + error: optionalProjectError +}) + +/** + * The added comment. + * + * `comment` is optional because :225 gates on it before appending. It carries `id` and `body` + * because the thread renderer keys and prints them, and because the recorded reply + * (`tk-project-row-comments-issue`) carries both — `id` as a NUMBER there, which is why the + * schema takes either rather than the string the mobile type leads with. + */ +export const taskProjectCommentWriteSchema = z.looseObject({ + ok: optionalOk, + comment: salvagedOptional( + 'comment', + z.looseObject({ + id: z.union([z.string(), z.number()]), + body: projectMessage('body'), + author: projectMessage('author'), + createdAt: projectMessage('createdAt') + }) + ), + error: optionalProjectError +}) + +/** + * The comment edit and delete verdicts. + * + * `error` is a string OR an envelope, because both consumers read it that way + * (use-mobile-tasks-project-workspace-comment-actions.tsx:271 and + * use-mobile-tasks-project-thread-reply-actions.tsx:62 both branch on `typeof result.error === + * 'string'`). Declaring only the envelope would salvage the string away and replace a host message + * the user has always seen with this app's fallback copy. + */ +export const taskProjectCommentMutationSchema = z.looseObject({ + ok: optionalOk, + error: salvagedOptional( + 'error', + z.union([z.string(), z.looseObject({ message: projectMessage('message') })]) + ) +}) diff --git a/mobile/src/tasks/task-provider-entity-reply-schema.ts b/mobile/src/tasks/task-provider-entity-reply-schema.ts index 45c918610b2..45678712bef 100644 --- a/mobile/src/tasks/task-provider-entity-reply-schema.ts +++ b/mobile/src/tasks/task-provider-entity-reply-schema.ts @@ -130,7 +130,7 @@ export const detailCheckListSchema = salvagingArray( * * `status` stays closed, and the arms are not mobile's invention: the host validates this same * seven-arm set on the way back in, as a zod enum on `github.prFileContents`' own params - * (src/shared/rpc-contract/github-pull-request-params.ts:62, matching `GitHubPRFile.status` at + * (src/shared/rpc-contract/github-pull-request-params.ts:63, matching `GitHubPRFile.status` at * github/pull-request-types.ts:133). Its only consumer is that request * (use-mobile-tasks-github-check-file-actions.tsx:196, * use-mobile-tasks-project-file-merge-actions.tsx:78), so a forwarded eighth arm could not reach diff --git a/mobile/src/tasks/task-runtime-reply-schema.test.ts b/mobile/src/tasks/task-runtime-reply-schema.test.ts new file mode 100644 index 00000000000..8f4b772c74e --- /dev/null +++ b/mobile/src/tasks/task-runtime-reply-schema.test.ts @@ -0,0 +1,121 @@ +import { describe, expect, it } from 'vitest' +import { + taskLinearStatusSchema, + taskPreferenceWriteSchema, + taskPreflightSchema, + taskRuntimeStatusSchema, + taskUiStateSchema +} from './task-runtime-reply-schema' + +// Pins what the hydration reads require and what they deliberately do not. + +describe('the runtime status', () => { + it('reads the recorded capability lists', () => { + for (const capabilities of [['mobile.tasks.v1'], ['files.mutation-ownership.v1']]) { + const parsed = taskRuntimeStatusSchema.safeParse({ capabilities }) + expect(parsed.success && parsed.data).toMatchObject({ capabilities }) + } + }) + + it('requires the container main read `.capabilities` off', () => { + expect(taskRuntimeStatusSchema.safeParse(null).success).toBe(false) + expect(taskRuntimeStatusSchema.safeParse('ok').success).toBe(false) + expect(taskRuntimeStatusSchema.safeParse({}).success).toBe(true) + }) + + it('drops a non-string capability, which `includes` could never have matched', () => { + const parsed = taskRuntimeStatusSchema.safeParse({ capabilities: ['push.v1', 7] }) + expect(parsed.success && parsed.data).toMatchObject({ capabilities: ['push.v1'] }) + }) + + it('leaves worktreeCreateIdempotency untouched in all four states the probe triages', () => { + for (const advertised of [undefined, null, 'nonsense', { dedupeTtlMs: 45_000 }]) { + const parsed = taskRuntimeStatusSchema.safeParse({ worktreeCreateIdempotency: advertised }) + expect(parsed.success).toBe(true) + expect(parsed.success ? parsed.data.worktreeCreateIdempotency : 'unparsed').toEqual( + advertised + ) + } + }) +}) + +describe('the persisted UI state', () => { + it('answers the `ui` member, which is what the member reader it replaces did', () => { + const parsed = taskUiStateSchema.safeParse({ + ui: { sortBy: 'name', trustedOrcaHooks: { 'repo-1': { all: { approvedAt: 1 } } } } + }) + expect(parsed.success && parsed.data).toMatchObject({ + sortBy: 'name', + trustedOrcaHooks: { 'repo-1': { all: { approvedAt: 1 } } } + }) + }) + + it('reads the recorded empty ui as an empty record, not as absent', () => { + const parsed = taskUiStateSchema.safeParse({ ui: {} }) + expect(parsed.success && parsed.data).toEqual({}) + }) + + it('answers undefined for a payload with no ui, where main read undefined off the object', () => { + const parsed = taskUiStateSchema.safeParse({}) + expect(parsed.success && parsed.data).toBeUndefined() + }) + + it.each([null, undefined, 'ok', 7, [], true])( + 'answers undefined for %j, so the other hydration legs survive an unreadable ui reply', + (payload) => { + const parsed = taskUiStateSchema.safeParse(payload) + expect(parsed.success).toBe(true) + expect(parsed.success ? parsed.data : 'unparsed').toBeUndefined() + } + ) +}) + +describe('the two advisory probes', () => { + it('reads the recorded preflight and linear replies', () => { + expect(taskPreflightSchema.safeParse({ glab: { installed: false } }).success).toBe(true) + expect(taskLinearStatusSchema.safeParse({ connected: false }).success).toBe(true) + }) + + it('requires nothing, because every consumer compares the leaf to `true`', () => { + expect(taskPreflightSchema.safeParse({}).success).toBe(true) + expect(taskLinearStatusSchema.safeParse({}).success).toBe(true) + }) + + it('drops a malformed glab rather than reading it as installed', () => { + const parsed = taskPreflightSchema.safeParse({ glab: 'yes' }) + expect(parsed.success ? parsed.data.glab : 'unparsed').toBeUndefined() + }) + + it('passes a host member no mobile consumer reads straight through', () => { + const parsed = taskPreflightSchema.safeParse({ gh: { installed: true, authenticated: true } }) + expect(parsed.success && parsed.data).toMatchObject({ + gh: { installed: true, authenticated: true } + }) + }) + + // `success-result-or-skip` accepts an envelope whose `result` is absent or null and then asks + // the reader to decode it, so a refusal here throws out of the caller's whole hydration. Main + // hydrated on both of these replies; the recorded settings.task-hydration and + // settings.workspace-context partitions are what caught the difference. + it.each([ + ['absent', undefined], + ['null', null], + ['a bare string', 'preflight'], + ['an array', []] + ])('reads a %s payload as "nothing advertised" rather than refusing it', (_label, reply) => { + const preflight = taskPreflightSchema.safeParse(reply) + expect(preflight.success).toBe(true) + expect(preflight.success && preflight.data.glab?.installed).toBeUndefined() + const linear = taskLinearStatusSchema.safeParse(reply) + expect(linear.success).toBe(true) + expect(linear.success && linear.data.connected).toBeUndefined() + }) +}) + +describe('the three preference writes', () => { + it('accept every payload, because no call site reads their body', () => { + for (const reply of [null, undefined, 0, 'written', { ok: true }, []]) { + expect(taskPreferenceWriteSchema.safeParse(reply).success).toBe(true) + } + }) +}) diff --git a/mobile/src/tasks/task-runtime-reply-schema.ts b/mobile/src/tasks/task-runtime-reply-schema.ts new file mode 100644 index 00000000000..35bbf7816c8 --- /dev/null +++ b/mobile/src/tasks/task-runtime-reply-schema.ts @@ -0,0 +1,120 @@ +import { z } from 'zod' +import { salvagedOptional, salvagingArray } from '../../../src/shared/zod-salvage' + +// What the Tasks screen reads once per host to hydrate, and the preferences it writes back. +// Checked against src/main/runtime/rpc/methods/status.ts:6-16 (RuntimeStatus, declared in +// src/shared/runtime-session-contracts.ts:64), client-ui.ts:22-74 (the `{ settings }` / `{ ui }` +// envelopes), preflight.ts:17 (PreflightStatus) and linear.ts:35-42 (the connection status). + +/** + * The runtime status, read for a capability list and nothing else. + * + * `capabilities` is the only member any consumer here reaches for, and every one of them guards it + * — `status.capabilities?.includes(…)` in use-mobile-tasks-runtime-hydration.tsx:205 and in + * src/shared/file-mutation-ownership.ts:10, `result.capabilities ?? []` in + * worktree-create-capability.ts:51. So the requirement is the container: main read `.capabilities` + * off whatever the payload was, and a string or a number reply was a property read that answered + * `undefined` and silently downgraded the host to "Tasks unsupported". + * + * Elements are strings and a non-string element drops. `includes` over a mixed array already never + * matched a capability id, so the drop changes no verdict; it is what makes the drop visible in + * the salvage report instead of invisible in an `includes` that quietly answers false. + * + * `worktreeCreateIdempotency` is `unknown` on purpose. worktree-create-capability.ts:55-70 does its + * own `typeof`/`Array.isArray` triage over it and treats absent, null, non-object and object as + * four different answers; a schema that narrowed it would have to pick one of those apart here and + * change which branch a host lands in. + */ +export const taskRuntimeStatusSchema = z.looseObject({ + capabilities: salvagedOptional('capabilities', salvagingArray(z.string())), + worktreeCreateIdempotency: z.unknown().optional(), + hostPlatform: salvagedOptional('hostPlatform', z.string()) +}) + +/** + * Persisted client UI state, answered under a `ui` member. + * + * The reader yields `ui` itself, which is what the member reader it replaces did, and it is total + * like the two probes below it. Main's `rpcPayloadMember` boxed the payload and read `undefined` + * off a string, a number or an array, so the Tasks screen hydrated on any of those; a refusal here + * would instead throw out of `hydrateTaskState` and leave the whole screen unhydrated (the outer + * `.catch` at use-mobile-tasks-runtime-hydration.tsx:349). Main did throw on a null or absent + * payload, and that is the one place this reader is deliberately kinder: persisted UI state is + * optional at every read (:283 spells `uiState?.trustedOrcaHooks ?? {}`, :284 + * `uiState?.taskResumeState ?? {}`), so "no ui" hydrates with the defaults rather than failing the + * settings, preflight and Linear legs that arrived beside it. The + * `matrix-settings.task-hydration-ui.get-1` golden records that move on `result-absent` and + * `result-null`. + * + * Both members are `unknown`, and the call site keeps one narrowing cast over them. They are + * opaque forwards: `trustedOrcaHooks` goes straight into state, and `taskResumeState` is the + * screen's whole persisted view state, re-read field by field with its own defaults at :286 and + * across use-mobile-tasks-client-settings-actions.tsx. Declaring either here would restate a + * twelve-member union that nothing in this reader reads. + */ +export const taskUiStateSchema = z + .looseObject({ + ui: salvagedOptional( + 'ui', + z.looseObject({ + taskResumeState: z.unknown().optional(), + trustedOrcaHooks: z.unknown().optional() + }) + ) + }) + .nullish() + .catch(undefined) + .transform((reply) => reply?.ui) + +/** + * The provider preflight, read only for whether `glab` is installed. + * + * Three consumers and all three guard to the leaf: `preflight?.glab?.installed === true` + * (use-mobile-tasks-runtime-hydration.tsx:295, mobile-home-host-requests.ts:95) and the + * `readProbeMember` pair in use-new-workspace-runtime-context.ts:92. `git` and `gh` are declared + * non-optional by PreflightStatus but no mobile consumer reads them, so they pass through. + * + * Total on purpose. This read is advertised as advisory, but `success-result-or-skip` accepts an + * envelope whose `result` is absent or null and then asks the reader to decode it, and a refusal + * there throws out of the whole hydration -- the corpus records main hydrating the Tasks screen on + * that reply and this reader leaving it unhydrated. `.catch` restores main's answer exactly, + * because every consumer guards to the leaf and reads absence as "not installed". + */ +export const taskPreflightSchema = z + .looseObject({ + glab: salvagedOptional( + 'glab', + z.looseObject({ installed: salvagedOptional('installed', z.boolean()) }) + ) + }) + .catch({ glab: undefined }) + +/** + * Whether Linear is connected. + * + * `connected` is compared to `true` at use-mobile-tasks-runtime-hydration.tsx:293, + * mobile-home-host-requests.ts:96 and use-new-workspace-runtime-context.ts:96, so absence and + * `false` already mean the same thing and nothing is required. `workspaces` is not declared: the + * picker reads it through a different operation on this same method, and listing a member ahead of + * a reader is how a schema starts refusing replies no consumer here would have noticed. + * + * Total for the same reason as the preflight read above: absence and `false` already mean the same + * thing here, so a nullish payload must read as "not connected" rather than throw. + */ +export const taskLinearStatusSchema = z + .looseObject({ + connected: salvagedOptional('connected', z.boolean()) + }) + .catch({ connected: undefined }) + +/** + * The three writes whose reply body no call site reads. + * + * `ui.set` is interpreted for its verdict alone and the value discarded + * (use-mobile-tasks-client-settings-actions.tsx:201, setup-hook-trust.ts:49-51); `settings.update` is + * fire-and-forget at five sites and never interpreted; `linear.selectWorkspace` chains the context + * reload off the send without interpreting it. Declaring a member on any of them would be a + * requirement with no reader, and would make a refusal visible for the first time at a site whose + * whole documented behaviour is that it is not. + */ +export const taskPreferenceWriteSchema = z.unknown() diff --git a/mobile/src/tasks/task-source-search-reply-schema.test.ts b/mobile/src/tasks/task-source-search-reply-schema.test.ts new file mode 100644 index 00000000000..1dfd4bc5f1e --- /dev/null +++ b/mobile/src/tasks/task-source-search-reply-schema.test.ts @@ -0,0 +1,206 @@ +import { describe, expect, it } from 'vitest' +import { + taskGitHubWorkItemListSchema, + taskGitLabWorkItemListSchema, + taskLinearIssueListSchema, + taskWorkItemLookupSchema +} from './task-source-search-reply-schema' + +// Pins what each provider read requires and, for every requirement, the drop a row takes when the +// host omits it. The rows here are the corrected fixtures: real GitHubWorkItem / GitLabWorkItem / +// LinearIssue shapes, not the `{ id }` and `{ number, title }` stubs the corpus used to carry. + +const githubRow = { + id: 'issue:1', + type: 'issue', + number: 1, + title: 'one', + state: 'open', + url: '', + labels: [], + updatedAt: '2020-01-01T00:00:00.000Z', + author: null +} + +const linearRow = { + id: 'issue-1', + identifier: 'ENG-1', + title: 'A Linear issue', + url: '', + state: { name: 'Todo', type: 'unstarted', color: '#000' }, + team: { id: 'team-1', key: 'ENG', name: 'Engineering' }, + labels: [], + priority: 0, + updatedAt: '2020-01-01T00:00:00.000Z', + workspaceId: 'linear-workspace' +} + +describe('the provider lists require items, and a row requires its labels', () => { + it('reads the recorded GitHub search row whole', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ items: [githubRow] }) + expect(parsed.success && parsed.data).toMatchObject({ items: [githubRow] }) + }) + + it('reads the recorded GitLab row whole', () => { + const row = { ...githubRow, id: 'issue:2', number: 2, title: 'two', state: 'opened' } + const parsed = taskGitLabWorkItemListSchema.safeParse({ items: [row] }) + expect(parsed.success && parsed.data).toMatchObject({ items: [row] }) + }) + + it('names a list with no items, which the task screen mapped unguarded', () => { + expect(taskGitHubWorkItemListSchema.safeParse({}).success).toBe(false) + expect(taskGitLabWorkItemListSchema.safeParse({ error: { type: 'quota' } }).success).toBe(false) + }) + + it('drops a row with no labels, which both label editors filter unguarded', () => { + const { labels: _labels, ...noLabels } = githubRow + const parsed = taskGitHubWorkItemListSchema.safeParse({ items: [githubRow, noLabels] }) + expect(parsed.success && parsed.data).toMatchObject({ items: [githubRow] }) + }) + + it('drops a row whose labels are not an array, rather than handing filter a string', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ + items: [{ ...githubRow, labels: 'bug' }] + }) + expect(parsed.success && parsed.data).toMatchObject({ items: [] }) + }) + + it('drops a non-string label and keeps the row, because every reader compares it as text', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ + items: [{ ...githubRow, labels: ['bug', 7] }] + }) + expect(parsed.success && parsed.data).toMatchObject({ items: [{ labels: ['bug'] }] }) + }) + + it('keeps items alongside an in-band provider error, as the recorded reply does', () => { + const parsed = taskGitLabWorkItemListSchema.safeParse({ + items: [githubRow], + error: { type: 'not_found', message: 'missing' } + }) + expect(parsed.success && parsed.data).toMatchObject({ + error: { type: 'not_found', message: 'missing' } + }) + }) + + it('passes the source banner members through without typing them', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ + items: [], + sources: { issues: 'upstream' }, + issueSourceFellBack: true + }) + expect(parsed.success && parsed.data).toMatchObject({ + sources: { issues: 'upstream' }, + issueSourceFellBack: true + }) + }) + + it('drops a row that is not an object rather than failing the page', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ items: [githubRow, 'nope'] }) + expect(parsed.success && parsed.data).toMatchObject({ items: [githubRow] }) + }) +}) + +describe('a work-item row preserves author as a tri-state', () => { + it('keeps an explicit null, which the row renders as "no author"', () => { + const parsed = taskGitHubWorkItemListSchema.safeParse({ items: [githubRow] }) + expect(JSON.stringify(parsed)).toContain('"author":null') + }) + + it('keeps absence absent rather than collapsing it to null', () => { + const { author: _author, ...noAuthor } = githubRow + const parsed = taskGitHubWorkItemListSchema.safeParse({ items: [noAuthor] }) + const row = parsed.success ? parsed.data.items[0] : undefined + expect(row && 'author' in row).toBe(false) + }) +}) + +describe('the Linear issue list takes both shapes the picker has always accepted', () => { + it('reads a bare array, which linear.searchIssues answers', () => { + const parsed = taskLinearIssueListSchema.safeParse([linearRow]) + expect(parsed.success && parsed.data).toEqual([linearRow]) + }) + + it('reads an items envelope, which linear.listIssues answers', () => { + const parsed = taskLinearIssueListSchema.safeParse({ items: [linearRow] }) + expect(parsed.success && parsed.data).toEqual([linearRow]) + }) + + it('drops an issue with no id, which nothing could key a row on', () => { + const { id: _id, ...noId } = linearRow + expect(taskLinearIssueListSchema.safeParse([noId])).toMatchObject({ success: true, data: [] }) + }) + + // The four reads createLinearTask and the reviewer sort make with no guard. Each drops its row + // rather than crashing the map, and each drop is the behaviour the fixture correction records. + it('drops an issue with no state, which createLinearTask reads as state.name', () => { + const { state: _state, ...noState } = linearRow + expect(taskLinearIssueListSchema.safeParse([noState])).toMatchObject({ data: [] }) + }) + + it('drops an issue with no team, which createLinearTask reads as team.name', () => { + const { team: _team, ...noTeam } = linearRow + expect(taskLinearIssueListSchema.safeParse([noTeam])).toMatchObject({ data: [] }) + }) + + it('drops an issue whose state carries no name, not just one with no state at all', () => { + const parsed = taskLinearIssueListSchema.safeParse([ + { ...linearRow, state: { type: 'unstarted', color: '#000' } } + ]) + expect(parsed).toMatchObject({ data: [] }) + }) + + it('drops an issue whose team carries no name', () => { + const parsed = taskLinearIssueListSchema.safeParse([ + { ...linearRow, team: { id: 'team-1', key: 'ENG' } } + ]) + expect(parsed).toMatchObject({ data: [] }) + }) + + it('drops an issue with no priority, which would make the reviewer comparator NaN', () => { + const { priority: _priority, ...noPriority } = linearRow + expect(taskLinearIssueListSchema.safeParse([noPriority])).toMatchObject({ data: [] }) + }) + + // Adopting the item half's `linearIssueRowSchema` adds five requirements to this path. Each one + // is non-optional on the host's own `LinearIssue`, and each is rendered by the picker row. + it.each(['identifier', 'title', 'url', 'updatedAt', 'labels'])( + 'drops an issue with no %s, which the host type declares non-optional', + (member) => { + const { [member]: _dropped, ...without } = linearRow + expect(taskLinearIssueListSchema.safeParse([without])).toMatchObject({ data: [] }) + } + ) + + it('keeps the rest of the page when one row drops', () => { + const { state: _state, ...noState } = linearRow + const parsed = taskLinearIssueListSchema.safeParse([linearRow, noState]) + expect(parsed.success && parsed.data).toEqual([linearRow]) + }) + + it('names a payload that is neither shape, where main threw its own copy', () => { + expect(taskLinearIssueListSchema.safeParse({ issues: [] }).success).toBe(false) + expect(taskLinearIssueListSchema.safeParse('nope').success).toBe(false) + expect(taskLinearIssueListSchema.safeParse(null).success).toBe(false) + }) +}) + +describe('a single work-item lookup', () => { + it('keeps the host null for an item that does not resolve', () => { + expect(taskWorkItemLookupSchema.safeParse(null)).toMatchObject({ success: true, data: null }) + }) + + it('reads the corrected lookup row whole', () => { + expect(taskWorkItemLookupSchema.safeParse(githubRow)).toMatchObject({ success: true }) + }) + + // Not a drop: a lookup is one row, not a list, so an unreadable row names the reply instead of + // handing the paste a source whose labels the editor would then filter. + it('names a lookup row with no labels rather than resolving the paste', () => { + const { labels: _labels, ...noLabels } = githubRow + expect(taskWorkItemLookupSchema.safeParse(noLabels).success).toBe(false) + }) + + it('names a payload that is not an item at all', () => { + expect(taskWorkItemLookupSchema.safeParse('twelve').success).toBe(false) + }) +}) diff --git a/mobile/src/tasks/task-source-search-reply-schema.ts b/mobile/src/tasks/task-source-search-reply-schema.ts new file mode 100644 index 00000000000..7392ed2df76 --- /dev/null +++ b/mobile/src/tasks/task-source-search-reply-schema.ts @@ -0,0 +1,116 @@ +import { z } from 'zod' +import { salvagedOptional, salvagingArray } from '../../../src/shared/zod-salvage' +import { linearIssueRowSchema } from './task-item-detail-reply-schema' + +// The Smart workspace-source picker's provider reads: per-repo search, and the single-item lookups +// a pasted link or number resolves to. Checked against +// src/main/runtime/rpc/methods/github-repo-work-item-methods.ts:30-81 (ListWorkItemsResult, whose +// declared invariant is that `items` always carries whatever succeeded), gitlab.ts:40-49 and +// gitlab.ts:180-190, and src/main/runtime/rpc/methods/linear.ts:50-60. +// +// Work-item rows stay thin on identity: `id`, `number`, `title`, `state` and `url` are all read +// through a guard or rendered as text, so typing them is enough and requiring one would drop a row +// for a member no reader can crash on. `labels` is the exception and is required — see below. + +const itemText = (name: string) => salvagedOptional(name, z.string()) +const itemCount = (name: string) => salvagedOptional(name, z.number()) + +/** A provider work-item row, typed but not required. `repoId` is stamped by the caller, never + * read off the reply. */ +const workItemRow = z.looseObject({ + id: itemText('id'), + type: itemText('type'), + number: itemCount('number'), + title: itemText('title'), + state: itemText('state'), + url: itemText('url'), + updatedAt: itemText('updatedAt'), + // Required: both label editors read `item.source.labels.filter(...)` with no guard + // (use-mobile-tasks-hosted-metadata-actions.tsx:154, + // use-mobile-tasks-gitlab-github-status-actions.tsx:107), and `labels: string[]` is non-optional + // on both host types (src/shared/github/work-item-types.ts:23, src/shared/gitlab-types.ts:172). + // A row missing it drops out of the list instead of throwing inside the editor's `onPress`. + labels: salvagingArray(z.string()), + // Tri-state and preserved: GitHubWorkItem/GitLabWorkItem declare `author: string | null`, and + // the row renderer shows an explicit null differently from a host that never reported one. + author: salvagedOptional('author', z.string().nullable()) +}) + +/** + * The GitHub work-item list. + * + * `items` is required. use-mobile-tasks-provider-load-actions.tsx:138 maps it with no guard, and + * the host's own envelope declares the invariant ("`items` always contains whatever succeeded", + * src/shared/github/work-item-types.ts:96) — so an absent `items` is a reply this app cannot read, + * not an empty page. smart-source-search-requests.ts:43 maps the same array. + * + * `sources`, `errors` and `issueSourceFellBack` pass through untyped beyond their container: the + * banner extractors read them member by member with their own guards, and `sources.issues` is a + * bare string in the recorded `tk-provider-load` reply where the shared type declares an + * owner/repo object. + */ +export const taskGitHubWorkItemListSchema = z.looseObject({ + items: salvagingArray(workItemRow), + sources: z.unknown().optional(), + errors: z.unknown().optional(), + issueSourceFellBack: z.unknown().optional() +}) + +/** + * The GitLab work-item list. + * + * `items` is required for the same reason: use-mobile-tasks-task-list-loading.tsx:180 maps it + * unguarded. `error` is the provider's in-band failure and stays optional — both consumers test + * `envelope.error?.type` before reading `.message`, and `tw-smart-search-all-providers` records a + * reply carrying items AND a `not_found` error at once, which the list renders rather than raises. + */ +export const taskGitLabWorkItemListSchema = z.looseObject({ + items: salvagingArray(workItemRow), + error: salvagedOptional( + 'error', + z.looseObject({ type: itemText('type'), message: itemText('message') }) + ) +}) + +/** + * A Linear issue list, in either shape the picker has always accepted. + * + * The host answers a bare array from `linear.searchIssues` and an `{ items }` envelope from + * `linear.listIssues`, and `tasks.smart-source-search` records both. The union replaces the hand + * reader in linear-mobile-issue-read.ts, whose `throw new Error('Unexpected Linear tasks + * response')` reached the screen as its own copy; the same payloads are now named as an + * incompatible `linear.searchIssues` / `linear.listIssues` reply. + * + * The row is `linearIssueRowSchema`, imported rather than declared again: this and the item sheet + * decode the same `LinearIssue` (src/shared/linear/issue-types.ts:3-35), which `linear.searchIssues` + * and `linear.listIssues` return (src/main/runtime/rpc/methods/linear.ts:50-56, + * linear-issue-list-method.ts:5-16). Its nine + * requirements are all non-optional on that type, and two of them are reads that throw here: + * `createLinearTask` reads `issue.state.name` and `issue.team.name` with no guard + * (mobile-tasks-item-mapping.ts:296-297), and `getLinearPriorityRank(issue.priority)` feeds + * `a.priority - b.priority` (mobile-tasks-reviewer-linear.ts:100/:102), where an absent priority makes + * the whole comparator NaN and orders the reviewer list arbitrarily. + * + * An earlier version of this file declared its own row requiring `id` alone, on the grounds that + * the recorded smart-search rows were `{ id: 'issue-1' }`. Those rows were a fixture defect, not + * evidence: no Linear issue the host can build lacks `state` or `team`. The fixtures now carry real + * rows and main's rendering of them is recorded before this requirement lands. + */ +export const taskLinearIssueListSchema = z.union([ + salvagingArray(linearIssueRowSchema), + z.looseObject({ items: salvagingArray(linearIssueRowSchema) }).transform((reply) => reply.items) +]) + +/** + * A single work item, or `null` when the provider has none. + * + * Null is preserved rather than refused: both `github.workItem` and `gitlab.workItemByPath` answer + * it for a number that does not resolve, and every consumer already spells `item ? … : null` + * (smart-source-paste-intent.ts:151/:171/:188). + * + * The row is the same `workItemRow`, with no `iid` extension: neither GitHubWorkItem nor + * GitLabWorkItem declares one, the GitLab consumers all build their `iid` param out of + * `item.source.number` (use-mobile-tasks-gitlab-github-status-actions.tsx:50 and four siblings), + * and the `{ iid: 7 }` the fixture used to record was the same defect as the Linear `{ id }` rows. + */ +export const taskWorkItemLookupSchema = workItemRow.nullable() diff --git a/mobile/src/tasks/use-mobile-tasks-project-detail-loading.tsx b/mobile/src/tasks/use-mobile-tasks-project-detail-loading.tsx index 21ccad359ef..19bbaa7ff99 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-detail-loading.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-detail-loading.tsx @@ -1,11 +1,6 @@ import type { ItemDetailLoadingModel } from './use-mobile-tasks-item-detail-loading' import { useEffect } from './mobile-tasks-dependencies' import { - type DetailComment, - type GitHubAssignableUser, - type GitHubDetailCheck, - type GitHubDetailFile, - type GitHubPRReviewSummary, editableProjectFields, projectFieldDraftValue, projectRowType, @@ -102,39 +97,14 @@ export function useMobileTasksProjectDetailLoading(model: ItemDetailLoadingModel if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectRowDetailRead.interpret(response) as - | { - ok: true - details: { - body?: string - comments?: DetailComment[] - item?: { - labels?: string[] - reviewDecision?: string | null - reviewRequests?: GitHubAssignableUser[] - latestReviews?: GitHubPRReviewSummary[] - } - assignees?: string[] - headSha?: string - baseSha?: string - pullRequestId?: string - checks?: GitHubDetailCheck[] - files?: Array<{ - path: string - oldPath?: string - status?: GitHubDetailFile['status'] - additions?: number - deletions?: number - isBinary?: boolean - viewerViewedState?: 'DISMISSED' | 'VIEWED' | 'UNVIEWED' - }> - } - } - | { ok: false; error: { message: string } } + const result = githubProjectRowDetailRead.interpret(response) if (!result.ok) { throw new Error(result.error.message) } + // The five collections are typed by the same entity schemas the item sheet reads them + // through, so the casts this call site carried are gone. `reviewDecision` is forwarded with + // no coalesce: explicit null and absent are different answers to "has this been reviewed", + // and collapsing either is a product change. setProjectRowDetail({ provider: 'github', body: result.details.body ?? '', diff --git a/mobile/src/tasks/use-mobile-tasks-project-loading-actions.tsx b/mobile/src/tasks/use-mobile-tasks-project-loading-actions.tsx index 5af884d7c99..434764d05d1 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-loading-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-loading-actions.tsx @@ -1,6 +1,5 @@ import type { TaskPaginationActionsModel } from './use-mobile-tasks-task-pagination-actions' import { - type GitHubProjectOwnerType, type GitHubProjectPartialFailure, type GitHubProjectRef, type GitHubProjectSettings, @@ -55,19 +54,14 @@ export function useMobileTasksProjectLoadingActions(model: TaskPaginationActions setGithubProjectError('') setGithubProjectPartialFailures([]) const reply = await githubProjectListRead.request(client, { host: 'github.com' }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectListRead.interpret(reply) as - | { - ok: true - projects: GitHubProjectSummary[] - partialFailures?: GitHubProjectPartialFailure[] - } - | { ok: false; error: { message: string } } + const result = githubProjectListRead.interpret(reply) if (!result.ok) { throw new Error(result.error.message) } - setGithubProjects(result.projects) - setGithubProjectPartialFailures(result.partialFailures ?? []) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires the owner/ownerType/number a project is keyed by plus the `title` the picker search lowercases, and types the rest; `id`, `url` and `source` are declared non-optional by GitHubProjectSummary but absent from the reply main records, so defaulting them here would put bytes in the picker's state the host never sent. + setGithubProjects(result.projects as GitHubProjectSummary[]) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: same shape rule for the per-org banner rows. + setGithubProjectPartialFailures((result.partialFailures ?? []) as GitHubProjectPartialFailure[]) }, [client, connState, tasksSupported]) const loadGitHubProjectViews = useCallback( @@ -81,15 +75,14 @@ export function useMobileTasksProjectLoadingActions(model: TaskPaginationActions ownerType: project.ownerType, projectNumber: project.number }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectViewListRead.interpret(reply) as - | { ok: true; views: GitHubProjectViewSummary[] } - | { ok: false; error: { message: string } } + const result = githubProjectViewListRead.interpret(reply) if (!result.ok) { throw new Error(result.error.message) } - setGithubProjectViews(result.views) - return result.views + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires the `id` a view is selected by and types `number`/`name`/`layout` without requiring them, because a layout arm this build has not heard of must reach the "no supported views" test rather than drop the row. + const views = result.views as GitHubProjectViewSummary[] + setGithubProjectViews(views) + return views }, [client, connState, taskStateHydrated, tasksSupported] ) @@ -121,25 +114,24 @@ export function useMobileTasksProjectLoadingActions(model: TaskPaginationActions }, { timeoutMs: 60_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectViewTableRead.interpret(reply) as - | { ok: true; data: GitHubProjectTable } - | { ok: false; error: { message: string }; totalCount?: number } + const result = githubProjectViewTableRead.interpret(reply) if (!result.ok) { throw new Error(result.error.message) } - setGithubProjectTable(result.data) - setGithubProjectSearch(options.queryOverride ?? result.data.selectedView.filter ?? '') + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires `project.id` and the `selectedView` container the five reads below go through; nothing deeper, because the recorded table carries an empty `rows` and a `project` with no owner, so this corpus has no evidence for a deeper requirement. + const data = result.data as GitHubProjectTable + setGithubProjectTable(data) + setGithubProjectSearch(options.queryOverride ?? data.selectedView.filter ?? '') setGithubProjectViews((current) => - current.some((view) => view.id === result.data.selectedView.id) + current.some((view) => view.id === data.selectedView.id) ? current : [ ...current, { - id: result.data.selectedView.id, - number: result.data.selectedView.number, - name: result.data.selectedView.name, - layout: result.data.selectedView.layout + id: data.selectedView.id, + number: data.selectedView.number, + name: data.selectedView.name, + layout: data.selectedView.layout } ] ) @@ -264,18 +256,7 @@ export function useMobileTasksProjectLoadingActions(model: TaskPaginationActions input, host: githubProjectHost(parsed.host) }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectRefResolve.interpret(reply) as - | { - ok: true - owner: string - ownerType: GitHubProjectOwnerType - number: number - title: string - host?: string - viewNumber?: number - } - | { ok: false; error: { message: string } } + const result = githubProjectRefResolve.interpret(reply) if (!result.ok) { setGithubProjectPasteError(result.error.message) return diff --git a/mobile/src/tasks/use-mobile-tasks-project-metadata-actions.tsx b/mobile/src/tasks/use-mobile-tasks-project-metadata-actions.tsx index 2d628130314..2a89b30b356 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-metadata-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-metadata-actions.tsx @@ -59,11 +59,7 @@ export function useMobileTasksProjectMetadataActions(model: ProjectThreadReplyAc }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectIssueUpdate.interpret(reply) as { - ok?: boolean - error?: { message?: string } - } + const result = githubProjectIssueUpdate.interpret(reply) if (result.ok === false) { throw new Error(result.error?.message ?? 'Failed to update GitHub item') } @@ -182,8 +178,7 @@ export function useMobileTasksProjectMetadataActions(model: ProjectThreadReplyAc { timeoutMs: 30_000 } ) ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = written as { ok?: boolean; error?: { message?: string } } + const result = written if (result.ok === false) { throw new Error(result.error?.message ?? 'Failed to update project field') } @@ -246,11 +241,7 @@ export function useMobileTasksProjectMetadataActions(model: ProjectThreadReplyAc }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectIssueTypeUpdate.interpret(reply) as { - ok?: boolean - error?: { message?: string } - } + const result = githubProjectIssueTypeUpdate.interpret(reply) if (result.ok === false) { throw new Error(result.error?.message ?? 'Failed to update issue type') } diff --git a/mobile/src/tasks/use-mobile-tasks-project-metadata-loading.tsx b/mobile/src/tasks/use-mobile-tasks-project-metadata-loading.tsx index df01eba05a2..55c36f970c7 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-metadata-loading.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-metadata-loading.tsx @@ -1,10 +1,6 @@ import type { ProjectDetailLoadingModel } from './use-mobile-tasks-project-detail-loading' import { useEffect } from './mobile-tasks-dependencies' -import { - type GitHubAssignableUser, - type GitHubIssueType, - splitRepositorySlug -} from './mobile-tasks-legacy-foundation' +import { type GitHubIssueType, splitRepositorySlug } from './mobile-tasks-legacy-foundation' import { githubProjectAssignableUserListRead, githubProjectIssueTypeListRead, @@ -52,10 +48,7 @@ export function useMobileTasksProjectMetadataLoading(model: ProjectDetailLoading if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectLabelListRead.interpret(response) as - | { ok: true; labels?: string[] } - | { ok: false; error?: { message?: string } } + const result = githubProjectLabelListRead.interpret(response) if (!result.ok) { throw new Error(result.error?.message ?? 'Failed to load labels') } @@ -105,10 +98,7 @@ export function useMobileTasksProjectMetadataLoading(model: ProjectDetailLoading if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectAssignableUserListRead.interpret(response) as - | { ok: true; users?: GitHubAssignableUser[] } - | { ok: false; error?: { message?: string } } + const result = githubProjectAssignableUserListRead.interpret(response) if (!result.ok) { throw new Error(result.error?.message ?? 'Failed to load assignees') } @@ -161,14 +151,12 @@ export function useMobileTasksProjectMetadataLoading(model: ProjectDetailLoading if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectIssueTypeListRead.interpret(response) as - | { ok: true; types?: GitHubIssueType[] } - | { ok: false; error?: { message?: string } } + const result = githubProjectIssueTypeListRead.interpret(response) if (!result.ok) { throw new Error(result.error?.message ?? 'Failed to load issue types') } - setProjectIssueTypes(result.types ?? []) + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires the `id` the issue-type write sends and types `name`; `color` and `description` are declared non-nullable by GitHubIssueType but absent from the recorded reply, so requiring them would drop a row main renders. + setProjectIssueTypes((result.types ?? []) as GitHubIssueType[]) }) .catch((err) => { if (!stale) { diff --git a/mobile/src/tasks/use-mobile-tasks-project-repository-resolution.tsx b/mobile/src/tasks/use-mobile-tasks-project-repository-resolution.tsx index f9495ad908f..db74b8eaf0b 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-repository-resolution.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-repository-resolution.tsx @@ -1,10 +1,5 @@ import type { ProjectProjectionModel } from './use-mobile-tasks-project-projection' -import { - type GitHubOwnerRepo, - githubProjectKey, - useEffect, - useMemo -} from './mobile-tasks-dependencies' +import { githubProjectKey, useEffect, useMemo } from './mobile-tasks-dependencies' import { GITHUB_REPO_CONCURRENCY, getGitHubReviewerSeedUsers, @@ -64,8 +59,7 @@ export function useMobileTasksProjectRepositoryResolution(model: ProjectProjecti { repo: `id:${repo.id}` }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectRepoSlugRead.interpret(reply) as GitHubOwnerRepo | null + const result = githubProjectRepoSlugRead.interpret(reply) return { repoId: repo.id, entry: { path: repo.path, repository: result } } } catch { // Cached so readiness settles; `failed` marks it for retry on refresh. diff --git a/mobile/src/tasks/use-mobile-tasks-project-thread-reply-actions.tsx b/mobile/src/tasks/use-mobile-tasks-project-thread-reply-actions.tsx index 8d7928eaa71..a729d3c0e0f 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-thread-reply-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-thread-reply-actions.tsx @@ -56,11 +56,7 @@ export function useMobileTasksProjectThreadReplyActions( }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectCommentDelete.interpret(reply) as { - ok?: boolean - error?: string | { message?: string } - } + const result = githubProjectCommentDelete.interpret(reply) if (result.ok === false) { throw new Error( typeof result.error === 'string' diff --git a/mobile/src/tasks/use-mobile-tasks-project-workspace-comment-actions.tsx b/mobile/src/tasks/use-mobile-tasks-project-workspace-comment-actions.tsx index a71bc23980d..c33d41b33bd 100644 --- a/mobile/src/tasks/use-mobile-tasks-project-workspace-comment-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-project-workspace-comment-actions.tsx @@ -138,8 +138,7 @@ export function useMobileTasksProjectWorkspaceCommentActions(model: WorkspaceCre { timeoutMs: 30_000 } ) ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = updated as { ok?: boolean; error?: { message?: string } } + const result = updated if (result.ok === false) { throw new Error(result.error?.message ?? 'Failed to update GitHub item') } @@ -218,10 +217,7 @@ export function useMobileTasksProjectWorkspaceCommentActions(model: WorkspaceCre }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectCommentWrite.interpret(reply) as - | { ok: true; comment?: DetailComment } - | { ok: false; error?: { message?: string } } + const result = githubProjectCommentWrite.interpret(reply) if (!result.ok) { throw new Error(result.error?.message ?? 'Failed to add comment') } @@ -229,7 +225,8 @@ export function useMobileTasksProjectWorkspaceCommentActions(model: WorkspaceCre if (result.comment) { setProjectRowDetail((current) => current?.provider === 'github' - ? { ...current, comments: [...current.comments, result.comment as DetailComment] } + ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires the comment's `id` and types its body/author/createdAt; the thread renderer owns the rest of the record, and the recorded reply carries `id` as a NUMBER, which DetailComment permits and a narrower requirement would refuse. + { ...current, comments: [...current.comments, result.comment as DetailComment] } : current ) } @@ -268,11 +265,7 @@ export function useMobileTasksProjectWorkspaceCommentActions(model: WorkspaceCre }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = githubProjectCommentUpdate.interpret(reply) as { - ok?: boolean - error?: string | { message?: string } - } + const result = githubProjectCommentUpdate.interpret(reply) if (result.ok === false) { throw new Error( typeof result.error === 'string' diff --git a/mobile/src/tasks/use-mobile-tasks-provider-load-actions.tsx b/mobile/src/tasks/use-mobile-tasks-provider-load-actions.tsx index 43051210c31..c0adfa1d4c2 100644 --- a/mobile/src/tasks/use-mobile-tasks-provider-load-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-provider-load-actions.tsx @@ -124,7 +124,7 @@ export function useMobileTasksProviderLoadActions(model: RuntimeHydrationModel) // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: `before` is the undeclared key described above; every other field matches the schema. pageParams as RpcSendParams<'github.listWorkItems'> ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires `items` and each row's `labels`, and types the other eight (`id`, `type`, `number`, `title`, `state`, `url`, `updatedAt`, `author`). Two gaps keep the cast: the salvaged members type as `T | undefined` where GitHubWorkItem declares them required, and `sources`/`errors`/`issueSourceFellBack` are deliberately `z.unknown()` because the two banner extractors below read them member by member with their own guards. const envelope = githubWorkItemSearchRead.interpret(reply) as { items: Array> sources?: GitHubRepoSources diff --git a/mobile/src/tasks/use-mobile-tasks-runtime-hydration.tsx b/mobile/src/tasks/use-mobile-tasks-runtime-hydration.tsx index 2372ea272c9..365b864970f 100644 --- a/mobile/src/tasks/use-mobile-tasks-runtime-hydration.tsx +++ b/mobile/src/tasks/use-mobile-tasks-runtime-hydration.tsx @@ -18,10 +18,8 @@ import { } from './mobile-tasks-dependencies' import { EMPTY_GITHUB_PROJECT_SETTINGS, - type LinearStatusResponse, type RuntimeTaskSettings, type TaskResumeState, - type TaskRuntimeStatus, getTaskPresetQuery, githubKindFromQuery, isTaskProvider, @@ -203,8 +201,7 @@ export function useMobileTasksRuntimeHydration(model: ClientSettingsActionsModel } // The guard stays between the request and the interpretation: a screen that has moved on // must not raise a refusal it no longer owns. - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const status = taskRuntimeStatusRead.interpret(statusReply) as TaskRuntimeStatus + const status = taskRuntimeStatusRead.interpret(statusReply) if (!status.capabilities?.includes(MOBILE_TASKS_CAPABILITY)) { // Why: Tasks is additive RPC surface, so old desktop builds can still // pair but must not receive the newer task-specific method calls. @@ -275,7 +272,7 @@ export function useMobileTasksRuntimeHydration(model: ClientSettingsActionsModel setRuntimeTaskSettings(settings) const uiRead = taskUiStateRead.interpret(uiReply) const uiState = uiRead.accepted - ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema checks the `{ ui }` container and leaves both members `unknown`, because each is forwarded whole and re-read field by field with its own defaults downstream. (uiRead.value as | { taskResumeState?: TaskResumeState @@ -289,15 +286,9 @@ export function useMobileTasksRuntimeHydration(model: ClientSettingsActionsModel setGithubProjectHiddenFieldIdsByView(resume.githubProjectHiddenFieldIdsByView ?? {}) const preflightRead = taskPreflightRead.interpret(preflightReply) - const preflight = preflightRead.accepted - ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (preflightRead.value as { glab?: { installed?: boolean } }) - : null + const preflight = preflightRead.accepted ? preflightRead.value : null const linearRead = taskLinearStatusRead.interpret(linearStatusReply) - const linearStatus = linearRead.accepted - ? // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (linearRead.value as LinearStatusResponse) - : null + const linearStatus = linearRead.accepted ? linearRead.value : null const preferredProviders = normalizeVisibleTaskProviders(settings.visibleTaskProviders) const linearIsConnected = linearStatus?.connected === true const availableProviders = filterAvailableTaskProviders(preferredProviders, { diff --git a/mobile/src/tasks/use-mobile-tasks-task-list-loading.tsx b/mobile/src/tasks/use-mobile-tasks-task-list-loading.tsx index 4b6cec85166..4cb1d90d45d 100644 --- a/mobile/src/tasks/use-mobile-tasks-task-list-loading.tsx +++ b/mobile/src/tasks/use-mobile-tasks-task-list-loading.tsx @@ -3,7 +3,6 @@ import { isHostedTaskRepo, useCallback } from './mobile-tasks-dependencies' import { GITHUB_REPO_CONCURRENCY, GITLAB_PER_PAGE, - type LinearIssue, type GitLabWorkItem, LINEAR_LIMIT, type TaskItem, @@ -169,7 +168,7 @@ export function useMobileTasksTaskListLoading(model: ProviderLoadActionsModel) { perPage: GITLAB_PER_PAGE, query: appliedQuery.trim() || undefined }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires `items` and types each row at `GitLabWorkItem`'s own member types, requiring the ones a consumer reads unguarded; the row builder's own reads are unchanged. const envelope = gitlabWorkItemSearchRead.interpret(reply) as { items: Array> error?: { type?: string; message: string } @@ -225,8 +224,7 @@ export function useMobileTasksTaskListLoading(model: ProviderLoadActionsModel) { workspaceId: selectedLinearWorkspaceId ?? undefined }) ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const issues = found as LinearIssue[] + const issues = found const filtered = selectedLinearTeamIds.size > 0 ? issues.filter((issue) => selectedLinearTeamIds.has(issue.team.id)) diff --git a/mobile/src/tasks/use-mobile-tasks-workspace-and-project-state.tsx b/mobile/src/tasks/use-mobile-tasks-workspace-and-project-state.tsx index 98243128a5f..586e10ad8bd 100644 --- a/mobile/src/tasks/use-mobile-tasks-workspace-and-project-state.tsx +++ b/mobile/src/tasks/use-mobile-tasks-workspace-and-project-state.tsx @@ -1,4 +1,5 @@ import type { RouteAndItemStateModel } from './use-mobile-tasks-route-and-item-state' +import type { WorkspaceSshRecord } from './workspace-ssh-gate' import { type BaseRefSearchResult, type GitHubProjectPartialFailure, @@ -8,7 +9,6 @@ import { type GitHubProjectViewSummary, type PersistedTrustedOrcaHooks, type SparsePreset, - type SshConnectionState, type WorkspaceAgentChoice, useState } from './mobile-tasks-dependencies' @@ -66,7 +66,7 @@ export function useMobileTasksWorkspaceAndProjectState(model: RouteAndItemStateM const [workspaceDetectedAgentIds, setWorkspaceDetectedAgentIds] = useState | null>( null ) - const [workspaceSshState, setWorkspaceSshState] = useState(null) + const [workspaceSshState, setWorkspaceSshState] = useState(null) const [workspaceSshConnecting, setWorkspaceSshConnecting] = useState(false) const [showWorkspaceAgentPicker, setShowWorkspaceAgentPicker] = useState(false) const [showWorkspaceCreateRepoPicker, setShowWorkspaceCreateRepoPicker] = useState(false) diff --git a/mobile/src/tasks/use-mobile-tasks-workspace-create-actions.tsx b/mobile/src/tasks/use-mobile-tasks-workspace-create-actions.tsx index 0cfaa2e3d42..0f0a9dd1993 100644 --- a/mobile/src/tasks/use-mobile-tasks-workspace-create-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-workspace-create-actions.tsx @@ -181,14 +181,12 @@ export function useMobileTasksWorkspaceCreateActions(model: WorkspaceSshStateMod }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = worktreePrBaseResolve.interpret(reply) as - | { baseBranch: string; pushTarget?: GitPushTarget } - | { error: string } + const result = worktreePrBaseResolve.interpret(reply) if ('error' in result) { throw new Error(result.error) } - prStartPoint = result + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the resolved arm requires `baseBranch` and passes the rest of the start point through, because the create params spread the record and the host reads what it recognises. + prStartPoint = result as { baseBranch: string; pushTarget?: GitPushTarget } } params = buildTaskWorkspaceCreateParams({ item, @@ -224,14 +222,12 @@ export function useMobileTasksWorkspaceCreateActions(model: WorkspaceSshStateMod }, { timeoutMs: 30_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = worktreeMrBaseResolve.interpret(reply) as - | { baseBranch: string; pushTarget?: GitPushTarget } - | { error: string } + const result = worktreeMrBaseResolve.interpret(reply) if ('error' in result) { throw new Error(result.error) } - mrStartPoint = result + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: as the PR arm above. + mrStartPoint = result as { baseBranch: string; pushTarget?: GitPushTarget } } params = buildTaskWorkspaceCreateParams({ item, @@ -263,11 +259,7 @@ export function useMobileTasksWorkspaceCreateActions(model: WorkspaceSshStateMod const createReply = await worktreeCreateRun.request(client, params, { timeoutMs: WORKTREE_CREATE_TIMEOUT_MS }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = worktreeCreateRun.interpret(createReply) as { - worktree: { id: string; displayName?: string } - warning?: string - } + const result = worktreeCreateRun.interpret(createReply) setActionItem(null) setWorkspaceCreateDraft(null) setSetupPrompt(null) diff --git a/mobile/src/tasks/use-mobile-tasks-workspace-source-effects.tsx b/mobile/src/tasks/use-mobile-tasks-workspace-source-effects.tsx index ea780216170..54e76eb2ab4 100644 --- a/mobile/src/tasks/use-mobile-tasks-workspace-source-effects.tsx +++ b/mobile/src/tasks/use-mobile-tasks-workspace-source-effects.tsx @@ -1,5 +1,5 @@ import type { WorkspaceCreateProjectionModel } from './use-mobile-tasks-workspace-create-projection' -import { type BaseRefSearchResult, type SparsePreset, useEffect } from './mobile-tasks-dependencies' +import { type SparsePreset, useEffect } from './mobile-tasks-dependencies' import { repoBaseRefSearchRead, repoSparsePresetListRead @@ -54,9 +54,8 @@ export function useMobileTasksWorkspaceSourceEffects(model: WorkspaceCreateProje if (stale) { return } - const presets = - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (repoSparsePresetListRead.interpret(reply) as SparsePreset[] | undefined) ?? [] + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires every member read without a guard (`id`, `name`, `directories`) and drops a row missing one. The cast covers the other three SparsePreset declares non-optional (`repoId`, `createdAt`, `updatedAt`), which the recorded preset does not carry and nothing here reads. + const presets = repoSparsePresetListRead.interpret(reply) as SparsePreset[] setWorkspaceSparsePresets(presets) setWorkspaceSparsePresetsLoaded(true) setWorkspaceSparsePresetId((current) => @@ -124,11 +123,7 @@ export function useMobileTasksWorkspaceSourceEffects(model: WorkspaceCreateProje if (stale) { return } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = repoBaseRefSearchRead.interpret(reply) as { - refDetails?: BaseRefSearchResult[] - refs?: string[] - } + const result = repoBaseRefSearchRead.interpret(reply) setWorkspaceBaseBranchResults( result.refDetails ?? (result.refs ?? []).map((refName) => ({ refName, localBranchName: refName })) diff --git a/mobile/src/tasks/use-mobile-tasks-workspace-sparse-actions.tsx b/mobile/src/tasks/use-mobile-tasks-workspace-sparse-actions.tsx index ef2ecabd4fe..9f2900fdb81 100644 --- a/mobile/src/tasks/use-mobile-tasks-workspace-sparse-actions.tsx +++ b/mobile/src/tasks/use-mobile-tasks-workspace-sparse-actions.tsx @@ -1,10 +1,5 @@ import type { WorkspaceSourceEffectsModel } from './use-mobile-tasks-workspace-source-effects' -import { - type SparsePreset, - type SshConnectionState, - useCallback, - useEffect -} from './mobile-tasks-dependencies' +import { type SparsePreset, useCallback, useEffect } from './mobile-tasks-dependencies' import { sortSparsePresetsByName } from './mobile-tasks-legacy-foundation' import { repoSparsePresetSaveRun, sshRepoStateRead } from './mobile-workspace-source-operations' @@ -89,7 +84,7 @@ export function useMobileTasksWorkspaceSparseActions(model: WorkspaceSourceEffec name: workspaceSparseDraftName, directories: workspaceSparseDraftParsed.directories }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: the schema requires the preset's `id`, `name` and `directories` — everything the drawer sorts, lowercases or joins — and types the rest; `repoId`, `createdAt` and `updatedAt` are declared non-optional by SparsePreset but absent from the recorded preset, so defaulting them here would put numbers in the drawer's state the host never sent. const saved = repoSparsePresetSaveRun.interpret(reply) as SparsePreset | undefined if (!saved) { throw new Error('Failed to save sparse preset.') @@ -135,9 +130,7 @@ export function useMobileTasksWorkspaceSparseActions(model: WorkspaceSourceEffec if (stale) { return } - const state = - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (sshRepoStateRead.interpret(reply) as SshConnectionState | null | undefined) ?? null + const state = sshRepoStateRead.interpret(reply) ?? null setWorkspaceSshState( state ?? { targetId: workspaceCreateTargetConnectionId, diff --git a/mobile/src/tasks/use-mobile-tasks-workspace-ssh-state.tsx b/mobile/src/tasks/use-mobile-tasks-workspace-ssh-state.tsx index 5e0966ca9ba..d88e2f316c7 100644 --- a/mobile/src/tasks/use-mobile-tasks-workspace-ssh-state.tsx +++ b/mobile/src/tasks/use-mobile-tasks-workspace-ssh-state.tsx @@ -1,6 +1,5 @@ import type { WorkspaceSparseActionsModel } from './use-mobile-tasks-workspace-sparse-actions' import { - type SshConnectionState, normalizeSetupHookTrust, pickWorkspaceAgent, resolveWorkspaceAgentSelection, @@ -58,8 +57,7 @@ export function useMobileTasksWorkspaceSshState(model: WorkspaceSparseActionsMod { targetId: workspaceCreateTargetConnectionId }, { timeoutMs: 120_000 } ) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const state = sshRepoConnectRun.interpret(reply) as SshConnectionState | null | undefined + const state = sshRepoConnectRun.interpret(reply) setWorkspaceSshState( state ?? { targetId: workspaceCreateTargetConnectionId, @@ -92,9 +90,7 @@ export function useMobileTasksWorkspaceSshState(model: WorkspaceSparseActionsMod return } const reply = await sshRepoStateRead.request(client, { targetId: repo.connectionId }) - const state = - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - (sshRepoStateRead.interpret(reply) as SshConnectionState | null | undefined) ?? null + const state = sshRepoStateRead.interpret(reply) ?? null if (state) { setWorkspaceSshState(state) } @@ -132,10 +128,7 @@ export function useMobileTasksWorkspaceSshState(model: WorkspaceSparseActionsMod return } const detected = detection.operation.interpret(reply) - setWorkspaceDetectedAgentIds( - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - detected.accepted ? new Set(detected.value as string[]) : new Set() - ) + setWorkspaceDetectedAgentIds(detected.accepted ? new Set(detected.value) : new Set()) }) .catch(() => { if (!stale) { @@ -191,7 +184,7 @@ export function useMobileTasksWorkspaceSshState(model: WorkspaceSparseActionsMod | { kind: 'prompt' command: string - source: string | null + source: string | null | undefined setupTrust?: RepoHooksResponse['setupTrust'] } > => { @@ -199,8 +192,7 @@ export function useMobileTasksWorkspaceSshState(model: WorkspaceSparseActionsMod return { kind: 'decision', decision: override ?? 'inherit' } } const reply = await repoSetupHooksRead.request(client, { repo: `id:${repo.id}` }) - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = repoSetupHooksRead.interpret(reply) as RepoHooksResponse + const result = repoSetupHooksRead.interpret(reply) const setupCommand = result.hooks?.scripts?.setup?.trim() const setupTrust = normalizeSetupHookTrust(result.setupTrust) ?? undefined if (!setupCommand) { diff --git a/mobile/src/tasks/workspace-create-reply-schema.test.ts b/mobile/src/tasks/workspace-create-reply-schema.test.ts new file mode 100644 index 00000000000..ace3e59edd4 --- /dev/null +++ b/mobile/src/tasks/workspace-create-reply-schema.test.ts @@ -0,0 +1,113 @@ +import { describe, expect, it } from 'vitest' +import { + agentLaunchCreateReceiptSchema, + worktreeCreateReceiptSchema, + worktreeHostedBaseSchema +} from './workspace-create-reply-schema' + +// Pins the one requirement on a create receipt, the arm order of the hosted-base union, and the +// two paths that must stay reachable: an empty worktree id and an empty soft-error message. + +describe('the worktree create receipt', () => { + it('reads every recorded create', () => { + for (const result of [ + { worktree: { id: 'wt-1', displayName: 'ORC-1 Recorded issue' } }, + { worktree: { id: 'wt-2' }, warning: 'shallow clone' }, + { worktree: { id: 'repo-1::/w' }, warning: ' startup terminal failed ' } + ]) { + expect(worktreeCreateReceiptSchema.safeParse(result)).toMatchObject({ success: true }) + } + }) + + it('keeps the warning untrimmed, because both readers trim it themselves', () => { + const parsed = worktreeCreateReceiptSchema.safeParse({ + worktree: { id: 'w' }, + warning: ' startup terminal failed ' + }) + expect(parsed.success && parsed.data).toMatchObject({ warning: ' startup terminal failed ' }) + }) + + it('leaves the empty-id arm reachable rather than making it a decode failure', () => { + const parsed = worktreeCreateReceiptSchema.safeParse({ worktree: { id: '' } }) + expect(parsed.success && parsed.data).toMatchObject({ worktree: { id: '' } }) + }) + + it('names a receipt with no worktree record, which routed the phone to /session/undefined', () => { + expect(worktreeCreateReceiptSchema.safeParse({ warning: 'x' }).success).toBe(false) + expect(worktreeCreateReceiptSchema.safeParse({ worktree: {} }).success).toBe(false) + expect(worktreeCreateReceiptSchema.safeParse(null).success).toBe(false) + }) +}) + +describe('the agent.launch receipt', () => { + it('reads the recorded structured receipt whole', () => { + const result = { + outcome: { kind: 'structured', sessionId: 'sess-1', handle: 't-1' }, + worktreeId: 'repo-1::/w', + warning: ' startup terminal failed ', + receipt: { + mode: 'structured', + preferred: 'structured', + reason: 'user_default', + detail: 'Structured session created.' + } + } + expect(agentLaunchCreateReceiptSchema.safeParse(result)).toMatchObject({ + success: true, + data: result + }) + }) + + it('requires nothing under the container, because the reader guards every member', () => { + expect(agentLaunchCreateReceiptSchema.safeParse({}).success).toBe(true) + }) + + it('names a receipt that is not an object at all', () => { + for (const result of [null, 'launched', 7, true]) { + expect(agentLaunchCreateReceiptSchema.safeParse(result).success).toBe(false) + } + }) +}) + +describe('the hosted base resolvers', () => { + it('reads both recorded successes', () => { + expect(worktreeHostedBaseSchema.safeParse({ baseBranch: 'main' }).success).toBe(true) + expect( + worktreeHostedBaseSchema.safeParse({ baseBranch: 'main', compareBaseRef: 'origin/main' }) + .success + ).toBe(true) + }) + + it('takes the error arm first, so a soft failure is never read as a base branch', () => { + const parsed = worktreeHostedBaseSchema.safeParse({ + error: 'pull request not found', + baseBranch: 'main' + }) + expect(parsed.success && parsed.data).toMatchObject({ error: 'pull request not found' }) + }) + + it('keeps an empty soft-error message, which the create replaces with its own copy', () => { + const parsed = worktreeHostedBaseSchema.safeParse({ error: '' }) + expect(parsed.success && parsed.data).toMatchObject({ error: '' }) + }) + + it('forwards the rest of a start point the create spreads into its params', () => { + const parsed = worktreeHostedBaseSchema.safeParse({ + baseBranch: 'main', + pushTarget: { kind: 'fork', remote: 'origin' }, + branchNameOverride: 'pr-12', + maintainerCanModify: false + }) + expect(parsed.success && parsed.data).toMatchObject({ + pushTarget: { kind: 'fork', remote: 'origin' }, + branchNameOverride: 'pr-12', + maintainerCanModify: false + }) + }) + + it('names a reply that is neither arm, where `in` was a TypeError', () => { + expect(worktreeHostedBaseSchema.safeParse({}).success).toBe(false) + expect(worktreeHostedBaseSchema.safeParse('main').success).toBe(false) + expect(worktreeHostedBaseSchema.safeParse(null).success).toBe(false) + }) +}) diff --git a/mobile/src/tasks/workspace-create-reply-schema.ts b/mobile/src/tasks/workspace-create-reply-schema.ts new file mode 100644 index 00000000000..c632bfee083 --- /dev/null +++ b/mobile/src/tasks/workspace-create-reply-schema.ts @@ -0,0 +1,94 @@ +import { z } from 'zod' +import { salvagedOptional } from '../../../src/shared/zod-salvage' + +// Creating a workspace from a task. Checked against src/main/runtime/rpc/methods/worktree.ts:76-208 +// (RuntimeWorktreeCreateResult, and the `GitHubPrStartPoint | { error }` pair the two base +// resolvers answer) and agent-launch.ts (AgentLaunchResult, src/shared/agent-launch-intent.ts:88). + +const createText = (name: string) => salvagedOptional(name, z.string()) + +/** + * A created workspace. + * + * `worktree.id` is the requirement: use-mobile-tasks-workspace-create-actions.tsx:272 routes to + * `/session/${result.worktree.id}` and :266 reads `result.worktree.displayName`, neither guarded, + * so a reply without the record navigated the phone to `/session/undefined`. Every recorded create + * carries it — `tw-create-retry-created`, `tw-create-retry-warning-kept`, + * `settings-task-workspace-create-linear` and its pr-start-point sibling. + * + * `z.string()` and not `.min(1)`: worktree-create-retry.ts:158 rejects an empty id itself and + * answers "Failed to create workspace", and that arm stays reachable rather than becoming a decode + * failure. + * + * `warning` is optional and untrimmed. Both readers trim it themselves (:268 and + * worktree-create-retry.ts:169), and `tw-create-retry-warning-kept` records the host sending + * `" startup terminal failed "` — normalising it here would move that golden. + */ +export const worktreeCreateReceiptSchema = z.looseObject({ + worktree: z.looseObject({ id: z.string(), displayName: createText('displayName') }), + warning: createText('warning') +}) + +/** + * An `agent.launch` receipt for a create. + * + * Nothing under the container is required, because readAgentLaunchCreateOutcome already guards + * every member it reads — `'worktreeId' in result` and a `typeof`/`trim` pair + * (agent-launch-worktree-create.ts:55-:64) — and answers `null` when either fails, which + * worktree-create-retry.ts:123 turns into "Failed to create workspace". That arm is preserved. + * + * What the container adds is the reply main could not name: a string, a number or `null` receipt + * reached the same "Failed to create workspace" copy as a receipt that simply had no id, so a host + * answering the wrong shape was indistinguishable from one that could not create. + * + * `outcome`, `receipt` and `prompt` are `unknown`. The reader is deliberately mode-blind — the + * host has already published and activated the surface before answering — so nothing here branches + * on them and declaring them would be a requirement with no reader. + */ +export const agentLaunchCreateReceiptSchema = z.looseObject({ + worktreeId: createText('worktreeId'), + warning: createText('warning'), + outcome: z.unknown().optional(), + receipt: z.unknown().optional(), + prompt: z.unknown().optional() +}) + +/** + * A linked pull request's or merge request's start point. + * + * A union, because the consumer's own test is `'error' in result` + * (composer-source-base-resolve.ts:36/:65, use-mobile-tasks-workspace-create-actions.tsx:185/:226) + * and `in` on a non-object was a TypeError. The soft-error arm comes first for the same reason + * main's branch does, and it keeps an empty message verbatim — `tw-hosted-base-soft-error` records + * the host answering `{ error: '' }`, which the create surfaces as its own copy. + * + * `baseBranch` is required on the resolved arm: it is the whole point of the call, and every + * recorded success carries it (`tw-hosted-base-resolved`, `settings-task-workspace-create-pr-start- + * point`). Everything beside it is optional and passes through, because the create params spread + * the record and the host reads what it recognises. + */ +export type WorktreeHostedBaseReply = + | { error: string } + | { + baseBranch: string + compareBaseRef?: string + branchNameOverride?: string + headSha?: string + maintainerCanModify?: boolean + pushTarget?: unknown + } + +// Annotated rather than inferred so `'error' in result` narrows at the four call sites: a +// `looseObject`'s index signature puts `error` on both arms as far as the checker is concerned. +// The runtime object still carries every member the host sent, which is what the create spreads. +export const worktreeHostedBaseSchema: z.ZodType = z.union([ + z.looseObject({ error: z.string() }), + z.looseObject({ + baseBranch: z.string(), + compareBaseRef: createText('compareBaseRef'), + branchNameOverride: createText('branchNameOverride'), + headSha: createText('headSha'), + maintainerCanModify: salvagedOptional('maintainerCanModify', z.boolean()), + pushTarget: z.unknown().optional() + }) +]) diff --git a/mobile/src/tasks/workspace-source-reply-schema.test.ts b/mobile/src/tasks/workspace-source-reply-schema.test.ts new file mode 100644 index 00000000000..f4c7237d951 --- /dev/null +++ b/mobile/src/tasks/workspace-source-reply-schema.test.ts @@ -0,0 +1,306 @@ +import { describe, expect, it } from 'vitest' +import type { SshConnectionStatus } from '../../../src/shared/ssh-types' +import { deriveWorkspaceSshGate, workspaceSshStatusLabel } from './workspace-ssh-gate' +import { + detectedAgentIdsSchema, + repoBaseRefSearchSchema, + repoSetupHooksSchema, + repoSparsePresetListSchema, + repoSparsePresetSaveSchema, + sshConnectionStateSchema +} from './workspace-source-reply-schema' + +// Pins the SSH status degrade, the error tri-state beside it, and the preset requirement. + +const connected = { + targetId: 'ssh-1', + status: 'connected', + error: null, + reconnectAttempt: 0 +} + +describe('the SSH connection record', () => { + it('reads the recorded connected state whole', () => { + expect(sshConnectionStateSchema.safeParse({ state: connected })).toMatchObject({ + success: true, + data: connected + }) + }) + + it('keeps the connectionGeneration the file-mutation owner check reads', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { ...connected, connectionGeneration: 3 } + }) + expect(parsed.success && parsed.data).toMatchObject({ connectionGeneration: 3 }) + }) + + it('forwards members no consumer in this domain declares', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { ...connected, providerEpoch: 'epoch-1', remotePlatform: 'linux' } + }) + expect(parsed.success && parsed.data).toMatchObject({ + providerEpoch: 'epoch-1', + remotePlatform: 'linux' + }) + }) + + it('answers undefined for a payload with no state member', () => { + expect(sshConnectionStateSchema.safeParse({})).toMatchObject({ success: true, data: undefined }) + }) + + it('keeps an explicit null state, which the drawer falls back from', () => { + expect(sshConnectionStateSchema.safeParse({ state: null })).toMatchObject({ + success: true, + data: null + }) + }) +}) + +describe('status is an open enum that degrades to disconnected', () => { + // Keyed by SshConnectionStatus so the compiler, not this list, decides what "every arm" means: + // an arm added to or removed from the host union fails tsc here before any test runs. That is + // the check the schema's own arm list cannot make about itself. + const HOST_ARMS: Record = { + disconnected: true, + connecting: true, + 'auth-failed': true, + 'deploying-relay': true, + connected: true, + reconnecting: true, + 'reconnection-failed': true, + error: true + } + + it('takes every arm the host declares, so nothing it sends today degrades', () => { + for (const status of Object.keys(HOST_ARMS)) { + const parsed = sshConnectionStateSchema.safeParse({ state: { ...connected, status } }) + expect(parsed.success && parsed.data).toMatchObject({ status }) + } + }) + + it('degrades an arm it has never heard of, keeping the record and the Connect affordance', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { ...connected, status: 'handshaking-v2' } + }) + expect(parsed.success && parsed.data).toMatchObject({ + targetId: 'ssh-1', + status: 'disconnected' + }) + }) + + it('never degrades a newer arm to connected', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { ...connected, status: 'whatever' } + }) + expect(parsed.success ? parsed.data?.status : 'unparsed').not.toBe('connected') + }) + + it('stays fatal for a non-string status, which is the wrong type and not a newer arm', () => { + const parsed = sshConnectionStateSchema.safeParse({ state: { ...connected, status: 7 } }) + expect(parsed.success && parsed.data).toBeUndefined() + }) +}) + +// The degrade above is only allowed because it is invisible to every reader. Main passed an arm it +// did not know straight through as a string; these pin that the degraded value reaches the same +// verdict, so a newer host's arm renders what main rendered. +describe('the degrade is inert at the gate that reads status', () => { + // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: models the status arm a newer host sends, which is precisely what SshConnectionStatus cannot express: the union names every arm this build knows, so the value under test has to enter as one the compiler would reject. + const newerArm = 'handshaking-v2' as SshConnectionStatus + + it('labels a newer arm and the degraded value identically', () => { + expect(workspaceSshStatusLabel('disconnected')).toBe('Disconnected') + expect(workspaceSshStatusLabel(newerArm)).toBe(workspaceSshStatusLabel('disconnected')) + }) + + it('gates a newer arm and the degraded value identically', () => { + const gateArgs = { connectionId: 'ssh-1', connecting: false } + const asMainSawIt = deriveWorkspaceSshGate({ + ...gateArgs, + state: { ...connected, status: newerArm, error: null } + }) + const parsed = sshConnectionStateSchema.safeParse({ state: { ...connected, status: newerArm } }) + const afterDegrade = deriveWorkspaceSshGate({ + ...gateArgs, + state: parsed.success ? (parsed.data ?? null) : null + }) + expect(afterDegrade.requiresConnection).toBe(asMainSawIt.requiresConnection) + expect(afterDegrade.connectInProgress).toBe(asMainSawIt.connectInProgress) + expect(afterDegrade.error).toBe(asMainSawIt.error) + expect(workspaceSshStatusLabel(afterDegrade.status)).toBe( + workspaceSshStatusLabel(asMainSawIt.status) + ) + }) +}) + +describe('error is a tri-state the drawer renders', () => { + it('keeps an explicit null', () => { + const parsed = sshConnectionStateSchema.safeParse({ state: connected }) + expect(parsed.success ? parsed.data?.error : 'unparsed').toBeNull() + }) + + it('keeps the host message', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { ...connected, status: 'error', error: 'auth failed' } + }) + expect(parsed.success && parsed.data).toMatchObject({ error: 'auth failed' }) + }) + + it('keeps a record that omits error, because no reader needs it', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { targetId: 'ssh-1', status: 'auth-failed', reconnectAttempt: 0 } + }) + expect(parsed.success && parsed.data).toMatchObject({ status: 'auth-failed' }) + }) +}) + +// The record is a salvagedOptional, so any fatal member drops the WHOLE record, and the connect +// path's fallback for a dropped record is `fallbackSshState(connectionId, 'connected', null)`. +// Requiring a member nothing reads would therefore turn a partial reply into a connected drawer. +describe('a partial record survives with the status it came with', () => { + it('keeps a record that omits reconnectAttempt, which nothing reads', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { targetId: 'ssh-1', status: 'auth-failed', error: 'bad key' } + }) + expect(parsed.success && parsed.data).toMatchObject({ + targetId: 'ssh-1', + status: 'auth-failed', + error: 'bad key' + }) + }) + + it('never lets a partial record reach the gate as connected', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { targetId: 'ssh-1', status: 'auth-failed', error: 'bad key' } + }) + const gate = deriveWorkspaceSshGate({ + connectionId: 'ssh-1', + connecting: false, + state: parsed.success ? (parsed.data ?? null) : null + }) + expect(gate.status).toBe('auth-failed') + expect(gate.requiresConnection).toBe(true) + }) + + it('still drops the record for a member the gate does read', () => { + const parsed = sshConnectionStateSchema.safeParse({ + state: { status: 'connected', error: null, reconnectAttempt: 0 } + }) + expect(parsed.success && parsed.data).toBeUndefined() + }) +}) + +describe('a sparse preset requires what the drawer sorts and joins', () => { + const preset = { id: 'p1', name: 'docs', directories: ['docs'] } + + it('reads the recorded preset whole', () => { + expect(repoSparsePresetListSchema.safeParse({ presets: [preset] })).toMatchObject({ + success: true, + data: [preset] + }) + }) + + it('drops a preset with no name, which the list sorts with localeCompare', () => { + const { name: _name, ...noName } = preset + const parsed = repoSparsePresetListSchema.safeParse({ presets: [preset, noName] }) + expect(parsed.success && parsed.data).toEqual([preset]) + }) + + it('drops a preset with no directories, which the picker joins', () => { + const { directories: _directories, ...noDirectories } = preset + const parsed = repoSparsePresetListSchema.safeParse({ presets: [preset, noDirectories] }) + expect(parsed.success && parsed.data).toEqual([preset]) + }) + + it('drops a non-string directory and keeps the preset', () => { + const parsed = repoSparsePresetListSchema.safeParse({ + presets: [{ ...preset, directories: ['docs', 7] }] + }) + expect(parsed.success && parsed.data).toEqual([preset]) + }) +}) + +describe('detected agent ids', () => { + it('reads the recorded probe answers', () => { + expect(detectedAgentIdsSchema.safeParse(['codex', 'claude'])).toMatchObject({ + success: true, + data: ['codex', 'claude'] + }) + }) + + it('drops a non-string id, which no agent comparison could have matched', () => { + expect(detectedAgentIdsSchema.safeParse(['codex', 7])).toMatchObject({ data: ['codex'] }) + }) + + it('names a payload the drawer would have built a Set from', () => { + expect(detectedAgentIdsSchema.safeParse(7).success).toBe(false) + expect(detectedAgentIdsSchema.safeParse({ agents: [] }).success).toBe(false) + }) +}) + +describe('the orca.yaml hooks require nothing', () => { + it('reads the recorded reply for a repo with no setup script and no source', () => { + expect(repoSetupHooksSchema.safeParse({ hooks: { scripts: {} } }).success).toBe(true) + }) + + it('reads the recorded reply with an explicit null setupTrust', () => { + const parsed = repoSetupHooksSchema.safeParse({ + hooks: { scripts: { setup: 'pnpm install' } }, + source: 'repo', + setupRunPolicy: 'ask', + setupTrust: null + }) + expect(parsed.success && parsed.data).toMatchObject({ setupTrust: null }) + }) + + it('keeps a setupRunPolicy this build has never heard of on the skip arm', () => { + const parsed = repoSetupHooksSchema.safeParse({ setupRunPolicy: 'prompt-twice' }) + expect(parsed.success && parsed.data).toMatchObject({ setupRunPolicy: 'prompt-twice' }) + }) + + it('keeps the untrimmed setup script the recorded reply carries', () => { + const parsed = repoSetupHooksSchema.safeParse({ hooks: { scripts: { setup: ' pnpm i ' } } }) + expect(parsed.success && parsed.data).toMatchObject({ + hooks: { scripts: { setup: ' pnpm i ' } } + }) + }) +}) + +describe('sparse presets', () => { + it('reads the recorded preset, which carries no repoId or timestamps', () => { + const parsed = repoSparsePresetListSchema.safeParse({ + presets: [{ id: 'p1', name: 'docs', directories: ['docs'] }] + }) + expect(parsed.success && parsed.data).toEqual([ + { id: 'p1', name: 'docs', directories: ['docs'] } + ]) + }) + + it('drops a preset with no id, which the picker could not select', () => { + const parsed = repoSparsePresetListSchema.safeParse({ presets: [{ name: 'docs' }] }) + expect(parsed.success && parsed.data).toEqual([]) + }) + + it('keeps the save path that answers no preset at all', () => { + expect(repoSparsePresetSaveSchema.safeParse({})).toMatchObject({ + success: true, + data: undefined + }) + }) +}) + +describe('base-ref search requires neither member', () => { + it('reads both recorded shapes', () => { + expect(repoBaseRefSearchSchema.safeParse({ refs: ['main'] }).success).toBe(true) + expect( + repoBaseRefSearchSchema.safeParse({ + refDetails: [{ refName: 'origin/main', localBranchName: 'main' }] + }).success + ).toBe(true) + }) + + it('drops a non-string ref rather than rendering it as a branch row', () => { + const parsed = repoBaseRefSearchSchema.safeParse({ refs: ['main', 7] }) + expect(parsed.success && parsed.data).toMatchObject({ refs: ['main'] }) + }) +}) diff --git a/mobile/src/tasks/workspace-source-reply-schema.ts b/mobile/src/tasks/workspace-source-reply-schema.ts new file mode 100644 index 00000000000..93e80eb0f64 --- /dev/null +++ b/mobile/src/tasks/workspace-source-reply-schema.ts @@ -0,0 +1,205 @@ +import { z } from 'zod' +import { openEnum, salvagedOptional, salvagingArray } from '../../../src/shared/zod-salvage' + +// The repo and SSH reads the workspace-create drawer runs. Checked against +// src/main/runtime/rpc/methods/ssh.ts:30-46 (getPublicSshState, SshConnectionState in +// src/shared/ssh-types.ts:187), src/main/runtime/rpc/methods/preflight.ts:22-30 (both agent probes +// answer a bare `string[]`), and repo.ts:87-103/:184-192 (the sparse preset envelopes, the ref +// search and the orca.yaml hooks). + +const SSH_CONNECTION_STATUS = [ + 'disconnected', + 'connecting', + 'auth-failed', + 'deploying-relay', + 'connected', + 'reconnecting', + 'reconnection-failed', + 'error' +] as const + +const sourceText = (name: string) => salvagedOptional(name, z.string()) + +/** + * The SSH connection record, answered under a `state` member by both `ssh.connect` and + * `ssh.getState`. + * + * Only `targetId` and `status` are required, and only those two are read: the gate matches + * `state.targetId` against the repo's connection id and tests `state.status` + * (workspace-ssh-gate.ts:58-60). `error` is read as `matchingState?.error ?? null` (:65), already + * guarded and null-collapsed, and nothing anywhere reads `reconnectAttempt`. + * + * They are optional rather than required BECAUSE nothing reads them. `state` is a + * `salvagedOptional`, so one bad member drops the whole record, and the connect path's fallback for + * a dropped record is `fallbackSshState(connectionId, 'connected', null)` + * (use-new-workspace-execution-target.ts:126) — a reply of + * `{ targetId, status: 'auth-failed', error: 'bad key' }` with `reconnectAttempt` omitted would + * show the drawer as CONNECTED. Requiring a member no reader touches converts a partial record into + * the most dangerous verdict this schema can reach, so the two unread members degrade individually + * and the record survives with the status it came with. + * + * `status` is an OPEN enum whose eight arms are SshConnectionStatus verbatim, arm for arm + * (src/shared/ssh-types.ts:167-175), so nothing the current host can send degrades at all. It is a + * wire surface (remote-wire-compatibility.md rule 4), so an arm a newer host adds must not refuse + * the record or drop it; it degrades to `'disconnected'`. + * + * That degrade is allowed only because it is invisible to every reader of `status`. Main passed an + * unknown arm through as a raw string, and the one function that turns it into text, + * workspaceSshStatusLabel, falls through to `return 'Disconnected'` (workspace-ssh-gate.ts:50) — + * the same label the degraded value produces. isWorkspaceSshConnectInProgress (:24-:26) answers false + * for both, the readiness gate is an equality test against `'connected'` + * (use-mobile-tasks-workspace-ssh-state.tsx:88/:97, use-new-workspace-execution-target.ts:50) + * which both fail, and `error` is read off the record untouched. The parity is pinned in + * workspace-source-reply-schema.test.ts rather than argued here. + * + * The whole member stays nullable and optional because that is what the two call sites read: + * `state ?? fallback…` at use-new-workspace-execution-target.ts:66 and :126. + * + * `providerEpoch`, `supportsFolderDownload` and `remotePlatform` are NOT declared. No mobile code + * reads any of the three; the file-mutation owner check asks ssh.getState through a reader of its + * own (src/files/mobile-file-ownership-operations.ts:24), not this one. The loose object forwards + * them verbatim either way. Listing a member ahead of its reader is how a schema starts refusing + * replies no consumer would have noticed. + */ +export const sshConnectionStateSchema = z + .looseObject({ + state: salvagedOptional( + 'state', + z + .looseObject({ + targetId: z.string(), + status: openEnum(SSH_CONNECTION_STATUS, 'disconnected'), + error: salvagedOptional('error', z.string().nullable()), + reconnectAttempt: salvagedOptional('reconnectAttempt', z.number()), + connectionGeneration: salvagedOptional('connectionGeneration', z.number()) + }) + .nullable() + ) + }) + .transform((reply) => reply.state) + +/** + * The agent ids a host reports, local or remote. + * + * A bare array of strings, which is what both handlers return. The drawer builds a `Set` from it + * (use-mobile-tasks-workspace-ssh-state.tsx:131, use-new-workspace-execution-target.ts:99), so a + * non-iterable payload was a TypeError inside a `.then` and a number reply was a silent + * `Set { 7 }` that matched no agent. A non-string element drops rather than failing the probe: + * every reader compares the id to a known agent, so a dropped element and a kept non-string agree + * on every verdict, and the drop is the one that says so in the salvage report. + */ +export const detectedAgentIdsSchema = salvagingArray(z.string()) + +/** + * The repo's orca.yaml hooks. + * + * Nothing is required. use-mobile-tasks-workspace-ssh-state.tsx:196 spells + * `result.hooks?.scripts?.setup?.trim()`, :204 defaults `setupRunPolicy`, and + * `normalizeSetupHookTrust` rejects a `setupTrust` without both members — and the recorded + * `tw-workspace-ssh-not-ready` reply is `{ hooks: { scripts: {} } }` with no `source` and no + * policy at all, so a requirement on either would refuse a reply main handled. `setupTrust` is + * nullable because `components-setup-ask` records an explicit `null` there. + * + * `setupRunPolicy` stays a plain string. :205 tests it against `'ask'` and :209 against + * `'run-by-default'`, so an unknown policy already lands on the `skip` arm; closing the set would + * drop it to the schema's fallback instead and change which arm a newer host reaches. + */ +export const repoSetupHooksSchema = z.looseObject({ + hooks: salvagedOptional( + 'hooks', + z + .looseObject({ + scripts: salvagedOptional('scripts', z.looseObject({ setup: sourceText('setup') })) + }) + .nullable() + ), + source: salvagedOptional('source', z.string().nullable()), + setupRunPolicy: sourceText('setupRunPolicy'), + setupTrust: salvagedOptional( + 'setupTrust', + z + .looseObject({ + contentHash: sourceText('contentHash'), + scriptContent: sourceText('scriptContent') + }) + .nullable() + ) +}) + +/** + * One saved sparse-checkout preset. + * + * `id`, `name` and `directories` are required, and all three are read with no guard: + * `id` selects and dedupes (use-mobile-tasks-workspace-sparse-actions.tsx:93/:98), `name` is sorted + * with `left.name.localeCompare(right.name)` (mobile-tasks-project-workspace-types.ts:127) and + * lowercased in the drawer (use-mobile-tasks-workspace-create-projection.tsx:118), and + * `directories` is joined twice (mobile-tasks-workspace-option-pickers.tsx:171, + * use-mobile-tasks-workspace-sparse-actions.tsx:60). All three are non-optional on SparsePreset + * (src/shared/worktree/create-types.ts:82-89) and all three are in the recorded preset. A row + * missing one drops out of the list instead of throwing inside a `useMemo`. + * + * The sort is worth naming: `Array.prototype.sort` skips the comparator on a one-element array, so + * a single bad preset renders fine and two do not. + * + * `repoId`, `createdAt` and `updatedAt` are declared non-optional by SparsePreset but absent from + * the recorded preset (`tw-workspace-source-presets`, + * `{ id: 'p1', name: 'docs', directories: ['docs'] }`), so they are typed and optional — + * defaulting them would put numbers in the drawer's recorded state that main never had. + */ +const sparsePreset = z.looseObject({ + id: z.string(), + name: z.string(), + directories: salvagingArray(z.string()), + repoId: sourceText('repoId'), + createdAt: salvagedOptional('createdAt', z.number()), + updatedAt: salvagedOptional('updatedAt', z.number()) +}) + +/** + * The preset list, answered under `presets`. Required, because + * use-mobile-tasks-workspace-source-effects.tsx:62 reads `presets.some(...)` off whatever the + * member read answered. + * + * What a refusal does here is worth stating plainly, because "reports the named error" overstates + * it: the error goes to `setWorkspaceSparsePresetsError`, whose value is destructured as + * `_workspaceSparsePresetsError` (use-mobile-tasks-workspace-and-project-state.tsx:57) and read by + * nobody, on this branch and on main alike. The only visible effect is `presetsLoaded` staying + * false, which disables "New preset" (mobile-tasks-workspace-option-pickers.tsx:190/:194) and both + * draft entry points (use-mobile-tasks-workspace-sparse-actions.tsx:34/:51). Main set + * `presetsLoaded: true` over an empty list and let the user create one. No shipped host reaches + * that state: `repo.sparsePresets` has no refusal arm and answers + * `{ presets: await runtime.listSparsePresets(...) }` unconditionally + * (src/main/runtime/rpc/methods/repo.ts:87-91). + */ +export const repoSparsePresetListSchema = z + .looseObject({ presets: salvagingArray(sparsePreset) }) + .transform((reply) => reply.presets) + +/** + * The preset a save answers with. + * + * Optional, and deliberately: `tw-workspace-sparse-missing-preset` records the host answering + * `{}`, which main turned into its own "Failed to save sparse preset." error. That path is kept. + */ +export const repoSparsePresetSaveSchema = z + .looseObject({ preset: salvagedOptional('preset', sparsePreset) }) + .transform((reply) => reply.preset) + +/** + * Base-branch search. + * + * Neither member is required: both call sites spell the same + * `refDetails ?? refs.map(…)` fallback (use-mobile-tasks-workspace-source-effects.tsx:128, + * smart-source-search-requests.ts:108), and the two recorded replies carry one member each — + * `{ refs: [...] }` in `tw-workspace-source-presets` and `{ refDetails: [...] }` in + * `tw-smart-search-gitlab-provider-error`. The fallback stays at the call sites, where it was; + * what the schema adds is that a `refs` full of numbers no longer reaches the picker as rows + * whose `refName` renders as a number. + */ +export const repoBaseRefSearchSchema = z.looseObject({ + refs: salvagedOptional('refs', salvagingArray(z.string())), + refDetails: salvagedOptional( + 'refDetails', + salvagingArray(z.looseObject({ refName: z.string(), localBranchName: z.string() })) + ) +}) diff --git a/mobile/src/tasks/workspace-ssh-gate.ts b/mobile/src/tasks/workspace-ssh-gate.ts index db9464c4f4c..f031ed5fd5b 100644 --- a/mobile/src/tasks/workspace-ssh-gate.ts +++ b/mobile/src/tasks/workspace-ssh-gate.ts @@ -1,5 +1,19 @@ import type { SshConnectionState, SshConnectionStatus } from '../../../src/shared/ssh-types' +/** + * What mobile stores for an SSH connection. + * + * SshConnectionState with the two members no mobile reader touches left optional. The host always + * sends them (public-ssh-state.ts:8 writes `error` explicitly and `reconnectAttempt` has been on + * the type since #590), so this widens nothing on the wire; it exists so a reply that omits one + * keeps its `status` instead of dropping the whole record into the connect path's `'connected'` + * fallback. + */ +export type WorkspaceSshRecord = Omit & { + error?: string | null + reconnectAttempt?: number +} + export type WorkspaceSshGate = { status: SshConnectionStatus | null requiresConnection: boolean @@ -38,7 +52,7 @@ export function workspaceSshStatusLabel(status: SshConnectionStatus | null): str export function deriveWorkspaceSshGate(args: { connectionId: string | null - state: SshConnectionState | null + state: WorkspaceSshRecord | null connecting: boolean }): WorkspaceSshGate { const matchingState = diff --git a/mobile/src/tasks/worktree-create-capability.ts b/mobile/src/tasks/worktree-create-capability.ts index f3787728975..636cb9a4832 100644 --- a/mobile/src/tasks/worktree-create-capability.ts +++ b/mobile/src/tasks/worktree-create-capability.ts @@ -51,11 +51,7 @@ export async function readNewWorktreeRuntimeCapabilities( if (!status.accepted) { return UNSUPPORTED_CAPABILITIES } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const result = status.value as { - capabilities?: string[] - worktreeCreateIdempotency?: unknown - } + const result = status.value const capabilities = result.capabilities ?? [] const supportsIdempotency = capabilities.includes( MOBILE_WORKTREE_CREATE_IDEMPOTENCY_CAPABILITY diff --git a/mobile/src/tasks/worktree-create-retry.ts b/mobile/src/tasks/worktree-create-retry.ts index b1c52b5f796..19c2b79ead0 100644 --- a/mobile/src/tasks/worktree-create-retry.ts +++ b/mobile/src/tasks/worktree-create-retry.ts @@ -177,16 +177,15 @@ function readCreateResult( const operation = launch.replay ? agentLaunchReplayRun : agentLaunchRun return readAgentLaunchCreateOutcome(operation.interpret(response)) } - // oxlint-disable-next-line typescript/consistent-type-assertions -- SAFETY: Preserve the established response shape at this boundary. - const created = worktreeCreateRun.interpret(response) as { - worktree?: { id?: unknown; displayName?: unknown } - warning?: unknown - } | null - const worktreeId = created?.worktree?.id - if (typeof worktreeId !== 'string' || !worktreeId) { + const created = worktreeCreateRun.interpret(response) + // The empty-id arm stays reachable: the schema types `worktree.id` as a string without a minimum + // length, so a host answering `''` still reports "Failed to create workspace" rather than + // reading as an unreadable reply. + const worktreeId = created.worktree.id + if (!worktreeId) { return null } - const displayName = created?.worktree?.displayName + const displayName = created.worktree.displayName // Why: a create can succeed with the startup terminal failing (pty exhaustion); dropping // `warning` here is what lands the phone on an unexplained empty session. const warning = typeof created?.warning === 'string' ? created.warning.trim() : '' diff --git a/mobile/src/test-support/rpc-recording/adapters/task-workspace-sender-mount-adapters.ts b/mobile/src/test-support/rpc-recording/adapters/task-workspace-sender-mount-adapters.ts index 65830bd11c3..e0abd3d5822 100644 --- a/mobile/src/test-support/rpc-recording/adapters/task-workspace-sender-mount-adapters.ts +++ b/mobile/src/test-support/rpc-recording/adapters/task-workspace-sender-mount-adapters.ts @@ -30,6 +30,14 @@ export function taskWorkspaceSenderMountAdapters( worktreeCreateIdempotency: Promise.resolve( args.idempotency === false ? false : { dedupeTtlMs: 60_000 } ), + // The launch route is a create-time decision the caller has already settled, so the + // scenario turns it on rather than naming an agent: which agent is picked changes only + // the params, and the arm that matters is `agent.launch` instead of `worktree.create`. + // `replay: false` keeps the recorded method `agent.launch`; the replay-required route + // is a different method and would need its own scenario. + ...(args.agentLaunch === true + ? { agentLaunch: { agent: 'codex' as const, supported: { replay: false } } } + : {}), ...(args.maxAttempts === undefined ? {} : { maxAttempts: Number(args.maxAttempts) }), mintMutationId: () => `mutation-${++minted}` }).then((value: unknown) => { 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 81b4b59d84d..8b2843bed62 100644 --- a/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts +++ b/mobile/src/test-support/rpc-recording/mutants/operation-mutations.ts @@ -26,14 +26,18 @@ export const OPERATION_MUTATIONS = { `, 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. + // Re-anchored where step 7 moved the defence. The b2 seed's defect is a null result envelope + // reaching the metadata sheet, and the call-site guard it used to be injected at can no longer + // see one: the checked reader refuses the envelope first. So the anchor is the schema, and + // loosening it to `z.unknown()` puts the null back on the path to `result.ok` — which is main's + // own property-read TypeError, and a different visible error from the reply the reader names. acceptance: { - file: 'use-mobile-tasks-project-metadata-actions.tsx', - before: `if (result.ok === false) { - throw new Error(result.error?.message ?? 'Failed to update GitHub item')`, - after: `if (result?.ok === false) { - throw new Error(result.error?.message ?? 'Failed to update GitHub item')` + file: 'task-project-board-reply-schema.ts', + before: `export const taskProjectMutationStatusSchema = z.looseObject({ + ok: optionalOk, + error: optionalProjectError +})`, + after: `export const taskProjectMutationStatusSchema = z.unknown()` }, // Interprets inside the request chain instead of at the declared barrier, so the issue leg // rejects the group early and the sibling comment request is abandoned out of order. Re-anchored diff --git a/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts b/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts index 4c0909b91aa..d3e5c9d12aa 100644 --- a/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts +++ b/mobile/src/test-support/rpc-recording/pilot-recordings.test.ts @@ -42,8 +42,12 @@ describe('RPC main recordings', () => { expect(visibleState(recording)).toEqual({ files: ['third.ts'] }) } if (id === 'b2') { + // The shipped null result is still the seed, and the screen still reports an error the + // user can see. What moved in step 7 is the sentence: the checked reader names the reply + // and the method, where main read `.ok` off null and showed V8's property-read text. expect(visibleState(recording)).toMatchObject({ - error: "Cannot read properties of null (reading 'ok')" + error: + 'The host sent a reply this app could not read (github.project.updateIssueBySlug)' }) } if (id === 'b3') { diff --git a/mobile/src/transport/unchecked-rpc-reader-boundary.test.ts b/mobile/src/transport/unchecked-rpc-reader-boundary.test.ts index 83263af629e..da07d8dd9c1 100644 --- a/mobile/src/transport/unchecked-rpc-reader-boundary.test.ts +++ b/mobile/src/transport/unchecked-rpc-reader-boundary.test.ts @@ -130,12 +130,13 @@ describe('unchecked RPC reader boundary', () => { }) it('scans a plausible number of files', () => { - // A broken root or extension filter would make every check below vacuously pass. The floor on - // the offender count comes down with the list, so a successful migration step does not fail it: - // step 7's notifications/components/terminal/transport/home/worktree/browser batch took the - // list from 29 files to 16 and this floor from 20 to 10. + // A broken root or extension filter would make every check below vacuously pass. The file floor + // is safe to hold at a constant; an offender-count floor is not, because the list counts down to + // zero. Main's batch took it from 29 files to 16 and its floor from 20 to 10; this batch reaches + // 8, below that floor. Against the list instead, the check survives every step of the countdown: + // a filter that scanned nothing reports 0 against a list naming 8. expect(scanned.length).toBeGreaterThan(400) - expect(observed.size).toBeGreaterThan(10) + expect(observed.size).toBe(inventory.length) }) it('lists each file once', () => { diff --git a/mobile/src/transport/unchecked-rpc-reader-inventory.ts b/mobile/src/transport/unchecked-rpc-reader-inventory.ts index b35b02e6357..edcc1417694 100644 --- a/mobile/src/transport/unchecked-rpc-reader-inventory.ts +++ b/mobile/src/transport/unchecked-rpc-reader-inventory.ts @@ -54,13 +54,5 @@ export const UNCHECKED_RPC_READERS: readonly UncheckedRpcReaderEntry[] = [ { file: 'src/files/mobile-file-preview-operations.ts', readers: 6 }, { file: 'src/files/mobile-file-tab-doc-operations.ts', readers: 3 }, // host-screen - { file: 'src/host-screen/host-screen-operations.ts', readers: 8 }, - // tasks - { file: 'src/tasks/mobile-task-project-board-operations.ts', readers: 17 }, - { file: 'src/tasks/mobile-task-runtime-operations.ts', readers: 7 }, - { file: 'src/tasks/mobile-task-source-search-operations.ts', readers: 7 }, - // #19850 brought the fifth (`agent-launch-receipt`): mobile's create routes through agent.launch - // when the host advertises it, and that reply is re-typed exactly as the four beside it are. - { file: 'src/tasks/mobile-workspace-create-operations.ts', readers: 5 }, - { file: 'src/tasks/mobile-workspace-source-operations.ts', readers: 7 } + { file: 'src/host-screen/host-screen-operations.ts', readers: 8 } ]