@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/types.d.ts CHANGED
@@ -83,7 +83,15 @@ interface DisconnectAlertProps {
83
83
  }
84
84
  interface TwilioProps {
85
85
  onClose: (...args: any[]) => any;
86
- useConnect: (...args: any[]) => any;
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>;