@grouparoo/core
Version:
The Grouparoo Core
34 lines (31 loc) • 649 B
JavaScript
module.exports = async function getConfig() {
return [
{
id: "mod_profiles",
class: "Model",
name: "Profiles",
type: "profile",
},
{
id: "mailchimp",
name: "Mailchimp App",
class: "App",
type: "test-plugin-app",
options: {
fileId: "test-file-path.db",
},
},
{
id: "mailchimp", // duplicate ID
name: "Mailchimp Destination",
class: "Destination",
type: "test-plugin-export",
appId: "mailchimp",
modelId: "mod_profiles",
syncMode: "sync",
options: {
table: "other-file-path.db",
},
},
];
};