Add fullName field metadata type (#2563)
* Add fullName field metadata type * update seeds
This commit is contained in:
@ -39,6 +39,12 @@ export function generateTargetColumnMap(
|
||||
amountMicros: `${columnName}AmountMicros`,
|
||||
currencyCode: `${columnName}CurrencyCode`,
|
||||
};
|
||||
case FieldMetadataType.FULL_NAME:
|
||||
return {
|
||||
firstName: `${columnName}FirstName`,
|
||||
lastName: `${columnName}LastName`,
|
||||
};
|
||||
|
||||
default:
|
||||
throw new BadRequestException(`Unknown type ${type}`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user