Retrieves an array of data for all external applications.
Example
fin.desktop.System.getAllExternalApplications(externalApps => {
    externalApps.forEach(appInfo => {
        console.log(`External app connected to the runtime with UUID ${appInfo.uuid}`);
    });
});