Initial commit

This commit is contained in:
2023-08-29 19:55:48 +02:00
commit 7c2eec4446
473 changed files with 40947 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
exports.__esModule = true;
module.exports = {
name: 'Zoom',
description: 'Control basic Zoom functionality on the Undecked computer or via our Zoom-Bridge application.',
main: require('./zoom'),
actions: [
{
id: 'startStopVideo',
name: 'Start/Stop Video'
},
{
id: 'muteUnmuteAudio',
name: 'Mute/Unmute My Audio'
},
{
id: 'startStopScreenshare',
name: 'Start/Stop Screen Sharing'
},
{
id: 'enterExitFullscreen',
name: 'Enter/Exit Full Screen Mode'
},
{
id: 'switchToSpeakerView',
name: 'Switch to Speaker View'
},
{
id: 'switchToGalleryView',
name: 'Switch to Gallery View'
},
{
id: 'muteEveryoneExceptSelf',
name: 'Mute/Unmute Audio for Everyone Except Self (Host Only)'
},
{
id: 'screenshot',
name: 'Screenshot'
}
],
connections: [
{
name: 'Zoom-Bridge',
type: 'zoom-bridge',
message: "This connection requires the 'Undecked Zoom Bridge' tool to be running on the same machine as Zoom. This tool allows Undecked to control various Zoom features over the network.",
link: {
address: 'http://www.morphix.productions',
title: 'Get the Zoom Bridge'
},
fields: [
{ id: 'ip', name: 'IP Address', type: 'text' },
{ id: 'port', name: 'Port', type: 'number', value: 9191 }
]
}
]
};
//# sourceMappingURL=integration.js.map