Update seeds to take currency and link type into account

This commit is contained in:
Charles Bochet
2023-11-17 12:01:56 +01:00
parent 454f893eea
commit e19e7a816f
8 changed files with 51 additions and 23 deletions

View File

@ -71,7 +71,8 @@ const companyMetadata = {
name: 'linkedinLink',
label: 'Linkedin',
targetColumnMap: {
value: 'linkedinLink',
label: 'linkedinLinkLabel',
url: 'linkedinLinkUrl',
},
description: 'The company Linkedin account',
icon: 'IconBrandLinkedin',
@ -84,7 +85,8 @@ const companyMetadata = {
name: 'xLink',
label: 'X',
targetColumnMap: {
value: 'xLink',
label: 'xLinkLabel',
url: 'xLinkUrl',
},
description: 'The company Twitter/X account',
icon: 'IconBrandX',
@ -93,11 +95,12 @@ const companyMetadata = {
{
isCustom: false,
isActive: true,
type: FieldMetadataType.NUMBER,
type: FieldMetadataType.CURRENCY,
name: 'annualRecurringRevenue',
label: 'ARR',
targetColumnMap: {
value: 'annualRecurringRevenue',
amountMicros: 'annualRecurringRevenueAmountMicros',
currencyCode: 'annualRecurringRevenueCurrencyCode',
},
description:
'Annual Recurring Revenue: The actual or estimated annual revenue of the company',

View File

@ -14,11 +14,12 @@ const opportunityMetadata = {
{
isCustom: false,
isActive: true,
type: FieldMetadataType.NUMBER,
type: FieldMetadataType.CURRENCY,
name: 'amount',
label: 'Amount',
targetColumnMap: {
value: 'amount',
amountMicros: 'amountAmountMicros',
currencyCode: 'amountCurrencyCode',
},
description: 'Opportunity amount',
icon: 'IconCurrencyDollar',