chore: refresh store codegen snapshot - #5
Merged
Conversation
JOY (JOY)
force-pushed
the
codex/store-codegen-drift-fix
branch
from
July 30, 2026 08:48
6c9f080 to
c34ae6f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What it solves
Resolves the scheduled Store Codegen Drift failure from https://github.com/DOS/Safe-Wallet/actions/runs/30521140143.
The staging CGW schema added OIDC authenticator enrollment support, while the committed Store schema and generated RTK Query client remained stale. The workflow also attempted to create a GitHub issue even though Issues are disabled for this repository.
How this PR fixes it
enrollauthorization parameter and MFA authenticator query types and hooks.ENABLE_DRIFT_ISSUESis explicitly enabled.How to test it
yarn workspace @safe-global/store build:dev yarn workspace @safe-global/store type-check yarn workspace @safe-global/store lint yarn workspace @safe-global/store prettier yarn workspace @safe-global/store test --runInBandLocal results:
yarn verify:changedpassed but reported no eligible changed web files.Affected flows
Blast radius
packages/storeis shared by web and mobile.Risks / not checked
Visual summary
flowchart LR A[Staging CGW OpenAPI schema] --> B[Store build dev] B --> C[Committed schema] B --> D[Generated auth client] B --> E[Schema hash] C --> F{Git diff clean} D --> F E --> F F -->|Yes| G[Workflow passes] F -->|No| H[Workflow fails] H --> I[GitHub Actions job summary] H --> J[Issues API only when enabled]Checklist
CLA signature
With the submission of this Pull Request, I confirm that I have read and agree to the terms of the Contributor License Agreement.