@realtimexsco/live-chat 1.5.4 → 1.5.6
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/firebase-messaging-sw.js +37 -32
- package/dist/index.cjs +991 -570
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +993 -572
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/PERMISSIONS.md +0 -445
package/dist/index.d.mts
CHANGED
|
@@ -1921,10 +1921,10 @@ type AdminFeatureKey = "audioCall" | "videoCall" | "pushNotification" | "blockUs
|
|
|
1921
1921
|
*/
|
|
1922
1922
|
declare function useAdminFeatureGate(feature: AdminFeatureKey): CallFeatureGate;
|
|
1923
1923
|
|
|
1924
|
-
declare const CallOverlay: () => React__default.
|
|
1924
|
+
declare const CallOverlay: () => React__default.JSX.Element | null;
|
|
1925
1925
|
|
|
1926
1926
|
interface IncomingCallDialogProps {
|
|
1927
|
-
/** Looped while the dialog is open. Omit
|
|
1927
|
+
/** Looped while the dialog is open. Omit to use the built-in default ring tone. */
|
|
1928
1928
|
ringtoneUrl?: string;
|
|
1929
1929
|
}
|
|
1930
1930
|
declare const IncomingCallDialog: ({ ringtoneUrl }: IncomingCallDialogProps) => React__default.JSX.Element | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1921,10 +1921,10 @@ type AdminFeatureKey = "audioCall" | "videoCall" | "pushNotification" | "blockUs
|
|
|
1921
1921
|
*/
|
|
1922
1922
|
declare function useAdminFeatureGate(feature: AdminFeatureKey): CallFeatureGate;
|
|
1923
1923
|
|
|
1924
|
-
declare const CallOverlay: () => React__default.
|
|
1924
|
+
declare const CallOverlay: () => React__default.JSX.Element | null;
|
|
1925
1925
|
|
|
1926
1926
|
interface IncomingCallDialogProps {
|
|
1927
|
-
/** Looped while the dialog is open. Omit
|
|
1927
|
+
/** Looped while the dialog is open. Omit to use the built-in default ring tone. */
|
|
1928
1928
|
ringtoneUrl?: string;
|
|
1929
1929
|
}
|
|
1930
1930
|
declare const IncomingCallDialog: ({ ringtoneUrl }: IncomingCallDialogProps) => React__default.JSX.Element | null;
|