cluedin-widget
Version:
This is the project for creating and managing widgets in CluedIn.
101 lines (100 loc) • 3.3 kB
JavaScript
import formatHelper from './../format';
module.exports = {
important: [],
all: [
{
either: [ {
display: 'App Name',
value: 'property-podio.Config.Name'
}, {
display: 'App Name',
value: 'property-Name'
} ]
}, {
display: 'Description',
value: 'property-podio.Config.Description'
}, {
display: 'Usage',
value: 'property-podio.Config.Usage'
}, {
display: 'Item Name',
value: 'property-podio.application.urlLabel'
}, {
either: [
{
display: 'Add Item',
value: 'property-podio.application.linkAdd'
},
{
display: 'Add Item',
value: 'property-podio.application.urlAdd'
}
]
}, {
display: 'Allow Attachments?',
value: 'property-podio.Config.AllowAttachments',
format: formatHelper.YesOrNo
}, {
display: 'Allow Comments??',
value: 'property-podio.Config.AllowComments',
format: formatHelper.YesOrNo
}, {
display: 'Allow Creation?',
value: 'property-podio.Config.AllowCreate',
format: formatHelper.YesOrNo
}, {
display: 'Allow Edition?',
value: 'property-podio.Config.AllowEdit',
format: formatHelper.YesOrNo
}, {
display: 'Status',
value: 'property-podio.application.status'
}, {
display: 'Add Url',
value: 'property-podio.application.urlAdd',
format: formatHelper.YesOrNo
}, {
display: 'Is Approved?',
value: 'property-podio.Config.Approved'
}, 'property-podio.Config.DefaultView', {
display: 'Is Installed',
value: 'property-Installed',
format: formatHelper.YesOrNo
}, {
display: 'Support Create?',
value: 'property-SupportsCreate',
format: formatHelper.YesOrNo
}, {
display: 'Support Import?',
value: 'property-SupportsImport',
format: formatHelper.YesOrNo
}, {
display: 'Suppoert Multi Open?',
value: 'property-SupportsMultiOpen',
format: formatHelper.YesOrNo
}, {
display: 'Support Offline Create?',
value: 'property-SupportsOfflineCreate',
format: formatHelper.YesOrNo
}, {
display: 'Used by default?',
value: 'property-UseByDefault',
format: formatHelper.YesOrNo
}, {
display: 'Create Info Folder Template',
value: 'property-CreateInFolderTemplate'
}, {
display: 'Create Url',
value: 'property-CreateUrl'
}, {
display: 'Object Type',
value: "property-ObjectType"
}, {
display: 'Open Url Template',
value: 'property-OpenUrlTemplate'
}, {
display: 'Product Url',
value: 'property-ProductUrl'
}
]
};