@bigbinary/neeto-integrations-frontend 2.5.3 → 2.7.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 +629 -0
- package/dist/Daily.cjs.js.map +1 -0
- package/dist/Daily.js +598 -0
- package/dist/Daily.js.map +1 -0
- package/dist/Twilio.cjs.js +364 -56
- package/dist/Twilio.cjs.js.map +1 -1
- package/dist/Twilio.js +365 -60
- package/dist/Twilio.js.map +1 -1
- package/dist/Zoom.cjs.js +708 -0
- package/dist/Zoom.cjs.js.map +1 -0
- package/dist/Zoom.js +677 -0
- package/dist/Zoom.js.map +1 -0
- package/dist/index.cjs.js +445 -73
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +442 -71
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +31 -0
- package/types.d.ts +14 -0
package/src/translations/en.json
CHANGED
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
"phNo": "Phone number",
|
|
15
15
|
"saveChanges": "Save changes"
|
|
16
16
|
},
|
|
17
|
+
"errors": {
|
|
18
|
+
"required": "{{entity}} is required"
|
|
19
|
+
},
|
|
17
20
|
"tags": {
|
|
18
21
|
"connected": "Connected",
|
|
19
22
|
"expired": "Expired"
|
|
@@ -70,6 +73,34 @@
|
|
|
70
73
|
},
|
|
71
74
|
"steps": {
|
|
72
75
|
"configure": "Configure"
|
|
76
|
+
},
|
|
77
|
+
"daily": {
|
|
78
|
+
"title": "Daily.co",
|
|
79
|
+
"description": "Include daily.co links in your meetings booked using {{appName, anyCase}}.",
|
|
80
|
+
"apiKey": "API key",
|
|
81
|
+
"helpDoc": "<externalLink>See instructions</externalLink> on getting the API key",
|
|
82
|
+
"yourApiKey": "You are connected to Daily.co with this API key: {{apiKey, anyCase}}",
|
|
83
|
+
"connected": "You are connected to Daily.co.",
|
|
84
|
+
"disconnect": {
|
|
85
|
+
"title": "Disconnect Daily.co integration?",
|
|
86
|
+
"message": "This action will disconnect Daily.co integration."
|
|
87
|
+
},
|
|
88
|
+
"walkthroughText": "Check how it behaves"
|
|
89
|
+
},
|
|
90
|
+
"browserTitles": {
|
|
91
|
+
"integrations": {
|
|
92
|
+
"dailyco": "Daily Co"
|
|
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
|
+
}
|
|
73
104
|
}
|
|
74
105
|
}
|
|
75
106
|
}
|
package/types.d.ts
CHANGED
|
@@ -86,6 +86,18 @@ interface TwilioProps {
|
|
|
86
86
|
onConnect: (...args: any[]) => any;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
interface DailyProps {
|
|
90
|
+
isOnboarding?: boolean;
|
|
91
|
+
helpDocUrl: string;
|
|
92
|
+
videoUrl?: string;
|
|
93
|
+
onConnect: (...args: any[]) => any;
|
|
94
|
+
onDisconnect: (...args: any[]) => any;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
interface ZoomProps {
|
|
98
|
+
onDisconnect: (...args: any[]) => any;
|
|
99
|
+
}
|
|
100
|
+
|
|
89
101
|
export const Card: React.FC<CardProps>;
|
|
90
102
|
export const Modal: React.FC<ModalProps>;
|
|
91
103
|
export const Connect: React.FC<ConnectProps>;
|
|
@@ -94,3 +106,5 @@ export const Demo: React.FC<DemoProps>;
|
|
|
94
106
|
export const WalkthroughModal: React.FC<WalkthroughModalProps>;
|
|
95
107
|
export const DisconnectAlert: React.FC<DisconnectAlertProps>;
|
|
96
108
|
export const Twilio: React.FC<TwilioProps>;
|
|
109
|
+
export const Daily: React.FC<DailyProps>;
|
|
110
|
+
export const Zoom: React.FC<ZoomProps>;
|