Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"esbuild": "0.28.0",
"esbuild-wasm": "0.28.0",
"picocolors": "1.1.1",
"resend": "6.12.0"
"resend": "6.12.2"
},
"pkg": {
"scripts": [
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/domains/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const getDomainCommand = new Command('get')
'after',
buildHelpText({
output:
' Full domain object including records array and current status.\n\nDomain status values: not_started | pending | verified | failed | temporary_failure',
' Full domain object including records array and current status.\n\nDomain status values: not_started | pending | verified | failed | partially_verified | partially_failed',
errorCodes: ['auth_error', 'fetch_error'],
examples: [
'resend domains get 4dd369bc-aa82-4ff3-97de-514ae3000ee0',
Expand Down
4 changes: 4 additions & 0 deletions src/commands/domains/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ export function statusIndicator(status: string): string {
return '⏳ Pending';
case 'not_started':
return '○ Not started';
case 'partially_verified':
return '◐ Partially verified';
case 'partially_failed':
return '◐ Partially failed';
case 'failed':
case 'temporary_failure':
return '✗ Failed';
Expand Down