@bigbinary/neeto-integrations-frontend 2.5.2 → 2.6.0
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/Daily.cjs.js +628 -0
- package/dist/Daily.cjs.js.map +1 -0
- package/dist/Daily.js +597 -0
- package/dist/Daily.js.map +1 -0
- package/dist/Twilio.cjs.js +385 -77
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js +386 -81
- package/dist/Twilio.js.map +1 -1
- package/dist/index.cjs.js +386 -94
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +384 -92
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +21 -0
- package/types.d.ts +10 -1
package/types.d.ts
CHANGED
|
@@ -83,7 +83,15 @@ interface DisconnectAlertProps {
|
|
|
83
83
|
}
|
|
84
84
|
interface TwilioProps {
|
|
85
85
|
onClose: (...args: any[]) => any;
|
|
86
|
-
|
|
86
|
+
onConnect: (...args: any[]) => any;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
interface DailyProps {
|
|
90
|
+
isOnboarding?: boolean;
|
|
91
|
+
helpDocUrl: string;
|
|
92
|
+
videoUrl?: string;
|
|
93
|
+
onConnect: (...args: any[]) => any;
|
|
94
|
+
onDisconnect: (...args: any[]) => any;
|
|
87
95
|
}
|
|
88
96
|
|
|
89
97
|
export const Card: React.FC<CardProps>;
|
|
@@ -94,3 +102,4 @@ export const Demo: React.FC<DemoProps>;
|
|
|
94
102
|
export const WalkthroughModal: React.FC<WalkthroughModalProps>;
|
|
95
103
|
export const DisconnectAlert: React.FC<DisconnectAlertProps>;
|
|
96
104
|
export const Twilio: React.FC<TwilioProps>;
|
|
105
|
+
export const Daily: React.FC<DailyProps>;
|