@bigbinary/neeto-integrations-frontend 2.10.1 → 2.10.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-integrations-frontend",
3
- "version": "2.10.1",
3
+ "version": "2.10.3",
4
4
  "description": "UI for integrations in neeto products",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-integrations-nano",
package/types.d.ts CHANGED
@@ -94,11 +94,14 @@ interface DailyProps {
94
94
  isOnboarding?: boolean;
95
95
  helpDocUrl: string;
96
96
  videoUrl?: string;
97
+ description?: string;
97
98
  onConnect: (...args: any[]) => any;
98
99
  onDisconnect: (...args: any[]) => any;
99
100
  }
100
101
 
101
102
  interface ZoomProps {
103
+ connectUrl?: string;
104
+ description?: string;
102
105
  onDisconnect: (...args: any[]) => any;
103
106
  }
104
107