Adopt new Fizzy SDK/API commands and card filtering#129
Draft
Adopt new Fizzy SDK/API commands and card filtering#129
Conversation
Review carefully before merging. Consider a major version bump. |
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.
Summary
card list --columnto server-side filtering while keeping the existing command shapeIncluded
fizzy card list --column <id|maybe|not-now|done>now filters server-sidefizzy activity listfizzy board accesses --board <id>fizzy webhook deliveries --board <id> <webhook_id>fizzy user export-create <user_id>fizzy user export-show <user_id> <export_id>fizzy user email-change-request <user_id> --email <email>fizzy user email-change-confirm <user_id> <token>Testing
go test ./...make surface-checkmake checkNotes
UPDATE.mdintentionally not includedgo.mod/go.sumchanges were intentionally left out pending the SDK PR stateSummary by cubic
Adopted new Fizzy SDK endpoints for activity, board access, webhook delivery, and user data/email commands. Moved card column filtering to the server for faster, accurate results without changing CLI syntax.
New Features
fizzy activity list [--board ID] [--creator ID] [--page|--all]fizzy board accesses --board ID [--page]fizzy webhook deliveries --board ID WEBHOOK_ID [--page|--all]fizzy user export-create USER_IDandfizzy user export-show USER_ID EXPORT_IDfizzy user email-change-request USER_ID --email EMAILandfizzy user email-change-confirm USER_ID TOKENRefactors
fizzy card list --columnnow filters server-side; supports real column IDs and pseudo-columns (maybe→ indexed_by=maybe,not-now/not_now→ not_now,done→ closed, plustriage→ maybe) with the same flags; no--all/--pageworkaround needed--indexed-byoptions (addsmaybe); email-change flow covered by unit tests onlyWritten for commit fcce893. Summary will update on new commits.