@bigbinary/neeto-integrations-frontend 2.6.0 → 2.7.1

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.6.0",
3
+ "version": "2.7.1",
4
4
  "description": "UI for integrations in neeto products",
5
5
  "author": "Abhijith Sheheer",
6
6
  "license": "UNLICENSED",
@@ -76,7 +76,7 @@
76
76
  },
77
77
  "daily": {
78
78
  "title": "Daily.co",
79
- "description": "Include daily.co links in your meetings booked using {{appName}}.",
79
+ "description": "Include daily.co links in your meetings booked using {{appName, anyCase}}.",
80
80
  "apiKey": "API key",
81
81
  "helpDoc": "<externalLink>See instructions</externalLink> on getting the API key",
82
82
  "yourApiKey": "You are connected to Daily.co with this API key: {{apiKey, anyCase}}",
@@ -91,6 +91,16 @@
91
91
  "integrations": {
92
92
  "dailyco": "Daily Co"
93
93
  }
94
+ },
95
+ "zoom": {
96
+ "title": "Zoom",
97
+ "description": "Include Zoom video links in your meetings booked using {{appName, anyCase}}.",
98
+ "connected": "You are connected to Zoom.",
99
+ "account": "Your connected email is: {{email}}",
100
+ "disconnect": {
101
+ "title": "Disconnect Zoom integration?",
102
+ "message": "This action will disconnect Zoom integration."
103
+ }
94
104
  }
95
105
  }
96
106
  }
package/types.d.ts CHANGED
@@ -94,6 +94,10 @@ interface DailyProps {
94
94
  onDisconnect: (...args: any[]) => any;
95
95
  }
96
96
 
97
+ interface ZoomProps {
98
+ onDisconnect: (...args: any[]) => any;
99
+ }
100
+
97
101
  export const Card: React.FC<CardProps>;
98
102
  export const Modal: React.FC<ModalProps>;
99
103
  export const Connect: React.FC<ConnectProps>;
@@ -103,3 +107,4 @@ export const WalkthroughModal: React.FC<WalkthroughModalProps>;
103
107
  export const DisconnectAlert: React.FC<DisconnectAlertProps>;
104
108
  export const Twilio: React.FC<TwilioProps>;
105
109
  export const Daily: React.FC<DailyProps>;
110
+ export const Zoom: React.FC<ZoomProps>;