@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/dist/Daily.cjs.js +40 -39
- package/dist/Daily.cjs.js.map +1 -1
- package/dist/Daily.js +42 -41
- package/dist/Daily.js.map +1 -1
- package/dist/Twilio.cjs.js +2 -1
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js +2 -1
- package/dist/Twilio.js.map +1 -1
- package/dist/Zoom.cjs.js +713 -0
- package/dist/Zoom.cjs.js.map +1 -0
- package/dist/Zoom.js +682 -0
- package/dist/Zoom.js.map +1 -0
- package/dist/index.cjs.js +91 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +91 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +11 -1
- package/types.d.ts +5 -0
package/package.json
CHANGED
package/src/translations/en.json
CHANGED
|
@@ -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>;
|