@wacht/jsx 1.0.0-beta.41 → 1.0.0-beta.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -525,9 +525,9 @@ declare interface NotificationItemProps {
525
525
  }
526
526
 
527
527
  export declare interface NotificationMessage {
528
- id: number;
529
- user_id: number;
530
- deployment_id: number;
528
+ id: string;
529
+ user_id: string;
530
+ deployment_id: string;
531
531
  title: string;
532
532
  body: string;
533
533
  severity: string;
@@ -1255,8 +1255,8 @@ export declare function useNotificationStream({ enabled, channels, organizationI
1255
1255
  export declare interface UseNotificationStreamOptions {
1256
1256
  enabled?: boolean;
1257
1257
  channels?: string[];
1258
- organizationIds?: number[];
1259
- workspaceIds?: number[];
1258
+ organizationIds?: string[];
1259
+ workspaceIds?: string[];
1260
1260
  onNotification?: (notification: NotificationMessage) => void;
1261
1261
  onError?: (error: string) => void;
1262
1262
  reconnectDelay?: number;
@@ -1704,7 +1704,7 @@ declare type VerificationParams = EmailOTPVerificationParams | PhoneOTPVerificat
1704
1704
 
1705
1705
  export declare interface WaitlistEntry {
1706
1706
  id: string;
1707
- deployment_id: number;
1707
+ deployment_id: string;
1708
1708
  email_address: string;
1709
1709
  first_name: string;
1710
1710
  last_name: string;