-
Notifications
You must be signed in to change notification settings - Fork 0
fix(types): regenera Supabase types, conserta busca global e elimina type-drift (486→9) #428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6f81818
fix(types): corrige type-drift latente em simulação, quotes, auth e MFA
claude b7d8672
fix(ci): repara seller-scope gate e erro HTTP do useAIRecommendations
claude d5e3b8f
fix(supabase): decodifica config.toml e deno.json (base64 corrompido)
claude 4eaa200
fix(types): regenera Supabase types — remove identificadores duplicados
claude 9e8fa0e
fix(search): conserta feature de busca global (contrato quebrado)
claude f20f844
fix(types): elimina type-drift em massa pós-regeneração de schema (48…
claude 7dd8c1d
chore(lint): prefixa param não usado loader em AppRoutes.transition.test
claude ed55b35
merge: reconcilia branch com commits obsoletos do PR #364 (já squash-…
claude abdcfc0
merge: resolve conflitos com main — pega versão main para hooks/lib c…
TIPROMO ff4c459
fix(naming): renomeia _acquireCrmSlot/_releaseCrmSlot → sem underscor…
TIPROMO 04ce764
merge: resolve conflito final em types.ts — pega versão main (SSOT ge…
TIPROMO File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adicionar estado da etapa
kitsnostepReadypara evitar desalinhamento do stepper.Após incluir
id: 'kits',STEPSfica com 9 etapas, mas o arraystepReadycontinua com 8 posições (Line 267-277). Isso desloca o readiness demedia/contente deixa a última etapa sem estado, causando regressão visual/funcional no fluxo.💡 Ajuste sugerido
const stepReady = useMemo( () => [ Boolean(formValues.supplier_id && formValues.sku && formValues.name), Boolean((formValues.sale_price ?? 0) > 0), Boolean(formValues.packing_type), Boolean(formValues.ncm_code || formValues.ean), isEdit && !!productId, true, + true, // kits images.length > 0 || Boolean(formValues.video_url), Boolean(formValues.meta_title || formValues.meta_description || formValues.key_benefits), ], [formValues, images.length, isEdit, productId], );🤖 Prompt for AI Agents