UNPKG

cluedin-widget

Version:

This is the project for creating and managing widgets in CluedIn.

134 lines (133 loc) 4.11 kB
import formatHelper from './../format'; module.exports = { important: [ { either: [ { display: 'Location', key: 'location', value: 'property-user.location' }, { display: 'Location', key: 'location', value: 'property-organization.address.city' } ] }, { either: [ { display: 'Website', key: 'website', value: 'property-Website' }, { display: 'Website', key: 'website', value: 'property-twitter.user.url' }, { display: 'Website', key: 'website', value: 'property-zendesk.organization.domainNames' }, { display: 'Website', key: 'website', value: 'property-organization.website' } ] }, { display: 'Industry', key: 'industry', value: 'property-organization.industry' }, { display: 'Number of Employees', key: 'nbemployee', value: "property-organization.employeeCount", format: formatHelper.formatNumberAbbreviation } ], all: [ { display: 'Shipping Street', value: 'property-ShippingStreet', key: 'shippingstreet' }, { display: 'Billing Street', value: 'property-BillingStreet', key: 'billingstreet' }, { display: 'Billing State', value: 'property-BillingState', key: 'billingstate' }, { display: 'Phone Number', value: 'property-person.phoneNumber', key: 'phonenumber' }, { display: 'Fax', value: 'property-Fax', key: 'fax', category: 'phone' }, { display: 'Account Number', key: 'accountnumber', value: 'property-AccountNumber' }, { display: 'Number Twitter Followers', key: 'twitter-friendscount', value: 'property-twitter.user.friendsCount' }, { display: 'Number Twitter Following', key: 'twitter-followerscount', value: 'property-twitter.user.followersCount' }, { display: 'Total Number Tweets', key: 'twitter-statusescount', value: 'property-twitter.user.statusesCount' }, { display: 'Total Number Tweet Favorites', key: 'twitter-favoritescount', value: 'property-twitter.user.favoritesCount' }, { display: 'Is verified?', key: 'twitter-userverified', value: 'property-twitter.user.verified' }, { dipslay: 'Is Test Account', key: 'istestaccount', value: 'property-zendesk.organization.custom-is_test_account', format: formatHelper.YesOrNo }, { display: 'Notes', key: 'note', value: 'property-zendesk.organization.notes' }, { display: 'Clean status', key: 'cleanstatus', value: 'property-CleanStatus' }, { display: 'Is Deleted?', key: 'isdeleted', value: 'property-IsDeleted' }, { display: 'Ownership', key: 'ownership', value: 'property-Ownership' }, { display: 'Sic', key: 'sic', value: 'property-Sic' }, { display: 'Symbol', key: 'tickersymbol', value: 'property-TickerSymbol' }, { display: 'Type', key: 'type', value: 'property-Type' } ] };