Skip to content

Commit

Permalink
Add HTTP streaming notification option
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimvh committed May 24, 2024
1 parent a315867 commit 7fc1732
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/data/choices/Notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ export const NOTIFICATIONS = {
{ value: 'all', label: 'WebSockets & WebHooks' },
{ value: 'websockets', label: 'WebSockets' },
{ value: 'webhooks', label: 'WebHooks' },
{ value: 'streaming-http', label: 'Streaming HTTP' },
{ value: 'legacy-websockets', label: 'Legacy WebSockets' },
{ value: 'new-old-websockets', label: 'Current & Legacy WebSockets' },
{ value: 'disabled', label: 'Disabled' }
],
default: 'all',
} as const satisfies Choice<'all' | 'websockets' | 'webhooks' | 'legacy-websockets' | 'new-old-websockets' | 'disabled'>;
} as const satisfies Choice<'all' | 'websockets' | 'webhooks' | 'streaming-http' | 'legacy-websockets' | 'new-old-websockets' | 'disabled'>;

0 comments on commit 7fc1732

Please sign in to comment.