feat(cli): port functions delete & download - #5527
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7e342884e8
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
e96342f to
439d1da
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 439d1da30e
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a261cde204
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: e19a43151a
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
## TL;DR ports `supabase functions delete` and `supabase functions download` to native ts. ## What’s introduced adds native delete and download flows using the management api while preserving compatibility and existing output behavior & integration coverage around it! ## ref: - closes CLI-1319 will introduce `supabase functions deploy` as a followup :)
…ll (review: CLI-1963) Go's downloadOne bolds the slug on the "Downloading function:" progress line (utils.Bold, download.go:219); the new native Docker-unbundle path wrote the plain slug with no styling. Adds an optional styleEmphasis hook to DownloadDockerRuntimeDependencies (defaulting to identity, mirroring deploy.ts's DeployFunctionsDependencies.styleEmphasis) and wires the legacy handler to inject legacyBold, keeping next isolated from legacy/-specific rendering. downloadSingle's server-side path has the identical unstyled-slug gap, but it predates this PR (#5527) rather than being introduced here, so it's left as-is.

TL;DR
ports
supabase functions deleteandsupabase functions downloadto native ts.What’s introduced
adds native delete and download flows using the management api
while preserving compatibility and existing output behavior
& integration coverage around it!
ref:
will introduce
supabase functions deployas a followup :)