@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.cjs.js +768 -788
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.es.js +6744 -6801
- package/dist/index.es.js.map +1 -1
- package/package.json +2 -2
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:
|
|
529
|
-
user_id:
|
|
530
|
-
deployment_id:
|
|
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?:
|
|
1259
|
-
workspaceIds?:
|
|
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:
|
|
1707
|
+
deployment_id: string;
|
|
1708
1708
|
email_address: string;
|
|
1709
1709
|
first_name: string;
|
|
1710
1710
|
last_name: string;
|