()
| 1667 | const activitySubtypes = [callType, emailType, meetingType, taskType]; |
| 1668 | |
| 1669 | const relatedToTarget = (): LinkSpec => { |
| 1670 | const target = pick([pick(deals), pick(contacts), pick(accounts)]); |
| 1671 | return { |
| 1672 | linkTypeId: relatedToLink.schema.$id, |
| 1673 | rightEntityId: target.metadata.recordId.entityId, |
| 1674 | }; |
| 1675 | }; |
| 1676 | |
| 1677 | const activitySubtypeProps = ( |
| 1678 | subtype: EntityTypeWithMetadata, |