From 41d5d80a65ae51cddafbfa0ed967b6a61acb8ee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 4 Jun 2026 17:54:04 +0200 Subject: [PATCH] Migrate Company and Person standard fields in preparation for the enrichment app (#21171) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Migrate Company and Person standard fields in preparation for the enrichment app ## Why Our standard `Person`/`Company` objects accumulated fields that aren't generic to every business, while missing a more universal revenue field that essentially every CRM ships. This PR makes the **Standard application** hold a tighter, more universal set of fields, and sets the stage for a follow-up PR that introduces a **People Data Labs enrichment app** to populate them. ## What changes ### Standard fields **Demoted (Standard → Workspace Custom application)** — not generic enough to ship as standard: | Object | Field | Type | | ------- | ------------------------------ | -------- | | Company | annualRecurringRevenue (ARR) | CURRENCY | | Company | employees | NUMBER | | Company | idealCustomerProfile (ICP) | BOOLEAN | | Company | xLink (X/Twitter) | LINKS | | Person | xLink (X/Twitter) | LINKS | | Person | city | TEXT | **Added (new generic Standard field)** — present in Salesforce/HubSpot/Zoho, PDL-populatable: | Object | Field | Type | | ------- | ------------- | -------------------------------------------------------- | | Company | annualRevenue | CURRENCY (generic total revenue; replaces the niche ARR) | ### Behavior by workspace * **New workspaces:** demoted fields are gone; `annualRevenue` is **active**. * **Existing workspaces:** demoted fields are **preserved as active custom fields, data intact**; `annualRevenue` is created **inactive (opt-in)** with its column ready, so a later activation is a metadata-only toggle. ### Upgrade commands (v2.9) Three idempotent, per-workspace commands, run in timestamp order: 1. **`upgrade:2-9:move-demoted-standard-fields-to-custom-application`** (1799000040000) — re-owns the 6 demoted fields to the workspace custom application (`isCustom = true`, new `applicationId` + fresh `universalIdentifier`), keeping their data and active state. 2. **`upgrade:2-9:rename-conflicting-custom-fields`** (1799000045000) — if a workspace already has a *custom* field named `annualRevenue`, renames it to `annualRevenueCustom` (data preserved via column rename) so the standard field can be added. Skips non-custom matches. 3. **`upgrade:2-9:add-inactive-generic-standard-fields`** (1799000050000) — creates `Company.annualRevenue` on existing workspaces as inactive, guarded to skip workspaces missing the target object or where the name is still taken. **Failure model:** the workspace iterator isolates failures per workspace (one workspace failing never affects others); within a workspace the runner records per-command status and resumes on the next run, and every command is idempotent, so partial runs self-heal. ### Supporting changes * **Field-option color palette:** widened the `TagColor` union (`twenty-shared` `FieldMetadataOptions` + the field-metadata `options.input` DTO) from 10 colors to the full theme palette, benefiting any future SELECT/MULTI_SELECT field. * **Dev seeder:** * The default "Annual Recurring Revenue" dashboard widget now points at the generic `annualRevenue` field (renamed to "Annual Revenue"). * Removed the "Companies by Size (Stacked by City)" widget (relied on the demoted `employees`). * `employees` is dropped from company data seeds and re-added as a **custom** field seed, so dev workspaces still get an `employees` column matching the demoted behavior. ### Cleanup Front-end record types (`Company.ts`/`Person.ts`), the `getDisplayNameFromParticipant` test mock, metadata integration specs, the Zapier `crud_record` test, and the regenerated `get-standard-object-metadata-related-entity-ids` snapshot. ## ⚠️ Breaking change (intentional) Removes standard fields `Company.annualRecurringRevenue`, `Company.employees`, `Company.idealCustomerProfile`, `Company.xLink`, `Person.xLink`, and `Person.city` from the core GraphQL schema (replaced by `Company.annualRevenue`). This is why the breaking-changes check reports a large number of removals — `graphql-inspector` flags any removed object field plus its derived aggregate/order-by/filter/update types. **Mitigation:** the `upgrade:2-9:move-demoted-standard-fields-to-custom-application` command re-owns these fields as custom fields per workspace, preserving their name and data, so existing tenants keep working. New workspaces won't have them. --- .../getDisplayNameFromParticipant.test.ts | 5 - .../src/modules/companies/types/Company.ts | 11 +- .../src/modules/people/types/Person.ts | 6 - .../2-10-upgrade-version-command.module.ts | 29 + ...rd-fields-to-custom-application.command.ts | 159 ++ ...ename-conflicting-custom-fields.command.ts | 196 ++ ...nactive-generic-standard-fields.command.ts | 182 ++ .../workspace-command-provider.module.ts | 2 + .../filter-arg-processor.service.spec.ts | 6 +- .../field-metadata/dtos/options.input.ts | 21 +- .../__mocks__/company-flat-fields.mock.ts | 85 +- .../__mocks__/person-flat-fields.mock.ts | 50 - .../__tests__/index-metadata.service.spec.ts | 4 +- .../dev-seeder-permissions.service.ts | 14 +- ...t-page-layout-widget-data-seeds-v2.util.ts | 9 +- .../get-page-layout-widget-data-seeds.util.ts | 97 +- .../constants/company-data-seeds.constant.ts | 602 ------ .../constants/person-data-seeds.constant.ts | 1202 ----------- .../timeline-activity-seeder.service.ts | 1 - .../company-custom-field-seeds.constant.ts | 10 + .../utils/prefill-companies.util.ts | 6 - .../utils/prefill-people.util.ts | 6 - ...adata-related-entity-ids.util.spec.ts.snap | 1915 ++++++++--------- ...mpany-standard-flat-field-metadata.util.ts | 61 +- ...erson-standard-flat-field-metadata.util.ts | 32 - ...mpute-standard-company-view-fields.util.ts | 66 +- ...ompute-standard-person-view-fields.util.ts | 54 +- .../company.workspace-entity.ts | 5 +- .../person.workspace-entity.ts | 2 - .../constants/person-gql-fields.constants.ts | 1 - .../all-people-resolvers.integration-spec.ts | 36 +- ...lter-by-relation-field.integration-spec.ts | 8 +- .../group-by-resolver.integration-spec.ts | 46 +- ...tate-by-relation-field.integration-spec.ts | 43 +- .../companies.integration-spec.ts | 4 - ...ested-relation-queries.integration-spec.ts | 18 +- .../people.integration-spec.ts | 2 - .../read-permissions.integration-spec.ts | 58 +- .../update-permissions.integration-spec.ts | 4 +- ...ct-records-permissions.integration-spec.ts | 6 +- ...rmissions-on-relations.integration-spec.ts | 5 +- ...order-by-with-group-by.integration-spec.ts | 74 +- ...ery-complexity-failing.integration-spec.ts | 2 +- .../tooManyRelationQueryGqlFields.constant.ts | 1 - .../failing-impersonation.integration-spec.ts | 1 - ...cessful-find-view.integration-spec.ts.snap | 16 +- .../fetch-test-field-metadata-ids.util.ts | 4 +- .../field-permissions.integration-spec.ts | 22 +- ...st-api-core-create-one.integration-spec.ts | 30 +- ...est-api-core-find-many.integration-spec.ts | 16 +- ...rest-api-core-find-one.integration-spec.ts | 8 +- ...rest-api-core-group-by.integration-spec.ts | 8 +- .../rest-api-core-update.integration-spec.ts | 7 +- .../constants/standard-object.constant.ts | 41 +- .../src/types/FieldMetadataOptions.ts | 21 +- .../src/creates/__tests__/crud_record.test.ts | 22 +- 56 files changed, 1798 insertions(+), 3544 deletions(-) create mode 100644 packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-upgrade-version-command.module.ts create mode 100644 packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000040000-move-demoted-standard-fields-to-custom-application.command.ts create mode 100644 packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000045000-rename-conflicting-custom-fields.command.ts create mode 100644 packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000050000-add-inactive-generic-standard-fields.command.ts diff --git a/packages/twenty-front/src/modules/activities/emails/utils/__tests__/getDisplayNameFromParticipant.test.ts b/packages/twenty-front/src/modules/activities/emails/utils/__tests__/getDisplayNameFromParticipant.test.ts index aea38ebd34..94a4290bbe 100644 --- a/packages/twenty-front/src/modules/activities/emails/utils/__tests__/getDisplayNameFromParticipant.test.ts +++ b/packages/twenty-front/src/modules/activities/emails/utils/__tests__/getDisplayNameFromParticipant.test.ts @@ -27,11 +27,6 @@ describe('getDisplayNameFromParticipant', () => { primaryLinkUrl: '', primaryLinkLabel: '', }, - xLink: { - primaryLinkUrl: '', - primaryLinkLabel: '', - }, - city: '', email: '', phone: '', companyId: '', diff --git a/packages/twenty-front/src/modules/companies/types/Company.ts b/packages/twenty-front/src/modules/companies/types/Company.ts index b2ede19450..b0086eb7d1 100644 --- a/packages/twenty-front/src/modules/companies/types/Company.ts +++ b/packages/twenty-front/src/modules/companies/types/Company.ts @@ -31,16 +31,9 @@ export type Company = { primaryLinkUrl: string; primaryLinkLabel: string; }; - xLink?: { - __typename?: 'Links'; - primaryLinkUrl: string; - primaryLinkLabel: string; - }; - annualRecurringRevenue: { + annualRevenue?: { __typename?: 'Currency'; amountMicros: number | null; currencyCode: string; - }; - employees: number | null; - idealCustomerProfile?: boolean; + } | null; }; diff --git a/packages/twenty-front/src/modules/people/types/Person.ts b/packages/twenty-front/src/modules/people/types/Person.ts index a53c95d799..d4ab65b96c 100644 --- a/packages/twenty-front/src/modules/people/types/Person.ts +++ b/packages/twenty-front/src/modules/people/types/Person.ts @@ -16,12 +16,6 @@ export type Person = { primaryLinkUrl: string; primaryLinkLabel: string; }; - xLink: { - __typename?: 'Links'; - primaryLinkUrl: string; - primaryLinkLabel: string; - }; - city: string; email: string; /** @deprecated */ phone: string; diff --git a/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-upgrade-version-command.module.ts b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-upgrade-version-command.module.ts new file mode 100644 index 0000000000..c36ee294d8 --- /dev/null +++ b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-upgrade-version-command.module.ts @@ -0,0 +1,29 @@ +import { Module } from '@nestjs/common'; +import { TypeOrmModule } from '@nestjs/typeorm'; + +import { WorkspaceIteratorModule } from 'src/database/commands/command-runners/workspace-iterator.module'; +import { AddInactiveGenericStandardFieldsCommand } from 'src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000050000-add-inactive-generic-standard-fields.command'; +import { MoveDemotedStandardFieldsToCustomApplicationCommand } from 'src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000040000-move-demoted-standard-fields-to-custom-application.command'; +import { RenameConflictingCustomFieldsCommand } from 'src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000045000-rename-conflicting-custom-fields.command'; +import { ApplicationModule } from 'src/engine/core-modules/application/application.module'; +import { FieldMetadataEntity } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; +import { WorkspaceMetadataVersionModule } from 'src/engine/metadata-modules/workspace-metadata-version/workspace-metadata-version.module'; +import { WorkspaceCacheModule } from 'src/engine/workspace-cache/workspace-cache.module'; +import { WorkspaceMigrationModule } from 'src/engine/workspace-manager/workspace-migration/workspace-migration.module'; + +@Module({ + imports: [ + ApplicationModule, + TypeOrmModule.forFeature([FieldMetadataEntity]), + WorkspaceCacheModule, + WorkspaceIteratorModule, + WorkspaceMetadataVersionModule, + WorkspaceMigrationModule, + ], + providers: [ + MoveDemotedStandardFieldsToCustomApplicationCommand, + RenameConflictingCustomFieldsCommand, + AddInactiveGenericStandardFieldsCommand, + ], +}) +export class V2_10_UpgradeVersionCommandModule {} diff --git a/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000040000-move-demoted-standard-fields-to-custom-application.command.ts b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000040000-move-demoted-standard-fields-to-custom-application.command.ts new file mode 100644 index 0000000000..b65dd956b3 --- /dev/null +++ b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000040000-move-demoted-standard-fields-to-custom-application.command.ts @@ -0,0 +1,159 @@ +import { Command } from 'nest-commander'; + +import { InjectRepository } from '@nestjs/typeorm'; +import { isDefined } from 'twenty-shared/utils'; +import { Repository } from 'typeorm'; +import { v4 as uuidv4 } from 'uuid'; + +import { ActiveOrSuspendedWorkspaceCommandRunner } from 'src/database/commands/command-runners/active-or-suspended-workspace.command-runner'; +import { WorkspaceIteratorService } from 'src/database/commands/command-runners/workspace-iterator.service'; +import { type RunOnWorkspaceArgs } from 'src/database/commands/command-runners/workspace.command-runner'; +import { ApplicationService } from 'src/engine/core-modules/application/application.service'; +import { RegisteredWorkspaceCommand } from 'src/engine/core-modules/upgrade/decorators/registered-workspace-command.decorator'; +import { FieldMetadataEntity } from 'src/engine/metadata-modules/field-metadata/field-metadata.entity'; +import { findFlatEntityByUniversalIdentifier } from 'src/engine/metadata-modules/flat-entity/utils/find-flat-entity-by-universal-identifier.util'; +import { getMetadataFlatEntityMapsKey } from 'src/engine/metadata-modules/flat-entity/utils/get-metadata-flat-entity-maps-key.util'; +import { getMetadataRelatedMetadataNames } from 'src/engine/metadata-modules/flat-entity/utils/get-metadata-related-metadata-names.util'; +import { getMetadataSerializedRelationNames } from 'src/engine/metadata-modules/flat-entity/utils/get-metadata-serialized-relation-names.util'; +import { type FlatFieldMetadata } from 'src/engine/metadata-modules/flat-field-metadata/types/flat-field-metadata.type'; +import { WorkspaceMetadataVersionService } from 'src/engine/metadata-modules/workspace-metadata-version/services/workspace-metadata-version.service'; +import { WorkspaceCacheService } from 'src/engine/workspace-cache/services/workspace-cache.service'; + +const DEMOTED_STANDARD_FIELDS: { + universalIdentifier: string; + label: string; +}[] = [ + { + universalIdentifier: '20202020-602a-495c-9776-f5d5b11d227b', + label: 'Company.annualRecurringRevenue', + }, + { + universalIdentifier: '20202020-8965-464a-8a75-74bafc152a0b', + label: 'Company.employees', + }, + { + universalIdentifier: '20202020-ba6b-438a-8213-2c5ba28d76a2', + label: 'Company.idealCustomerProfile', + }, + { + universalIdentifier: '20202020-6f64-4fd9-9580-9c1991c7d8c3', + label: 'Company.xLink', + }, + { + universalIdentifier: '20202020-8fc2-487c-b84a-55a99b145cfd', + label: 'Person.xLink', + }, + { + universalIdentifier: '20202020-5243-4ffb-afc5-2c675da41346', + label: 'Person.city', + }, +]; + +@RegisteredWorkspaceCommand('2.10.0', 1799000040000) +@Command({ + name: 'upgrade:2-10:move-demoted-standard-fields-to-custom-application', + description: + 'Re-own the demoted Company ARR / ICP / Employees, Company/Person X (Twitter) and Person City standard fields to the workspace custom application, preserving their data and keeping them active', +}) +export class MoveDemotedStandardFieldsToCustomApplicationCommand extends ActiveOrSuspendedWorkspaceCommandRunner { + constructor( + protected readonly workspaceIteratorService: WorkspaceIteratorService, + private readonly applicationService: ApplicationService, + private readonly workspaceCacheService: WorkspaceCacheService, + private readonly workspaceMetadataVersionService: WorkspaceMetadataVersionService, + @InjectRepository(FieldMetadataEntity) + private readonly fieldMetadataRepository: Repository, + ) { + super(workspaceIteratorService); + } + + override async runOnWorkspace({ + workspaceId, + options, + }: RunOnWorkspaceArgs): Promise { + const isDryRun = options.dryRun ?? false; + + const { twentyStandardFlatApplication, workspaceCustomFlatApplication } = + await this.applicationService.findWorkspaceTwentyStandardAndCustomApplicationOrThrow( + { workspaceId }, + ); + + const { flatFieldMetadataMaps } = + await this.workspaceCacheService.getOrRecompute(workspaceId, [ + 'flatFieldMetadataMaps', + ]); + + const fieldsToReown: { id: string; label: string }[] = []; + + for (const { + universalIdentifier, + label, + } of DEMOTED_STANDARD_FIELDS) { + const flatFieldMetadata = + findFlatEntityByUniversalIdentifier({ + flatEntityMaps: flatFieldMetadataMaps, + universalIdentifier, + }); + + if (!isDefined(flatFieldMetadata)) { + continue; + } + + const isStillOwnedByStandardApplication = + flatFieldMetadata.applicationId === twentyStandardFlatApplication.id && + !flatFieldMetadata.isCustom; + + if (!isStillOwnedByStandardApplication) { + continue; + } + + fieldsToReown.push({ id: flatFieldMetadata.id, label }); + } + + if (fieldsToReown.length === 0) { + this.logger.log( + `No standard fields to move to the custom application for workspace ${workspaceId}`, + ); + + return; + } + + this.logger.log( + `${isDryRun ? '[DRY RUN] ' : ''}Moving ${fieldsToReown.length} field(s) to the custom application for workspace ${workspaceId}: ${fieldsToReown.map(({ label }) => label).join(', ')}`, + ); + + if (isDryRun) { + return; + } + + for (const { id } of fieldsToReown) { + await this.fieldMetadataRepository.update( + { id }, + { + applicationId: workspaceCustomFlatApplication.id, + isCustom: true, + universalIdentifier: uuidv4(), + }, + ); + } + + const fieldMetadataRelatedNames = [ + 'fieldMetadata', + ...getMetadataRelatedMetadataNames('fieldMetadata'), + ...getMetadataSerializedRelationNames('fieldMetadata'), + ] as const; + const cacheKeysToFlush = [ + ...new Set(fieldMetadataRelatedNames.map(getMetadataFlatEntityMapsKey)), + ]; + + await this.workspaceCacheService.flush(workspaceId, cacheKeysToFlush); + + await this.workspaceMetadataVersionService.incrementMetadataVersion( + workspaceId, + ); + + this.logger.log( + `Moved ${fieldsToReown.length} field(s) to the custom application for workspace ${workspaceId}`, + ); + } +} diff --git a/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000045000-rename-conflicting-custom-fields.command.ts b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000045000-rename-conflicting-custom-fields.command.ts new file mode 100644 index 0000000000..89755fa299 --- /dev/null +++ b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000045000-rename-conflicting-custom-fields.command.ts @@ -0,0 +1,196 @@ +import { Command } from 'nest-commander'; + +import { STANDARD_OBJECTS } from 'twenty-shared/metadata'; +import { isDefined } from 'twenty-shared/utils'; + +import { ActiveOrSuspendedWorkspaceCommandRunner } from 'src/database/commands/command-runners/active-or-suspended-workspace.command-runner'; +import { WorkspaceIteratorService } from 'src/database/commands/command-runners/workspace-iterator.service'; +import { type RunOnWorkspaceArgs } from 'src/database/commands/command-runners/workspace.command-runner'; +import { RegisteredWorkspaceCommand } from 'src/engine/core-modules/upgrade/decorators/registered-workspace-command.decorator'; +import { type FlatFieldMetadata } from 'src/engine/metadata-modules/flat-field-metadata/types/flat-field-metadata.type'; +import { WorkspaceCacheService } from 'src/engine/workspace-cache/services/workspace-cache.service'; +import { WorkspaceMigrationValidateBuildAndRunService } from 'src/engine/workspace-manager/workspace-migration/services/workspace-migration-validate-build-and-run-service'; + +const NEW_STANDARD_FIELDS: { + fieldName: string; + objectUniversalIdentifier: string; +}[] = [ + { + fieldName: 'annualRevenue', + objectUniversalIdentifier: STANDARD_OBJECTS.company.universalIdentifier, + }, +]; + +const computeAvailableFieldName = ( + baseFieldName: string, + takenFieldNames: Set, +): string => { + let candidateFieldName = `${baseFieldName}Custom`; + let suffix = 2; + + while (takenFieldNames.has(candidateFieldName)) { + candidateFieldName = `${baseFieldName}Custom${suffix}`; + suffix++; + } + + return candidateFieldName; +}; + +@RegisteredWorkspaceCommand('2.10.0', 1799000045000) +@Command({ + name: 'upgrade:2-10:rename-conflicting-custom-fields', + description: + 'Rename a pre-existing custom field whose name collides with the new generic standard field (Company annualRevenue), preserving its data, so the standard field can be added', +}) +export class RenameConflictingCustomFieldsCommand extends ActiveOrSuspendedWorkspaceCommandRunner { + constructor( + protected readonly workspaceIteratorService: WorkspaceIteratorService, + private readonly workspaceCacheService: WorkspaceCacheService, + private readonly workspaceMigrationValidateBuildAndRunService: WorkspaceMigrationValidateBuildAndRunService, + ) { + super(workspaceIteratorService); + } + + override async runOnWorkspace({ + workspaceId, + options, + }: RunOnWorkspaceArgs): Promise { + const isDryRun = options.dryRun ?? false; + + const { flatFieldMetadataMaps } = + await this.workspaceCacheService.getOrRecompute(workspaceId, [ + 'flatFieldMetadataMaps', + ]); + + const allFlatFieldMetadatas = Object.values( + flatFieldMetadataMaps.byUniversalIdentifier, + ).filter(isDefined); + + const takenFieldNamesByObject = new Map>(); + + for (const flatFieldMetadata of allFlatFieldMetadatas) { + const takenFieldNames = + takenFieldNamesByObject.get( + flatFieldMetadata.objectMetadataUniversalIdentifier, + ) ?? new Set(); + + takenFieldNames.add(flatFieldMetadata.name); + takenFieldNamesByObject.set( + flatFieldMetadata.objectMetadataUniversalIdentifier, + takenFieldNames, + ); + } + + const fieldsToRename: { field: FlatFieldMetadata; newName: string }[] = []; + + for (const { + fieldName, + objectUniversalIdentifier, + } of NEW_STANDARD_FIELDS) { + const conflictingField = allFlatFieldMetadatas.find( + (flatFieldMetadata) => + flatFieldMetadata.objectMetadataUniversalIdentifier === + objectUniversalIdentifier && flatFieldMetadata.name === fieldName, + ); + + if (!isDefined(conflictingField)) { + continue; + } + + if (!conflictingField.isCustom) { + this.logger.warn( + `Non-custom field named "${fieldName}" exists on object ${objectUniversalIdentifier} for workspace ${workspaceId}; skipping rename`, + ); + + continue; + } + + const takenFieldNames = + takenFieldNamesByObject.get(objectUniversalIdentifier) ?? + new Set(); + const newName = computeAvailableFieldName(fieldName, takenFieldNames); + + takenFieldNames.add(newName); + fieldsToRename.push({ field: conflictingField, newName }); + } + + if (fieldsToRename.length === 0) { + this.logger.log( + `No custom fields conflict with the new standard field names for workspace ${workspaceId}`, + ); + + return; + } + + this.logger.log( + `${isDryRun ? '[DRY RUN] ' : ''}Renaming ${fieldsToRename.length} conflicting custom field(s) for workspace ${workspaceId}: ${fieldsToRename + .map(({ field, newName }) => `${field.name} -> ${newName}`) + .join(', ')}`, + ); + + if (isDryRun) { + return; + } + + const fieldsToRenameByApplication = fieldsToRename.reduce< + Map + >((fieldsByApplication, fieldToRename) => { + const applicationUniversalIdentifier = + fieldToRename.field.applicationUniversalIdentifier; + const fieldsForApplication = + fieldsByApplication.get(applicationUniversalIdentifier) ?? []; + + fieldsForApplication.push(fieldToRename); + fieldsByApplication.set( + applicationUniversalIdentifier, + fieldsForApplication, + ); + + return fieldsByApplication; + }, new Map()); + + for (const [ + applicationUniversalIdentifier, + fieldsForApplication, + ] of fieldsToRenameByApplication) { + const flatEntityToUpdate = fieldsForApplication.map( + ({ field, newName }) => ({ + ...field, + name: newName, + label: `${field.label} (custom)`, + isLabelSyncedWithName: false, + }), + ); + + const validateAndBuildResult = + await this.workspaceMigrationValidateBuildAndRunService.validateBuildAndRunWorkspaceMigration( + { + allFlatEntityOperationByMetadataName: { + fieldMetadata: { + flatEntityToCreate: [], + flatEntityToDelete: [], + flatEntityToUpdate, + }, + }, + workspaceId, + isSystemBuild: true, + applicationUniversalIdentifier, + }, + ); + + if (validateAndBuildResult.status === 'fail') { + this.logger.error( + `Failed to rename conflicting custom fields:\n${JSON.stringify(validateAndBuildResult, null, 2)}`, + ); + + throw new Error( + `Failed to rename conflicting custom fields for workspace ${workspaceId}`, + ); + } + } + + this.logger.log( + `Renamed ${fieldsToRename.length} conflicting custom field(s) for workspace ${workspaceId}`, + ); + } +} diff --git a/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000050000-add-inactive-generic-standard-fields.command.ts b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000050000-add-inactive-generic-standard-fields.command.ts new file mode 100644 index 0000000000..0303a7f53a --- /dev/null +++ b/packages/twenty-server/src/database/commands/upgrade-version-command/2-10/2-10-workspace-command-1799000050000-add-inactive-generic-standard-fields.command.ts @@ -0,0 +1,182 @@ +import { Command } from 'nest-commander'; + +import { STANDARD_OBJECTS } from 'twenty-shared/metadata'; +import { isDefined } from 'twenty-shared/utils'; + +import { ActiveOrSuspendedWorkspaceCommandRunner } from 'src/database/commands/command-runners/active-or-suspended-workspace.command-runner'; +import { WorkspaceIteratorService } from 'src/database/commands/command-runners/workspace-iterator.service'; +import { type RunOnWorkspaceArgs } from 'src/database/commands/command-runners/workspace.command-runner'; +import { ApplicationService } from 'src/engine/core-modules/application/application.service'; +import { RegisteredWorkspaceCommand } from 'src/engine/core-modules/upgrade/decorators/registered-workspace-command.decorator'; +import { findFlatEntityByUniversalIdentifier } from 'src/engine/metadata-modules/flat-entity/utils/find-flat-entity-by-universal-identifier.util'; +import { type FlatFieldMetadata } from 'src/engine/metadata-modules/flat-field-metadata/types/flat-field-metadata.type'; +import { type FlatObjectMetadata } from 'src/engine/metadata-modules/flat-object-metadata/types/flat-object-metadata.type'; +import { WorkspaceCacheService } from 'src/engine/workspace-cache/services/workspace-cache.service'; +import { computeTwentyStandardApplicationAllFlatEntityMaps } from 'src/engine/workspace-manager/twenty-standard-application/utils/twenty-standard-application-all-flat-entity-maps.constant'; +import { WorkspaceMigrationValidateBuildAndRunService } from 'src/engine/workspace-manager/workspace-migration/services/workspace-migration-validate-build-and-run-service'; + +const NEW_STANDARD_FIELD_UNIVERSAL_IDENTIFIERS = [ + STANDARD_OBJECTS.company.fields.annualRevenue.universalIdentifier, +]; + +@RegisteredWorkspaceCommand('2.10.0', 1799000050000) +@Command({ + name: 'upgrade:2-10:add-inactive-generic-standard-fields', + description: + 'Create the new generic standard field (Company annualRevenue) on existing workspaces as inactive (opt-in), with its column ready for activation', +}) +export class AddInactiveGenericStandardFieldsCommand extends ActiveOrSuspendedWorkspaceCommandRunner { + constructor( + protected readonly workspaceIteratorService: WorkspaceIteratorService, + private readonly applicationService: ApplicationService, + private readonly workspaceCacheService: WorkspaceCacheService, + private readonly workspaceMigrationValidateBuildAndRunService: WorkspaceMigrationValidateBuildAndRunService, + ) { + super(workspaceIteratorService); + } + + override async runOnWorkspace({ + workspaceId, + options, + }: RunOnWorkspaceArgs): Promise { + const isDryRun = options.dryRun ?? false; + + const { twentyStandardFlatApplication } = + await this.applicationService.findWorkspaceTwentyStandardAndCustomApplicationOrThrow( + { workspaceId }, + ); + + const { + flatFieldMetadataMaps: existingFlatFieldMetadataMaps, + flatObjectMetadataMaps, + } = await this.workspaceCacheService.getOrRecompute(workspaceId, [ + 'flatFieldMetadataMaps', + 'flatObjectMetadataMaps', + ]); + + const { allFlatEntityMaps: standardAllFlatEntityMaps } = + computeTwentyStandardApplicationAllFlatEntityMaps({ + now: new Date().toISOString(), + workspaceId, + twentyStandardApplicationId: twentyStandardFlatApplication.id, + }); + + const takenFieldNamesByObject = new Map>(); + + for (const existingFlatFieldMetadata of Object.values( + existingFlatFieldMetadataMaps.byUniversalIdentifier, + ).filter(isDefined)) { + const takenFieldNames = + takenFieldNamesByObject.get( + existingFlatFieldMetadata.objectMetadataUniversalIdentifier, + ) ?? new Set(); + + takenFieldNames.add(existingFlatFieldMetadata.name); + takenFieldNamesByObject.set( + existingFlatFieldMetadata.objectMetadataUniversalIdentifier, + takenFieldNames, + ); + } + + const fieldsToCreate: FlatFieldMetadata[] = []; + + for (const universalIdentifier of NEW_STANDARD_FIELD_UNIVERSAL_IDENTIFIERS) { + const standardFlatFieldMetadata = + standardAllFlatEntityMaps.flatFieldMetadataMaps.byUniversalIdentifier[ + universalIdentifier + ]; + + if (!isDefined(standardFlatFieldMetadata)) { + continue; + } + + const fieldAlreadyExists = isDefined( + existingFlatFieldMetadataMaps.byUniversalIdentifier[ + standardFlatFieldMetadata.universalIdentifier + ], + ); + + if (fieldAlreadyExists) { + continue; + } + + const targetObjectExists = isDefined( + findFlatEntityByUniversalIdentifier({ + flatEntityMaps: flatObjectMetadataMaps, + universalIdentifier: + standardFlatFieldMetadata.objectMetadataUniversalIdentifier, + }), + ); + + if (!targetObjectExists) { + continue; + } + + const fieldNameIsTaken = + takenFieldNamesByObject + .get(standardFlatFieldMetadata.objectMetadataUniversalIdentifier) + ?.has(standardFlatFieldMetadata.name) === true; + + if (fieldNameIsTaken) { + this.logger.warn( + `Field name "${standardFlatFieldMetadata.name}" is already taken on its object for workspace ${workspaceId}; skipping (run upgrade:2-10:rename-conflicting-custom-fields first)`, + ); + + continue; + } + + fieldsToCreate.push({ + ...standardFlatFieldMetadata, + isActive: false, + viewFieldIds: [], + viewFieldUniversalIdentifiers: [], + }); + } + + if (fieldsToCreate.length === 0) { + this.logger.log( + `All new generic standard fields already exist for workspace ${workspaceId}, skipping`, + ); + + return; + } + + this.logger.log( + `${isDryRun ? '[DRY RUN] ' : ''}Creating ${fieldsToCreate.length} inactive standard field(s) for workspace ${workspaceId}: ${fieldsToCreate.map(({ name }) => name).join(', ')}`, + ); + + if (isDryRun) { + return; + } + + const validateAndBuildResult = + await this.workspaceMigrationValidateBuildAndRunService.validateBuildAndRunWorkspaceMigration( + { + allFlatEntityOperationByMetadataName: { + fieldMetadata: { + flatEntityToCreate: fieldsToCreate, + flatEntityToDelete: [], + flatEntityToUpdate: [], + }, + }, + workspaceId, + applicationUniversalIdentifier: + twentyStandardFlatApplication.universalIdentifier, + }, + ); + + if (validateAndBuildResult.status === 'fail') { + this.logger.error( + `Failed to create inactive generic standard fields:\n${JSON.stringify(validateAndBuildResult, null, 2)}`, + ); + + throw new Error( + `Failed to create inactive generic standard fields for workspace ${workspaceId}`, + ); + } + + this.logger.log( + `Successfully created ${fieldsToCreate.length} inactive standard field(s) for workspace ${workspaceId}`, + ); + } +} diff --git a/packages/twenty-server/src/database/commands/upgrade-version-command/workspace-command-provider.module.ts b/packages/twenty-server/src/database/commands/upgrade-version-command/workspace-command-provider.module.ts index 96b1dd0b92..ba9d007b1d 100644 --- a/packages/twenty-server/src/database/commands/upgrade-version-command/workspace-command-provider.module.ts +++ b/packages/twenty-server/src/database/commands/upgrade-version-command/workspace-command-provider.module.ts @@ -12,6 +12,7 @@ import { V2_5_UpgradeVersionCommandModule } from 'src/database/commands/upgrade- import { V2_7_UpgradeVersionCommandModule } from 'src/database/commands/upgrade-version-command/2-7/2-7-upgrade-version-command.module'; import { V2_8_UpgradeVersionCommandModule } from 'src/database/commands/upgrade-version-command/2-8/2-8-upgrade-version-command.module'; import { V2_9_UpgradeVersionCommandModule } from 'src/database/commands/upgrade-version-command/2-9/2-9-upgrade-version-command.module'; +import { V2_10_UpgradeVersionCommandModule } from 'src/database/commands/upgrade-version-command/2-10/2-10-upgrade-version-command.module'; @Module({ imports: [ @@ -27,6 +28,7 @@ import { V2_9_UpgradeVersionCommandModule } from 'src/database/commands/upgrade- V2_7_UpgradeVersionCommandModule, V2_8_UpgradeVersionCommandModule, V2_9_UpgradeVersionCommandModule, + V2_10_UpgradeVersionCommandModule, ], }) export class WorkspaceCommandProviderModule {} diff --git a/packages/twenty-server/src/engine/api/common/common-args-processors/filter-arg-processor/__tests__/filter-arg-processor.service.spec.ts b/packages/twenty-server/src/engine/api/common/common-args-processors/filter-arg-processor/__tests__/filter-arg-processor.service.spec.ts index 2b7ddb587c..7d1f358842 100644 --- a/packages/twenty-server/src/engine/api/common/common-args-processors/filter-arg-processor/__tests__/filter-arg-processor.service.spec.ts +++ b/packages/twenty-server/src/engine/api/common/common-args-processors/filter-arg-processor/__tests__/filter-arg-processor.service.spec.ts @@ -319,7 +319,7 @@ describe('FilterArgProcessorService', () => { }, 'target-currency-uid': { id: targetCurrencyFieldId, - name: 'annualRecurringRevenue', + name: 'annualRevenue', type: FieldMetadataType.CURRENCY, isNullable: true, objectMetadataId: targetObjectId, @@ -405,7 +405,7 @@ describe('FilterArgProcessorService', () => { const filter = { target: { - annualRecurringRevenue: { amountMicros: { gte: 1_000_000 } }, + annualRevenue: { amountMicros: { gte: 1_000_000 } }, }, }; @@ -418,7 +418,7 @@ describe('FilterArgProcessorService', () => { expect(result).toEqual({ target: { - annualRecurringRevenue: { amountMicros: { gte: 1_000_000 } }, + annualRevenue: { amountMicros: { gte: 1_000_000 } }, }, }); }); diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/options.input.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/options.input.ts index ccc7cab485..dcede3b4f7 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/options.input.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/dtos/options.input.ts @@ -2,15 +2,30 @@ import { IsNotEmpty, IsNumber, IsOptional, IsString } from 'class-validator'; import { IsValidGraphQLEnumName } from 'twenty-shared/types'; export type TagColor = + | 'red' + | 'ruby' + | 'crimson' + | 'tomato' + | 'orange' + | 'amber' + | 'yellow' + | 'lime' + | 'grass' | 'green' + | 'jade' + | 'mint' | 'turquoise' + | 'cyan' | 'sky' | 'blue' + | 'iris' + | 'violet' | 'purple' + | 'plum' | 'pink' - | 'red' - | 'orange' - | 'yellow' + | 'bronze' + | 'gold' + | 'brown' | 'gray'; export class FieldMetadataDefaultOption { diff --git a/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/company-flat-fields.mock.ts b/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/company-flat-fields.mock.ts index fac4406aae..d806d8f9b4 100644 --- a/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/company-flat-fields.mock.ts +++ b/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/company-flat-fields.mock.ts @@ -61,29 +61,6 @@ export const COMPANY_FLAT_FIELDS_MOCK = { relationTargetObjectMetadataId: null, universalIdentifier: '20202020-0c28-43d8-8ba5-3659924d3489', }), - employees: getFlatFieldMetadataMock({ - id: '721d26f0-238d-4d55-a1a2-62f915631c4d', - objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', - type: FieldMetadataType.NUMBER, - name: 'employees', - label: 'Employees', - defaultValue: null, - description: 'Number of employees in the company', - icon: 'IconUsers', - standardOverrides: null, - options: null, - settings: null, - isCustom: false, - isActive: true, - isSystem: false, - isNullable: true, - isUnique: false, - workspaceId: '20202020-1c25-4d02-bf25-6aeccf7ea419', - isLabelSyncedWithName: true, - relationTargetFieldMetadataId: null, - relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-8965-464a-8a75-74bafc152a0b', - }), linkedinLink: getFlatFieldMetadataMock({ id: '6acb80a0-dab8-4d97-a0c8-15e4a495fb54', objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', @@ -111,42 +88,14 @@ export const COMPANY_FLAT_FIELDS_MOCK = { relationTargetObjectMetadataId: null, universalIdentifier: '20202020-ebeb-4beb-b9ad-6848036fb451', }), - xLink: getFlatFieldMetadataMock({ - id: 'fc630bbb-aa2c-4554-aa4f-9afc0b0567f9', - objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', - type: FieldMetadataType.LINKS, - name: 'xLink', - label: 'X', - defaultValue: { - primaryLinkUrl: "''", - secondaryLinks: [], - primaryLinkLabel: "''", - }, - description: 'The company Twitter/X account', - icon: 'IconBrandX', - standardOverrides: null, - options: null, - settings: null, - isCustom: false, - isActive: true, - isSystem: false, - isNullable: true, - isUnique: false, - workspaceId: '20202020-1c25-4d02-bf25-6aeccf7ea419', - isLabelSyncedWithName: false, - relationTargetFieldMetadataId: null, - relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-6f64-4fd9-9580-9c1991c7d8c3', - }), - annualRecurringRevenue: getFlatFieldMetadataMock({ + annualRevenue: getFlatFieldMetadataMock({ id: '1e34d871-3e1a-4903-850e-1e4bc6b1d72b', objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', type: FieldMetadataType.CURRENCY, - name: 'annualRecurringRevenue', - label: 'ARR', + name: 'annualRevenue', + label: 'Annual Revenue', defaultValue: { amountMicros: null, currencyCode: "''" }, - description: - 'Annual Recurring Revenue: The actual or estimated annual revenue of the company', + description: "The company's total annual revenue", icon: 'IconMoneybag', standardOverrides: null, options: null, @@ -160,7 +109,7 @@ export const COMPANY_FLAT_FIELDS_MOCK = { isLabelSyncedWithName: false, relationTargetFieldMetadataId: null, relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-602a-495c-9776-f5d5b11d227b', + universalIdentifier: '60f533b7-2166-4071-a767-ceb0286822fd', }), address: getFlatFieldMetadataMock({ id: '1bd4dc61-e644-4a9e-8899-cacdf43571a1', @@ -194,30 +143,6 @@ export const COMPANY_FLAT_FIELDS_MOCK = { relationTargetObjectMetadataId: null, universalIdentifier: '20202020-c5ce-4adc-b7b6-9c0979fc55e7', }), - idealCustomerProfile: getFlatFieldMetadataMock({ - id: '8b75a4f1-dc7d-4fa3-b778-616ab9128c31', - objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', - type: FieldMetadataType.BOOLEAN, - name: 'idealCustomerProfile', - label: 'ICP', - defaultValue: false, - description: - 'Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you', - icon: 'IconTarget', - standardOverrides: null, - options: null, - settings: null, - isCustom: false, - isActive: true, - isSystem: false, - isNullable: false, - isUnique: false, - workspaceId: '20202020-1c25-4d02-bf25-6aeccf7ea419', - isLabelSyncedWithName: false, - relationTargetFieldMetadataId: null, - relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-ba6b-438a-8213-2c5ba28d76a2', - }), position: getFlatFieldMetadataMock({ id: 'ed081dac-ff61-4fe1-bc2c-073644b61c28', objectMetadataId: '7f5c2c7a-bb23-46fb-b59d-9b7a52a8d1cc', diff --git a/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/person-flat-fields.mock.ts b/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/person-flat-fields.mock.ts index fb31288966..eed0a0e85d 100644 --- a/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/person-flat-fields.mock.ts +++ b/packages/twenty-server/src/engine/metadata-modules/flat-field-metadata/__mocks__/person-flat-fields.mock.ts @@ -83,33 +83,6 @@ export const PERSON_FLAT_FIELDS_MOCK = { relationTargetObjectMetadataId: null, universalIdentifier: '20202020-f1af-48f7-893b-2007a73dd508', }), - xLink: getFlatFieldMetadataMock({ - id: 'c9d36790-a449-4108-91e1-c6ad6e3379fb', - objectMetadataId: '843e0b67-9619-4628-91c4-2fa62256a611', - type: FieldMetadataType.LINKS, - name: 'xLink', - label: 'X', - defaultValue: { - primaryLinkUrl: "''", - secondaryLinks: [], - primaryLinkLabel: "''", - }, - description: 'Contact’s X/Twitter account', - icon: 'IconBrandX', - standardOverrides: null, - options: null, - settings: null, - isCustom: false, - isActive: true, - isSystem: false, - isNullable: true, - isUnique: false, - workspaceId: '20202020-1c25-4d02-bf25-6aeccf7ea419', - isLabelSyncedWithName: false, - relationTargetFieldMetadataId: null, - relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-8fc2-487c-b84a-55a99b145cfd', - }), jobTitle: getFlatFieldMetadataMock({ id: 'ab82c659-b553-4317-9708-998f6884c72e', objectMetadataId: '843e0b67-9619-4628-91c4-2fa62256a611', @@ -161,29 +134,6 @@ export const PERSON_FLAT_FIELDS_MOCK = { relationTargetObjectMetadataId: null, universalIdentifier: '20202020-0638-448e-8825-439134618022', }), - city: getFlatFieldMetadataMock({ - id: '61ad7592-6465-4a24-a863-0320cf7830a6', - objectMetadataId: '843e0b67-9619-4628-91c4-2fa62256a611', - type: FieldMetadataType.TEXT, - name: 'city', - label: 'City', - defaultValue: "''", - description: 'Contact’s city', - icon: 'IconMap', - standardOverrides: null, - options: null, - settings: null, - isCustom: false, - isActive: true, - isSystem: false, - isNullable: false, - isUnique: false, - workspaceId: '20202020-1c25-4d02-bf25-6aeccf7ea419', - isLabelSyncedWithName: true, - relationTargetFieldMetadataId: null, - relationTargetObjectMetadataId: null, - universalIdentifier: '20202020-5243-4ffb-afc5-2c675da41346', - }), avatarUrl: getFlatFieldMetadataMock({ id: '05e46775-93e9-46c4-8b6f-94829045b1ad', objectMetadataId: '843e0b67-9619-4628-91c4-2fa62256a611', diff --git a/packages/twenty-server/src/engine/metadata-modules/index-metadata/services/__tests__/index-metadata.service.spec.ts b/packages/twenty-server/src/engine/metadata-modules/index-metadata/services/__tests__/index-metadata.service.spec.ts index 88bedbdfd5..cbe6ff2d27 100644 --- a/packages/twenty-server/src/engine/metadata-modules/index-metadata/services/__tests__/index-metadata.service.spec.ts +++ b/packages/twenty-server/src/engine/metadata-modules/index-metadata/services/__tests__/index-metadata.service.spec.ts @@ -239,7 +239,7 @@ describe('IndexMetadataService', () => { { id: 'field-currency', universalIdentifier: 'field-currency-universal', - name: 'annualRecurringRevenue', + name: 'annualRevenue', type: FieldMetadataType.CURRENCY, }, ], @@ -269,7 +269,7 @@ describe('IndexMetadataService', () => { { id: 'field-currency', universalIdentifier: 'field-currency-universal', - name: 'annualRecurringRevenue', + name: 'annualRevenue', type: FieldMetadataType.CURRENCY, }, ], diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/services/dev-seeder-permissions.service.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/services/dev-seeder-permissions.service.ts index 1626fcc6b4..306e747e8b 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/services/dev-seeder-permissions.service.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/services/dev-seeder-permissions.service.ts @@ -270,12 +270,12 @@ export class DevSeederPermissionsService { }, }); - const personCityFieldMetadata = personObjectMetadata.fields.find( - (field) => field.name === 'city', + const personJobTitleFieldMetadata = personObjectMetadata.fields.find( + (field) => field.name === 'jobTitle', ); - if (!personCityFieldMetadata) { - throw new Error('Person city field metadata not found'); + if (!personJobTitleFieldMetadata) { + throw new Error('Person jobTitle field metadata not found'); } const companyLinkedinLinkFieldMetadata = companyObjectMetadata.fields.find( @@ -286,9 +286,9 @@ export class DevSeederPermissionsService { throw new Error('Company linkedin link field metadata not found'); } - const readOnlyOnPersonCityFieldPermission = { + const readOnlyOnPersonJobTitleFieldPermission = { objectMetadataId: personObjectMetadata.id, - fieldMetadataId: personCityFieldMetadata.id, + fieldMetadataId: personJobTitleFieldMetadata.id, canReadFieldValue: null, canUpdateFieldValue: false, }; @@ -305,7 +305,7 @@ export class DevSeederPermissionsService { input: { roleId: customRole.id, fieldPermissions: [ - readOnlyOnPersonCityFieldPermission, + readOnlyOnPersonJobTitleFieldPermission, noReadOnCompanyLinkedinLinkFieldPermission, ], }, diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds-v2.util.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds-v2.util.ts index 79153954d2..094de864bf 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds-v2.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds-v2.util.ts @@ -49,7 +49,10 @@ export const getPageLayoutWidgetDataSeedsV2 = ( const companyIdFieldId = getFieldId(companyObject, 'id'); const companyCreatedAtFieldId = getFieldId(companyObject, 'createdAt'); - const companyArrFieldId = getFieldId(companyObject, 'annualRecurringRevenue'); + const companyAnnualRevenueFieldId = getFieldId( + companyObject, + 'annualRevenue', + ); const companyNameFieldId = getFieldId(companyObject, 'name'); const companyLinkedinLinkFieldId = getFieldId(companyObject, 'linkedinLink'); @@ -133,7 +136,7 @@ export const getPageLayoutWidgetDataSeedsV2 = ( : null, // PIE chart: Revenue Distribution (Customer Analytics) - isDefined(companyArrFieldId) && isDefined(companyNameFieldId) + isDefined(companyAnnualRevenueFieldId) && isDefined(companyNameFieldId) ? ({ id: generateSeedId( workspaceId, @@ -155,7 +158,7 @@ export const getPageLayoutWidgetDataSeedsV2 = ( }, configuration: { configurationType: WidgetConfigurationType.PIE_CHART, - aggregateFieldMetadataId: companyArrFieldId, + aggregateFieldMetadataId: companyAnnualRevenueFieldId, aggregateOperation: AggregateOperations.SUM, groupByFieldMetadataId: companyNameFieldId, orderBy: GraphOrderBy.VALUE_DESC, diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds.util.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds.util.ts index 77a5164777..3c9cfadc2f 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/core/utils/get-page-layout-widget-data-seeds.util.ts @@ -12,7 +12,6 @@ import { fromPageLayoutWidgetConfigurationToUniversalConfiguration } from 'src/e import { type ObjectMetadataEntity } from 'src/engine/metadata-modules/object-metadata/object-metadata.entity'; import { AxisNameDisplay } from 'src/engine/metadata-modules/page-layout-widget/enums/axis-name-display.enum'; import { BarChartLayout } from 'src/engine/metadata-modules/page-layout-widget/enums/bar-chart-layout.enum'; -import { ObjectRecordGroupByDateGranularity } from 'src/engine/metadata-modules/page-layout-widget/enums/date-granularity.enum'; import { GraphOrderBy } from 'src/engine/metadata-modules/page-layout-widget/enums/graph-order-by.enum'; import { WidgetConfigurationType } from 'src/engine/metadata-modules/page-layout-widget/enums/widget-configuration-type.type'; import { WidgetType } from 'src/engine/metadata-modules/page-layout-widget/enums/widget-type.enum'; @@ -133,13 +132,13 @@ export const getPageLayoutWidgetDataSeeds = ( const opportunityStageFieldId = getFieldId(opportunityObject, 'stage'); const companyIdFieldId = getFieldId(companyObject, 'id'); - const companyEmployeesFieldId = getFieldId(companyObject, 'employees'); - const companyArrFieldId = getFieldId(companyObject, 'annualRecurringRevenue'); + const companyAnnualRevenueFieldId = getFieldId( + companyObject, + 'annualRevenue', + ); const companyLinkedinLinkFieldId = getFieldId(companyObject, 'linkedinLink'); - const companyAddressFieldId = getFieldId(companyObject, 'address'); const personIdFieldId = getFieldId(personObject, 'id'); - const personCityFieldId = getFieldId(personObject, 'city'); const opportunityIdFieldId = getFieldId(opportunityObject, 'id'); @@ -359,52 +358,8 @@ export const getPageLayoutWidgetDataSeeds = ( overrides: null, } satisfies SeederFlatPageLayoutWidget) : null, - isDefined(companyIdFieldId) && - isDefined(companyEmployeesFieldId) && - isDefined(companyAddressFieldId) - ? ({ - id: generateSeedId( - workspaceId, - PAGE_LAYOUT_WIDGET_SEEDS.CUSTOMER_COMPANIES_BY_SIZE, - ), - pageLayoutTabId: generateSeedId( - workspaceId, - PAGE_LAYOUT_TAB_SEEDS.CUSTOMER_OVERVIEW, - ), - title: 'Companies by Size (Stacked by City)', - type: WidgetType.GRAPH, - gridPosition: { row: 0, column: 6, rowSpan: 10, columnSpan: 6 }, - position: { - layoutMode: PageLayoutTabLayoutMode.GRID, - row: 0, - column: 6, - rowSpan: 10, - columnSpan: 6, - }, - configuration: { - configurationType: WidgetConfigurationType.BAR_CHART, - aggregateFieldMetadataId: companyIdFieldId, - aggregateOperation: AggregateOperations.COUNT, - primaryAxisGroupByFieldMetadataId: companyEmployeesFieldId, - secondaryAxisGroupByFieldMetadataId: companyAddressFieldId, - secondaryAxisGroupBySubFieldName: 'addressCity', - secondaryAxisGroupByDateGranularity: - ObjectRecordGroupByDateGranularity.DAY, - primaryAxisOrderBy: GraphOrderBy.FIELD_ASC, - axisNameDisplay: AxisNameDisplay.NONE, - displayDataLabel: false, - color: 'auto', - layout: BarChartLayout.VERTICAL, - timezone: 'UTC', - firstDayOfTheWeek: CalendarStartDay.MONDAY, - }, - objectMetadataId: companyObject?.id ?? null, - overrides: null, - } satisfies SeederFlatPageLayoutWidget) - : null, - // Customer Analytics Tab Widgets - isDefined(companyArrFieldId) + isDefined(companyAnnualRevenueFieldId) ? ({ id: generateSeedId( workspaceId, @@ -414,7 +369,7 @@ export const getPageLayoutWidgetDataSeeds = ( workspaceId, PAGE_LAYOUT_TAB_SEEDS.CUSTOMER_ANALYTICS, ), - title: 'Annual Recurring Revenue', + title: 'Annual Revenue', type: WidgetType.GRAPH, gridPosition: { row: 0, column: 0, rowSpan: 4, columnSpan: 4 }, position: { @@ -426,7 +381,7 @@ export const getPageLayoutWidgetDataSeeds = ( }, configuration: { configurationType: WidgetConfigurationType.AGGREGATE_CHART, - aggregateFieldMetadataId: companyArrFieldId, + aggregateFieldMetadataId: companyAnnualRevenueFieldId, aggregateOperation: AggregateOperations.SUM, displayDataLabel: true, timezone: 'UTC', @@ -499,44 +454,6 @@ export const getPageLayoutWidgetDataSeeds = ( overrides: null, } satisfies SeederFlatPageLayoutWidget) : null, - isDefined(personIdFieldId) && isDefined(personCityFieldId) - ? ({ - id: generateSeedId( - workspaceId, - PAGE_LAYOUT_WIDGET_SEEDS.TEAM_GEOGRAPHIC_DISTRIBUTION, - ), - pageLayoutTabId: generateSeedId( - workspaceId, - PAGE_LAYOUT_TAB_SEEDS.TEAM_OVERVIEW, - ), - title: 'Geographic Distribution', - type: WidgetType.GRAPH, - gridPosition: { row: 0, column: 6, rowSpan: 5, columnSpan: 6 }, - position: { - layoutMode: PageLayoutTabLayoutMode.GRID, - row: 0, - column: 6, - rowSpan: 5, - columnSpan: 6, - }, - configuration: { - configurationType: WidgetConfigurationType.BAR_CHART, - aggregateFieldMetadataId: personIdFieldId, - aggregateOperation: AggregateOperations.COUNT, - primaryAxisGroupByFieldMetadataId: personCityFieldId, - primaryAxisOrderBy: GraphOrderBy.VALUE_DESC, - axisNameDisplay: AxisNameDisplay.NONE, - displayDataLabel: false, - color: 'auto', - layout: BarChartLayout.VERTICAL, - timezone: 'UTC', - firstDayOfTheWeek: CalendarStartDay.MONDAY, - }, - objectMetadataId: personObject?.id ?? null, - overrides: null, - } satisfies SeederFlatPageLayoutWidget) - : null, - // Team Metrics Tab Widgets isDefined(taskIdFieldId) ? ({ diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/company-data-seeds.constant.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/company-data-seeds.constant.ts index e5de29fb94..e1b215820a 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/company-data-seeds.constant.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/company-data-seeds.constant.ts @@ -5,7 +5,6 @@ type CompanyDataSeed = { name: string; domainNamePrimaryLinkUrl: string; addressAddressCity: string; - employees: number; linkedinLinkPrimaryLinkUrl: string; createdBySource: string; createdByWorkspaceMemberId: string; @@ -22,7 +21,6 @@ export const COMPANY_DATA_SEED_COLUMNS: (keyof CompanyDataSeed)[] = [ 'name', 'domainNamePrimaryLinkUrl', 'addressAddressCity', - 'employees', 'linkedinLinkPrimaryLinkUrl', 'createdBySource', 'createdByWorkspaceMemberId', @@ -644,7 +642,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Google', domainNamePrimaryLinkUrl: 'goo.gle', addressAddressCity: 'Mountain View', - employees: 284571, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/google', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -657,7 +654,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Microsoft', domainNamePrimaryLinkUrl: 'microsoft.com', addressAddressCity: 'Redmond', - employees: 226067, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microsoft', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -670,7 +666,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Meta', domainNamePrimaryLinkUrl: 'metacareers.com', addressAddressCity: 'Menlo Park', - employees: 119511, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/meta', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -683,7 +678,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SLB', domainNamePrimaryLinkUrl: 'slb.com', addressAddressCity: 'Houston', - employees: 113151, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/slbglobal', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -696,7 +690,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cisco', domainNamePrimaryLinkUrl: 'cisco.com', addressAddressCity: 'San Jose', - employees: 99625, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cisco', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -709,7 +702,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Uber', domainNamePrimaryLinkUrl: 'uber.com', addressAddressCity: 'San Francisco', - employees: 90545, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uber-com', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -722,7 +714,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Salesforce', domainNamePrimaryLinkUrl: 'salesforce.com', addressAddressCity: 'San Francisco', - employees: 71322, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salesforce', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -735,7 +726,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Amdocs', domainNamePrimaryLinkUrl: 'amdocs.com', addressAddressCity: 'Chesterfield', - employees: 35731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/amdocs', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -748,7 +738,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'VMware', domainNamePrimaryLinkUrl: 'vmware.com', addressAddressCity: 'Palo Alto', - employees: 34759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vmware', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -761,7 +750,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'GlobalLogic', domainNamePrimaryLinkUrl: 'globallogic.com', addressAddressCity: 'Santa Clara', - employees: 24461, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/globallogic', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -774,7 +762,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ServiceNow', domainNamePrimaryLinkUrl: 'servicenow.com', addressAddressCity: 'Santa Clara', - employees: 24104, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/servicenow', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -787,7 +774,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SS&C Technologies', domainNamePrimaryLinkUrl: 'ssctech.com', addressAddressCity: 'Windsor', - employees: 20311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ss-c-technologies', createdBySource: 'IMPORT', @@ -801,7 +787,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Workday', domainNamePrimaryLinkUrl: 'workday.com', addressAddressCity: 'Pleasanton', - employees: 20036, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workday', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -814,7 +799,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Red Hat', domainNamePrimaryLinkUrl: 'redhat.com', addressAddressCity: 'Raleigh', - employees: 19945, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/red-hat', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -827,7 +811,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NetSuite', domainNamePrimaryLinkUrl: 'netsuite.com', addressAddressCity: 'Austin', - employees: 19269, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netsuite', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -840,7 +823,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Synopsys Inc', domainNamePrimaryLinkUrl: 'synopsys.com', addressAddressCity: 'Sunnyvale', - employees: 18061, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/synopsys', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -853,7 +835,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Siemens Digital Industries Software', domainNamePrimaryLinkUrl: 'sw.siemens.com', addressAddressCity: 'Plano', - employees: 17262, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/siemenssoftware', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -866,7 +847,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SAS', domainNamePrimaryLinkUrl: 'sas.com', addressAddressCity: 'Cary', - employees: 16287, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sas', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -879,7 +859,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Intuit', domainNamePrimaryLinkUrl: 'intuit.com', addressAddressCity: 'Mountain View', - employees: 15851, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intuit', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -892,7 +871,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Broadcom Software', domainNamePrimaryLinkUrl: 'broadcom.com', addressAddressCity: 'San Jose', - employees: 15127, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/broadcomsoftware', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -905,7 +883,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Autodesk', domainNamePrimaryLinkUrl: 'autodesk.com', addressAddressCity: 'San Francisco', - employees: 14593, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/autodesk', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -918,7 +895,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Epic', domainNamePrimaryLinkUrl: 'epic.com', addressAddressCity: 'Verona', - employees: 13765, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/epic1979', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -931,7 +907,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bosch USA', domainNamePrimaryLinkUrl: 'bosch.us', addressAddressCity: 'Farmington', - employees: 13754, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/boschusa', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -944,7 +919,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cloud Software Group', domainNamePrimaryLinkUrl: 'cloudsoftwaregroup.com', addressAddressCity: 'Fort Lauderdale', - employees: 13111, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cloudsoftwaregroup', createdBySource: 'EMAIL', @@ -958,7 +932,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Pitney Bowes', domainNamePrimaryLinkUrl: 'pitneybowes.com', addressAddressCity: 'Stamford', - employees: 12306, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pitney-bowes', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -971,7 +944,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Juniper Networks', domainNamePrimaryLinkUrl: 'juniper.net', addressAddressCity: 'Sunnyvale', - employees: 11928, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/juniper-networks', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -984,7 +956,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Chegg Inc.', domainNamePrimaryLinkUrl: 'chegg.com', addressAddressCity: 'Santa Clara', - employees: 10790, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/chegg-inc-', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -997,7 +968,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Teradata', domainNamePrimaryLinkUrl: 'teradata.com', addressAddressCity: 'San Diego', - employees: 10748, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/teradata', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1010,7 +980,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NICE', domainNamePrimaryLinkUrl: 'nice.com', addressAddressCity: 'Hoboken', - employees: 10258, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nice-systems', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1023,7 +992,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cadence Design Systems', domainNamePrimaryLinkUrl: 'cadence.com', addressAddressCity: 'San Jose', - employees: 9377, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cadence-design-systems', createdBySource: 'EMAIL', @@ -1037,7 +1005,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cox Automotive Inc.', domainNamePrimaryLinkUrl: 'coxautoinc.com', addressAddressCity: 'Atlanta', - employees: 9331, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cox-automotive-inc-', createdBySource: 'MANUAL', @@ -1051,7 +1018,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Trimble Inc.', domainNamePrimaryLinkUrl: 'trimble.com', addressAddressCity: 'Broomfield', - employees: 9311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trimble', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1064,7 +1030,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: '[24]7.ai', domainNamePrimaryLinkUrl: '247.ai', addressAddressCity: 'San Jose', - employees: 9170, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/24-7-ai', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1077,7 +1042,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Akamai Technologies', domainNamePrimaryLinkUrl: 'akamai.com', addressAddressCity: 'Cambridge', - employees: 9168, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/akamai-technologies', createdBySource: 'MANUAL', @@ -1091,7 +1055,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Splunk', domainNamePrimaryLinkUrl: 'splunk.com', addressAddressCity: 'San Francisco', - employees: 8891, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/splunk', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1104,7 +1067,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Okta', domainNamePrimaryLinkUrl: 'okta.com', addressAddressCity: 'San Francisco', - employees: 8860, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/okta-inc-', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1117,7 +1079,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ceridian', domainNamePrimaryLinkUrl: 'ceridian.com', addressAddressCity: 'Minneapolis', - employees: 8813, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ceridian', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1130,7 +1091,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RealPage, Inc.', domainNamePrimaryLinkUrl: 'realpage.com', addressAddressCity: 'Richardson', - employees: 8227, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/realpage', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1143,7 +1103,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Freelance', domainNamePrimaryLinkUrl: 'jobicy.com', addressAddressCity: 'Ny', - employees: 8180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pro-freelance', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1156,7 +1115,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Stripe', domainNamePrimaryLinkUrl: 'stripe.com', addressAddressCity: 'South San Francisco', - employees: 8145, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stripe', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1169,7 +1127,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Shutterfly', domainNamePrimaryLinkUrl: 'shutterflyinc.com', addressAddressCity: 'San Jose', - employees: 8070, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shutterfly', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1182,7 +1139,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Unity', domainNamePrimaryLinkUrl: 'unity.com', addressAddressCity: 'San Francisco', - employees: 8063, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/unity', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1195,7 +1151,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Veeva Systems', domainNamePrimaryLinkUrl: 'veeva.com', addressAddressCity: 'Pleasanton', - employees: 7831, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/veeva-systems', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1208,7 +1163,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Nuance Communications', domainNamePrimaryLinkUrl: 'nuance.com', addressAddressCity: 'Burlington', - employees: 7761, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nuance-communications', createdBySource: 'IMPORT', @@ -1222,7 +1176,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Freshworks', domainNamePrimaryLinkUrl: 'freshworks.com', addressAddressCity: 'San Mateo', - employees: 7687, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/freshworks-inc', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1235,7 +1188,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Seal Software, a DocuSign Company', domainNamePrimaryLinkUrl: 'seal-software.com', addressAddressCity: 'Walnut Creek', - employees: 7586, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/seal-software-group', createdBySource: 'EMAIL', @@ -1249,7 +1201,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'DocuSign', domainNamePrimaryLinkUrl: 'docusign.com', addressAddressCity: 'San Francisco', - employees: 7557, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/docusign', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1262,7 +1213,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Nutanix', domainNamePrimaryLinkUrl: 'nutanix.com', addressAddressCity: 'San Jose', - employees: 7454, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nutanix', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1275,7 +1225,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Genesys', domainNamePrimaryLinkUrl: 'genesys.com', addressAddressCity: 'Menlo Park', - employees: 7371, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/genesys', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1288,7 +1237,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SAP Concur', domainNamePrimaryLinkUrl: 'concur.com', addressAddressCity: 'Bellevue', - employees: 7305, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sapconcur', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1301,7 +1249,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Square', domainNamePrimaryLinkUrl: 'squareup.com', addressAddressCity: 'San Francisco', - employees: 7233, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/joinsquare', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1314,7 +1261,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Snap Inc.', domainNamePrimaryLinkUrl: 'snap.com', addressAddressCity: 'Santa Monica', - employees: 7219, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/snap-inc-co', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1327,7 +1273,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MathWorks', domainNamePrimaryLinkUrl: 'mathworks.com', addressAddressCity: 'Natick', - employees: 7188, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-mathworks_2', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1340,7 +1285,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PTC', domainNamePrimaryLinkUrl: 'ptc.co', addressAddressCity: 'Boston', - employees: 7119, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ptcinc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1353,7 +1297,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ansys', domainNamePrimaryLinkUrl: 'ansys.com', addressAddressCity: 'Canonsburg', - employees: 7112, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ansys-inc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1366,7 +1309,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aricent', domainNamePrimaryLinkUrl: 'altran.com', addressAddressCity: 'Santa Clara', - employees: 7016, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aricent', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1379,7 +1321,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Databricks', domainNamePrimaryLinkUrl: 'databricks.com', addressAddressCity: 'San Francisco', - employees: 6927, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/databricks', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1392,7 +1333,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Shipt', domainNamePrimaryLinkUrl: 'shipt.com', addressAddressCity: 'Birmingham', - employees: 6902, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shipt', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1405,7 +1345,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CSG', domainNamePrimaryLinkUrl: 'csgi.com', addressAddressCity: 'Englewood', - employees: 6849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/csg-', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1418,7 +1357,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Twilio', domainNamePrimaryLinkUrl: 'twilio.com', addressAddressCity: 'San Francisco', - employees: 6721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/twilio-inc-', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1431,7 +1369,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Veritas Technologies LLC', domainNamePrimaryLinkUrl: 'veritas.com', addressAddressCity: 'Santa Clara', - employees: 6718, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/veritas-technologies-llc', createdBySource: 'API', @@ -1445,7 +1382,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Citrix', domainNamePrimaryLinkUrl: 'citrix.com', addressAddressCity: 'Fort Lauderdale', - employees: 6528, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/citrix', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1458,7 +1394,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tyler Technologies', domainNamePrimaryLinkUrl: 'tylertech.com', addressAddressCity: 'Plano', - employees: 6496, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tyler-technologies', createdBySource: 'MANUAL', @@ -1472,7 +1407,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Esri', domainNamePrimaryLinkUrl: 'esri.com', addressAddressCity: 'Redlands', - employees: 6463, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/esri', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1485,7 +1419,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Paycom', domainNamePrimaryLinkUrl: 'paycom.com', addressAddressCity: 'Oklahoma City', - employees: 6378, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paycom', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1498,7 +1431,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Roblox', domainNamePrimaryLinkUrl: 'roblox.com', addressAddressCity: 'San Mateo', - employees: 6297, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/roblox', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1511,7 +1443,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zendesk', domainNamePrimaryLinkUrl: 'zendesk.com', addressAddressCity: 'San Francisco', - employees: 6255, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zendesk', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1524,7 +1455,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Newfold Digital', domainNamePrimaryLinkUrl: 'newfold.com', addressAddressCity: 'Jacksonville', - employees: 6213, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/newfold', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1537,7 +1467,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Informatica', domainNamePrimaryLinkUrl: 'informatica.com', addressAddressCity: 'Redwood City', - employees: 5850, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/informatica', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1550,7 +1479,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Caf\u00e9', domainNamePrimaryLinkUrl: 'at.cafe', addressAddressCity: 'New York', - employees: 5795, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/get-cafe', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1563,7 +1491,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mavenir', domainNamePrimaryLinkUrl: 'mavenir.com', addressAddressCity: 'Richardson', - employees: 5763, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mavenir', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1576,7 +1503,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Allscripts', domainNamePrimaryLinkUrl: 'allscripts.com', addressAddressCity: 'Chicago', - employees: 5719, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/allscripts', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1589,7 +1515,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Yardi', domainNamePrimaryLinkUrl: 'yardi.com', addressAddressCity: 'Goleta', - employees: 5583, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/yardi', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1602,7 +1527,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Datadog', domainNamePrimaryLinkUrl: 'datadoghq.com', addressAddressCity: 'New York', - employees: 5470, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datadog', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1615,7 +1539,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Epicor', domainNamePrimaryLinkUrl: 'epicor.com', addressAddressCity: 'Austin', - employees: 5310, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/epicor-software-corp', createdBySource: 'WORKFLOW', @@ -1629,7 +1552,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Hexagon Asset Lifecycle Intelligence', domainNamePrimaryLinkUrl: 'hexagonppm.com', addressAddressCity: 'Madison', - employees: 5262, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hexagonassetlifecycleintelligence', createdBySource: 'WORKFLOW', @@ -1643,7 +1565,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Blue Yonder', domainNamePrimaryLinkUrl: 'blueyonder.com', addressAddressCity: 'Scottsdale', - employees: 5205, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blueyonder', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1656,7 +1577,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MongoDB', domainNamePrimaryLinkUrl: 'mongodb.com', addressAddressCity: 'New York', - employees: 5182, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mongodbinc', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1669,7 +1589,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'uTest', domainNamePrimaryLinkUrl: 'utest.com', addressAddressCity: 'Framingham', - employees: 5125, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/utest', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1682,7 +1601,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Paylocity', domainNamePrimaryLinkUrl: 'paylocity.com', addressAddressCity: 'Schaumburg', - employees: 5095, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paylocity', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1695,7 +1613,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'IAC', domainNamePrimaryLinkUrl: 'iac.com', addressAddressCity: 'New York', - employees: 5040, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/iac', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1708,7 +1625,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Toast', domainNamePrimaryLinkUrl: 'toasttab.com', addressAddressCity: 'Boston', - employees: 5008, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/toast-inc', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1721,7 +1637,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bentley Systems', domainNamePrimaryLinkUrl: 'bentley.com', addressAddressCity: 'Exton', - employees: 4862, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bentley-systems', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1734,7 +1649,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Owner.com', domainNamePrimaryLinkUrl: 'owner.com', addressAddressCity: 'Palo Alto', - employees: 4677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/profitboss', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1747,7 +1661,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'eClinicalWorks', domainNamePrimaryLinkUrl: 'eclinicalworks.com', addressAddressCity: 'Westborough', - employees: 4661, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eclinicalworks', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1760,7 +1673,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Altimetrik', domainNamePrimaryLinkUrl: 'altimetrik.com', addressAddressCity: 'Southfield', - employees: 4629, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altimetrik', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1773,7 +1685,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CA Technologies', domainNamePrimaryLinkUrl: 'ca.com', addressAddressCity: 'San Jose', - employees: 4616, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ca-technologies', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1786,7 +1697,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dynatrace', domainNamePrimaryLinkUrl: 'dynatrace.com', addressAddressCity: 'Waltham', - employees: 4502, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dynatrace', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1799,7 +1709,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sprinklr', domainNamePrimaryLinkUrl: 'sprinklr.com', addressAddressCity: 'New York', - employees: 4495, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sprinklr', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1812,7 +1721,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'UiPath', domainNamePrimaryLinkUrl: 'uipath.com', addressAddressCity: 'New York', - employees: 4484, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uipath', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1825,7 +1733,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'The Reynolds and Reynolds Company', domainNamePrimaryLinkUrl: 'reyrey.com', addressAddressCity: 'Dayton', - employees: 4473, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-reynolds-and-reynolds-company', createdBySource: 'MANUAL', @@ -1839,7 +1746,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Stealth', domainNamePrimaryLinkUrl: 'stealthstartup.com', addressAddressCity: 'San Francisco', - employees: 4472, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stealthstartup', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1852,7 +1758,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WEX', domainNamePrimaryLinkUrl: 'wexinc.com', addressAddressCity: 'Portland', - employees: 4377, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wexinc', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1865,7 +1770,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HighRadius', domainNamePrimaryLinkUrl: 'highradius.com', addressAddressCity: 'Houston', - employees: 4316, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/highradius', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1878,7 +1782,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Avalara', domainNamePrimaryLinkUrl: 'avalara.com', addressAddressCity: 'Seattle', - employees: 4311, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avalara', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1891,7 +1794,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Manhattan Associates', domainNamePrimaryLinkUrl: 'manh.com', addressAddressCity: 'Atlanta', - employees: 4236, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/manhattan-associates', createdBySource: 'CALENDAR', @@ -1905,7 +1807,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aspen Technology', domainNamePrimaryLinkUrl: 'aspentech.com', addressAddressCity: 'Bedford', - employees: 4194, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aspen-technology', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1918,7 +1819,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Hyland', domainNamePrimaryLinkUrl: 'hyland.com', addressAddressCity: 'Westlake', - employees: 4166, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hyland-software', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1931,7 +1831,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Palantir Technologies', domainNamePrimaryLinkUrl: 'palantir.com', addressAddressCity: 'Denver', - employees: 4104, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/palantir-technologies', createdBySource: 'MANUAL', @@ -1945,7 +1844,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Market America, Inc.', domainNamePrimaryLinkUrl: 'marketamerica.com', addressAddressCity: 'Greensboro', - employees: 4091, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/market-america-inc-', createdBySource: 'MANUAL', @@ -1959,7 +1857,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Procore Technologies', domainNamePrimaryLinkUrl: 'procore.com', addressAddressCity: 'Carpinteria', - employees: 4010, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/procore-technologies', createdBySource: 'MANUAL', @@ -1973,7 +1870,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ZoomInfo', domainNamePrimaryLinkUrl: 'zoominfo.com', addressAddressCity: 'Vancouver', - employees: 3875, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zoominfo', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1986,7 +1882,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'TIBCO', domainNamePrimaryLinkUrl: 'tibco.com', addressAddressCity: 'Palo Alto', - employees: 3871, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tibco', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -1999,7 +1894,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'GE Digital', domainNamePrimaryLinkUrl: 'ge.com', addressAddressCity: 'San Ramon', - employees: 3849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ge-digital', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2012,7 +1906,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RMS', domainNamePrimaryLinkUrl: 'rms.com', addressAddressCity: 'Newark', - employees: 3844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rms', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2025,7 +1918,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tableau', domainNamePrimaryLinkUrl: 'tableau.com', addressAddressCity: 'Seattle', - employees: 3838, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tableau-software', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2038,7 +1930,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Extreme Networks', domainNamePrimaryLinkUrl: 'extremenetworks.com', addressAddressCity: 'Morrisville', - employees: 3799, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/extreme-networks', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2051,7 +1942,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Smartsheet', domainNamePrimaryLinkUrl: 'smartsheet.com', addressAddressCity: 'Bellevue', - employees: 3798, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartsheet-com', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2064,7 +1954,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Quest Software', domainNamePrimaryLinkUrl: 'quest.com', addressAddressCity: 'Aliso Viejo', - employees: 3795, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quest-software', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2077,7 +1966,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Motive', domainNamePrimaryLinkUrl: 'gomotive.com', addressAddressCity: 'San Francisco', - employees: 3788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/motive-inc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2090,7 +1978,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Retired Life', domainNamePrimaryLinkUrl: 'swde.com', addressAddressCity: 'San Jose', - employees: 3774, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/retired-life', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2103,7 +1990,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dropbox', domainNamePrimaryLinkUrl: 'dropbox.com', addressAddressCity: 'San Francisco', - employees: 3751, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dropbox', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2116,7 +2002,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Deltek', domainNamePrimaryLinkUrl: 'deltek.com', addressAddressCity: 'Herndon', - employees: 3727, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/deltek', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2129,7 +2014,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'e2open', domainNamePrimaryLinkUrl: 'e2open.com', addressAddressCity: 'Austin', - employees: 3694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/e2open', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2142,7 +2026,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Altair', domainNamePrimaryLinkUrl: 'altair.com', addressAddressCity: 'Troy', - employees: 3596, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altair-engineering', createdBySource: 'WORKFLOW', @@ -2156,7 +2039,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Gopuff', domainNamePrimaryLinkUrl: 'gopuff.com', addressAddressCity: 'Philadelphia', - employees: 3574, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gopuff', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2169,7 +2051,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'FICO', domainNamePrimaryLinkUrl: 'fico.com', addressAddressCity: 'Bozeman', - employees: 3511, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fico', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2182,7 +2063,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Elastic', domainNamePrimaryLinkUrl: 'elastic.co', addressAddressCity: 'Mountain View', - employees: 3489, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/elastic-co', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2195,7 +2075,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Blackbaud', domainNamePrimaryLinkUrl: 'blackbaud.com', addressAddressCity: 'Charleston', - employees: 3478, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blackbaud', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2208,7 +2087,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MicroStrategy', domainNamePrimaryLinkUrl: 'microstrategy.com', addressAddressCity: 'Vienna', - employees: 3469, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microstrategy', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2221,7 +2099,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Discord', domainNamePrimaryLinkUrl: 'discord.com', addressAddressCity: 'San Francisco', - employees: 3467, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/discord', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2234,7 +2111,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Inovalon', domainNamePrimaryLinkUrl: 'inovalon.com', addressAddressCity: 'Bowie', - employees: 3459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/inovalon', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2247,7 +2123,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Progress', domainNamePrimaryLinkUrl: 'progress.com', addressAddressCity: 'Burlington', - employees: 3428, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/progress-software', createdBySource: 'WORKFLOW', @@ -2261,7 +2136,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Rubrik', domainNamePrimaryLinkUrl: 'rbrk.co', addressAddressCity: 'Palo Alto', - employees: 3370, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rubrik-inc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2274,7 +2148,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Axtria - Ingenious Insights', domainNamePrimaryLinkUrl: 'axtria.com', addressAddressCity: 'Berkeley Heights', - employees: 3367, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/axtria', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2287,7 +2160,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Audible', domainNamePrimaryLinkUrl: 'audible.com', addressAddressCity: 'Newark', - employees: 3192, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/audible', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2300,7 +2172,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kaseya', domainNamePrimaryLinkUrl: 'kaseya.com', addressAddressCity: 'Miami', - employees: 3191, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kaseya', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2313,7 +2184,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MRI Software', domainNamePrimaryLinkUrl: 'mrisoftware.com', addressAddressCity: 'Solon', - employees: 3107, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mri-software-llc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2326,7 +2196,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CyberArk', domainNamePrimaryLinkUrl: 'cyberark.com', addressAddressCity: 'Newton Center', - employees: 3099, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cyber-ark-software', createdBySource: 'MANUAL', @@ -2340,7 +2209,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cornerstone OnDemand', domainNamePrimaryLinkUrl: 'cornerstoneondemand.com', addressAddressCity: 'Santa Monica', - employees: 3089, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cornerstone-ondemand', createdBySource: 'CALENDAR', @@ -2354,7 +2222,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Reddit, Inc.', domainNamePrimaryLinkUrl: 'redditinc.com', addressAddressCity: 'San Francisco', - employees: 3061, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/reddit-com', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2367,7 +2234,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ivanti', domainNamePrimaryLinkUrl: 'ivanti.com', addressAddressCity: 'South Jordan', - employees: 3056, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ivanti', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2380,7 +2246,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cloudera', domainNamePrimaryLinkUrl: 'cloudera.com', addressAddressCity: 'Santa Clara', - employees: 3007, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cloudera', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2393,7 +2258,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Medidata Solutions', domainNamePrimaryLinkUrl: 'medidata.com', addressAddressCity: 'New York', - employees: 3001, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/medidata-solutions', createdBySource: 'SYSTEM', @@ -2407,7 +2271,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Commvault', domainNamePrimaryLinkUrl: 'commvault.com', addressAddressCity: 'Eatontown', - employees: 2974, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/commvault', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2420,7 +2283,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ConnectWise', domainNamePrimaryLinkUrl: 'connectwise.com', addressAddressCity: 'Tampa', - employees: 2937, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/connectwise', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2433,7 +2295,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'BILL', domainNamePrimaryLinkUrl: 'bill.com', addressAddressCity: 'Alviso', - employees: 2932, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bill', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2446,7 +2307,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Alteryx', domainNamePrimaryLinkUrl: 'alteryx.com', addressAddressCity: 'Irvine', - employees: 2916, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alteryx', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2459,7 +2319,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MNC Software', domainNamePrimaryLinkUrl: 'mncsoftware.com', addressAddressCity: 'San Diego', - employees: 2912, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mnc-software', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2472,7 +2331,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Celonis', domainNamePrimaryLinkUrl: 'celonis.com', addressAddressCity: 'New York', - employees: 2906, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/celonis', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2485,7 +2343,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Attachmate', domainNamePrimaryLinkUrl: 'microfocus.com', addressAddressCity: 'Seattle', - employees: 2889, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/attachmate', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2498,7 +2355,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NETSCOUT', domainNamePrimaryLinkUrl: 'netscout.com', addressAddressCity: 'Westford', - employees: 2853, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netscout', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2511,7 +2367,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Confluent', domainNamePrimaryLinkUrl: 'confluent.io', addressAddressCity: 'Mountain View', - employees: 2844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/confluent', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2524,7 +2379,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Samsara', domainNamePrimaryLinkUrl: 'samsara.com', addressAddressCity: 'San Francisco', - employees: 2824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/samsara', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2537,7 +2391,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Chetu, Inc.', domainNamePrimaryLinkUrl: 'chetu.com', addressAddressCity: 'Fort Lauderdale', - employees: 2809, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/chetu-inc-', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2550,7 +2403,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kronos Incorporated', domainNamePrimaryLinkUrl: 'ukg.com', addressAddressCity: 'Lowell', - employees: 2808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kronos', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2563,7 +2415,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Qlik', domainNamePrimaryLinkUrl: 'qlik.com', addressAddressCity: 'King Of Prussia', - employees: 2779, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qlik', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2576,7 +2427,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Vertafore', domainNamePrimaryLinkUrl: 'vertafore.com', addressAddressCity: 'Denver', - employees: 2768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertafore', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2589,7 +2439,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Asana', domainNamePrimaryLinkUrl: 'asana.com', addressAddressCity: 'San Francisco', - employees: 2753, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asana', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2602,7 +2451,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Jamf', domainNamePrimaryLinkUrl: 'jamf.com', addressAddressCity: 'Minneapolis', - employees: 2721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jamf-software', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2615,7 +2463,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Paycor', domainNamePrimaryLinkUrl: 'paycor.com', addressAddressCity: 'Cincinnati', - employees: 2719, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paycor', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2628,7 +2475,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Hudl', domainNamePrimaryLinkUrl: 'hudl.com', addressAddressCity: 'Lincoln', - employees: 2709, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hudl', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2641,7 +2487,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Precisely', domainNamePrimaryLinkUrl: 'precisely.com', addressAddressCity: 'Burlington', - employees: 2662, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/preciselydata', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2654,7 +2499,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'New Relic', domainNamePrimaryLinkUrl: 'newrelic.com', addressAddressCity: 'San Francisco', - employees: 2636, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/new-relic-inc-', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2667,7 +2511,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aptean', domainNamePrimaryLinkUrl: 'aptean.com', addressAddressCity: 'Alpharetta', - employees: 2617, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aptean', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2680,7 +2523,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'o9 Solutions, Inc.', domainNamePrimaryLinkUrl: 'o9solutions.com', addressAddressCity: 'Dallas', - employees: 2612, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/o9solutions', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2693,7 +2535,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SpotOn', domainNamePrimaryLinkUrl: 'spoton.com', addressAddressCity: 'San Francisco', - employees: 2608, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/spoton', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2706,7 +2547,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Automation Anywhere', domainNamePrimaryLinkUrl: 'automationanywhere.com', addressAddressCity: 'San Jose', - employees: 2588, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/automation-anywhere', createdBySource: 'EMAIL', @@ -2720,7 +2560,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tekion Corp', domainNamePrimaryLinkUrl: 'tekion.com', addressAddressCity: 'Pleasanton', - employees: 2579, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tekion', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2733,7 +2572,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aurora', domainNamePrimaryLinkUrl: 'aurora.tech', addressAddressCity: 'Mountain View', - employees: 2557, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aurora-inc.', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2746,7 +2584,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SolarWinds', domainNamePrimaryLinkUrl: 'solarwinds.com', addressAddressCity: 'Austin', - employees: 2529, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/solarwinds', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2759,7 +2596,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'GoTo', domainNamePrimaryLinkUrl: 'goto.com', addressAddressCity: 'Boston', - employees: 2505, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/goto', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2772,7 +2608,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PROS', domainNamePrimaryLinkUrl: 'pros.com', addressAddressCity: 'Houston', - employees: 2479, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pros', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2785,7 +2620,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Miro', domainNamePrimaryLinkUrl: 'miro.com', addressAddressCity: 'San Francisco', - employees: 2445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mirohq', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2798,7 +2632,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kofax', domainNamePrimaryLinkUrl: 'kofax.com', addressAddressCity: 'Irvine', - employees: 2442, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kofax', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2811,7 +2644,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Accolite Digital', domainNamePrimaryLinkUrl: 'accolite.com', addressAddressCity: 'Addison', - employees: 2438, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accolitedigital', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2824,7 +2656,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HashiCorp', domainNamePrimaryLinkUrl: 'hashicorp.com', addressAddressCity: 'San Francisco', - employees: 2436, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hashicorp', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2837,7 +2668,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Pluralsight', domainNamePrimaryLinkUrl: 'pluralsight.com', addressAddressCity: 'Draper', - employees: 2433, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pluralsight', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2850,7 +2680,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bottomline Technologies', domainNamePrimaryLinkUrl: 'bottomline.com', addressAddressCity: 'Portsmouth', - employees: 2407, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bottomline-technologies', createdBySource: 'EMAIL', @@ -2864,7 +2693,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Anaplan', domainNamePrimaryLinkUrl: 'anaplan.com', addressAddressCity: 'San Francisco', - employees: 2401, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/anaplan', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2877,7 +2705,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OneTrust', domainNamePrimaryLinkUrl: 'onetrust.com', addressAddressCity: 'Atlanta', - employees: 2383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onetrust', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2890,7 +2717,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Medallia', domainNamePrimaryLinkUrl: 'medallia.com', addressAddressCity: 'Pleasanton', - employees: 2381, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/medallia-inc.', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2903,7 +2729,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SailPoint', domainNamePrimaryLinkUrl: 'sailpoint.com', addressAddressCity: 'Austin', - employees: 2366, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sailpoint-technologies', createdBySource: 'WEBHOOK', @@ -2917,7 +2742,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Appian Corporation', domainNamePrimaryLinkUrl: 'appian.com', addressAddressCity: 'Mc Lean', - employees: 2345, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appian-corporation', createdBySource: 'EMAIL', @@ -2931,7 +2755,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dealertrack', domainNamePrimaryLinkUrl: 'dealertrack.com', addressAddressCity: 'New Hyde Park', - employees: 2335, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dealertrack', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2944,7 +2767,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'impact.com', domainNamePrimaryLinkUrl: 'impact.com', addressAddressCity: 'Santa Barbara', - employees: 2327, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/impactdotcom', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2957,7 +2779,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Inhabit\u00ae', domainNamePrimaryLinkUrl: 'inhabitiq.com', addressAddressCity: 'Knoxville', - employees: 2286, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/inhabit-iq', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2970,7 +2791,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SymphonyAI', domainNamePrimaryLinkUrl: 'symphonyai.com', addressAddressCity: 'Palo Alto', - employees: 2282, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/symphonyai', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -2983,7 +2803,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CCC Intelligent Solutions', domainNamePrimaryLinkUrl: 'cccis.com', addressAddressCity: 'Chicago', - employees: 2282, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ccc-intelligent-solutions', createdBySource: 'IMPORT', @@ -2997,7 +2816,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Toshiba Global Commerce Solutions', domainNamePrimaryLinkUrl: 'toshiba.com', addressAddressCity: 'Durham', - employees: 2281, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/toshibacommerce', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3010,7 +2828,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Vertex Inc.', domainNamePrimaryLinkUrl: 'vertexinc.com', addressAddressCity: 'King Of Prussia', - employees: 2265, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertex-inc.', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3023,7 +2840,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PRO Unlimited', domainNamePrimaryLinkUrl: 'magnitglobal.com', addressAddressCity: 'San Francisco', - employees: 2264, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/prounlimited', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3036,7 +2852,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Five9', domainNamePrimaryLinkUrl: 'five9.com', addressAddressCity: 'San Ramon', - employees: 2253, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/five9', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3049,7 +2864,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cohesity', domainNamePrimaryLinkUrl: 'cohesity.com', addressAddressCity: 'San Jose', - employees: 2252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cohesity', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3062,7 +2876,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Wind River', domainNamePrimaryLinkUrl: 'windriver.com', addressAddressCity: 'Alameda', - employees: 2244, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wind-river', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3075,7 +2888,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Icertis', domainNamePrimaryLinkUrl: 'icertis.com', addressAddressCity: 'Bellevue', - employees: 2233, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/icertis', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3088,7 +2900,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Navan', domainNamePrimaryLinkUrl: 'navan.com', addressAddressCity: 'Palo Alto', - employees: 2221, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navan', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3101,7 +2912,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Diligent', domainNamePrimaryLinkUrl: 'diligent.com', addressAddressCity: 'New York', - employees: 2215, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/diligent-board-member-services', createdBySource: 'EMAIL', @@ -3115,7 +2925,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Applied Systems', domainNamePrimaryLinkUrl: 'appliedsystems.com', addressAddressCity: 'University Park', - employees: 2198, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/applied-systems', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3128,7 +2937,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Forcepoint', domainNamePrimaryLinkUrl: 'forcepoint.com', addressAddressCity: 'Austin', - employees: 2196, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/forcepoint', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3141,7 +2949,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Compuware', domainNamePrimaryLinkUrl: 'bmc.com', addressAddressCity: 'Detroit', - employees: 2183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/compuware', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3154,7 +2961,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Netsmart', domainNamePrimaryLinkUrl: 'ntst.com', addressAddressCity: 'Leawood', - employees: 2177, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netsmart', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3167,7 +2973,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'The Apache Software Foundation', domainNamePrimaryLinkUrl: 'apache.org', addressAddressCity: 'Wilmington', - employees: 2177, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-apache-software-foundation', createdBySource: 'MANUAL', @@ -3181,7 +2986,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ArisGlobal', domainNamePrimaryLinkUrl: 'arisglobal.com', addressAddressCity: 'Miami', - employees: 2168, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aris-global', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3194,7 +2998,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WORKING BY MY SELF', domainNamePrimaryLinkUrl: 'fcutechnologies.com', addressAddressCity: 'Fort Lauderdale', - employees: 2148, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/working-by-my-self', createdBySource: 'EMAIL', @@ -3208,7 +3011,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Varonis', domainNamePrimaryLinkUrl: 'varonis.com', addressAddressCity: 'New York', - employees: 2140, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/varonis', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3221,7 +3023,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Fever', domainNamePrimaryLinkUrl: 'feverup.com', addressAddressCity: 'New York', - employees: 2125, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fever-up', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3234,7 +3035,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Agilysys', domainNamePrimaryLinkUrl: 'agilysys.com', addressAddressCity: 'Alpharetta', - employees: 2081, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/agilysys', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3247,7 +3047,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OutSystems', domainNamePrimaryLinkUrl: 'outsystems.com', addressAddressCity: 'Boston', - employees: 2057, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outsystems', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3260,7 +3059,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Entrata', domainNamePrimaryLinkUrl: 'entrata.com', addressAddressCity: 'Lehi', - employees: 2045, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/entratasoftware', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3273,7 +3071,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Verkada', domainNamePrimaryLinkUrl: 'verkada.com', addressAddressCity: 'San Mateo', - employees: 2044, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/verkada', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3286,7 +3083,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Majesco', domainNamePrimaryLinkUrl: 'majesco.com', addressAddressCity: 'Morristown', - employees: 2021, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/majesco', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3299,7 +3095,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Boomi', domainNamePrimaryLinkUrl: 'boomi.com', addressAddressCity: 'Wayne', - employees: 2009, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/boomi-inc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3312,7 +3107,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PDI Technologies', domainNamePrimaryLinkUrl: 'pditechnologies.com', addressAddressCity: 'Alpharetta', - employees: 2005, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pdi-technologies', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3325,7 +3119,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ServiceTitan', domainNamePrimaryLinkUrl: 'servicetitan.com', addressAddressCity: 'Glendale', - employees: 1997, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/servicetitan', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3338,7 +3131,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sitecore', domainNamePrimaryLinkUrl: 'sitecore.com', addressAddressCity: 'San Francisco', - employees: 1943, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sitecore', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3351,7 +3143,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SAP SuccessFactors', domainNamePrimaryLinkUrl: 'sap.com', addressAddressCity: 'South San Francisco', - employees: 1941, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/successfactors', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3364,7 +3155,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Postman', domainNamePrimaryLinkUrl: 'postman.com', addressAddressCity: 'San Francisco', - employees: 1928, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/postman-platform', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3377,7 +3167,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Scale AI', domainNamePrimaryLinkUrl: 'scale.com', addressAddressCity: 'San Francisco', - employees: 1906, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/scaleai', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3390,7 +3179,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Duck Creek Technologies', domainNamePrimaryLinkUrl: 'duckcreek.com', addressAddressCity: 'Boston', - employees: 1894, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/duck-creek-technologies', createdBySource: 'MANUAL', @@ -3404,7 +3192,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MICROS Systems Inc', domainNamePrimaryLinkUrl: 'oracle.com', addressAddressCity: 'Columbia', - employees: 1882, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/micros-systems-inc', createdBySource: 'IMPORT', @@ -3418,7 +3205,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Riverbed Technology', domainNamePrimaryLinkUrl: 'riverbed.com', addressAddressCity: 'San Francisco', - employees: 1874, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riverbed-technology', createdBySource: 'MANUAL', @@ -3432,7 +3218,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Fast Enterprises, LLC', domainNamePrimaryLinkUrl: 'fastenterprises.com', addressAddressCity: 'Englewood', - employees: 1833, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fast-enterprises', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3445,7 +3230,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Alvaria, Inc.', domainNamePrimaryLinkUrl: 'alvaria.com', addressAddressCity: 'Westford', - employees: 1830, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alvaria-inc', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3458,7 +3242,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'BlackLine', domainNamePrimaryLinkUrl: 'blackline.com', addressAddressCity: 'Woodland Hills', - employees: 1826, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blackline', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3471,7 +3254,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: '3Pillar Global', domainNamePrimaryLinkUrl: '3pillarglobal.com', addressAddressCity: 'Fairfax', - employees: 1824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/3pillar-global', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3484,7 +3266,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Saama', domainNamePrimaryLinkUrl: 'saama.com', addressAddressCity: 'Campbell', - employees: 1809, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/saama-technologies', createdBySource: 'API', @@ -3498,7 +3279,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ancestry', domainNamePrimaryLinkUrl: 'ancestry.com', addressAddressCity: 'Lehi', - employees: 1794, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ancestry.com', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3511,7 +3291,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'insightsoftware', domainNamePrimaryLinkUrl: 'insightsoftware.com', addressAddressCity: 'Raleigh', - employees: 1788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outcomes-by-insightsoftware', createdBySource: 'EMAIL', @@ -3525,7 +3304,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ebix', domainNamePrimaryLinkUrl: 'ebix.com', addressAddressCity: 'Duluth', - employees: 1757, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ebix', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3538,7 +3316,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zuora', domainNamePrimaryLinkUrl: 'zuora.com', addressAddressCity: 'Redwood City', - employees: 1746, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zuora', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3551,7 +3328,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'IntelyCare', domainNamePrimaryLinkUrl: 'intelycare.com', addressAddressCity: 'Quincy', - employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intelycare', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3564,7 +3340,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Axway', domainNamePrimaryLinkUrl: 'axway.com', addressAddressCity: 'Scottsdale', - employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/axway', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3577,7 +3352,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Community Brands', domainNamePrimaryLinkUrl: 'communitybrands.com', addressAddressCity: 'Saint Petersburg', - employees: 1731, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/communitybrands', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3590,7 +3364,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'InterSystems', domainNamePrimaryLinkUrl: 'intersystems.com', addressAddressCity: 'Cambridge', - employees: 1730, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intersystems', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3603,7 +3376,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mozilla', domainNamePrimaryLinkUrl: 'mozilla.org', addressAddressCity: 'San Francisco', - employees: 1721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mozilla-corporation', createdBySource: 'API', @@ -3617,7 +3389,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Semrush', domainNamePrimaryLinkUrl: 'semrush.com', addressAddressCity: 'Boston', - employees: 1706, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/semrush', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3630,7 +3401,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Avid', domainNamePrimaryLinkUrl: 'avid.com', addressAddressCity: 'Burlington', - employees: 1705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avid-technology', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3643,7 +3413,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Conga', domainNamePrimaryLinkUrl: 'conga.com', addressAddressCity: 'Broomfield', - employees: 1695, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/conga', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3656,7 +3425,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'InfoBeans', domainNamePrimaryLinkUrl: 'infobeans.com', addressAddressCity: 'Danville', - employees: 1691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/infobeans', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3669,7 +3437,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AppFolio, Inc.', domainNamePrimaryLinkUrl: 'appfolioinc.com', addressAddressCity: 'Goleta', - employees: 1688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appfolio-inc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3682,7 +3449,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sovos', domainNamePrimaryLinkUrl: 'sovos.com', addressAddressCity: 'Wilmington', - employees: 1684, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sovos', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3695,7 +3461,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'nCino, Inc.', domainNamePrimaryLinkUrl: 'ncino.com', addressAddressCity: 'Wilmington', - employees: 1680, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ncino-inc-', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3708,7 +3473,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Vistex', domainNamePrimaryLinkUrl: 'vistex.com', addressAddressCity: 'Hoffman Estates', - employees: 1677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vistex', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3721,7 +3485,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Taboola', domainNamePrimaryLinkUrl: 'taboola.com', addressAddressCity: 'New York', - employees: 1677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taboola', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3734,7 +3497,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'EverCommerce', domainNamePrimaryLinkUrl: 'evercommerce.com', addressAddressCity: 'Denver', - employees: 1673, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/evercommerce', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3747,7 +3509,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Virgin Pulse', domainNamePrimaryLinkUrl: 'virginpulse.com', addressAddressCity: 'Providence', - employees: 1666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/virgin-pulse', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3760,7 +3521,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Houzz', domainNamePrimaryLinkUrl: 'houzz.com', addressAddressCity: 'Palo Alto', - employees: 1641, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/houzz', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3773,7 +3533,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AvidXchange, Inc.', domainNamePrimaryLinkUrl: 'avidxchange.com', addressAddressCity: 'Charlotte', - employees: 1639, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avidxchange-inc-', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3786,7 +3545,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Planview, Inc.', domainNamePrimaryLinkUrl: 'planview.com', addressAddressCity: 'Austin', - employees: 1634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/planview', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3799,7 +3557,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HackerRank', domainNamePrimaryLinkUrl: 'hackerrank.com', addressAddressCity: 'Mountain View', - employees: 1632, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hackerrank', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3812,7 +3569,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Clearwater Analytics', domainNamePrimaryLinkUrl: 'clearwateranalytics.com', addressAddressCity: 'Boise', - employees: 1615, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/clearwateranalytics', createdBySource: 'WEBHOOK', @@ -3826,7 +3582,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Outreach', domainNamePrimaryLinkUrl: 'outreach.io', addressAddressCity: 'Seattle', - employees: 1612, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outreach-saas', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3839,7 +3594,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Everbridge', domainNamePrimaryLinkUrl: 'everbridge.com', addressAddressCity: 'Burlington', - employees: 1607, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/everbridge', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3852,7 +3606,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zycus', domainNamePrimaryLinkUrl: 'zycus.com', addressAddressCity: 'Princeton', - employees: 1604, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zycus', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3865,7 +3618,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bullhorn', domainNamePrimaryLinkUrl: 'bullhorn.com', addressAddressCity: 'Boston', - employees: 1604, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bullhorn', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3878,7 +3630,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'LivePerson', domainNamePrimaryLinkUrl: 'liveperson.com', addressAddressCity: 'New York', - employees: 1603, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/liveperson', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3891,7 +3642,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Relativity', domainNamePrimaryLinkUrl: 'relativity.com', addressAddressCity: 'Chicago', - employees: 1601, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/relativityhq', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3904,7 +3654,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HealthEdge', domainNamePrimaryLinkUrl: 'healthedge.com', addressAddressCity: 'Burlington', - employees: 1600, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/healthedge', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3917,7 +3666,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'QAD', domainNamePrimaryLinkUrl: 'qad.com', addressAddressCity: 'Santa Barbara', - employees: 1598, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qad', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3930,7 +3678,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Braze', domainNamePrimaryLinkUrl: 'braze.com', addressAddressCity: 'New York', - employees: 1598, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/braze-', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3943,7 +3690,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Exadel', domainNamePrimaryLinkUrl: 'exadel.com', addressAddressCity: 'Walnut Creek', - employees: 1592, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exadel', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3956,7 +3702,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Phenom', domainNamePrimaryLinkUrl: 'phenom.com', addressAddressCity: 'Ambler', - employees: 1592, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/phenomtxm', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3969,7 +3714,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bazaarvoice', domainNamePrimaryLinkUrl: 'bazaarvoice.com', addressAddressCity: 'Austin', - employees: 1587, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bazaarvoice', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3982,7 +3726,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AppDynamics', domainNamePrimaryLinkUrl: 'appdynamics.com', addressAddressCity: 'San Francisco', - employees: 1553, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/appdynamics', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -3995,7 +3738,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mitchell International', domainNamePrimaryLinkUrl: 'mitchell.com', addressAddressCity: 'San Diego', - employees: 1548, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mitchell-international', createdBySource: 'WORKFLOW', @@ -4009,7 +3751,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Talkdesk', domainNamePrimaryLinkUrl: 'talkdesk.com', addressAddressCity: 'San Francisco', - employees: 1491, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/talkdesk', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4022,7 +3763,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Hughes Systique Corporation (HSC)', domainNamePrimaryLinkUrl: 'hsc.com', addressAddressCity: 'Rockville', - employees: 1481, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hsc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4035,7 +3775,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Avature', domainNamePrimaryLinkUrl: 'avature.net', addressAddressCity: 'New York', - employees: 1478, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avature', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4048,7 +3787,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Anyone Home Inc', domainNamePrimaryLinkUrl: 'anyonehome.com', addressAddressCity: 'Lake Forest', - employees: 1476, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/anyone-home-inc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4061,7 +3799,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Engineer.ai', domainNamePrimaryLinkUrl: 'builder.ai', addressAddressCity: 'Venice', - employees: 1474, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/engineer.ai', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4074,7 +3811,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Apptio', domainNamePrimaryLinkUrl: 'apptio.com', addressAddressCity: 'Bellevue', - employees: 1467, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/apptio', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4087,7 +3823,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'KMS Technology, Inc.', domainNamePrimaryLinkUrl: 'kms-technology.com', addressAddressCity: 'Atlanta', - employees: 1464, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kms-technology', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4100,7 +3835,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'JFrog', domainNamePrimaryLinkUrl: 'jfrog.com', addressAddressCity: 'Sunnyvale', - employees: 1459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jfrog-ltd', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4113,7 +3847,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ASG Technologies', domainNamePrimaryLinkUrl: 'asg.com', addressAddressCity: 'Naples', - employees: 1459, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asg', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4126,7 +3859,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Seismic', domainNamePrimaryLinkUrl: 'seismic.com', addressAddressCity: 'San Diego', - employees: 1457, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/seismic', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4139,7 +3871,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ModMed', domainNamePrimaryLinkUrl: 'modmed.com', addressAddressCity: 'Boca Raton', - employees: 1452, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/modernizing-medicine', createdBySource: 'IMPORT', @@ -4153,7 +3884,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ACV Auctions', domainNamePrimaryLinkUrl: 'acvauctions.com', addressAddressCity: 'Buffalo', - employees: 1450, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acv-auctions', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4166,7 +3896,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cerence Inc.', domainNamePrimaryLinkUrl: 'cerence.com', addressAddressCity: 'Burlington', - employees: 1448, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cerence', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4179,7 +3908,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Via', domainNamePrimaryLinkUrl: 'ridewithvia.com', addressAddressCity: 'New York', - employees: 1446, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ridewithvia', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4192,7 +3920,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kingsoft', domainNamePrimaryLinkUrl: 'ksosoft.com', addressAddressCity: 'Palo Alto', - employees: 1445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kingsoft', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4205,7 +3932,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Model N', domainNamePrimaryLinkUrl: 'modeln.com', addressAddressCity: 'San Mateo', - employees: 1445, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/modeln', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4218,7 +3944,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ThoughtSpot', domainNamePrimaryLinkUrl: 'thoughtspot.com', addressAddressCity: 'Mountain View', - employees: 1436, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/thoughtspot', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4231,7 +3956,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SSS', domainNamePrimaryLinkUrl: 'getebs.com', addressAddressCity: 'Littleton', - employees: 1431, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/employee-based-software', createdBySource: 'CALENDAR', @@ -4245,7 +3969,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'BeyondTrust', domainNamePrimaryLinkUrl: 'beyondtrust.com', addressAddressCity: 'Duluth', - employees: 1428, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/beyondtrust', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4258,7 +3981,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MetricStream', domainNamePrimaryLinkUrl: 'metricstream.com', addressAddressCity: 'Alviso', - employees: 1426, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/metricstream', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4271,7 +3993,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'LogMeIn', domainNamePrimaryLinkUrl: 'logmeininc.com', addressAddressCity: 'Boston', - employees: 1425, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/logmein', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4284,7 +4005,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Khoros', domainNamePrimaryLinkUrl: 'khoros.com', addressAddressCity: 'Austin', - employees: 1424, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/khoros', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4297,7 +4017,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sprout Social, Inc.', domainNamePrimaryLinkUrl: 'sproutsocial.com', addressAddressCity: 'Chicago', - employees: 1416, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sprout-social-inc-', createdBySource: 'EMAIL', @@ -4311,7 +4030,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Odessa', domainNamePrimaryLinkUrl: 'odessainc.com', addressAddressCity: 'Philadelphia', - employees: 1415, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/odessa-inc-', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4324,7 +4042,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Enverus', domainNamePrimaryLinkUrl: 'enverus.com', addressAddressCity: 'Austin', - employees: 1404, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/enverus-energy', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4337,7 +4054,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AvePoint', domainNamePrimaryLinkUrl: 'avepoint.com', addressAddressCity: 'Jersey City', - employees: 1404, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avepoint', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4350,7 +4066,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Gong', domainNamePrimaryLinkUrl: 'gong.io', addressAddressCity: 'San Francisco', - employees: 1398, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gong-io', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4363,7 +4078,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Syncfusion', domainNamePrimaryLinkUrl: 'syncfusion.com', addressAddressCity: 'Morrisville', - employees: 1397, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/syncfusion', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4376,7 +4090,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ping Identity', domainNamePrimaryLinkUrl: 'pingidentity.com', addressAddressCity: 'Denver', - employees: 1388, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ping-identity', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4389,7 +4102,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WellSky', domainNamePrimaryLinkUrl: 'wellsky.com', addressAddressCity: 'Overland Park', - employees: 1387, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wellsky', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4402,7 +4114,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tricentis', domainNamePrimaryLinkUrl: 'tricentis.com', addressAddressCity: 'Austin', - employees: 1383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tricentis', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4415,7 +4126,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Taskrabbit', domainNamePrimaryLinkUrl: 'taskrabbit.com', addressAddressCity: 'San Francisco', - employees: 1383, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taskrabbit', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4428,7 +4138,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Syniti', domainNamePrimaryLinkUrl: 'syniti.com', addressAddressCity: 'Needham Heights', - employees: 1372, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/synitidata', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4441,7 +4150,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'BigCommerce', domainNamePrimaryLinkUrl: 'bigcommerce.com', addressAddressCity: 'Austin', - employees: 1360, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bigcommerce', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4454,7 +4162,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OEC', domainNamePrimaryLinkUrl: 'oeconnection.com', addressAddressCity: 'Richfield', - employees: 1357, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oeconnection', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4467,7 +4174,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Calsoft', domainNamePrimaryLinkUrl: 'calsoftinc.com', addressAddressCity: 'San Jose', - employees: 1357, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calsoft', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4480,7 +4186,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Taller', domainNamePrimaryLinkUrl: 'tallertechnologies.com', addressAddressCity: 'San Francisco', - employees: 1351, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/taller-technologies', createdBySource: 'MANUAL', @@ -4494,7 +4199,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Planet', domainNamePrimaryLinkUrl: 'planet.com', addressAddressCity: 'San Francisco', - employees: 1348, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/planet-labs', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4507,7 +4211,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: '6sense', domainNamePrimaryLinkUrl: '6sense.com', addressAddressCity: 'San Francisco', - employees: 1346, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/6sense', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4520,7 +4223,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Vitech Systems Group', domainNamePrimaryLinkUrl: 'vitechinc.com', addressAddressCity: 'New York', - employees: 1345, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vitech-systems-group', createdBySource: 'WEBHOOK', @@ -4534,7 +4236,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Smarsh', domainNamePrimaryLinkUrl: 'smarsh.com', addressAddressCity: 'Portland', - employees: 1344, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smarsh', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4547,7 +4248,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NICE Actimize', domainNamePrimaryLinkUrl: 'niceactimize.com', addressAddressCity: 'Hoboken', - employees: 1343, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/actimize', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4560,7 +4260,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dataiku', domainNamePrimaryLinkUrl: 'dataiku.com', addressAddressCity: 'New York', - employees: 1340, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dataiku', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4573,7 +4272,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Liferay', domainNamePrimaryLinkUrl: 'liferay.com', addressAddressCity: 'Diamond Bar', - employees: 1329, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/liferay-inc-', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4586,7 +4284,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Gainsight', domainNamePrimaryLinkUrl: 'gainsight.com', addressAddressCity: 'San Francisco', - employees: 1328, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gainsight', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4599,7 +4296,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Infotech', domainNamePrimaryLinkUrl: 'infotechinc.com', addressAddressCity: 'Gainesville', - employees: 1322, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/infotech-inc', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4612,7 +4308,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'JAGGAER', domainNamePrimaryLinkUrl: 'jaggaer.com', addressAddressCity: 'Morrisville', - employees: 1317, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jaggaer', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4625,7 +4320,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Checkr, Inc.', domainNamePrimaryLinkUrl: 'checkr.com', addressAddressCity: 'San Francisco', - employees: 1304, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/checkr-com', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4638,7 +4332,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CARFAX', domainNamePrimaryLinkUrl: 'carfax.com', addressAddressCity: 'Centreville', - employees: 1296, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/carfax', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4651,7 +4344,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Lucid Software', domainNamePrimaryLinkUrl: 'lucid.co', addressAddressCity: 'South Jordan', - employees: 1295, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lucidsoftware', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4664,7 +4356,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Domo', domainNamePrimaryLinkUrl: 'domo.com', addressAddressCity: 'American Fork', - employees: 1293, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/domotalk', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4677,7 +4368,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Podium', domainNamePrimaryLinkUrl: 'podium.com', addressAddressCity: 'Lehi', - employees: 1292, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/podium', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4690,7 +4380,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mendix', domainNamePrimaryLinkUrl: 'mendix.com', addressAddressCity: 'Boston', - employees: 1290, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mendix', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4703,7 +4392,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'EDB', domainNamePrimaryLinkUrl: 'edbpostgres.com', addressAddressCity: 'Bedford', - employees: 1289, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/edbpostgres', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4716,7 +4404,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OneStream Software', domainNamePrimaryLinkUrl: 'onestreamsoftware.com', addressAddressCity: 'Birmingham', - employees: 1288, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onestream-software', createdBySource: 'EMAIL', @@ -4730,7 +4417,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Rent.', domainNamePrimaryLinkUrl: 'rent.com', addressAddressCity: 'Atlanta', - employees: 1285, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rentsolutions', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4743,7 +4429,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Waystar', domainNamePrimaryLinkUrl: 'waystar.com', addressAddressCity: 'Louisville', - employees: 1273, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/waystar', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4756,7 +4441,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: '2020', domainNamePrimaryLinkUrl: '2020spaces.com', addressAddressCity: 'Westford', - employees: 1267, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/2020spaces', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4769,7 +4453,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'isolved', domainNamePrimaryLinkUrl: 'isolvedhcm.com', addressAddressCity: 'Charlotte', - employees: 1261, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/isolved', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4782,7 +4465,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Art Technology Group', domainNamePrimaryLinkUrl: 'atg.com', addressAddressCity: 'Cambridge', - employees: 1259, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/atg', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4795,7 +4477,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CAST', domainNamePrimaryLinkUrl: 'castsoftware.com', addressAddressCity: 'New York', - employees: 1259, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cast', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4808,7 +4489,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OCLC', domainNamePrimaryLinkUrl: 'oc.lc', addressAddressCity: 'Dublin', - employees: 1258, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oclc', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4821,7 +4501,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mediaocean', domainNamePrimaryLinkUrl: 'mediaocean.com', addressAddressCity: 'New York', - employees: 1255, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mediaocean', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4834,7 +4513,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bandwidth Inc.', domainNamePrimaryLinkUrl: 'bandwidth.com', addressAddressCity: 'Raleigh', - employees: 1252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bandwidth-inc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4847,7 +4525,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Hexagon Safety, Infrastructure & Geospatial', domainNamePrimaryLinkUrl: 'hexagonsafetyinfrastructure.com', addressAddressCity: 'Madison', - employees: 1252, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hexagon-geospatial', createdBySource: 'CALENDAR', @@ -4861,7 +4538,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Wish', domainNamePrimaryLinkUrl: 'wish.com', addressAddressCity: 'San Francisco', - employees: 1248, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wishshopping', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4874,7 +4550,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sagitec Solutions', domainNamePrimaryLinkUrl: 'sagitec.com', addressAddressCity: 'Saint Paul', - employees: 1244, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sagitec-solutions', createdBySource: 'IMPORT', @@ -4888,7 +4563,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zinnia ', domainNamePrimaryLinkUrl: 'zinnia.com', addressAddressCity: 'Greenwich', - employees: 1243, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zinniatm', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4901,7 +4575,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CureMD', domainNamePrimaryLinkUrl: 'curemd.com', addressAddressCity: 'New York', - employees: 1243, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/curemd', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4914,7 +4587,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Druva', domainNamePrimaryLinkUrl: 'druva.com', addressAddressCity: 'Santa Clara', - employees: 1238, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/druva', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4927,7 +4599,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Restaurant365', domainNamePrimaryLinkUrl: 'restaurant365.com', addressAddressCity: 'Irvine', - employees: 1234, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/restaurant365-cloud-erp-for-restaurants', createdBySource: 'MANUAL', @@ -4941,7 +4612,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Lawson Software', domainNamePrimaryLinkUrl: 'lawson.com', addressAddressCity: 'New York', - employees: 1231, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lawson-software', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4954,7 +4624,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AlphaSense', domainNamePrimaryLinkUrl: 'alpha-sense.com', addressAddressCity: 'New York', - employees: 1223, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alphasense', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4967,7 +4636,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ECI Software Solutions', domainNamePrimaryLinkUrl: 'ecisolutions.com', addressAddressCity: 'Fort Worth', - employees: 1223, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eci-software--solutions', createdBySource: 'MANUAL', @@ -4981,7 +4649,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Wrike', domainNamePrimaryLinkUrl: 'wrike.com', addressAddressCity: 'San Diego', - employees: 1210, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wrike', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -4994,7 +4661,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Syndigo', domainNamePrimaryLinkUrl: 'syndigo.com', addressAddressCity: 'Chicago', - employees: 1208, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/syndigo', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5007,7 +4673,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Gigamon', domainNamePrimaryLinkUrl: 'gigamon.com', addressAddressCity: 'Santa Clara', - employees: 1196, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gigamon', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5020,7 +4685,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Fastly', domainNamePrimaryLinkUrl: 'fastly.com', addressAddressCity: 'San Francisco', - employees: 1188, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fastly', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5033,7 +4697,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Cantaloupe Inc', domainNamePrimaryLinkUrl: 'cantaloupe.com', addressAddressCity: 'Malvern', - employees: 1187, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cantaloupeinc', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5046,7 +4709,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'EagleView', domainNamePrimaryLinkUrl: 'eagleview.com', addressAddressCity: 'Bellevue', - employees: 1184, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eagleview-technologies-inc', createdBySource: 'CALENDAR', @@ -5060,7 +4722,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Litera', domainNamePrimaryLinkUrl: 'litera.com', addressAddressCity: 'Chicago', - employees: 1183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/literamicrosystems', createdBySource: 'SYSTEM', @@ -5074,7 +4735,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Collibra', domainNamePrimaryLinkUrl: 'collibra.com', addressAddressCity: 'New York', - employees: 1183, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/collibra', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5087,7 +4747,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Picsart', domainNamePrimaryLinkUrl: 'picsart.com', addressAddressCity: 'Miami Beach', - employees: 1180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/picsart-photo-studio', createdBySource: 'CALENDAR', @@ -5101,7 +4760,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CalAmp', domainNamePrimaryLinkUrl: 'calamp.com', addressAddressCity: 'Irvine', - employees: 1180, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calamp-corp', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5114,7 +4772,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ESS', domainNamePrimaryLinkUrl: 'ess-home.com', addressAddressCity: 'Tempe', - employees: 1178, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ess', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5127,7 +4784,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Grafana Labs', domainNamePrimaryLinkUrl: 'grafana.com', addressAddressCity: 'New York', - employees: 1178, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/grafana-labs', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5140,7 +4796,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Fivetran', domainNamePrimaryLinkUrl: '5tran.co', addressAddressCity: 'Oakland', - employees: 1176, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fivetran', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5153,7 +4808,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CentralSquare Technologies', domainNamePrimaryLinkUrl: 'centralsquare.com', addressAddressCity: 'Lake Mary', - employees: 1175, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/centralsqtech', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5166,7 +4820,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'StubHub', domainNamePrimaryLinkUrl: 'stubhub.com', addressAddressCity: 'New York', - employees: 1164, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stubhub', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5179,7 +4832,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'EIS Ltd', domainNamePrimaryLinkUrl: 'eisgroup.com', addressAddressCity: 'San Francisco', - employees: 1154, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eisgroupltd', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5192,7 +4844,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tebra', domainNamePrimaryLinkUrl: 'tebra.com', addressAddressCity: 'Corona Del Mar', - employees: 1151, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tebra', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5205,7 +4856,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Benefitfocus', domainNamePrimaryLinkUrl: 'benefitfocus.com', addressAddressCity: 'Charleston', - employees: 1148, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/benefitfocus', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5218,7 +4868,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NISC', domainNamePrimaryLinkUrl: 'nisc.coop', addressAddressCity: 'Lake Saint Louis', - employees: 1140, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nisc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5231,7 +4880,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dell Compellent', domainNamePrimaryLinkUrl: 'dell.com', addressAddressCity: 'Eden Prairie', - employees: 1138, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dell-compellent', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5244,7 +4892,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Radancy', domainNamePrimaryLinkUrl: 'radancy.com', addressAddressCity: 'New York', - employees: 1137, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/radancy', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5257,7 +4904,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Granicus', domainNamePrimaryLinkUrl: 'granicus.com', addressAddressCity: 'Denver', - employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/granicusinc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5270,7 +4916,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ACTIVE Network', domainNamePrimaryLinkUrl: 'activenetwork.com', addressAddressCity: 'Plano', - employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-active-network', createdBySource: 'IMPORT', @@ -5284,7 +4929,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Acquia', domainNamePrimaryLinkUrl: 'acquia.com', addressAddressCity: 'Boston', - employees: 1134, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acquia', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5297,7 +4941,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WalkMe\u2122', domainNamePrimaryLinkUrl: 'walkme.com', addressAddressCity: 'San Francisco', - employees: 1127, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/walkme', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5310,7 +4953,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Outbrain', domainNamePrimaryLinkUrl: 'outbrain.com', addressAddressCity: 'New York', - employees: 1123, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/outbrain', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5323,7 +4965,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WillowTree', domainNamePrimaryLinkUrl: 'willowtreeapps.com', addressAddressCity: 'Charlottesville', - employees: 1117, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/willowtreeapps', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5336,7 +4977,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'LogicMonitor', domainNamePrimaryLinkUrl: 'logicmonitor.com', addressAddressCity: 'Santa Barbara', - employees: 1113, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/logicmonitor', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5349,7 +4989,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Jellysmack', domainNamePrimaryLinkUrl: 'jellysmack.com', addressAddressCity: 'New York', - employees: 1109, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jellysmack', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5362,7 +5001,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Henry Schein One', domainNamePrimaryLinkUrl: 'henryscheinone.com', addressAddressCity: 'American Fork', - employees: 1108, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/henry-schein-one', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5375,7 +5013,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Prometheus Group', domainNamePrimaryLinkUrl: 'prometheusgroup.com', addressAddressCity: 'Raleigh', - employees: 1102, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/prometheusgroup', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5388,7 +5025,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Atlas', domainNamePrimaryLinkUrl: 'atlashxm.com', addressAddressCity: 'Chicago', - employees: 1101, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/atlashxm', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5401,7 +5037,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dialpad', domainNamePrimaryLinkUrl: 'dialpad.com', addressAddressCity: 'San Ramon', - employees: 1101, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dialpad', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5414,7 +5049,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Accruent', domainNamePrimaryLinkUrl: 'accruent.com', addressAddressCity: 'Austin', - employees: 1098, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accruent', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5427,7 +5061,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Charles River Development', domainNamePrimaryLinkUrl: 'crd.com', addressAddressCity: 'Burlington', - employees: 1090, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/charles-river-development', createdBySource: 'EMAIL', @@ -5441,7 +5074,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Flexera', domainNamePrimaryLinkUrl: 'flexera.com', addressAddressCity: 'Itasca', - employees: 1089, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/flexera', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5454,7 +5086,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Quotient Technology Inc.', domainNamePrimaryLinkUrl: 'quotient.com', addressAddressCity: 'Salt Lake City', - employees: 1087, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quotient-technology', createdBySource: 'EMAIL', @@ -5468,7 +5099,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sage Intacct, Inc.', domainNamePrimaryLinkUrl: 'sageintacct.com', addressAddressCity: 'San Jose', - employees: 1087, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sageintacct', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5481,7 +5111,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Plaid', domainNamePrimaryLinkUrl: 'plaid.com', addressAddressCity: 'San Francisco', - employees: 1081, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/plaid-', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5494,7 +5123,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'C3 AI', domainNamePrimaryLinkUrl: 'c3.ai', addressAddressCity: 'Redwood City', - employees: 1077, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/c3-ai', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5507,7 +5135,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Upland Software', domainNamePrimaryLinkUrl: 'uplandsoftware.com', addressAddressCity: 'Austin', - employees: 1072, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/upland-software', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5520,7 +5147,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zapier', domainNamePrimaryLinkUrl: 'zapier.com', addressAddressCity: 'San Francisco', - employees: 1066, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zapier', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5533,7 +5159,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WSO2', domainNamePrimaryLinkUrl: 'wso2.com', addressAddressCity: 'Santa Clara', - employees: 1065, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wso2', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5546,7 +5171,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Auctane', domainNamePrimaryLinkUrl: 'auctane.com', addressAddressCity: 'Austin', - employees: 1055, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/auctane', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5559,7 +5183,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Salesloft', domainNamePrimaryLinkUrl: 'salesloft.com', addressAddressCity: 'Atlanta', - employees: 1055, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salesloft', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5572,7 +5195,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RLDatix', domainNamePrimaryLinkUrl: 'rldatix.com', addressAddressCity: 'Chicago', - employees: 1048, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rldatix', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5585,7 +5207,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SS&C Blue Prism', domainNamePrimaryLinkUrl: 'blueprism.com', addressAddressCity: 'Windsor', - employees: 1048, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blue-prism-limited', createdBySource: 'IMPORT', @@ -5599,7 +5220,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Waitr', domainNamePrimaryLinkUrl: 'waitrapp.com', addressAddressCity: 'Lafayette', - employees: 1043, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/waitr-inc-', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5612,7 +5232,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Software Engineering Institute | Carnegie Mellon University', domainNamePrimaryLinkUrl: 'sei.cmu.edu', addressAddressCity: 'Pittsburgh', - employees: 1043, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/software-engineering-institute', createdBySource: 'MANUAL', @@ -5626,7 +5245,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Downey Unified School District', domainNamePrimaryLinkUrl: 'dusd.net', addressAddressCity: 'Downey', - employees: 1038, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/downey-unified-school-district', createdBySource: 'API', @@ -5640,7 +5258,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Private Access, Inc.', domainNamePrimaryLinkUrl: 'privateaccess.com', addressAddressCity: 'Irvine', - employees: 1037, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/private-access-inc.', createdBySource: 'MANUAL', @@ -5654,7 +5271,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'iManage', domainNamePrimaryLinkUrl: 'imanage.com', addressAddressCity: 'Chicago', - employees: 1036, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/imanage', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5667,7 +5283,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'QASource', domainNamePrimaryLinkUrl: 'qasource.com', addressAddressCity: 'Pleasanton', - employees: 1032, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qasource', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5680,7 +5295,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Azuga, Inc.', domainNamePrimaryLinkUrl: 'azuga.com', addressAddressCity: 'San Jose', - employees: 1026, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/azuga-inc-', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5693,7 +5307,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Talent Systems, LLC', domainNamePrimaryLinkUrl: 'talentsystems.com', addressAddressCity: 'Los Angeles', - employees: 1022, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/talent-systems-llc', createdBySource: 'WEBHOOK', @@ -5707,7 +5320,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Datasite', domainNamePrimaryLinkUrl: 'datasite.com', addressAddressCity: 'Minneapolis', - employees: 1021, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datasiteglobal', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5720,7 +5332,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AVASOFT', domainNamePrimaryLinkUrl: 'avasoft.com', addressAddressCity: 'Blue Bell', - employees: 1017, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/avasoft', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5733,7 +5344,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'DataRobot', domainNamePrimaryLinkUrl: 'datarobot.com', addressAddressCity: 'Boston', - employees: 1015, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datarobot', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5746,7 +5356,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Technisys', domainNamePrimaryLinkUrl: 'technisys.com', addressAddressCity: 'Miami', - employees: 1014, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/technisys', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5759,7 +5368,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'project44', domainNamePrimaryLinkUrl: 'project44.com', addressAddressCity: 'Chicago', - employees: 1013, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/project-44', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5772,7 +5380,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Imprivata', domainNamePrimaryLinkUrl: 'imprivata.com', addressAddressCity: 'Waltham', - employees: 1013, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/imprivata', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5785,7 +5392,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Webflow', domainNamePrimaryLinkUrl: 'webflow.com', addressAddressCity: 'San Francisco', - employees: 1011, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webflow-inc-', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5798,7 +5404,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Blend', domainNamePrimaryLinkUrl: 'blend.com', addressAddressCity: 'San Francisco', - employees: 1011, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/blend-', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5811,7 +5416,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Egnyte', domainNamePrimaryLinkUrl: 'egnyte.com', addressAddressCity: 'Mountain View', - employees: 1009, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/egnyte', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5824,7 +5428,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SS&C Eze', domainNamePrimaryLinkUrl: 'ezesoft.com', addressAddressCity: 'Windsor', - employees: 1008, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ezesoftware', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5837,7 +5440,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tipalti', domainNamePrimaryLinkUrl: 'tipalti.com', addressAddressCity: 'San Mateo', - employees: 1007, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tipalti', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5850,7 +5452,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Altium\u00ae', domainNamePrimaryLinkUrl: 'altium.com', addressAddressCity: 'La Jolla', - employees: 1005, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/altium', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5863,7 +5464,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'airSlate', domainNamePrimaryLinkUrl: 'airslate.com', addressAddressCity: 'Brookline', - employees: 1001, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/airslate', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5876,7 +5476,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Arbisoft', domainNamePrimaryLinkUrl: 'arbisoft.com', addressAddressCity: 'Mckinney', - employees: 996, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/arbisoft', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5889,7 +5488,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Airtable', domainNamePrimaryLinkUrl: 'airtable.com', addressAddressCity: 'San Francisco', - employees: 989, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/airtable', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5902,7 +5500,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Birdeye', domainNamePrimaryLinkUrl: 'birdeye.com', addressAddressCity: 'Palo Alto', - employees: 988, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/birdeye', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5915,7 +5512,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ultimate Software', domainNamePrimaryLinkUrl: 'ultimatesoftware.com', addressAddressCity: 'Fort Lauderdale', - employees: 988, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ultimate-software', createdBySource: 'SYSTEM', @@ -5929,7 +5525,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Homecare Homebase', domainNamePrimaryLinkUrl: 'hchb.com', addressAddressCity: 'Dallas', - employees: 987, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/homecare-homebase', createdBySource: 'WEBHOOK', @@ -5943,7 +5538,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'DISCO', domainNamePrimaryLinkUrl: 'csdisco.com', addressAddressCity: 'Austin', - employees: 984, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/cs-disco-llc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5956,7 +5550,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Highspot', domainNamePrimaryLinkUrl: 'highspot.com', addressAddressCity: 'Seattle', - employees: 982, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/highspot', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5969,7 +5562,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sagent', domainNamePrimaryLinkUrl: 'sagent.com', addressAddressCity: 'King Of Prussia', - employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sagent-lending-technologies', createdBySource: 'CALENDAR', @@ -5983,7 +5575,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Apollo.io', domainNamePrimaryLinkUrl: 'apollo.io', addressAddressCity: 'San Francisco', - employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/apolloio', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -5996,7 +5587,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PAS', domainNamePrimaryLinkUrl: 'pas.com', addressAddressCity: 'Houston', - employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pas', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6009,7 +5599,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Wikimedia Foundation', domainNamePrimaryLinkUrl: 'wikimediafoundation.org', addressAddressCity: 'San Francisco', - employees: 981, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wikimedia-foundation', createdBySource: 'CALENDAR', @@ -6023,7 +5612,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Nintex', domainNamePrimaryLinkUrl: 'nintex.com', addressAddressCity: 'Bellevue', - employees: 978, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/nintex', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6036,7 +5624,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RUCKUS Networks', domainNamePrimaryLinkUrl: 'commscope.com', addressAddressCity: 'Sunnyvale', - employees: 978, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ruckus-networks', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6049,7 +5636,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ForgeRock', domainNamePrimaryLinkUrl: 'forgerock.com', addressAddressCity: 'San Francisco', - employees: 977, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/forgerock', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6062,7 +5648,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Trading Technologies', domainNamePrimaryLinkUrl: 'tradingtechnologies.com', addressAddressCity: 'Chicago', - employees: 975, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trading-technologies', createdBySource: 'EMAIL', @@ -6076,7 +5661,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'KANINI', domainNamePrimaryLinkUrl: 'kanini.com', addressAddressCity: 'Nashville', - employees: 972, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kanini', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6089,7 +5673,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dealer.com', domainNamePrimaryLinkUrl: 'dealer.com', addressAddressCity: 'Burlington', - employees: 962, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dealer-com', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6102,7 +5685,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WS', domainNamePrimaryLinkUrl: 'ws-inc.com', addressAddressCity: 'Pinehurst', - employees: 960, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wbem-solutions', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6115,7 +5697,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kyriba', domainNamePrimaryLinkUrl: 'kyriba.com', addressAddressCity: 'San Diego', - employees: 960, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kyriba', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6128,7 +5709,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Demandbase', domainNamePrimaryLinkUrl: 'demandbase.com', addressAddressCity: 'San Francisco', - employees: 958, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/demandbase', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6141,7 +5721,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sumo Logic', domainNamePrimaryLinkUrl: 'sumologic.com', addressAddressCity: 'Redwood City', - employees: 954, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sumo-logic', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6154,7 +5733,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Edifecs', domainNamePrimaryLinkUrl: 'edifecs.com', addressAddressCity: 'Bellevue', - employees: 949, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/edifecs', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6167,7 +5745,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ibi | Information Builders', domainNamePrimaryLinkUrl: 'ibi.com', addressAddressCity: 'Fort Lauderdale', - employees: 948, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/information-builders', createdBySource: 'IMPORT', @@ -6181,7 +5758,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Emburse', domainNamePrimaryLinkUrl: 'emburse.com', addressAddressCity: 'Los Angeles', - employees: 941, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/emburse', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6194,7 +5770,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ConstructConnect', domainNamePrimaryLinkUrl: 'constructconnect.com', addressAddressCity: 'Cincinnati', - employees: 940, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/constructconnect', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6207,7 +5782,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Perforce Software', domainNamePrimaryLinkUrl: 'perforce.com', addressAddressCity: 'Minneapolis', - employees: 939, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/perforce', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6220,7 +5794,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Insurity', domainNamePrimaryLinkUrl: 'insurity.com', addressAddressCity: 'Hartford', - employees: 938, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/insurity', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6233,7 +5806,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'webOS', domainNamePrimaryLinkUrl: 'developer.lge.com', addressAddressCity: 'Santa Clara', - employees: 936, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webos', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6246,7 +5818,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zenoti', domainNamePrimaryLinkUrl: 'zenoti.com', addressAddressCity: 'Bellevue', - employees: 934, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zenoti', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6259,7 +5830,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Intapp', domainNamePrimaryLinkUrl: 'intapp.com', addressAddressCity: 'Palo Alto', - employees: 930, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/intapp', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6272,7 +5842,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OATI', domainNamePrimaryLinkUrl: 'oati.com', addressAddressCity: 'Minneapolis', - employees: 930, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/oati', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6285,7 +5854,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Frontline Education', domainNamePrimaryLinkUrl: 'frontlineeducation.com', addressAddressCity: 'Malvern', - employees: 926, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/frontline-education', createdBySource: 'SYSTEM', @@ -6299,7 +5867,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aspect Software', domainNamePrimaryLinkUrl: 'aspect.com', addressAddressCity: 'Westford', - employees: 920, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aspect-software', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6312,7 +5879,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'GreyOrange', domainNamePrimaryLinkUrl: 'greyorange.com', addressAddressCity: 'Roswell', - employees: 919, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/gogreyorange', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6325,7 +5891,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sirion', domainNamePrimaryLinkUrl: 'sirionlabs.com', addressAddressCity: 'Bellevue', - employees: 918, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sirionlabs', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6338,7 +5903,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'In Time Tec', domainNamePrimaryLinkUrl: 'intimetec.com', addressAddressCity: 'Meridian', - employees: 917, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/in-time-tec', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6351,7 +5915,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Operative', domainNamePrimaryLinkUrl: 'operative.com', addressAddressCity: 'New York', - employees: 910, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/operative', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6364,7 +5927,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Kore.ai', domainNamePrimaryLinkUrl: 'kore.ai', addressAddressCity: 'Orlando', - employees: 908, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kore-inc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6377,7 +5939,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Redis', domainNamePrimaryLinkUrl: 'redis.com', addressAddressCity: 'Mountain View', - employees: 908, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/redisinc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6390,7 +5951,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Addepar', domainNamePrimaryLinkUrl: 'addepar.com', addressAddressCity: 'Mountain View', - employees: 907, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/addepar', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6403,7 +5963,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'TCP Software', domainNamePrimaryLinkUrl: 'tcpsoftware.com', addressAddressCity: 'Austin', - employees: 902, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tcpsoftware', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6416,7 +5975,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'TraceLink', domainNamePrimaryLinkUrl: 'tracelink.com', addressAddressCity: 'Wilmington', - employees: 897, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tracelink', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6429,7 +5987,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Benchling', domainNamePrimaryLinkUrl: 'benchling.com', addressAddressCity: 'San Francisco', - employees: 895, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/benchling', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6442,7 +5999,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Housecall Pro', domainNamePrimaryLinkUrl: 'housecallpro.com', addressAddressCity: 'Denver', - employees: 894, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/housecallpro', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6455,7 +6011,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Turnitin', domainNamePrimaryLinkUrl: 'turnitin.com', addressAddressCity: 'Oakland', - employees: 885, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/turnitin', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6468,7 +6023,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Schr\u00f6dinger', domainNamePrimaryLinkUrl: 'schrodinger.com', addressAddressCity: 'New York', - employees: 885, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/schr-dinger', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6481,7 +6035,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'eGain Corporation', domainNamePrimaryLinkUrl: 'egain.com', addressAddressCity: 'Sunnyvale', - employees: 879, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/egain-corporation', createdBySource: 'WEBHOOK', @@ -6495,7 +6048,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Brightly', domainNamePrimaryLinkUrl: 'brightlysoftware.com', addressAddressCity: 'Cary', - employees: 878, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/brightlysoftware', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6508,7 +6060,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Snap-on Business Solutions', domainNamePrimaryLinkUrl: 'snapon.com', addressAddressCity: 'Richfield', - employees: 876, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/snap-on-business-solutions', createdBySource: 'MANUAL', @@ -6522,7 +6073,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ACS Technologies', domainNamePrimaryLinkUrl: 'acstechnologies.com', addressAddressCity: 'Florence', - employees: 874, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/acs-technologies', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6535,7 +6085,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Uniphore', domainNamePrimaryLinkUrl: 'uniphore.com', addressAddressCity: 'Palo Alto', - employees: 872, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/uniphore', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6548,7 +6097,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Folio3 Software', domainNamePrimaryLinkUrl: 'folio3.com', addressAddressCity: 'Belmont', - employees: 872, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/folio3', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6561,7 +6109,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MHC', domainNamePrimaryLinkUrl: 'mhcautomation.com', addressAddressCity: 'Burnsville', - employees: 871, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mhcautomation', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6574,7 +6121,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Xactly Corp', domainNamePrimaryLinkUrl: 'xactlycorp.com', addressAddressCity: 'Los Gatos', - employees: 865, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xactly-corporation', createdBySource: 'EMAIL', @@ -6588,7 +6134,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Weave', domainNamePrimaryLinkUrl: 'getweave.com', addressAddressCity: 'Lehi', - employees: 864, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/getweave', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6601,7 +6146,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Microworkers', domainNamePrimaryLinkUrl: 'microworkers.com', addressAddressCity: 'Frisco', - employees: 862, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/microworkers.com', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6614,7 +6158,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Trilogy', domainNamePrimaryLinkUrl: 'trilogy.com', addressAddressCity: 'Austin', - employees: 861, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/trilogy', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6627,7 +6170,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Akvelon, Inc.', domainNamePrimaryLinkUrl: 'akvelon.com', addressAddressCity: 'Bellevue', - employees: 860, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/akvelon', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6640,7 +6182,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'iPipeline', domainNamePrimaryLinkUrl: 'ipipeline.com', addressAddressCity: 'Exton', - employees: 856, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ipipeline', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6653,7 +6194,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Salary.com', domainNamePrimaryLinkUrl: 'salary.com', addressAddressCity: 'Wellesley Hills', - employees: 854, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/salarydotcom', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6666,7 +6206,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PandaDoc', domainNamePrimaryLinkUrl: 'pandadoc.com', addressAddressCity: 'San Francisco', - employees: 851, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pandadoc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6679,7 +6218,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MSC Software', domainNamePrimaryLinkUrl: 'mscsoftware.com', addressAddressCity: 'Newport Beach', - employees: 849, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/msc-software', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6692,7 +6230,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Harness', domainNamePrimaryLinkUrl: 'harness.io', addressAddressCity: 'San Francisco', - employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/harnessinc', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6705,7 +6242,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ActiveCampaign', domainNamePrimaryLinkUrl: 'activecampaign.com', addressAddressCity: 'Chicago', - employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/activecampaign-inc-', createdBySource: 'API', @@ -6719,7 +6255,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Doximity', domainNamePrimaryLinkUrl: 'doximity.com', addressAddressCity: 'San Francisco', - employees: 848, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/doximity', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6732,7 +6267,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Couchbase', domainNamePrimaryLinkUrl: 'couchbase.com', addressAddressCity: 'Santa Clara', - employees: 847, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/couchbase', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6745,7 +6279,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Lytx, Inc.', domainNamePrimaryLinkUrl: 'lytx.com', addressAddressCity: 'San Diego', - employees: 845, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lytxinc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6758,7 +6291,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Pendo.io', domainNamePrimaryLinkUrl: 'pendo.io', addressAddressCity: 'Raleigh', - employees: 844, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pendo-io', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6771,7 +6303,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Workato', domainNamePrimaryLinkUrl: 'workato.com', addressAddressCity: 'Mountain View', - employees: 842, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workato', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6784,7 +6315,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Saviynt', domainNamePrimaryLinkUrl: 'saviynt.com', addressAddressCity: 'El Segundo', - employees: 842, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/saviynt', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6797,7 +6327,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SmartBear', domainNamePrimaryLinkUrl: 'smartbear.com', addressAddressCity: 'Somerville', - employees: 838, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartbear', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6810,7 +6339,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Rovi Corporation (now TiVo)', domainNamePrimaryLinkUrl: 'tivo.com', addressAddressCity: 'San Carlos', - employees: 837, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rovi', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6823,7 +6351,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Handshake', domainNamePrimaryLinkUrl: 'joinhandshake.com', addressAddressCity: 'San Francisco', - employees: 833, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/team-handshake', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6836,7 +6363,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Navitaire, an Amadeus company', domainNamePrimaryLinkUrl: 'navitaire.com', addressAddressCity: 'Minneapolis', - employees: 829, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navitaire', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6849,7 +6375,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OneSpan', domainNamePrimaryLinkUrl: 'onespan.com', addressAddressCity: 'Chicago', - employees: 826, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/onespan', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6862,7 +6387,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bitsight', domainNamePrimaryLinkUrl: 'bitsight.com', addressAddressCity: 'Boston', - employees: 824, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bitsight', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6875,7 +6399,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ID.me', domainNamePrimaryLinkUrl: 'id.me', addressAddressCity: 'Mc Lean', - employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/id.me', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6888,7 +6411,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SymphonyAI Retail CPG', domainNamePrimaryLinkUrl: 'symphonyretailai.com', addressAddressCity: 'Frisco', - employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/symphonyretailcpg', createdBySource: 'MANUAL', @@ -6902,7 +6424,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Unilog', domainNamePrimaryLinkUrl: 'unilogcorp.com', addressAddressCity: 'Wayne', - employees: 823, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/unilog-inc', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6915,7 +6436,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Teletrac Navman', domainNamePrimaryLinkUrl: 'teletracnavman.com', addressAddressCity: 'Irvine', - employees: 821, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/teletrac', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6928,7 +6448,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Buildertrend', domainNamePrimaryLinkUrl: 'buildertrend.com', addressAddressCity: 'Omaha', - employees: 819, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/buildertrend', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6941,7 +6460,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tecsys Inc.', domainNamePrimaryLinkUrl: 'tecsys.com', addressAddressCity: 'Chicago', - employees: 816, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tecsys-inc', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6954,7 +6472,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ThousandEyes (part of Cisco)', domainNamePrimaryLinkUrl: 'thousandeyes.com', addressAddressCity: 'San Francisco', - employees: 816, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/thousandeyes', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6967,7 +6484,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Greenhouse Software', domainNamePrimaryLinkUrl: 'greenhouse.io', addressAddressCity: 'New York', - employees: 814, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/greenhouse-inc-', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6980,7 +6496,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Exiger', domainNamePrimaryLinkUrl: 'exiger.com', addressAddressCity: 'New York', - employees: 811, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exiger', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -6993,7 +6508,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MBO Partners', domainNamePrimaryLinkUrl: 'mbopartners.com', addressAddressCity: 'Ashburn', - employees: 808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mbo-partners', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7006,7 +6520,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Neo4j', domainNamePrimaryLinkUrl: 'neo4j.com', addressAddressCity: 'San Mateo', - employees: 808, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/neo4j', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7019,7 +6532,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'VTS', domainNamePrimaryLinkUrl: 'vts.com', addressAddressCity: 'New York', - employees: 805, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/we-are-vts', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7032,7 +6544,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Slice', domainNamePrimaryLinkUrl: 'slicelife.com', addressAddressCity: 'New York', - employees: 805, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/slice', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7045,7 +6556,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Amplitude', domainNamePrimaryLinkUrl: 'amplitude.com', addressAddressCity: 'San Francisco', - employees: 803, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/amplitude-analytics', createdBySource: 'EMAIL', @@ -7059,7 +6569,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Daxko', domainNamePrimaryLinkUrl: 'daxko.com', addressAddressCity: 'Birmingham', - employees: 802, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/daxko', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7072,7 +6581,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AppLovin', domainNamePrimaryLinkUrl: 'applovin.com', addressAddressCity: 'Palo Alto', - employees: 802, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/applovin', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7085,7 +6593,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Xometry', domainNamePrimaryLinkUrl: 'xometry.com', addressAddressCity: 'Rockville', - employees: 801, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xometry', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7098,7 +6605,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Quickbase', domainNamePrimaryLinkUrl: 'quickbase.com', addressAddressCity: 'Boston', - employees: 796, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quickbase', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7111,7 +6617,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Agora', domainNamePrimaryLinkUrl: 'agora.io', addressAddressCity: 'Santa Clara', - employees: 793, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/agora-lab-inc', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7124,7 +6629,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'InMoment', domainNamePrimaryLinkUrl: 'inmoment.com', addressAddressCity: 'South Jordan', - employees: 793, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/weareinmoment', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7137,7 +6641,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PatientPoint\u00ae', domainNamePrimaryLinkUrl: 'patientpoint.com', addressAddressCity: 'Cincinnati', - employees: 789, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/patientpoint', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7150,7 +6653,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HHAeXchange', domainNamePrimaryLinkUrl: 'hhaexchange.com', addressAddressCity: 'New York', - employees: 788, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hhaexchange', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7163,7 +6665,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NinjaOne', domainNamePrimaryLinkUrl: 'ninjaone.com', addressAddressCity: 'Austin', - employees: 787, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ninjaone', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7176,7 +6677,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Zywave', domainNamePrimaryLinkUrl: 'zywave.com', addressAddressCity: 'Milwaukee', - employees: 785, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/zywave', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7189,7 +6689,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Adobe Marketo', domainNamePrimaryLinkUrl: 'marketo.com', addressAddressCity: 'San Jose', - employees: 784, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/adobemarketoengage', createdBySource: 'EMAIL', @@ -7203,7 +6702,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MasterControl', domainNamePrimaryLinkUrl: 'mastercontrol.com', addressAddressCity: 'Salt Lake City', - employees: 783, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mastercontrol', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7216,7 +6714,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Jumio Corporation', domainNamePrimaryLinkUrl: 'jumio.com', addressAddressCity: 'Sunnyvale', - employees: 779, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jumio-corporation', createdBySource: 'EMAIL', @@ -7230,7 +6727,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'CRMNEXT', domainNamePrimaryLinkUrl: 'crmnext.com', addressAddressCity: 'Raleigh', - employees: 778, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/crmnext', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7243,7 +6739,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ChannelAdvisor', domainNamePrimaryLinkUrl: 'channeladvisor.com', addressAddressCity: 'Morrisville', - employees: 777, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/channeladvisor', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7256,7 +6751,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SumTotal Systems, LLC', domainNamePrimaryLinkUrl: 'sumtotalsystems.com', addressAddressCity: 'Gainesville', - employees: 776, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sumtotal-systems', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7269,7 +6763,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Payscale', domainNamePrimaryLinkUrl: 'payscale.com', addressAddressCity: 'Seattle', - employees: 775, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/payscale', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7282,7 +6775,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Riskonnect, Inc.', domainNamePrimaryLinkUrl: 'riskonnect.com', addressAddressCity: 'Kennesaw', - employees: 775, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riskonnect-inc', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7295,7 +6787,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Riskified', domainNamePrimaryLinkUrl: 'riskified.com', addressAddressCity: 'New York', - employees: 770, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/riskified', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7308,7 +6799,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Shopkeeper', domainNamePrimaryLinkUrl: 'shopkeeper.com', addressAddressCity: 'Pompano Beach', - employees: 770, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/shopkeeperapp', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7321,7 +6811,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Stack Overflow', domainNamePrimaryLinkUrl: 'stackoverflow.com', addressAddressCity: 'New York', - employees: 768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stack-overflow', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7334,7 +6823,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Netwrix Corporation', domainNamePrimaryLinkUrl: 'netwrix.com', addressAddressCity: 'Frisco', - employees: 768, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/netwrix-corporation', createdBySource: 'EMAIL', @@ -7348,7 +6836,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Securonix', domainNamePrimaryLinkUrl: 'securonix.com', addressAddressCity: 'Addison', - employees: 767, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/securonix', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7361,7 +6848,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Draup', domainNamePrimaryLinkUrl: 'draup.com', addressAddressCity: 'Spring', - employees: 766, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/draupplatform', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7374,7 +6860,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'eQ Technologic', domainNamePrimaryLinkUrl: '1eq.com', addressAddressCity: 'Costa Mesa', - employees: 766, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eq-technologic', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7387,7 +6872,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mindtickle', domainNamePrimaryLinkUrl: 'mindtickle.com', addressAddressCity: 'San Francisco', - employees: 765, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mindtickle', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7400,7 +6884,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Omnitracs', domainNamePrimaryLinkUrl: 'omnitracs.com', addressAddressCity: 'Roanoke', - employees: 764, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/omnitracs', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7413,7 +6896,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Programmer', domainNamePrimaryLinkUrl: 'gregoryleroy.com', addressAddressCity: 'Austin', - employees: 762, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/programmer', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7426,7 +6908,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Navis', domainNamePrimaryLinkUrl: 'navis.com', addressAddressCity: 'Alpharetta', - employees: 761, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/navis', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7439,7 +6920,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AuditBoard', domainNamePrimaryLinkUrl: 'auditboard.com', addressAddressCity: 'Cerritos', - employees: 759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/auditboard', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7452,7 +6932,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Algolia', domainNamePrimaryLinkUrl: 'algolia.com', addressAddressCity: 'San Francisco', - employees: 759, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/algolia', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7465,7 +6944,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'YML', domainNamePrimaryLinkUrl: 'yml.co', addressAddressCity: 'Redwood City', - employees: 754, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ymlco', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7478,7 +6956,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Bolt', domainNamePrimaryLinkUrl: 'bolt.com', addressAddressCity: 'San Francisco', - employees: 750, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/bolt-com', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7491,7 +6968,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Dandy', domainNamePrimaryLinkUrl: 'meetdandy.com', addressAddressCity: 'New York', - employees: 745, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/dandyofficial', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7504,7 +6980,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Diverse Lynx', domainNamePrimaryLinkUrl: 'diverselynx.com', addressAddressCity: 'Princeton', - employees: 743, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/diverselynx', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7517,7 +6992,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'JMP', domainNamePrimaryLinkUrl: 'jmp.com', addressAddressCity: 'Cary', - employees: 741, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jmp', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7530,7 +7004,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ON24', domainNamePrimaryLinkUrl: 'on24.com', addressAddressCity: 'San Francisco', - employees: 741, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/on24', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7543,7 +7016,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'LabVantage Solutions, Inc', domainNamePrimaryLinkUrl: 'labvantage.com', addressAddressCity: 'Somerset', - employees: 740, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/labvantage', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7556,7 +7028,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Exabeam', domainNamePrimaryLinkUrl: 'exabeam.com', addressAddressCity: 'San Mateo', - employees: 739, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/exabeam', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7569,7 +7040,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Iterable', domainNamePrimaryLinkUrl: 'iterable.com', addressAddressCity: 'San Francisco', - employees: 739, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/iterable', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7582,7 +7052,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Clari', domainNamePrimaryLinkUrl: 'clari.com', addressAddressCity: 'Sunnyvale', - employees: 737, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/clari', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7595,7 +7064,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Komodo Health', domainNamePrimaryLinkUrl: 'komodohealth.com', addressAddressCity: 'San Francisco', - employees: 737, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/komodo-health', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7608,7 +7076,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Alation', domainNamePrimaryLinkUrl: 'alation.com', addressAddressCity: 'Redwood City', - employees: 736, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/alation', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7621,7 +7088,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Celigo', domainNamePrimaryLinkUrl: 'celigo.com', addressAddressCity: 'Redwood City', - employees: 733, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/celigo-inc', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7634,7 +7100,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aptos Retail', domainNamePrimaryLinkUrl: 'aptos.com', addressAddressCity: 'Alpharetta', - employees: 733, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aptos-retail', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7647,7 +7112,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WorkForce Software', domainNamePrimaryLinkUrl: 'workforcesoftware.com', addressAddressCity: 'Livonia', - employees: 721, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/workforce-software', createdBySource: 'SYSTEM', @@ -7661,7 +7125,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'HPE Security - Data Security', domainNamePrimaryLinkUrl: 'voltage.com', addressAddressCity: 'Sunnyvale', - employees: 713, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/hpe-security-data-security', createdBySource: 'MANUAL', @@ -7675,7 +7138,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'DDN Storage', domainNamePrimaryLinkUrl: 'ddn.com', addressAddressCity: 'Chatsworth', - employees: 712, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ddn-storage', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7688,7 +7150,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'KPA', domainNamePrimaryLinkUrl: 'kpa.io', addressAddressCity: 'Broomfield', - employees: 709, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/kpa-llc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7701,7 +7162,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Lohika', domainNamePrimaryLinkUrl: 'lohika.com', addressAddressCity: 'San Mateo', - employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lohika', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7714,7 +7174,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Qualifacts', domainNamePrimaryLinkUrl: 'qualifacts.com', addressAddressCity: 'Nashville', - employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/qualifacts', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7727,7 +7186,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Centric Software', domainNamePrimaryLinkUrl: 'centricsoftware.com', addressAddressCity: 'Campbell', - employees: 705, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/centric-software', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7740,7 +7198,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Omdena', domainNamePrimaryLinkUrl: 'omdena.com', addressAddressCity: 'New York', - employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/omdena', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7753,7 +7210,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AccountantsWorld', domainNamePrimaryLinkUrl: 'accountantsworld.com', addressAddressCity: 'Hauppauge', - employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/accountantsworld', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7766,7 +7222,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aderant', domainNamePrimaryLinkUrl: 'aderant.com', addressAddressCity: 'Atlanta', - employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aderant', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7779,7 +7234,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Python Software Foundation', domainNamePrimaryLinkUrl: 'python.org', addressAddressCity: 'Beaverton', - employees: 704, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/python-software-foundation', createdBySource: 'WORKFLOW', @@ -7793,7 +7247,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'OpenGov Inc.', domainNamePrimaryLinkUrl: 'opengov.com', addressAddressCity: 'San Jose', - employees: 703, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/opengov-inc', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7806,7 +7259,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Denodo', domainNamePrimaryLinkUrl: 'denodo.com', addressAddressCity: 'Palo Alto', - employees: 702, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/denodo-technologies', createdBySource: 'CALENDAR', @@ -7820,7 +7272,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'NEOGOV', domainNamePrimaryLinkUrl: 'neogov.com', addressAddressCity: 'El Segundo', - employees: 698, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/neogov', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7833,7 +7284,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'VertexOne', domainNamePrimaryLinkUrl: 'vertexone.net', addressAddressCity: 'Dallas', - employees: 696, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/vertex-one', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7846,7 +7296,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'The Linux Foundation', domainNamePrimaryLinkUrl: 'linuxfoundation.org', addressAddressCity: 'San Francisco', - employees: 694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/the-linux-foundation', createdBySource: 'IMPORT', @@ -7860,7 +7309,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Reputation', domainNamePrimaryLinkUrl: 'reputation.com', addressAddressCity: 'San Ramon', - employees: 694, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/reputation-com', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7873,7 +7321,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Relevantz ', domainNamePrimaryLinkUrl: 'relevantz.com', addressAddressCity: 'Alpharetta', - employees: 691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/relevantz', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7886,7 +7333,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'M-Files', domainNamePrimaryLinkUrl: 'm-files.com', addressAddressCity: 'Austin', - employees: 691, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/m-files-corporation', createdBySource: 'MANUAL', @@ -7900,7 +7346,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Homebase', domainNamePrimaryLinkUrl: 'joinhomebase.com', addressAddressCity: 'San Francisco', - employees: 688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/homebase-app', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7913,7 +7358,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Calypso Technology', domainNamePrimaryLinkUrl: 'calypso.com', addressAddressCity: 'San Francisco', - employees: 688, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calypso-technology', createdBySource: 'EMAIL', @@ -7927,7 +7371,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Viewpoint', domainNamePrimaryLinkUrl: 'viewpoint.com', addressAddressCity: 'Broomfield', - employees: 686, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/viewpoint-construction-software', createdBySource: 'API', @@ -7941,7 +7384,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Devo', domainNamePrimaryLinkUrl: 'devo.com', addressAddressCity: 'Cambridge', - employees: 685, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/devoinc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7954,7 +7396,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'WebPT', domainNamePrimaryLinkUrl: 'webpt.com', addressAddressCity: 'Phoenix', - employees: 685, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/webpt', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7967,7 +7408,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MatrixCare', domainNamePrimaryLinkUrl: 'matrixcare.com', addressAddressCity: 'Minneapolis', - employees: 683, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/matrixcare', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7980,7 +7420,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Sisense', domainNamePrimaryLinkUrl: 'sisense.com', addressAddressCity: 'New York', - employees: 683, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sisense', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -7993,7 +7432,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Calendly', domainNamePrimaryLinkUrl: 'calendly.com', addressAddressCity: 'Atlanta', - employees: 681, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/calendly', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8006,7 +7444,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Placer.ai', domainNamePrimaryLinkUrl: 'placer.io', addressAddressCity: 'Los Altos', - employees: 677, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/placer', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8019,7 +7456,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'MResult', domainNamePrimaryLinkUrl: 'mresult.com', addressAddressCity: 'Mystic', - employees: 674, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mresult', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8032,7 +7468,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Coherent Solutions', domainNamePrimaryLinkUrl: 'coherentsolutions.com', addressAddressCity: 'Minneapolis', - employees: 672, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/coherent-solutions', createdBySource: 'SYSTEM', @@ -8046,7 +7481,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mirantis', domainNamePrimaryLinkUrl: 'mirantis.com', addressAddressCity: 'Campbell', - employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mirantis', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8059,7 +7493,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Simplify Healthcare', domainNamePrimaryLinkUrl: 'simplifyhealthcare.com', addressAddressCity: 'Aurora', - employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/simplifyhealthcare', createdBySource: 'EMAIL', @@ -8073,7 +7506,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'JumpCloud', domainNamePrimaryLinkUrl: 'jumpcloud.com', addressAddressCity: 'Louisville', - employees: 671, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/jumpcloud', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8086,7 +7518,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ASAP', domainNamePrimaryLinkUrl: 'asap.com', addressAddressCity: 'Lafayette', - employees: 667, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/asap', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8099,7 +7530,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Xoxoday', domainNamePrimaryLinkUrl: 'xoxoday.com', addressAddressCity: 'Redwood City', - employees: 666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/xoxoday', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8112,7 +7542,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'DataStax', domainNamePrimaryLinkUrl: 'datastax.com', addressAddressCity: 'Santa Clara', - employees: 666, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/datastax', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8125,7 +7554,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Foursquare', domainNamePrimaryLinkUrl: 'foursquare.com', addressAddressCity: 'New York', - employees: 665, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/foursquare', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8138,7 +7566,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'LastPass', domainNamePrimaryLinkUrl: 'lastpass.com', addressAddressCity: 'Boston', - employees: 664, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lastpass', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8151,7 +7578,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SOCi, Inc.', domainNamePrimaryLinkUrl: 'meetsoci.com', addressAddressCity: 'San Diego', - employees: 664, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/soci-inc-', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8164,7 +7590,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Stratus Technologies', domainNamePrimaryLinkUrl: 'stratus.com', addressAddressCity: 'Maynard', - employees: 662, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/stratus-technologies', createdBySource: 'SYSTEM', @@ -8178,7 +7603,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'AdvancedMD', domainNamePrimaryLinkUrl: 'advancedmd.com', addressAddressCity: 'South Jordan', - employees: 661, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/advancedmd', createdBySource: 'CALENDAR', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8191,7 +7615,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Matterport', domainNamePrimaryLinkUrl: 'matterport.com', addressAddressCity: 'Sunnyvale', - employees: 660, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/matterport', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8204,7 +7627,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Samsung Research America (SRA)', domainNamePrimaryLinkUrl: 'sra.samsung.com', addressAddressCity: 'Mountain View', - employees: 658, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/sra-samsungreasearchamerica', createdBySource: 'EMAIL', @@ -8218,7 +7640,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Creatio', domainNamePrimaryLinkUrl: 'creatio.com', addressAddressCity: 'Boston', - employees: 657, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/creatioglobal', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8231,7 +7652,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Branch', domainNamePrimaryLinkUrl: 'branch.io', addressAddressCity: 'Palo Alto', - employees: 657, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/branch-metrics', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8244,7 +7664,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Versa Networks', domainNamePrimaryLinkUrl: 'versa-networks.com', addressAddressCity: 'Alviso', - employees: 655, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/versa-networks', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8257,7 +7676,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mitek Systems', domainNamePrimaryLinkUrl: 'miteksystems.com', addressAddressCity: 'San Diego', - employees: 653, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/miteksystems', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8270,7 +7688,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'PDF Solutions', domainNamePrimaryLinkUrl: 'pdf.com', addressAddressCity: 'Santa Clara', - employees: 653, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/pdf-solutions', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8283,7 +7700,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'ESO', domainNamePrimaryLinkUrl: 'eso.com', addressAddressCity: 'Austin', - employees: 652, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eso-solutions', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8296,7 +7712,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Mural', domainNamePrimaryLinkUrl: 'mural.co', addressAddressCity: 'San Francisco', - employees: 650, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/mural.co', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8309,7 +7724,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'FourKites, Inc.', domainNamePrimaryLinkUrl: 'fourkites.com', addressAddressCity: 'Chicago', - employees: 650, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/fourkites-inc', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8322,7 +7736,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Aras Corporation', domainNamePrimaryLinkUrl: 'aras.com', addressAddressCity: 'Andover', - employees: 648, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/aras-corporation', createdBySource: 'WEBHOOK', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8335,7 +7748,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Delphix', domainNamePrimaryLinkUrl: 'delphix.com', addressAddressCity: 'Redwood City', - employees: 648, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/delphix', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8348,7 +7760,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Wolfram', domainNamePrimaryLinkUrl: 'wolfram.com', addressAddressCity: 'Champaign', - employees: 644, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/wolfram-research', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8361,7 +7772,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Eightfold', domainNamePrimaryLinkUrl: 'eightfold.ai', addressAddressCity: 'Santa Clara', - employees: 643, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/eightfoldai', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8374,7 +7784,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Quark Software Inc.', domainNamePrimaryLinkUrl: 'quark.com', addressAddressCity: 'Grand Rapids', - employees: 641, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/quark', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8387,7 +7796,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'connectRN', domainNamePrimaryLinkUrl: 'connectrn.com', addressAddressCity: 'Waltham', - employees: 640, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/connectrn', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8400,7 +7808,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RSI', domainNamePrimaryLinkUrl: 'rsidelivers.com', addressAddressCity: 'Pembroke', - employees: 638, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/revenue-solutions-inc-', createdBySource: 'IMPORT', @@ -8414,7 +7821,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Macrosoft', domainNamePrimaryLinkUrl: 'macrosoftinc.com', addressAddressCity: 'Parsippany', - employees: 638, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/macrosoft', createdBySource: 'SYSTEM', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8427,7 +7833,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Paradox', domainNamePrimaryLinkUrl: 'paradox.ai', addressAddressCity: 'Scottsdale', - employees: 637, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/paradoxolivia', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8440,7 +7845,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'SmartRecruiters', domainNamePrimaryLinkUrl: 'smartrecruiters.com', addressAddressCity: 'San Francisco', - employees: 637, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/smartrecruiters', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8453,7 +7857,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Tealium', domainNamePrimaryLinkUrl: 'tealium.com', addressAddressCity: 'San Diego', - employees: 635, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tealium', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8466,7 +7869,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Securiti', domainNamePrimaryLinkUrl: 'securiti.ai', addressAddressCity: 'San Jose', - employees: 634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/securitiai', createdBySource: 'MANUAL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8479,7 +7881,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Lattice', domainNamePrimaryLinkUrl: 'lattice.com', addressAddressCity: 'San Francisco', - employees: 634, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/lattice-hq', createdBySource: 'EMAIL', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8492,7 +7893,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'TuSimple', domainNamePrimaryLinkUrl: 'tusimple.com', addressAddressCity: 'San Diego', - employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/tusimple', createdBySource: 'IMPORT', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8505,7 +7905,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'Ceipal', domainNamePrimaryLinkUrl: 'ceipal.com', addressAddressCity: 'Rochester', - employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/ceipal', createdBySource: 'WORKFLOW', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, @@ -8518,7 +7917,6 @@ const COMPANY_DATA_SEEDS_RAW = [ name: 'RSD', domainNamePrimaryLinkUrl: 'rocketsoftware.com', addressAddressCity: 'Waltham', - employees: 633, linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/company/rsd', createdBySource: 'API', createdByWorkspaceMemberId: WORKSPACE_MEMBER_DATA_SEED_IDS.TIM, diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/person-data-seeds.constant.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/person-data-seeds.constant.ts index 2eee11d797..f01a80b306 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/person-data-seeds.constant.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/constants/person-data-seeds.constant.ts @@ -10,7 +10,6 @@ type PersonDataSeed = { id: string; nameFirstName: string; nameLastName: string; - city: string; emailsPrimaryEmail: string; avatarUrl: string; linkedinLinkPrimaryLinkUrl: string; @@ -32,7 +31,6 @@ export const PERSON_DATA_SEED_COLUMNS: (keyof PersonDataSeed)[] = [ 'id', 'nameFirstName', 'nameLastName', - 'city', 'emailsPrimaryEmail', 'avatarUrl', 'linkedinLinkPrimaryLinkUrl', @@ -1260,7 +1258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1, nameFirstName: 'Mark', nameLastName: 'Young', - city: 'West Justin', emailsPrimaryEmail: 'mark.young@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1', @@ -1277,7 +1274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_2, nameFirstName: 'Gabriel', nameLastName: 'Robinson', - city: 'Larryview', emailsPrimaryEmail: 'gabriel.robinson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-2', @@ -1294,7 +1290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_3, nameFirstName: 'Kimberly', nameLastName: 'Gordon', - city: 'Victoriamouth', emailsPrimaryEmail: 'kimberly.gordon@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-3', @@ -1311,7 +1306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_4, nameFirstName: 'Cindy', nameLastName: 'Baker', - city: 'Franciscoland', emailsPrimaryEmail: 'cindy.baker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-4', @@ -1328,7 +1322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_5, nameFirstName: 'Anthony', nameLastName: 'May', - city: 'South Kaitlin', emailsPrimaryEmail: 'anthony.may@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-5', @@ -1345,7 +1338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_6, nameFirstName: 'Vicki', nameLastName: 'Meyer', - city: 'New Margaretshire', emailsPrimaryEmail: 'vicki.meyer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-6', @@ -1362,7 +1354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_7, nameFirstName: 'Billy', nameLastName: 'Mckinney', - city: 'Clayton', emailsPrimaryEmail: 'billy.mckinney@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-7', @@ -1379,7 +1370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_8, nameFirstName: 'Andrew', nameLastName: 'King', - city: 'New Markborough', emailsPrimaryEmail: 'andrew.king@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-8', @@ -1396,7 +1386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_9, nameFirstName: 'Todd', nameLastName: 'Jones', - city: 'West Aaronchester', emailsPrimaryEmail: 'todd.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-9', @@ -1413,7 +1402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_10, nameFirstName: 'Gregory', nameLastName: 'Perez', - city: 'New Cassiechester', emailsPrimaryEmail: 'gregory.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-10', @@ -1430,7 +1418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_11, nameFirstName: 'Vanessa', nameLastName: 'Farmer', - city: 'Gordonhaven', emailsPrimaryEmail: 'vanessa.farmer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-11', @@ -1447,7 +1434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_12, nameFirstName: 'Elizabeth', nameLastName: 'Chung', - city: 'North Amy', emailsPrimaryEmail: 'elizabeth.chung@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-12', @@ -1464,7 +1450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_13, nameFirstName: 'Melissa', nameLastName: 'Huerta', - city: 'North Kristopher', emailsPrimaryEmail: 'melissa.huerta@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-13', @@ -1481,7 +1466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_14, nameFirstName: 'Debbie', nameLastName: 'Johnson', - city: 'West Oliviaburgh', emailsPrimaryEmail: 'debbie.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-14', @@ -1498,7 +1482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_15, nameFirstName: 'Kathy', nameLastName: 'Mcclain', - city: 'Barretttown', emailsPrimaryEmail: 'kathy.mcclain@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-15', @@ -1515,7 +1498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_16, nameFirstName: 'Michael', nameLastName: 'Elliott', - city: 'Cassidyburgh', emailsPrimaryEmail: 'michael.elliott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-16', @@ -1532,7 +1514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_17, nameFirstName: 'Kimberly', nameLastName: 'Edwards', - city: 'Wareport', emailsPrimaryEmail: 'kimberly.edwards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-17', @@ -1549,7 +1530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_18, nameFirstName: 'Regina', nameLastName: 'Williams', - city: 'Jefferyport', emailsPrimaryEmail: 'regina.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-18', @@ -1566,7 +1546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_19, nameFirstName: 'John', nameLastName: 'Guerrero', - city: 'Ericaland', emailsPrimaryEmail: 'john.guerrero@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-19', @@ -1583,7 +1562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_20, nameFirstName: 'David', nameLastName: 'Bailey', - city: 'Jamesborough', emailsPrimaryEmail: 'david.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-20', @@ -1600,7 +1578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_21, nameFirstName: 'Emily', nameLastName: 'Davidson', - city: 'Calvinton', emailsPrimaryEmail: 'emily.davidson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-21', @@ -1617,7 +1594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_22, nameFirstName: 'Michelle', nameLastName: 'Jackson', - city: 'South Veronica', emailsPrimaryEmail: 'michelle.jackson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-22', @@ -1634,7 +1610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_23, nameFirstName: 'Ryan', nameLastName: 'Romero', - city: 'North Nicole', emailsPrimaryEmail: 'ryan.romero@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-23', @@ -1651,7 +1626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_24, nameFirstName: 'Victor', nameLastName: 'Lewis', - city: 'Spencemouth', emailsPrimaryEmail: 'victor.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-24', @@ -1668,7 +1642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_25, nameFirstName: 'Christopher', nameLastName: 'Powell', - city: 'Jacksonhaven', emailsPrimaryEmail: 'christopher.powell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-25', @@ -1685,7 +1658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_26, nameFirstName: 'Jack', nameLastName: 'George', - city: 'South Jacqueline', emailsPrimaryEmail: 'jack.george@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-26', @@ -1702,7 +1674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_27, nameFirstName: 'Manuel', nameLastName: 'Lara', - city: 'Markchester', emailsPrimaryEmail: 'manuel.lara@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-27', @@ -1719,7 +1690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_28, nameFirstName: 'John', nameLastName: 'Gonzalez', - city: 'Brianfurt', emailsPrimaryEmail: 'john.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-28', @@ -1736,7 +1706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_29, nameFirstName: 'Theodore', nameLastName: 'Gonzalez', - city: 'North Christian', emailsPrimaryEmail: 'theodore.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-29', @@ -1753,7 +1722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_30, nameFirstName: 'Christine', nameLastName: 'Bishop', - city: 'North Jacob', emailsPrimaryEmail: 'christine.bishop@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-30', @@ -1770,7 +1738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_31, nameFirstName: 'Alejandro', nameLastName: 'Moran', - city: 'Cooperport', emailsPrimaryEmail: 'alejandro.moran@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-31', @@ -1787,7 +1754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_32, nameFirstName: 'John', nameLastName: 'Cook', - city: 'Carmenchester', emailsPrimaryEmail: 'john.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-32', @@ -1804,7 +1770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_33, nameFirstName: 'Leslie', nameLastName: 'Calderon', - city: 'Claudiaborough', emailsPrimaryEmail: 'leslie.calderon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-33', @@ -1821,7 +1786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_34, nameFirstName: 'Barbara', nameLastName: 'Young', - city: 'Gibsontown', emailsPrimaryEmail: 'barbara.young@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-34', @@ -1838,7 +1802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_35, nameFirstName: 'Maria', nameLastName: 'Thomas', - city: 'Alyssastad', emailsPrimaryEmail: 'maria.thomas@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-35', @@ -1855,7 +1818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_36, nameFirstName: 'Paul', nameLastName: 'Villegas', - city: 'North Christopher', emailsPrimaryEmail: 'paul.villegas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-36', @@ -1872,7 +1834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_37, nameFirstName: 'Bradley', nameLastName: 'Turner', - city: 'Williamsland', emailsPrimaryEmail: 'bradley.turner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-37', @@ -1889,7 +1850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_38, nameFirstName: 'Matthew', nameLastName: 'Alexander', - city: 'Whitemouth', emailsPrimaryEmail: 'matthew.alexander@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-38', @@ -1906,7 +1866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_39, nameFirstName: 'Nancy', nameLastName: 'Green', - city: 'Josephberg', emailsPrimaryEmail: 'nancy.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-39', @@ -1923,7 +1882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_40, nameFirstName: 'Cindy', nameLastName: 'Martin', - city: 'Lake Jamesside', emailsPrimaryEmail: 'cindy.martin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-40', @@ -1940,7 +1898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_41, nameFirstName: 'Lori', nameLastName: 'Martin', - city: 'New Tracy', emailsPrimaryEmail: 'lori.martin@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-41', @@ -1957,7 +1914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_42, nameFirstName: 'Kathryn', nameLastName: 'Cruz', - city: 'North Joeborough', emailsPrimaryEmail: 'kathryn.cruz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-42', @@ -1974,7 +1930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_43, nameFirstName: 'Robert', nameLastName: 'Terry', - city: 'Lake Jeffrey', emailsPrimaryEmail: 'robert.terry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-43', @@ -1991,7 +1946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_44, nameFirstName: 'Andrea', nameLastName: 'Walker', - city: 'New Hannahland', emailsPrimaryEmail: 'andrea.walker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-44', @@ -2008,7 +1962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_45, nameFirstName: 'Steve', nameLastName: 'Campos', - city: 'Tylermouth', emailsPrimaryEmail: 'steve.campos@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-45', @@ -2025,7 +1978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_46, nameFirstName: 'Allison', nameLastName: 'Morgan', - city: 'New Annafort', emailsPrimaryEmail: 'allison.morgan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-46', @@ -2042,7 +1994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_47, nameFirstName: 'Tamara', nameLastName: 'Melendez', - city: 'Samanthabury', emailsPrimaryEmail: 'tamara.melendez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-47', @@ -2059,7 +2010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_48, nameFirstName: 'Larry', nameLastName: 'Robertson', - city: 'Port Howard', emailsPrimaryEmail: 'larry.robertson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-48', @@ -2076,7 +2026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_49, nameFirstName: 'Lisa', nameLastName: 'Cook', - city: 'Rachelmouth', emailsPrimaryEmail: 'lisa.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-49', @@ -2093,7 +2042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_50, nameFirstName: 'Kirsten', nameLastName: 'Moore', - city: 'Marvinborough', emailsPrimaryEmail: 'kirsten.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-50', @@ -2110,7 +2058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_51, nameFirstName: 'Amanda', nameLastName: 'Frye', - city: 'Mcbridemouth', emailsPrimaryEmail: 'amanda.frye@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-51', @@ -2127,7 +2074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_52, nameFirstName: 'Jennifer', nameLastName: 'Chambers', - city: 'New Troy', emailsPrimaryEmail: 'jennifer.chambers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-52', @@ -2144,7 +2090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_53, nameFirstName: 'Rodney', nameLastName: 'Roberts', - city: 'South Alexandra', emailsPrimaryEmail: 'rodney.roberts@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-53', @@ -2161,7 +2106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_54, nameFirstName: 'Lindsay', nameLastName: 'Wagner', - city: 'North Erinton', emailsPrimaryEmail: 'lindsay.wagner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-54', @@ -2178,7 +2122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_55, nameFirstName: 'Mary', nameLastName: 'Haynes', - city: 'East Patricia', emailsPrimaryEmail: 'mary.haynes@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-55', @@ -2195,7 +2138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_56, nameFirstName: 'David', nameLastName: 'Phelps', - city: 'New Kaylee', emailsPrimaryEmail: 'david.phelps@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-56', @@ -2212,7 +2154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_57, nameFirstName: 'Patricia', nameLastName: 'Smith', - city: 'East Bruce', emailsPrimaryEmail: 'patricia.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-57', @@ -2229,7 +2170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_58, nameFirstName: 'Rachel', nameLastName: 'Morse', - city: 'Port Crystalbury', emailsPrimaryEmail: 'rachel.morse@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-58', @@ -2246,7 +2186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_59, nameFirstName: 'Rhonda', nameLastName: 'Nelson', - city: 'Mcdowellside', emailsPrimaryEmail: 'rhonda.nelson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-59', @@ -2263,7 +2202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_60, nameFirstName: 'Lauren', nameLastName: 'Carroll', - city: 'North Vanessaport', emailsPrimaryEmail: 'lauren.carroll@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-60', @@ -2280,7 +2218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_61, nameFirstName: 'Shannon', nameLastName: 'Martinez', - city: 'South Rachelmouth', emailsPrimaryEmail: 'shannon.martinez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-61', @@ -2297,7 +2234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_62, nameFirstName: 'Daniel', nameLastName: 'Williams', - city: 'New John', emailsPrimaryEmail: 'daniel.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-62', @@ -2314,7 +2250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_63, nameFirstName: 'Willie', nameLastName: 'Cannon', - city: 'Arthurfurt', emailsPrimaryEmail: 'willie.cannon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-63', @@ -2331,7 +2266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_64, nameFirstName: 'Donna', nameLastName: 'Cole', - city: 'South Kellietown', emailsPrimaryEmail: 'donna.cole@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-64', @@ -2348,7 +2282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_65, nameFirstName: 'Morgan', nameLastName: 'Cook', - city: 'Estradaborough', emailsPrimaryEmail: 'morgan.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-65', @@ -2365,7 +2298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_66, nameFirstName: 'Elizabeth', nameLastName: 'Smith', - city: 'Colemanville', emailsPrimaryEmail: 'elizabeth.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-66', @@ -2382,7 +2314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_67, nameFirstName: 'Nathaniel', nameLastName: 'Johnson', - city: 'East Jared', emailsPrimaryEmail: 'nathaniel.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-67', @@ -2399,7 +2330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_68, nameFirstName: 'Rebecca', nameLastName: 'Elliott', - city: 'Barkerchester', emailsPrimaryEmail: 'rebecca.elliott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-68', @@ -2416,7 +2346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_69, nameFirstName: 'Kristina', nameLastName: 'Olson', - city: 'Vargasshire', emailsPrimaryEmail: 'kristina.olson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-69', @@ -2433,7 +2362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_70, nameFirstName: 'Robert', nameLastName: 'Henderson', - city: 'Palmerfurt', emailsPrimaryEmail: 'robert.henderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-70', @@ -2450,7 +2378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_71, nameFirstName: 'Kendra', nameLastName: 'Knox', - city: 'East Travisberg', emailsPrimaryEmail: 'kendra.knox@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-71', @@ -2467,7 +2394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_72, nameFirstName: 'Donna', nameLastName: 'Jacobs', - city: 'Woodburgh', emailsPrimaryEmail: 'donna.jacobs@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-72', @@ -2484,7 +2410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_73, nameFirstName: 'Michael', nameLastName: 'Martinez', - city: 'North Andrea', emailsPrimaryEmail: 'michael.martinez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-73', @@ -2501,7 +2426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_74, nameFirstName: 'Natalie', nameLastName: 'Hansen', - city: 'Wendyfurt', emailsPrimaryEmail: 'natalie.hansen@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-74', @@ -2518,7 +2442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_75, nameFirstName: 'Katie', nameLastName: 'Russo', - city: 'New Stephanie', emailsPrimaryEmail: 'katie.russo@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-75', @@ -2535,7 +2458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_76, nameFirstName: 'Danielle', nameLastName: 'Park', - city: 'Jefferyton', emailsPrimaryEmail: 'danielle.park@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-76', @@ -2552,7 +2474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_77, nameFirstName: 'Nicholas', nameLastName: 'Guzman', - city: 'East Gabrielborough', emailsPrimaryEmail: 'nicholas.guzman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-77', @@ -2569,7 +2490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_78, nameFirstName: 'Brandi', nameLastName: 'Dodson', - city: 'Port Jenniferstad', emailsPrimaryEmail: 'brandi.dodson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-78', @@ -2586,7 +2506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_79, nameFirstName: 'Sara', nameLastName: 'Kane', - city: 'New Charlesfurt', emailsPrimaryEmail: 'sara.kane@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-79', @@ -2603,7 +2522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_80, nameFirstName: 'Allison', nameLastName: 'Howard', - city: 'Port Kurt', emailsPrimaryEmail: 'allison.howard@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-80', @@ -2620,7 +2538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_81, nameFirstName: 'Jonathan', nameLastName: 'Drake', - city: 'Lake William', emailsPrimaryEmail: 'jonathan.drake@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-81', @@ -2637,7 +2554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_82, nameFirstName: 'Samantha', nameLastName: 'Williams', - city: 'South Shelly', emailsPrimaryEmail: 'samantha.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-82', @@ -2654,7 +2570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_83, nameFirstName: 'Katherine', nameLastName: 'Mooney', - city: 'North Lori', emailsPrimaryEmail: 'katherine.mooney@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-83', @@ -2671,7 +2586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_84, nameFirstName: 'Luis', nameLastName: 'Lloyd', - city: 'Roberttown', emailsPrimaryEmail: 'luis.lloyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-84', @@ -2688,7 +2602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_85, nameFirstName: 'Travis', nameLastName: 'Serrano', - city: 'Matthewchester', emailsPrimaryEmail: 'travis.serrano@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-85', @@ -2705,7 +2618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_86, nameFirstName: 'Amy', nameLastName: 'Newton', - city: 'Hayesstad', emailsPrimaryEmail: 'amy.newton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-86', @@ -2722,7 +2634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_87, nameFirstName: 'Jonathan', nameLastName: 'Hawkins', - city: 'Parkerland', emailsPrimaryEmail: 'jonathan.hawkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-87', @@ -2739,7 +2650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_88, nameFirstName: 'Patricia', nameLastName: 'Anthony', - city: 'East Micheal', emailsPrimaryEmail: 'patricia.anthony@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-88', @@ -2756,7 +2666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_89, nameFirstName: 'Matthew', nameLastName: 'Gomez', - city: 'Knightport', emailsPrimaryEmail: 'matthew.gomez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-89', @@ -2773,7 +2682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_90, nameFirstName: 'Jonathan', nameLastName: 'Schultz', - city: 'West Patrickshire', emailsPrimaryEmail: 'jonathan.schultz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-90', @@ -2790,7 +2698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_91, nameFirstName: 'Matthew', nameLastName: 'Cummings', - city: 'Longchester', emailsPrimaryEmail: 'matthew.cummings@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-91', @@ -2807,7 +2714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_92, nameFirstName: 'Joshua', nameLastName: 'Richards', - city: 'New Ashley', emailsPrimaryEmail: 'joshua.richards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-92', @@ -2824,7 +2730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_93, nameFirstName: 'Ryan', nameLastName: 'Johnson', - city: 'Reginaville', emailsPrimaryEmail: 'ryan.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-93', @@ -2841,7 +2746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_94, nameFirstName: 'Teresa', nameLastName: 'Terrell', - city: 'Lake Mandy', emailsPrimaryEmail: 'teresa.terrell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-94', @@ -2858,7 +2762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_95, nameFirstName: 'Jacob', nameLastName: 'Jenkins', - city: 'North Haley', emailsPrimaryEmail: 'jacob.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-95', @@ -2875,7 +2778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_96, nameFirstName: 'Michael', nameLastName: 'Myers', - city: 'Lake Deborah', emailsPrimaryEmail: 'michael.myers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-96', @@ -2892,7 +2794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_97, nameFirstName: 'Jennifer', nameLastName: 'Phillips', - city: 'Daltonstad', emailsPrimaryEmail: 'jennifer.phillips@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-97', @@ -2909,7 +2810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_98, nameFirstName: 'Alison', nameLastName: 'Ortega', - city: 'Batesside', emailsPrimaryEmail: 'alison.ortega@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-98', @@ -2926,7 +2826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_99, nameFirstName: 'Gregory', nameLastName: 'Little', - city: 'Jamesstad', emailsPrimaryEmail: 'gregory.little@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-99', @@ -2943,7 +2842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_100, nameFirstName: 'Barry', nameLastName: 'Finley', - city: 'New Melanieberg', emailsPrimaryEmail: 'barry.finley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-100', @@ -2960,7 +2858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_101, nameFirstName: 'Brian', nameLastName: 'Evans', - city: 'Port Jeremy', emailsPrimaryEmail: 'brian.evans@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-101', @@ -2977,7 +2874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_102, nameFirstName: 'Troy', nameLastName: 'Davidson', - city: 'Parsonsberg', emailsPrimaryEmail: 'troy.davidson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-102', @@ -2994,7 +2890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_103, nameFirstName: 'Aaron', nameLastName: 'Schroeder', - city: 'South Stevenbury', emailsPrimaryEmail: 'aaron.schroeder@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-103', @@ -3011,7 +2906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_104, nameFirstName: 'Mary', nameLastName: 'Anderson', - city: 'South Jenniferhaven', emailsPrimaryEmail: 'mary.anderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-104', @@ -3028,7 +2922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_105, nameFirstName: 'David', nameLastName: 'Obrien', - city: 'West Jeremystad', emailsPrimaryEmail: 'david.obrien@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-105', @@ -3045,7 +2938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_106, nameFirstName: 'Colin', nameLastName: 'Miller', - city: 'South Daniel', emailsPrimaryEmail: 'colin.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-106', @@ -3062,7 +2954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_107, nameFirstName: 'Jesus', nameLastName: 'Johnson', - city: 'West Kathy', emailsPrimaryEmail: 'jesus.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-107', @@ -3079,7 +2970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_108, nameFirstName: 'Brooke', nameLastName: 'Henderson', - city: 'Desireemouth', emailsPrimaryEmail: 'brooke.henderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-108', @@ -3096,7 +2986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_109, nameFirstName: 'Meredith', nameLastName: 'Gregory', - city: 'Lynchstad', emailsPrimaryEmail: 'meredith.gregory@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-109', @@ -3113,7 +3002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_110, nameFirstName: 'Crystal', nameLastName: 'Vaughn', - city: 'Lewisfurt', emailsPrimaryEmail: 'crystal.vaughn@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-110', @@ -3130,7 +3018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_111, nameFirstName: 'William', nameLastName: 'Greene', - city: 'South Hollyfurt', emailsPrimaryEmail: 'william.greene@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-111', @@ -3147,7 +3034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_112, nameFirstName: 'Aaron', nameLastName: 'Griffin', - city: 'West Darrellshire', emailsPrimaryEmail: 'aaron.griffin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-112', @@ -3164,7 +3050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_113, nameFirstName: 'Steven', nameLastName: 'Smith', - city: 'East Shane', emailsPrimaryEmail: 'steven.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-113', @@ -3181,7 +3066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_114, nameFirstName: 'Mark', nameLastName: 'Faulkner', - city: 'East James', emailsPrimaryEmail: 'mark.faulkner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-114', @@ -3198,7 +3082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_115, nameFirstName: 'Jeffrey', nameLastName: 'Hunt', - city: 'South Victoria', emailsPrimaryEmail: 'jeffrey.hunt2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-115', @@ -3215,7 +3098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_116, nameFirstName: 'Tara', nameLastName: 'Mathis', - city: 'Popehaven', emailsPrimaryEmail: 'tara.mathis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-116', @@ -3232,7 +3114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_117, nameFirstName: 'Anna', nameLastName: 'Davis', - city: 'Brandonburgh', emailsPrimaryEmail: 'anna.davis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-117', @@ -3249,7 +3130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_118, nameFirstName: 'Kevin', nameLastName: 'Johnson', - city: 'Port Alyssaland', emailsPrimaryEmail: 'kevin.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-118', @@ -3266,7 +3146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_119, nameFirstName: 'Sergio', nameLastName: 'Glenn', - city: 'New Sarahberg', emailsPrimaryEmail: 'sergio.glenn@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-119', @@ -3283,7 +3162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_120, nameFirstName: 'Nicole', nameLastName: 'Allen', - city: 'Logantown', emailsPrimaryEmail: 'nicole.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-120', @@ -3300,7 +3178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_121, nameFirstName: 'Christopher', nameLastName: 'Jones', - city: 'Gonzaleztown', emailsPrimaryEmail: 'christopher.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-121', @@ -3317,7 +3194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_122, nameFirstName: 'Brandon', nameLastName: 'Sanchez', - city: 'West Ericville', emailsPrimaryEmail: 'brandon.sanchez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-122', @@ -3334,7 +3210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_123, nameFirstName: 'Cindy', nameLastName: 'Schmidt', - city: 'Kathleenhaven', emailsPrimaryEmail: 'cindy.schmidt@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-123', @@ -3351,7 +3226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_124, nameFirstName: 'John', nameLastName: 'Gillespie', - city: 'Stephensonville', emailsPrimaryEmail: 'john.gillespie@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-124', @@ -3368,7 +3242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_125, nameFirstName: 'Andrew', nameLastName: 'Lyons', - city: 'East Mercedesbury', emailsPrimaryEmail: 'andrew.lyons@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-125', @@ -3385,7 +3258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_126, nameFirstName: 'Joseph', nameLastName: 'Willis', - city: 'East Amandamouth', emailsPrimaryEmail: 'joseph.willis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-126', @@ -3402,7 +3274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_127, nameFirstName: 'Charles', nameLastName: 'Stanton', - city: 'Sabrinahaven', emailsPrimaryEmail: 'charles.stanton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-127', @@ -3419,7 +3290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_128, nameFirstName: 'Gary', nameLastName: 'Hall', - city: 'Lake Barbarachester', emailsPrimaryEmail: 'gary.hall@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-128', @@ -3436,7 +3306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_129, nameFirstName: 'Steven', nameLastName: 'Martin', - city: 'New Seanstad', emailsPrimaryEmail: 'steven.martin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-129', @@ -3453,7 +3322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_130, nameFirstName: 'Jennifer', nameLastName: 'Mcgee', - city: 'Colemanton', emailsPrimaryEmail: 'jennifer.mcgee@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-130', @@ -3470,7 +3338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_131, nameFirstName: 'Bonnie', nameLastName: 'Warren', - city: 'Thompsonhaven', emailsPrimaryEmail: 'bonnie.warren@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-131', @@ -3487,7 +3354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_132, nameFirstName: 'Gregory', nameLastName: 'Martinez', - city: 'Gloriahaven', emailsPrimaryEmail: 'gregory.martinez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-132', @@ -3504,7 +3370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_133, nameFirstName: 'Bradley', nameLastName: 'Randall', - city: 'Gregorymouth', emailsPrimaryEmail: 'bradley.randall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-133', @@ -3521,7 +3386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_134, nameFirstName: 'Brian', nameLastName: 'Steele', - city: 'South Eileen', emailsPrimaryEmail: 'brian.steele@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-134', @@ -3538,7 +3402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_135, nameFirstName: 'Ann', nameLastName: 'Mercer', - city: 'New Jenny', emailsPrimaryEmail: 'ann.mercer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-135', @@ -3555,7 +3418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_136, nameFirstName: 'Billy', nameLastName: 'Fuentes', - city: 'New Benjaminmouth', emailsPrimaryEmail: 'billy.fuentes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-136', @@ -3572,7 +3434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_137, nameFirstName: 'Kelsey', nameLastName: 'Palmer', - city: 'Bennettberg', emailsPrimaryEmail: 'kelsey.palmer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-137', @@ -3589,7 +3450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_138, nameFirstName: 'Ryan', nameLastName: 'Holmes', - city: 'Castroshire', emailsPrimaryEmail: 'ryan.holmes@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-138', @@ -3606,7 +3466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_139, nameFirstName: 'Larry', nameLastName: 'Castro', - city: 'New Sara', emailsPrimaryEmail: 'larry.castro@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-139', @@ -3623,7 +3482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_140, nameFirstName: 'Elizabeth', nameLastName: 'Gonzalez', - city: 'Spencerstad', emailsPrimaryEmail: 'elizabeth.gonzalez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-140', @@ -3640,7 +3498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_141, nameFirstName: 'Christopher', nameLastName: 'Matthews', - city: 'South Erintown', emailsPrimaryEmail: 'christopher.matthews@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-141', @@ -3657,7 +3514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_142, nameFirstName: 'Rodney', nameLastName: 'Briggs', - city: 'Parkerview', emailsPrimaryEmail: 'rodney.briggs@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-142', @@ -3674,7 +3530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_143, nameFirstName: 'Donald', nameLastName: 'Khan', - city: 'Haynesborough', emailsPrimaryEmail: 'donald.khan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-143', @@ -3691,7 +3546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_144, nameFirstName: 'Spencer', nameLastName: 'Lee', - city: 'South Katherine', emailsPrimaryEmail: 'spencer.lee@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-144', @@ -3708,7 +3562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_145, nameFirstName: 'Katherine', nameLastName: 'Parker', - city: 'Powellshire', emailsPrimaryEmail: 'katherine.parker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-145', @@ -3725,7 +3578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_146, nameFirstName: 'Amanda', nameLastName: 'Jackson', - city: 'South Jasonberg', emailsPrimaryEmail: 'amanda.jackson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-146', @@ -3742,7 +3594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_147, nameFirstName: 'Kimberly', nameLastName: 'Lloyd', - city: 'South Paul', emailsPrimaryEmail: 'kimberly.lloyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-147', @@ -3759,7 +3610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_148, nameFirstName: 'Eric', nameLastName: 'Hunter', - city: 'Port David', emailsPrimaryEmail: 'eric.hunter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-148', @@ -3776,7 +3626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_149, nameFirstName: 'Ashley', nameLastName: 'Taylor', - city: 'Port Davidberg', emailsPrimaryEmail: 'ashley.taylor@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-149', @@ -3793,7 +3642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_150, nameFirstName: 'Michael', nameLastName: 'Ayers', - city: 'South Anna', emailsPrimaryEmail: 'michael.ayers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-150', @@ -3810,7 +3658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_151, nameFirstName: 'Stephen', nameLastName: 'Fisher', - city: 'Port Rhondaton', emailsPrimaryEmail: 'stephen.fisher@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-151', @@ -3827,7 +3674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_152, nameFirstName: 'Kara', nameLastName: 'James', - city: 'Calderonshire', emailsPrimaryEmail: 'kara.james@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-152', @@ -3844,7 +3690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_153, nameFirstName: 'Gary', nameLastName: 'Lamb', - city: 'South Toddview', emailsPrimaryEmail: 'gary.lamb@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-153', @@ -3861,7 +3706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_154, nameFirstName: 'James', nameLastName: 'Griffin', - city: 'Laurahaven', emailsPrimaryEmail: 'james.griffin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-154', @@ -3878,7 +3722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_155, nameFirstName: 'Wanda', nameLastName: 'Chambers', - city: 'New Brandonton', emailsPrimaryEmail: 'wanda.chambers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-155', @@ -3895,7 +3738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_156, nameFirstName: 'Lisa', nameLastName: 'Kline', - city: 'New Meganberg', emailsPrimaryEmail: 'lisa.kline@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-156', @@ -3912,7 +3754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_157, nameFirstName: 'Jason', nameLastName: 'Roberts', - city: 'South Ronald', emailsPrimaryEmail: 'jason.roberts@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-157', @@ -3929,7 +3770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_158, nameFirstName: 'John', nameLastName: 'Mcpherson', - city: 'Port Kevinbury', emailsPrimaryEmail: 'john.mcpherson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-158', @@ -3946,7 +3786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_159, nameFirstName: 'Karen', nameLastName: 'Rhodes', - city: 'Brandonchester', emailsPrimaryEmail: 'karen.rhodes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-159', @@ -3963,7 +3802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_160, nameFirstName: 'Kathy', nameLastName: 'Sparks', - city: 'Meganhaven', emailsPrimaryEmail: 'kathy.sparks@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-160', @@ -3980,7 +3818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_161, nameFirstName: 'Richard', nameLastName: 'Murphy', - city: 'East Bryanshire', emailsPrimaryEmail: 'richard.murphy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-161', @@ -3997,7 +3834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_162, nameFirstName: 'Nicole', nameLastName: 'Peterson', - city: 'Gardnerhaven', emailsPrimaryEmail: 'nicole.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-162', @@ -4014,7 +3850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_163, nameFirstName: 'Bryan', nameLastName: 'Ward', - city: 'Port Peter', emailsPrimaryEmail: 'bryan.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-163', @@ -4031,7 +3866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_164, nameFirstName: 'Rebecca', nameLastName: 'Howell', - city: 'North Ryanport', emailsPrimaryEmail: 'rebecca.howell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-164', @@ -4048,7 +3882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_165, nameFirstName: 'Lori', nameLastName: 'Bean', - city: 'Port Nicoleshire', emailsPrimaryEmail: 'lori.bean@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-165', @@ -4065,7 +3898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_166, nameFirstName: 'Kevin', nameLastName: 'Eaton', - city: 'South Mary', emailsPrimaryEmail: 'kevin.eaton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-166', @@ -4082,7 +3914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_167, nameFirstName: 'Nicholas', nameLastName: 'Wright', - city: 'West Spencerville', emailsPrimaryEmail: 'nicholas.wright@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-167', @@ -4099,7 +3930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_168, nameFirstName: 'Kevin', nameLastName: 'Paul', - city: 'West Sarahshire', emailsPrimaryEmail: 'kevin.paul@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-168', @@ -4116,7 +3946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_169, nameFirstName: 'Joshua', nameLastName: 'Black', - city: 'Stevensshire', emailsPrimaryEmail: 'joshua.black@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-169', @@ -4133,7 +3962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_170, nameFirstName: 'Scott', nameLastName: 'Bruce', - city: 'Kington', emailsPrimaryEmail: 'scott.bruce@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-170', @@ -4150,7 +3978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_171, nameFirstName: 'Ebony', nameLastName: 'Nixon', - city: 'Brownfort', emailsPrimaryEmail: 'ebony.nixon@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-171', @@ -4167,7 +3994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_172, nameFirstName: 'Jesse', nameLastName: 'Hartman', - city: 'Kathrynton', emailsPrimaryEmail: 'jesse.hartman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-172', @@ -4184,7 +4010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_173, nameFirstName: 'Julie', nameLastName: 'Whitney', - city: 'South Matthewton', emailsPrimaryEmail: 'julie.whitney@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-173', @@ -4201,7 +4026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_174, nameFirstName: 'Barbara', nameLastName: 'Diaz', - city: 'North Andrewbury', emailsPrimaryEmail: 'barbara.diaz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-174', @@ -4218,7 +4042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_175, nameFirstName: 'Jordan', nameLastName: 'Montoya', - city: 'East Wandaport', emailsPrimaryEmail: 'jordan.montoya@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-175', @@ -4235,7 +4058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_176, nameFirstName: 'Jorge', nameLastName: 'Hanson', - city: 'Ashleyburgh', emailsPrimaryEmail: 'jorge.hanson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-176', @@ -4252,7 +4074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_177, nameFirstName: 'Anna', nameLastName: 'Robbins', - city: 'Port Shawn', emailsPrimaryEmail: 'anna.robbins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-177', @@ -4269,7 +4090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_178, nameFirstName: 'Steve', nameLastName: 'Keller', - city: 'East Eric', emailsPrimaryEmail: 'steve.keller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-178', @@ -4286,7 +4106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_179, nameFirstName: 'Brianna', nameLastName: 'Moreno', - city: 'New Georgeport', emailsPrimaryEmail: 'brianna.moreno@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-179', @@ -4303,7 +4122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_180, nameFirstName: 'Shawn', nameLastName: 'Krause', - city: 'South Stephanie', emailsPrimaryEmail: 'shawn.krause@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-180', @@ -4320,7 +4138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_181, nameFirstName: 'Michael', nameLastName: 'Pierce', - city: 'New Jorgeland', emailsPrimaryEmail: 'michael.pierce@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-181', @@ -4337,7 +4154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_182, nameFirstName: 'Elizabeth', nameLastName: 'Leon', - city: 'Butlerchester', emailsPrimaryEmail: 'elizabeth.leon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-182', @@ -4354,7 +4170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_183, nameFirstName: 'Carl', nameLastName: 'Wagner', - city: 'North Jamesburgh', emailsPrimaryEmail: 'carl.wagner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-183', @@ -4371,7 +4186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_184, nameFirstName: 'Erica', nameLastName: 'Taylor', - city: 'Montgomeryborough', emailsPrimaryEmail: 'erica.taylor@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-184', @@ -4388,7 +4202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_185, nameFirstName: 'Sandy', nameLastName: 'Gomez', - city: 'Kramerville', emailsPrimaryEmail: 'sandy.gomez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-185', @@ -4405,7 +4218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_186, nameFirstName: 'Tracy', nameLastName: 'Gray', - city: 'Cheyenneton', emailsPrimaryEmail: 'tracy.gray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-186', @@ -4422,7 +4234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_187, nameFirstName: 'Amy', nameLastName: 'Davies', - city: 'South Martha', emailsPrimaryEmail: 'amy.davies@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-187', @@ -4439,7 +4250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_188, nameFirstName: 'Mary', nameLastName: 'Wood', - city: 'Vaughnmouth', emailsPrimaryEmail: 'mary.wood@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-188', @@ -4456,7 +4266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_189, nameFirstName: 'James', nameLastName: 'Green', - city: 'Onealshire', emailsPrimaryEmail: 'james.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-189', @@ -4473,7 +4282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_190, nameFirstName: 'Rebecca', nameLastName: 'Petersen', - city: 'East Jesseburgh', emailsPrimaryEmail: 'rebecca.petersen@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-190', @@ -4490,7 +4298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_191, nameFirstName: 'Hunter', nameLastName: 'Pierce', - city: 'Sherylport', emailsPrimaryEmail: 'hunter.pierce@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-191', @@ -4507,7 +4314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_192, nameFirstName: 'Christian', nameLastName: 'Bailey', - city: 'West Zachary', emailsPrimaryEmail: 'christian.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-192', @@ -4524,7 +4330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_193, nameFirstName: 'William', nameLastName: 'Mitchell', - city: 'Port Scott', emailsPrimaryEmail: 'william.mitchell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-193', @@ -4541,7 +4346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_194, nameFirstName: 'Brent', nameLastName: 'Gray', - city: 'New Jonathon', emailsPrimaryEmail: 'brent.gray@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-194', @@ -4558,7 +4362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_195, nameFirstName: 'Melissa', nameLastName: 'Myers', - city: 'Port Tara', emailsPrimaryEmail: 'melissa.myers@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-195', @@ -4575,7 +4378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_196, nameFirstName: 'Brittney', nameLastName: 'Nguyen', - city: 'East Natasha', emailsPrimaryEmail: 'brittney.nguyen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-196', @@ -4592,7 +4394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_197, nameFirstName: 'Jacob', nameLastName: 'Franklin', - city: 'North Kariside', emailsPrimaryEmail: 'jacob.franklin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-197', @@ -4609,7 +4410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_198, nameFirstName: 'Kathy', nameLastName: 'Burgess', - city: 'West Jamesburgh', emailsPrimaryEmail: 'kathy.burgess@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-198', @@ -4626,7 +4426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_199, nameFirstName: 'Nicole', nameLastName: 'Smith', - city: 'South Jenniferstad', emailsPrimaryEmail: 'nicole.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-199', @@ -4643,7 +4442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_200, nameFirstName: 'Troy', nameLastName: 'Decker', - city: 'Barrstad', emailsPrimaryEmail: 'troy.decker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-200', @@ -4660,7 +4458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_201, nameFirstName: 'Corey', nameLastName: 'Thompson', - city: 'Myershaven', emailsPrimaryEmail: 'corey.thompson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-201', @@ -4677,7 +4474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_202, nameFirstName: 'Angela', nameLastName: 'Webster', - city: 'Cooperview', emailsPrimaryEmail: 'angela.webster@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-202', @@ -4694,7 +4490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_203, nameFirstName: 'Jenna', nameLastName: 'Smith', - city: 'Reneebury', emailsPrimaryEmail: 'jenna.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-203', @@ -4711,7 +4506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_204, nameFirstName: 'Johnny', nameLastName: 'Lee', - city: 'Eileenmouth', emailsPrimaryEmail: 'johnny.lee@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-204', @@ -4728,7 +4522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_205, nameFirstName: 'Curtis', nameLastName: 'Cross', - city: 'Port Mackenzieshire', emailsPrimaryEmail: 'curtis.cross@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-205', @@ -4745,7 +4538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_206, nameFirstName: 'Paula', nameLastName: 'Perez', - city: 'Hansonfurt', emailsPrimaryEmail: 'paula.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-206', @@ -4762,7 +4554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_207, nameFirstName: 'Stephen', nameLastName: 'Berger', - city: 'East Marybury', emailsPrimaryEmail: 'stephen.berger@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-207', @@ -4779,7 +4570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_208, nameFirstName: 'Candace', nameLastName: 'Michael', - city: 'South Michael', emailsPrimaryEmail: 'candace.michael@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-208', @@ -4796,7 +4586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_209, nameFirstName: 'Jessica', nameLastName: 'Lawrence', - city: 'Diazshire', emailsPrimaryEmail: 'jessica.lawrence@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-209', @@ -4813,7 +4602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_210, nameFirstName: 'Victoria', nameLastName: 'West', - city: 'Garrettfurt', emailsPrimaryEmail: 'victoria.west@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-210', @@ -4830,7 +4618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_211, nameFirstName: 'Matthew', nameLastName: 'Matthews', - city: 'New Brian', emailsPrimaryEmail: 'matthew.matthews@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-211', @@ -4847,7 +4634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_212, nameFirstName: 'Megan', nameLastName: 'Lopez', - city: 'Powellfort', emailsPrimaryEmail: 'megan.lopez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-212', @@ -4864,7 +4650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_213, nameFirstName: 'Kim', nameLastName: 'Campbell', - city: 'Michelleside', emailsPrimaryEmail: 'kim.campbell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-213', @@ -4881,7 +4666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_214, nameFirstName: 'William', nameLastName: 'Ryan', - city: 'Jamesberg', emailsPrimaryEmail: 'william.ryan@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-214', @@ -4898,7 +4682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_215, nameFirstName: 'Lauren', nameLastName: 'Walker', - city: 'Castillostad', emailsPrimaryEmail: 'lauren.walker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-215', @@ -4915,7 +4698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_216, nameFirstName: 'Jordan', nameLastName: 'Castro', - city: 'Garciaport', emailsPrimaryEmail: 'jordan.castro@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-216', @@ -4932,7 +4714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_217, nameFirstName: 'Scott', nameLastName: 'Williams', - city: 'Joshuaport', emailsPrimaryEmail: 'scott.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-217', @@ -4949,7 +4730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_218, nameFirstName: 'Peter', nameLastName: 'Thompson', - city: 'Webbfurt', emailsPrimaryEmail: 'peter.thompson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-218', @@ -4966,7 +4746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_219, nameFirstName: 'Jill', nameLastName: 'Williams', - city: 'Seanside', emailsPrimaryEmail: 'jill.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-219', @@ -4983,7 +4762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_220, nameFirstName: 'Joyce', nameLastName: 'Diaz', - city: 'North Kimberly', emailsPrimaryEmail: 'joyce.diaz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-220', @@ -5000,7 +4778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_221, nameFirstName: 'Robert', nameLastName: 'Owens', - city: 'South Andrewchester', emailsPrimaryEmail: 'robert.owens@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-221', @@ -5017,7 +4794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_222, nameFirstName: 'Christine', nameLastName: 'Fernandez', - city: 'Chadport', emailsPrimaryEmail: 'christine.fernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-222', @@ -5034,7 +4810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_223, nameFirstName: 'Gary', nameLastName: 'Jones', - city: 'East Robert', emailsPrimaryEmail: 'gary.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-223', @@ -5051,7 +4826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_224, nameFirstName: 'Ronald', nameLastName: 'Brown', - city: 'South Stevenfort', emailsPrimaryEmail: 'ronald.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-224', @@ -5068,7 +4842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_225, nameFirstName: 'Curtis', nameLastName: 'Oliver', - city: 'North Noah', emailsPrimaryEmail: 'curtis.oliver@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-225', @@ -5085,7 +4858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_226, nameFirstName: 'Stacy', nameLastName: 'Vasquez', - city: 'Kylebury', emailsPrimaryEmail: 'stacy.vasquez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-226', @@ -5102,7 +4874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_227, nameFirstName: 'Susan', nameLastName: 'Hancock', - city: 'West Jennifer', emailsPrimaryEmail: 'susan.hancock@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-227', @@ -5119,7 +4890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_228, nameFirstName: 'Amy', nameLastName: 'Conner', - city: 'West Heather', emailsPrimaryEmail: 'amy.conner@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-228', @@ -5136,7 +4906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_229, nameFirstName: 'Keith', nameLastName: 'Stein', - city: 'New Kelli', emailsPrimaryEmail: 'keith.stein@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-229', @@ -5153,7 +4922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_230, nameFirstName: 'Kristen', nameLastName: 'Lane', - city: 'Kristyshire', emailsPrimaryEmail: 'kristen.lane@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-230', @@ -5170,7 +4938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_231, nameFirstName: 'Leroy', nameLastName: 'Bright', - city: 'Lake Eric', emailsPrimaryEmail: 'leroy.bright@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-231', @@ -5187,7 +4954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_232, nameFirstName: 'Bradley', nameLastName: 'Patterson', - city: 'South Jason', emailsPrimaryEmail: 'bradley.patterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-232', @@ -5204,7 +4970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_233, nameFirstName: 'Sarah', nameLastName: 'Mcdaniel', - city: 'Dawnport', emailsPrimaryEmail: 'sarah.mcdaniel@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-233', @@ -5221,7 +4986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_234, nameFirstName: 'Brandon', nameLastName: 'Boyd', - city: 'Port Pamelafurt', emailsPrimaryEmail: 'brandon.boyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-234', @@ -5238,7 +5002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_235, nameFirstName: 'Carolyn', nameLastName: 'Villarreal', - city: 'Matthewport', emailsPrimaryEmail: 'carolyn.villarreal@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-235', @@ -5255,7 +5018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_236, nameFirstName: 'Harry', nameLastName: 'Garrett', - city: 'South Carriechester', emailsPrimaryEmail: 'harry.garrett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-236', @@ -5272,7 +5034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_237, nameFirstName: 'Richard', nameLastName: 'Lee', - city: 'East Jason', emailsPrimaryEmail: 'richard.lee@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-237', @@ -5289,7 +5050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_238, nameFirstName: 'Kristen', nameLastName: 'Landry', - city: 'New Karen', emailsPrimaryEmail: 'kristen.landry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-238', @@ -5306,7 +5066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_239, nameFirstName: 'Joshua', nameLastName: 'Burgess', - city: 'East Ronaldmouth', emailsPrimaryEmail: 'joshua.burgess@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-239', @@ -5323,7 +5082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_240, nameFirstName: 'Alicia', nameLastName: 'Stevens', - city: 'North Carmen', emailsPrimaryEmail: 'alicia.stevens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-240', @@ -5340,7 +5098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_241, nameFirstName: 'Jason', nameLastName: 'Torres', - city: 'Codyville', emailsPrimaryEmail: 'jason.torres@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-241', @@ -5357,7 +5114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_242, nameFirstName: 'Michael', nameLastName: 'Ortiz', - city: 'Thomasview', emailsPrimaryEmail: 'michael.ortiz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-242', @@ -5374,7 +5130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_243, nameFirstName: 'Deanna', nameLastName: 'Williams', - city: 'Lake Justin', emailsPrimaryEmail: 'deanna.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-243', @@ -5391,7 +5146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_244, nameFirstName: 'Kevin', nameLastName: 'Ray', - city: 'North Brandy', emailsPrimaryEmail: 'kevin.ray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-244', @@ -5408,7 +5162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_245, nameFirstName: 'Tony', nameLastName: 'Walters', - city: 'Rebeccaberg', emailsPrimaryEmail: 'tony.walters@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-245', @@ -5425,7 +5178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_246, nameFirstName: 'Andrew', nameLastName: 'Roberts', - city: 'Batesville', emailsPrimaryEmail: 'andrew.roberts@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-246', @@ -5442,7 +5194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_247, nameFirstName: 'Lucas', nameLastName: 'Fisher', - city: 'Stephanieport', emailsPrimaryEmail: 'lucas.fisher@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-247', @@ -5459,7 +5210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_248, nameFirstName: 'Sarah', nameLastName: 'Bates', - city: 'South Ashleystad', emailsPrimaryEmail: 'sarah.bates@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-248', @@ -5476,7 +5226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_249, nameFirstName: 'Jon', nameLastName: 'Osborne', - city: 'West Dana', emailsPrimaryEmail: 'jon.osborne@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-249', @@ -5493,7 +5242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_250, nameFirstName: 'Lisa', nameLastName: 'Green', - city: 'West Michealland', emailsPrimaryEmail: 'lisa.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-250', @@ -5510,7 +5258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_251, nameFirstName: 'George', nameLastName: 'Allen', - city: 'Michelleville', emailsPrimaryEmail: 'george.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-251', @@ -5527,7 +5274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_252, nameFirstName: 'Rhonda', nameLastName: 'Smith', - city: 'Hoffmanberg', emailsPrimaryEmail: 'rhonda.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-252', @@ -5544,7 +5290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_253, nameFirstName: 'Kyle', nameLastName: 'Day', - city: 'East Gabrielberg', emailsPrimaryEmail: 'kyle.day@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-253', @@ -5561,7 +5306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_254, nameFirstName: 'Valerie', nameLastName: 'Smith', - city: 'Pamelabury', emailsPrimaryEmail: 'valerie.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-254', @@ -5578,7 +5322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_255, nameFirstName: 'Matthew', nameLastName: 'Nelson', - city: 'South Brycefort', emailsPrimaryEmail: 'matthew.nelson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-255', @@ -5595,7 +5338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_256, nameFirstName: 'Terri', nameLastName: 'Ramos', - city: 'Jessicaberg', emailsPrimaryEmail: 'terri.ramos@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-256', @@ -5612,7 +5354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_257, nameFirstName: 'Brian', nameLastName: 'Bell', - city: 'Mathewsburgh', emailsPrimaryEmail: 'brian.bell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-257', @@ -5629,7 +5370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_258, nameFirstName: 'Troy', nameLastName: 'Stuart', - city: 'West Jeffrey', emailsPrimaryEmail: 'troy.stuart@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-258', @@ -5646,7 +5386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_259, nameFirstName: 'Beth', nameLastName: 'Shea', - city: 'Valenciaside', emailsPrimaryEmail: 'beth.shea@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-259', @@ -5663,7 +5402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_260, nameFirstName: 'Erin', nameLastName: 'Barrera', - city: 'Baileystad', emailsPrimaryEmail: 'erin.barrera@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-260', @@ -5680,7 +5418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_261, nameFirstName: 'Danielle', nameLastName: 'Maynard', - city: 'West Darrylmouth', emailsPrimaryEmail: 'danielle.maynard@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-261', @@ -5697,7 +5434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_262, nameFirstName: 'Sarah', nameLastName: 'Oneal', - city: 'Colinville', emailsPrimaryEmail: 'sarah.oneal@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-262', @@ -5714,7 +5450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_263, nameFirstName: 'Carrie', nameLastName: 'Taylor', - city: 'North Paul', emailsPrimaryEmail: 'carrie.taylor2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-263', @@ -5731,7 +5466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_264, nameFirstName: 'Andrea', nameLastName: 'Smith', - city: 'Annashire', emailsPrimaryEmail: 'andrea.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-264', @@ -5748,7 +5482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_265, nameFirstName: 'Adam', nameLastName: 'Cowan', - city: 'East Barbarafort', emailsPrimaryEmail: 'adam.cowan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-265', @@ -5765,7 +5498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_266, nameFirstName: 'Bryan', nameLastName: 'Johnson', - city: 'Annaton', emailsPrimaryEmail: 'bryan.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-266', @@ -5782,7 +5514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_267, nameFirstName: 'Richard', nameLastName: 'Jackson', - city: 'Dennischester', emailsPrimaryEmail: 'richard.jackson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-267', @@ -5799,7 +5530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_268, nameFirstName: 'Kelly', nameLastName: 'Jackson', - city: 'Williamtown', emailsPrimaryEmail: 'kelly.jackson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-268', @@ -5816,7 +5546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_269, nameFirstName: 'Jack', nameLastName: 'Ingram', - city: 'Samanthafort', emailsPrimaryEmail: 'jack.ingram@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-269', @@ -5833,7 +5562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_270, nameFirstName: 'Rhonda', nameLastName: 'Jenkins', - city: 'Port Michelle', emailsPrimaryEmail: 'rhonda.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-270', @@ -5850,7 +5578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_271, nameFirstName: 'Jacqueline', nameLastName: 'Johnson', - city: 'Youngborough', emailsPrimaryEmail: 'jacqueline.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-271', @@ -5867,7 +5594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_272, nameFirstName: 'Casey', nameLastName: 'Oneill', - city: 'South Matthew', emailsPrimaryEmail: 'casey.oneill@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-272', @@ -5884,7 +5610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_273, nameFirstName: 'Kathleen', nameLastName: 'Francis', - city: 'Lake Christopher', emailsPrimaryEmail: 'kathleen.francis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-273', @@ -5901,7 +5626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_274, nameFirstName: 'Gary', nameLastName: 'Woods', - city: 'East Diane', emailsPrimaryEmail: 'gary.woods@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-274', @@ -5918,7 +5642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_275, nameFirstName: 'Rachel', nameLastName: 'Harris', - city: 'West Michael', emailsPrimaryEmail: 'rachel.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-275', @@ -5935,7 +5658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_276, nameFirstName: 'Charlene', nameLastName: 'Rose', - city: 'North Douglas', emailsPrimaryEmail: 'charlene.rose@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-276', @@ -5952,7 +5674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_277, nameFirstName: 'Donna', nameLastName: 'Saunders', - city: 'Hudsonmouth', emailsPrimaryEmail: 'donna.saunders@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-277', @@ -5969,7 +5690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_278, nameFirstName: 'Thomas', nameLastName: 'Singh', - city: 'Lake Jennifer', emailsPrimaryEmail: 'thomas.singh@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-278', @@ -5986,7 +5706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_279, nameFirstName: 'Ryan', nameLastName: 'Morales', - city: 'Jordanton', emailsPrimaryEmail: 'ryan.morales@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-279', @@ -6003,7 +5722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_280, nameFirstName: 'Christy', nameLastName: 'Hall', - city: 'South Philipbury', emailsPrimaryEmail: 'christy.hall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-280', @@ -6020,7 +5738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_281, nameFirstName: 'Joshua', nameLastName: 'Hawkins', - city: 'Dustintown', emailsPrimaryEmail: 'joshua.hawkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-281', @@ -6037,7 +5754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_282, nameFirstName: 'Jasmine', nameLastName: 'Stanley', - city: 'West Timside', emailsPrimaryEmail: 'jasmine.stanley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-282', @@ -6054,7 +5770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_283, nameFirstName: 'Morgan', nameLastName: 'Thomas', - city: 'Jessicafurt', emailsPrimaryEmail: 'morgan.thomas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-283', @@ -6071,7 +5786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_284, nameFirstName: 'Laura', nameLastName: 'Gomez', - city: 'Carlosview', emailsPrimaryEmail: 'laura.gomez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-284', @@ -6088,7 +5802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_285, nameFirstName: 'Anne', nameLastName: 'Montgomery', - city: 'Rileychester', emailsPrimaryEmail: 'anne.montgomery@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-285', @@ -6105,7 +5818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_286, nameFirstName: 'Tiffany', nameLastName: 'Peterson', - city: 'Nicolefurt', emailsPrimaryEmail: 'tiffany.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-286', @@ -6122,7 +5834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_287, nameFirstName: 'Ian', nameLastName: 'Martinez', - city: 'North Kelsey', emailsPrimaryEmail: 'ian.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-287', @@ -6139,7 +5850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_288, nameFirstName: 'Shelly', nameLastName: 'Rodriguez', - city: 'Lake Daniel', emailsPrimaryEmail: 'shelly.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-288', @@ -6156,7 +5866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_289, nameFirstName: 'Philip', nameLastName: 'Santos', - city: 'East Michael', emailsPrimaryEmail: 'philip.santos@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-289', @@ -6173,7 +5882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_290, nameFirstName: 'Michael', nameLastName: 'Foley', - city: 'Jeremyburgh', emailsPrimaryEmail: 'michael.foley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-290', @@ -6190,7 +5898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_291, nameFirstName: 'David', nameLastName: 'Raymond', - city: 'Port Caseymouth', emailsPrimaryEmail: 'david.raymond@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-291', @@ -6207,7 +5914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_292, nameFirstName: 'Amanda', nameLastName: 'Booker', - city: 'Spencerberg', emailsPrimaryEmail: 'amanda.booker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-292', @@ -6224,7 +5930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_293, nameFirstName: 'Emily', nameLastName: 'Jenkins', - city: 'Lake Alexandra', emailsPrimaryEmail: 'emily.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-293', @@ -6241,7 +5946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_294, nameFirstName: 'Timothy', nameLastName: 'Larsen', - city: 'Donnaside', emailsPrimaryEmail: 'timothy.larsen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-294', @@ -6258,7 +5962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_295, nameFirstName: 'Ashley', nameLastName: 'Barrett', - city: 'Campbellville', emailsPrimaryEmail: 'ashley.barrett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-295', @@ -6275,7 +5978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_296, nameFirstName: 'Sandra', nameLastName: 'Adkins', - city: 'Patriciafort', emailsPrimaryEmail: 'sandra.adkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-296', @@ -6292,7 +5994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_297, nameFirstName: 'Kelly', nameLastName: 'Johnson', - city: 'North Rebecca', emailsPrimaryEmail: 'kelly.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-297', @@ -6309,7 +6010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_298, nameFirstName: 'Patricia', nameLastName: 'Rodriguez', - city: 'Anthonymouth', emailsPrimaryEmail: 'patricia.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-298', @@ -6326,7 +6026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_299, nameFirstName: 'Dawn', nameLastName: 'Scott', - city: 'West Keith', emailsPrimaryEmail: 'dawn.scott@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-299', @@ -6343,7 +6042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_300, nameFirstName: 'Timothy', nameLastName: 'Jones', - city: 'Thomasfurt', emailsPrimaryEmail: 'timothy.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-300', @@ -6360,7 +6058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_301, nameFirstName: 'William', nameLastName: 'Walker', - city: 'Port Christineshire', emailsPrimaryEmail: 'william.walker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-301', @@ -6377,7 +6074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_302, nameFirstName: 'Jesus', nameLastName: 'Santana', - city: 'Port Tyler', emailsPrimaryEmail: 'jesus.santana@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-302', @@ -6394,7 +6090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_303, nameFirstName: 'Maurice', nameLastName: 'Carpenter', - city: 'West Christopher', emailsPrimaryEmail: 'maurice.carpenter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-303', @@ -6411,7 +6106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_304, nameFirstName: 'Robert', nameLastName: 'Barnes', - city: 'East Sarahtown', emailsPrimaryEmail: 'robert.barnes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-304', @@ -6428,7 +6122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_305, nameFirstName: 'Matthew', nameLastName: 'Aguilar', - city: 'South Tyler', emailsPrimaryEmail: 'matthew.aguilar@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-305', @@ -6445,7 +6138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_306, nameFirstName: 'Anthony', nameLastName: 'Stanley', - city: 'West Dannyport', emailsPrimaryEmail: 'anthony.stanley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-306', @@ -6462,7 +6154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_307, nameFirstName: 'Brian', nameLastName: 'Garza', - city: 'Jeffreyport', emailsPrimaryEmail: 'brian.garza@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-307', @@ -6479,7 +6170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_308, nameFirstName: 'Lisa', nameLastName: 'Oconnor', - city: 'East Benjamin', emailsPrimaryEmail: 'lisa.oconnor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-308', @@ -6496,7 +6186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_309, nameFirstName: 'William', nameLastName: 'Wilson', - city: 'Frazierchester', emailsPrimaryEmail: 'william.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-309', @@ -6513,7 +6202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_310, nameFirstName: 'Joanna', nameLastName: 'Alvarez', - city: 'Allenport', emailsPrimaryEmail: 'joanna.alvarez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-310', @@ -6530,7 +6218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_311, nameFirstName: 'Denise', nameLastName: 'Hill', - city: 'New Charles', emailsPrimaryEmail: 'denise.hill@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-311', @@ -6547,7 +6234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_312, nameFirstName: 'Marie', nameLastName: 'Frey', - city: 'Wilsonshire', emailsPrimaryEmail: 'marie.frey@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-312', @@ -6564,7 +6250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_313, nameFirstName: 'Sarah', nameLastName: 'Anderson', - city: 'South Alejandra', emailsPrimaryEmail: 'sarah.anderson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-313', @@ -6581,7 +6266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_314, nameFirstName: 'Mary', nameLastName: 'Garcia', - city: 'East Cliffordmouth', emailsPrimaryEmail: 'mary.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-314', @@ -6598,7 +6282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_315, nameFirstName: 'Richard', nameLastName: 'Massey', - city: 'Kristyton', emailsPrimaryEmail: 'richard.massey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-315', @@ -6615,7 +6298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_316, nameFirstName: 'Megan', nameLastName: 'Rodriguez', - city: 'Lindahaven', emailsPrimaryEmail: 'megan.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-316', @@ -6632,7 +6314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_317, nameFirstName: 'Sandra', nameLastName: 'Conway', - city: 'Jeffreyfurt', emailsPrimaryEmail: 'sandra.conway@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-317', @@ -6649,7 +6330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_318, nameFirstName: 'Rachael', nameLastName: 'Dalton', - city: 'Rebeccafort', emailsPrimaryEmail: 'rachael.dalton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-318', @@ -6666,7 +6346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_319, nameFirstName: 'Katherine', nameLastName: 'Little', - city: 'East Gabrielashire', emailsPrimaryEmail: 'katherine.little@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-319', @@ -6683,7 +6362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_320, nameFirstName: 'Faith', nameLastName: 'Cross', - city: 'Aprilfort', emailsPrimaryEmail: 'faith.cross@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-320', @@ -6700,7 +6378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_321, nameFirstName: 'Amy', nameLastName: 'Farmer', - city: 'Amandastad', emailsPrimaryEmail: 'amy.farmer@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-321', @@ -6717,7 +6394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_322, nameFirstName: 'Stanley', nameLastName: 'Todd', - city: 'South Andrew', emailsPrimaryEmail: 'stanley.todd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-322', @@ -6734,7 +6410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_323, nameFirstName: 'Bradley', nameLastName: 'Miller', - city: 'Tonyastad', emailsPrimaryEmail: 'bradley.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-323', @@ -6751,7 +6426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_324, nameFirstName: 'Sharon', nameLastName: 'Rhodes', - city: 'North Dawnport', emailsPrimaryEmail: 'sharon.rhodes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-324', @@ -6768,7 +6442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_325, nameFirstName: 'Emily', nameLastName: 'Young', - city: 'Marquezhaven', emailsPrimaryEmail: 'emily.young@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-325', @@ -6785,7 +6458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_326, nameFirstName: 'Victoria', nameLastName: 'Harris', - city: 'Benjaminborough', emailsPrimaryEmail: 'victoria.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-326', @@ -6802,7 +6474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_327, nameFirstName: 'Andrew', nameLastName: 'Massey', - city: 'Lake Marilyn', emailsPrimaryEmail: 'andrew.massey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-327', @@ -6819,7 +6490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_328, nameFirstName: 'Heather', nameLastName: 'Mack', - city: 'Lake Jennifer', emailsPrimaryEmail: 'heather.mack@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-328', @@ -6836,7 +6506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_329, nameFirstName: 'Michelle', nameLastName: 'Richards', - city: 'South Jacquelinefort', emailsPrimaryEmail: 'michelle.richards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-329', @@ -6853,7 +6522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_330, nameFirstName: 'Billy', nameLastName: 'Jacobs', - city: 'Christineburgh', emailsPrimaryEmail: 'billy.jacobs@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-330', @@ -6870,7 +6538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_331, nameFirstName: 'Michael', nameLastName: 'White', - city: 'New Micheleside', emailsPrimaryEmail: 'michael.white@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-331', @@ -6887,7 +6554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_332, nameFirstName: 'Jose', nameLastName: 'Frazier', - city: 'North Brookeville', emailsPrimaryEmail: 'jose.frazier@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-332', @@ -6904,7 +6570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_333, nameFirstName: 'Michael', nameLastName: 'Barrett', - city: 'South Hannahchester', emailsPrimaryEmail: 'michael.barrett@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-333', @@ -6921,7 +6586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_334, nameFirstName: 'Lisa', nameLastName: 'Allen', - city: 'Taylorfurt', emailsPrimaryEmail: 'lisa.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-334', @@ -6938,7 +6602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_335, nameFirstName: 'Kristopher', nameLastName: 'Berg', - city: 'Coletown', emailsPrimaryEmail: 'kristopher.berg@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-335', @@ -6955,7 +6618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_336, nameFirstName: 'Regina', nameLastName: 'Allen', - city: 'South Aaron', emailsPrimaryEmail: 'regina.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-336', @@ -6972,7 +6634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_337, nameFirstName: 'Angela', nameLastName: 'Williams', - city: 'Bakerfort', emailsPrimaryEmail: 'angela.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-337', @@ -6989,7 +6650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_338, nameFirstName: 'Aaron', nameLastName: 'Watts', - city: 'South Sherrychester', emailsPrimaryEmail: 'aaron.watts@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-338', @@ -7006,7 +6666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_339, nameFirstName: 'Angela', nameLastName: 'Callahan', - city: 'Lake Jennifer', emailsPrimaryEmail: 'angela.callahan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-339', @@ -7023,7 +6682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_340, nameFirstName: 'Walter', nameLastName: 'Mclaughlin', - city: 'Lake Samantha', emailsPrimaryEmail: 'walter.mclaughlin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-340', @@ -7040,7 +6698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_341, nameFirstName: 'Brian', nameLastName: 'Ellis', - city: 'East Debbiefurt', emailsPrimaryEmail: 'brian.ellis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-341', @@ -7057,7 +6714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_342, nameFirstName: 'Joshua', nameLastName: 'Watson', - city: 'East Robert', emailsPrimaryEmail: 'joshua.watson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-342', @@ -7074,7 +6730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_343, nameFirstName: 'Monica', nameLastName: 'Molina', - city: 'North Donna', emailsPrimaryEmail: 'monica.molina@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-343', @@ -7091,7 +6746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_344, nameFirstName: 'Justin', nameLastName: 'Castro', - city: 'Cunninghamstad', emailsPrimaryEmail: 'justin.castro@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-344', @@ -7108,7 +6762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_345, nameFirstName: 'Austin', nameLastName: 'Dixon', - city: 'Port Angela', emailsPrimaryEmail: 'austin.dixon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-345', @@ -7125,7 +6778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_346, nameFirstName: 'Mitchell', nameLastName: 'Massey', - city: 'Christopherchester', emailsPrimaryEmail: 'mitchell.massey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-346', @@ -7142,7 +6794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_347, nameFirstName: 'Eric', nameLastName: 'Reid', - city: 'Glennview', emailsPrimaryEmail: 'eric.reid@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-347', @@ -7159,7 +6810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_348, nameFirstName: 'Andrea', nameLastName: 'Park', - city: 'Hernandezview', emailsPrimaryEmail: 'andrea.park@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-348', @@ -7176,7 +6826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_349, nameFirstName: 'Wendy', nameLastName: 'Page', - city: 'Port Emilyport', emailsPrimaryEmail: 'wendy.page@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-349', @@ -7193,7 +6842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_350, nameFirstName: 'Vanessa', nameLastName: 'Carpenter', - city: 'East Brett', emailsPrimaryEmail: 'vanessa.carpenter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-350', @@ -7210,7 +6858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_351, nameFirstName: 'Lisa', nameLastName: 'Bailey', - city: 'Kennethfort', emailsPrimaryEmail: 'lisa.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-351', @@ -7227,7 +6874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_352, nameFirstName: 'Jason', nameLastName: 'Wagner', - city: 'Port Kimberly', emailsPrimaryEmail: 'jason.wagner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-352', @@ -7244,7 +6890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_353, nameFirstName: 'Judith', nameLastName: 'Moore', - city: 'West Tammy', emailsPrimaryEmail: 'judith.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-353', @@ -7261,7 +6906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_354, nameFirstName: 'Steven', nameLastName: 'Moore', - city: 'Andrewfort', emailsPrimaryEmail: 'steven.moore@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-354', @@ -7278,7 +6922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_355, nameFirstName: 'Darren', nameLastName: 'Castillo', - city: 'Robinsonberg', emailsPrimaryEmail: 'darren.castillo@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-355', @@ -7295,7 +6938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_356, nameFirstName: 'Regina', nameLastName: 'Quinn', - city: 'Andrewstad', emailsPrimaryEmail: 'regina.quinn@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-356', @@ -7312,7 +6954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_357, nameFirstName: 'Michelle', nameLastName: 'Delgado', - city: 'Lake Wendyland', emailsPrimaryEmail: 'michelle.delgado@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-357', @@ -7329,7 +6970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_358, nameFirstName: 'Miguel', nameLastName: 'Rose', - city: 'North Briannastad', emailsPrimaryEmail: 'miguel.rose@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-358', @@ -7346,7 +6986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_359, nameFirstName: 'Gary', nameLastName: 'Mason', - city: 'Carolynville', emailsPrimaryEmail: 'gary.mason@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-359', @@ -7363,7 +7002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_360, nameFirstName: 'David', nameLastName: 'Young', - city: 'New Craigburgh', emailsPrimaryEmail: 'david.young@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-360', @@ -7380,7 +7018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_361, nameFirstName: 'Jennifer', nameLastName: 'Lewis', - city: 'Alexshire', emailsPrimaryEmail: 'jennifer.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-361', @@ -7397,7 +7034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_362, nameFirstName: 'Amanda', nameLastName: 'Carson', - city: 'East Taylor', emailsPrimaryEmail: 'amanda.carson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-362', @@ -7414,7 +7050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_363, nameFirstName: 'Jeffrey', nameLastName: 'Valentine', - city: 'Port Matthewtown', emailsPrimaryEmail: 'jeffrey.valentine@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-363', @@ -7431,7 +7066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_364, nameFirstName: 'Helen', nameLastName: 'Gordon', - city: 'North Rodney', emailsPrimaryEmail: 'helen.gordon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-364', @@ -7448,7 +7082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_365, nameFirstName: 'Cameron', nameLastName: 'Lopez', - city: 'Danielleport', emailsPrimaryEmail: 'cameron.lopez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-365', @@ -7465,7 +7098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_366, nameFirstName: 'Troy', nameLastName: 'Gray', - city: 'Coleview', emailsPrimaryEmail: 'troy.gray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-366', @@ -7482,7 +7114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_367, nameFirstName: 'Tonya', nameLastName: 'Payne', - city: 'Lake Brooke', emailsPrimaryEmail: 'tonya.payne@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-367', @@ -7499,7 +7130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_368, nameFirstName: 'April', nameLastName: 'Williams', - city: 'Jacobberg', emailsPrimaryEmail: 'april.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-368', @@ -7516,7 +7146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_369, nameFirstName: 'Gregory', nameLastName: 'Baker', - city: 'New Jonathanview', emailsPrimaryEmail: 'gregory.baker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-369', @@ -7533,7 +7162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_370, nameFirstName: 'Bobby', nameLastName: 'Cummings', - city: 'Loganborough', emailsPrimaryEmail: 'bobby.cummings@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-370', @@ -7550,7 +7178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_371, nameFirstName: 'Melissa', nameLastName: 'Jackson', - city: 'Villegasberg', emailsPrimaryEmail: 'melissa.jackson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-371', @@ -7567,7 +7194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_372, nameFirstName: 'Lance', nameLastName: 'Norman', - city: 'Bestfort', emailsPrimaryEmail: 'lance.norman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-372', @@ -7584,7 +7210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_373, nameFirstName: 'Amy', nameLastName: 'Roberts', - city: 'Tinaview', emailsPrimaryEmail: 'amy.roberts@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-373', @@ -7601,7 +7226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_374, nameFirstName: 'Kaitlyn', nameLastName: 'Kelly', - city: 'Rossmouth', emailsPrimaryEmail: 'kaitlyn.kelly@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-374', @@ -7618,7 +7242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_375, nameFirstName: 'Alan', nameLastName: 'Perez', - city: 'Mitchellland', emailsPrimaryEmail: 'alan.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-375', @@ -7635,7 +7258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_376, nameFirstName: 'Kaylee', nameLastName: 'Garrett', - city: 'Evanmouth', emailsPrimaryEmail: 'kaylee.garrett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-376', @@ -7652,7 +7274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_377, nameFirstName: 'Deanna', nameLastName: 'Ball', - city: 'Lake Melissamouth', emailsPrimaryEmail: 'deanna.ball@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-377', @@ -7669,7 +7290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_378, nameFirstName: 'Michele', nameLastName: 'Crawford', - city: 'West Timothy', emailsPrimaryEmail: 'michele.crawford@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-378', @@ -7686,7 +7306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_379, nameFirstName: 'Tommy', nameLastName: 'Brown', - city: 'Gomezshire', emailsPrimaryEmail: 'tommy.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-379', @@ -7703,7 +7322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_380, nameFirstName: 'Mary', nameLastName: 'Smith', - city: 'North Amanda', emailsPrimaryEmail: 'mary.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-380', @@ -7720,7 +7338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_381, nameFirstName: 'Danielle', nameLastName: 'Dunn', - city: 'Lake Lauraland', emailsPrimaryEmail: 'danielle.dunn@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-381', @@ -7737,7 +7354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_382, nameFirstName: 'Daniel', nameLastName: 'Ward', - city: 'Stephenview', emailsPrimaryEmail: 'daniel.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-382', @@ -7754,7 +7370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_383, nameFirstName: 'Louis', nameLastName: 'Bailey', - city: 'New Allisonberg', emailsPrimaryEmail: 'louis.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-383', @@ -7771,7 +7386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_384, nameFirstName: 'Melvin', nameLastName: 'Rosario', - city: 'Port Joseph', emailsPrimaryEmail: 'melvin.rosario@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-384', @@ -7788,7 +7402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_385, nameFirstName: 'Jason', nameLastName: 'Fritz', - city: 'Johnland', emailsPrimaryEmail: 'jason.fritz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-385', @@ -7805,7 +7418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_386, nameFirstName: 'Candice', nameLastName: 'Weber', - city: 'Port Frederickmouth', emailsPrimaryEmail: 'candice.weber@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-386', @@ -7822,7 +7434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_387, nameFirstName: 'John', nameLastName: 'Jones', - city: 'Weeksmouth', emailsPrimaryEmail: 'john.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-387', @@ -7839,7 +7450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_388, nameFirstName: 'Henry', nameLastName: 'Gonzalez', - city: 'Juliefort', emailsPrimaryEmail: 'henry.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-388', @@ -7856,7 +7466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_389, nameFirstName: 'Kaitlyn', nameLastName: 'Brennan', - city: 'Zunigaside', emailsPrimaryEmail: 'kaitlyn.brennan@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-389', @@ -7873,7 +7482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_390, nameFirstName: 'Jeffrey', nameLastName: 'Shepard', - city: 'Gordontown', emailsPrimaryEmail: 'jeffrey.shepard@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-390', @@ -7890,7 +7498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_391, nameFirstName: 'Emily', nameLastName: 'Smith', - city: 'North Kennethfort', emailsPrimaryEmail: 'emily.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-391', @@ -7907,7 +7514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_392, nameFirstName: 'Richard', nameLastName: 'Williams', - city: 'West Christian', emailsPrimaryEmail: 'richard.williams@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-392', @@ -7924,7 +7530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_393, nameFirstName: 'David', nameLastName: 'Cruz', - city: 'Antonioview', emailsPrimaryEmail: 'david.cruz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-393', @@ -7941,7 +7546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_394, nameFirstName: 'Julie', nameLastName: 'Smith', - city: 'Josephtown', emailsPrimaryEmail: 'julie.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-394', @@ -7958,7 +7562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_395, nameFirstName: 'Edward', nameLastName: 'Russell', - city: 'Brittanymouth', emailsPrimaryEmail: 'edward.russell@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-395', @@ -7975,7 +7578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_396, nameFirstName: 'Beth', nameLastName: 'Kennedy', - city: 'New Biancamouth', emailsPrimaryEmail: 'beth.kennedy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-396', @@ -7992,7 +7594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_397, nameFirstName: 'Craig', nameLastName: 'Maxwell', - city: 'Millerfort', emailsPrimaryEmail: 'craig.maxwell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-397', @@ -8009,7 +7610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_398, nameFirstName: 'Christopher', nameLastName: 'Jackson', - city: 'Stephaniestad', emailsPrimaryEmail: 'christopher.jackson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-398', @@ -8026,7 +7626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_399, nameFirstName: 'Jacob', nameLastName: 'Miller', - city: 'New Mariabury', emailsPrimaryEmail: 'jacob.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-399', @@ -8043,7 +7642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_400, nameFirstName: 'Kevin', nameLastName: 'Williams', - city: 'New Kelly', emailsPrimaryEmail: 'kevin.williams2@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-400', @@ -8060,7 +7658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_401, nameFirstName: 'Mary', nameLastName: 'Wiley', - city: 'South Isaac', emailsPrimaryEmail: 'mary.wiley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-401', @@ -8077,7 +7674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_402, nameFirstName: 'Sierra', nameLastName: 'Mccullough', - city: 'Santanafort', emailsPrimaryEmail: 'sierra.mccullough@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-402', @@ -8094,7 +7690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_403, nameFirstName: 'Michelle', nameLastName: 'Mcknight', - city: 'Stevenhaven', emailsPrimaryEmail: 'michelle.mcknight@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-403', @@ -8111,7 +7706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_404, nameFirstName: 'Devin', nameLastName: 'Aguilar', - city: 'Carlosfort', emailsPrimaryEmail: 'devin.aguilar@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-404', @@ -8128,7 +7722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_405, nameFirstName: 'Christopher', nameLastName: 'Figueroa', - city: 'South Michaelville', emailsPrimaryEmail: 'christopher.figueroa@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-405', @@ -8145,7 +7738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_406, nameFirstName: 'Anita', nameLastName: 'Orr', - city: 'Coxberg', emailsPrimaryEmail: 'anita.orr@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-406', @@ -8162,7 +7754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_407, nameFirstName: 'Richard', nameLastName: 'Young', - city: 'Arnoldborough', emailsPrimaryEmail: 'richard.young@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-407', @@ -8179,7 +7770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_408, nameFirstName: 'Justin', nameLastName: 'Berry', - city: 'New Mariebury', emailsPrimaryEmail: 'justin.berry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-408', @@ -8196,7 +7786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_409, nameFirstName: 'Timothy', nameLastName: 'Davis', - city: 'New Justinborough', emailsPrimaryEmail: 'timothy.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-409', @@ -8213,7 +7802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_410, nameFirstName: 'Brian', nameLastName: 'Williams', - city: 'Pottermouth', emailsPrimaryEmail: 'brian.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-410', @@ -8230,7 +7818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_411, nameFirstName: 'Kyle', nameLastName: 'Carr', - city: 'Wyattbury', emailsPrimaryEmail: 'kyle.carr@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-411', @@ -8247,7 +7834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_412, nameFirstName: 'Jessica', nameLastName: 'Gonzalez', - city: 'New Joshua', emailsPrimaryEmail: 'jessica.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-412', @@ -8264,7 +7850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_413, nameFirstName: 'Hannah', nameLastName: 'Nguyen', - city: 'West Joseph', emailsPrimaryEmail: 'hannah.nguyen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-413', @@ -8281,7 +7866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_414, nameFirstName: 'Tina', nameLastName: 'Salinas', - city: 'East Matthew', emailsPrimaryEmail: 'tina.salinas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-414', @@ -8298,7 +7882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_415, nameFirstName: 'Matthew', nameLastName: 'King', - city: 'Edwardbury', emailsPrimaryEmail: 'matthew.king@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-415', @@ -8315,7 +7898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_416, nameFirstName: 'Carrie', nameLastName: 'Mayer', - city: 'Lake Anthonytown', emailsPrimaryEmail: 'carrie.mayer@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-416', @@ -8332,7 +7914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_417, nameFirstName: 'Alan', nameLastName: 'Guerrero', - city: 'Kimberlyport', emailsPrimaryEmail: 'alan.guerrero@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-417', @@ -8349,7 +7930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_418, nameFirstName: 'Alan', nameLastName: 'Edwards', - city: 'New Kimberly', emailsPrimaryEmail: 'alan.edwards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-418', @@ -8366,7 +7946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_419, nameFirstName: 'Ellen', nameLastName: 'Hughes', - city: 'Lake Christina', emailsPrimaryEmail: 'ellen.hughes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-419', @@ -8383,7 +7962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_420, nameFirstName: 'Jennifer', nameLastName: 'Cox', - city: 'Port Josephfort', emailsPrimaryEmail: 'jennifer.cox@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-420', @@ -8400,7 +7978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_421, nameFirstName: 'James', nameLastName: 'Brown', - city: 'Spencerside', emailsPrimaryEmail: 'james.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-421', @@ -8417,7 +7994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_422, nameFirstName: 'Kenneth', nameLastName: 'Mason', - city: 'New Nicholasshire', emailsPrimaryEmail: 'kenneth.mason@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-422', @@ -8434,7 +8010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_423, nameFirstName: 'Kent', nameLastName: 'Mitchell', - city: 'Port Jamesport', emailsPrimaryEmail: 'kent.mitchell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-423', @@ -8451,7 +8026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_424, nameFirstName: 'Christine', nameLastName: 'Parker', - city: 'Robertsmouth', emailsPrimaryEmail: 'christine.parker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-424', @@ -8468,7 +8042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_425, nameFirstName: 'Christopher', nameLastName: 'Thomas', - city: 'Marissashire', emailsPrimaryEmail: 'christopher.thomas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-425', @@ -8485,7 +8058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_426, nameFirstName: 'Cole', nameLastName: 'Mckenzie', - city: 'Amberborough', emailsPrimaryEmail: 'cole.mckenzie@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-426', @@ -8502,7 +8074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_427, nameFirstName: 'John', nameLastName: 'Jackson', - city: 'Hendersonview', emailsPrimaryEmail: 'john.jackson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-427', @@ -8519,7 +8090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_428, nameFirstName: 'Denise', nameLastName: 'Gregory', - city: 'Christopherport', emailsPrimaryEmail: 'denise.gregory@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-428', @@ -8536,7 +8106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_429, nameFirstName: 'Deanna', nameLastName: 'Mays', - city: 'Cassandrastad', emailsPrimaryEmail: 'deanna.mays@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-429', @@ -8553,7 +8122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_430, nameFirstName: 'Jennifer', nameLastName: 'Smith', - city: 'Wallaceville', emailsPrimaryEmail: 'jennifer.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-430', @@ -8570,7 +8138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_431, nameFirstName: 'Dylan', nameLastName: 'Jimenez', - city: 'Lake Justin', emailsPrimaryEmail: 'dylan.jimenez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-431', @@ -8587,7 +8154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_432, nameFirstName: 'Amber', nameLastName: 'Mullins', - city: 'East Sarah', emailsPrimaryEmail: 'amber.mullins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-432', @@ -8604,7 +8170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_433, nameFirstName: 'Kirsten', nameLastName: 'Watson', - city: 'Vegastad', emailsPrimaryEmail: 'kirsten.watson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-433', @@ -8621,7 +8186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_434, nameFirstName: 'Holly', nameLastName: 'Winters', - city: 'Lawsonberg', emailsPrimaryEmail: 'holly.winters@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-434', @@ -8638,7 +8202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_435, nameFirstName: 'Matthew', nameLastName: 'Jenkins', - city: 'New Angelaport', emailsPrimaryEmail: 'matthew.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-435', @@ -8655,7 +8218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_436, nameFirstName: 'Elizabeth', nameLastName: 'Williams', - city: 'Port Richard', emailsPrimaryEmail: 'elizabeth.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-436', @@ -8672,7 +8234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_437, nameFirstName: 'Sophia', nameLastName: 'Carpenter', - city: 'Austinfort', emailsPrimaryEmail: 'sophia.carpenter@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-437', @@ -8689,7 +8250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_438, nameFirstName: 'Sarah', nameLastName: 'Duke', - city: 'Huffmanville', emailsPrimaryEmail: 'sarah.duke@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-438', @@ -8706,7 +8266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_439, nameFirstName: 'Colin', nameLastName: 'Smith', - city: 'South Loriport', emailsPrimaryEmail: 'colin.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-439', @@ -8723,7 +8282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_440, nameFirstName: 'Christine', nameLastName: 'Baldwin', - city: 'East Maryland', emailsPrimaryEmail: 'christine.baldwin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-440', @@ -8740,7 +8298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_441, nameFirstName: 'Michael', nameLastName: 'Johns', - city: 'Jeffmouth', emailsPrimaryEmail: 'michael.johns@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-441', @@ -8757,7 +8314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_442, nameFirstName: 'Jeffery', nameLastName: 'Griffin', - city: 'New Jennifer', emailsPrimaryEmail: 'jeffery.griffin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-442', @@ -8774,7 +8330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_443, nameFirstName: 'Mike', nameLastName: 'Hernandez', - city: 'West Leah', emailsPrimaryEmail: 'mike.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-443', @@ -8791,7 +8346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_444, nameFirstName: 'Chelsea', nameLastName: 'Robinson', - city: 'Morafurt', emailsPrimaryEmail: 'chelsea.robinson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-444', @@ -8808,7 +8362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_445, nameFirstName: 'Derek', nameLastName: 'Small', - city: 'Michaelview', emailsPrimaryEmail: 'derek.small@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-445', @@ -8825,7 +8378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_446, nameFirstName: 'Robin', nameLastName: 'Miranda', - city: 'Port Chelsea', emailsPrimaryEmail: 'robin.miranda@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-446', @@ -8842,7 +8394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_447, nameFirstName: 'Alexander', nameLastName: 'Bryant', - city: 'Allenstad', emailsPrimaryEmail: 'alexander.bryant@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-447', @@ -8859,7 +8410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_448, nameFirstName: 'Jennifer', nameLastName: 'Moody', - city: 'Lake Lauraville', emailsPrimaryEmail: 'jennifer.moody@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-448', @@ -8876,7 +8426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_449, nameFirstName: 'Kathleen', nameLastName: 'Coleman', - city: 'Brittneymouth', emailsPrimaryEmail: 'kathleen.coleman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-449', @@ -8893,7 +8442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_450, nameFirstName: 'Miguel', nameLastName: 'Malone', - city: 'Gomeztown', emailsPrimaryEmail: 'miguel.malone@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-450', @@ -8910,7 +8458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_451, nameFirstName: 'Eric', nameLastName: 'Kramer', - city: 'North Tiffany', emailsPrimaryEmail: 'eric.kramer@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-451', @@ -8927,7 +8474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_452, nameFirstName: 'David', nameLastName: 'Harmon', - city: 'Christinaberg', emailsPrimaryEmail: 'david.harmon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-452', @@ -8944,7 +8490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_453, nameFirstName: 'Michael', nameLastName: 'Turner', - city: 'New Dustin', emailsPrimaryEmail: 'michael.turner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-453', @@ -8961,7 +8506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_454, nameFirstName: 'Kim', nameLastName: 'Nelson', - city: 'Mannfurt', emailsPrimaryEmail: 'kim.nelson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-454', @@ -8978,7 +8522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_455, nameFirstName: 'Jason', nameLastName: 'Mcmahon', - city: 'South Matthew', emailsPrimaryEmail: 'jason.mcmahon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-455', @@ -8995,7 +8538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_456, nameFirstName: 'Spencer', nameLastName: 'Mason', - city: 'Christinestad', emailsPrimaryEmail: 'spencer.mason@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-456', @@ -9012,7 +8554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_457, nameFirstName: 'Alison', nameLastName: 'Barber', - city: 'North Amanda', emailsPrimaryEmail: 'alison.barber@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-457', @@ -9029,7 +8570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_458, nameFirstName: 'Alicia', nameLastName: 'Kennedy', - city: 'East Pedro', emailsPrimaryEmail: 'alicia.kennedy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-458', @@ -9046,7 +8586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_459, nameFirstName: 'Edward', nameLastName: 'Parsons', - city: 'East Elizabethside', emailsPrimaryEmail: 'edward.parsons@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-459', @@ -9063,7 +8602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_460, nameFirstName: 'Justin', nameLastName: 'Petersen', - city: 'Smithville', emailsPrimaryEmail: 'justin.petersen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-460', @@ -9080,7 +8618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_461, nameFirstName: 'Dawn', nameLastName: 'Dixon', - city: 'Port Davidchester', emailsPrimaryEmail: 'dawn.dixon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-461', @@ -9097,7 +8634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_462, nameFirstName: 'Douglas', nameLastName: 'Ward', - city: 'New Jennifer', emailsPrimaryEmail: 'douglas.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-462', @@ -9114,7 +8650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_463, nameFirstName: 'Linda', nameLastName: 'Nguyen', - city: 'Granttown', emailsPrimaryEmail: 'linda.nguyen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-463', @@ -9131,7 +8666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_464, nameFirstName: 'Nicole', nameLastName: 'Hernandez', - city: 'Courtneystad', emailsPrimaryEmail: 'nicole.hernandez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-464', @@ -9148,7 +8682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_465, nameFirstName: 'Anne', nameLastName: 'Massey', - city: 'South Brandyland', emailsPrimaryEmail: 'anne.massey@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-465', @@ -9165,7 +8698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_466, nameFirstName: 'Jenny', nameLastName: 'Esparza', - city: 'Rachelfurt', emailsPrimaryEmail: 'jenny.esparza@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-466', @@ -9182,7 +8714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_467, nameFirstName: 'Robert', nameLastName: 'Ward', - city: 'Alejandromouth', emailsPrimaryEmail: 'robert.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-467', @@ -9199,7 +8730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_468, nameFirstName: 'Melissa', nameLastName: 'Farrell', - city: 'Hughesshire', emailsPrimaryEmail: 'melissa.farrell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-468', @@ -9216,7 +8746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_469, nameFirstName: 'Stephen', nameLastName: 'Powers', - city: 'Johnburgh', emailsPrimaryEmail: 'stephen.powers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-469', @@ -9233,7 +8762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_470, nameFirstName: 'Robin', nameLastName: 'Brown', - city: 'West Elizabethberg', emailsPrimaryEmail: 'robin.brown@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-470', @@ -9250,7 +8778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_471, nameFirstName: 'Wanda', nameLastName: 'Moore', - city: 'Kimberlyborough', emailsPrimaryEmail: 'wanda.moore@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-471', @@ -9267,7 +8794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_472, nameFirstName: 'Danielle', nameLastName: 'Brown', - city: 'Robinsonmouth', emailsPrimaryEmail: 'danielle.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-472', @@ -9284,7 +8810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_473, nameFirstName: 'Timothy', nameLastName: 'Phillips', - city: 'Armstrongbury', emailsPrimaryEmail: 'timothy.phillips@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-473', @@ -9301,7 +8826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_474, nameFirstName: 'Daniel', nameLastName: 'Baker', - city: 'Elizabethfurt', emailsPrimaryEmail: 'daniel.baker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-474', @@ -9318,7 +8842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_475, nameFirstName: 'Jason', nameLastName: 'Parker', - city: 'Jorgeside', emailsPrimaryEmail: 'jason.parker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-475', @@ -9335,7 +8858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_476, nameFirstName: 'Donald', nameLastName: 'Roy', - city: 'New Michael', emailsPrimaryEmail: 'donald.roy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-476', @@ -9352,7 +8874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_477, nameFirstName: 'Cameron', nameLastName: 'Beck', - city: 'Karinaberg', emailsPrimaryEmail: 'cameron.beck@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-477', @@ -9369,7 +8890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_478, nameFirstName: 'Christina', nameLastName: 'Carter', - city: 'West Steven', emailsPrimaryEmail: 'christina.carter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-478', @@ -9386,7 +8906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_479, nameFirstName: 'Roy', nameLastName: 'Jackson', - city: 'West Melissa', emailsPrimaryEmail: 'roy.jackson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-479', @@ -9403,7 +8922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_480, nameFirstName: 'Valerie', nameLastName: 'Green', - city: 'Jessicaburgh', emailsPrimaryEmail: 'valerie.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-480', @@ -9420,7 +8938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_481, nameFirstName: 'Ryan', nameLastName: 'Parker', - city: 'Wendymouth', emailsPrimaryEmail: 'ryan.parker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-481', @@ -9437,7 +8954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_482, nameFirstName: 'Spencer', nameLastName: 'Cortez', - city: 'East Willie', emailsPrimaryEmail: 'spencer.cortez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-482', @@ -9454,7 +8970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_483, nameFirstName: 'Jacqueline', nameLastName: 'Freeman', - city: 'Tracyville', emailsPrimaryEmail: 'jacqueline.freeman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-483', @@ -9471,7 +8986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_484, nameFirstName: 'Joanne', nameLastName: 'Hernandez', - city: 'North Henry', emailsPrimaryEmail: 'joanne.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-484', @@ -9488,7 +9002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_485, nameFirstName: 'Brandon', nameLastName: 'Randolph', - city: 'Cathyberg', emailsPrimaryEmail: 'brandon.randolph@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-485', @@ -9505,7 +9018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_486, nameFirstName: 'William', nameLastName: 'Wells', - city: 'Port Crystalland', emailsPrimaryEmail: 'william.wells@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-486', @@ -9522,7 +9034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_487, nameFirstName: 'Monica', nameLastName: 'Wall', - city: 'Pereztown', emailsPrimaryEmail: 'monica.wall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-487', @@ -9539,7 +9050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_488, nameFirstName: 'Patricia', nameLastName: 'Whitehead', - city: 'Fernandezport', emailsPrimaryEmail: 'patricia.whitehead@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-488', @@ -9556,7 +9066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_489, nameFirstName: 'Chelsey', nameLastName: 'Cruz', - city: 'Port Jessicatown', emailsPrimaryEmail: 'chelsey.cruz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-489', @@ -9573,7 +9082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_490, nameFirstName: 'Marie', nameLastName: 'Herrera', - city: 'Georgeville', emailsPrimaryEmail: 'marie.herrera@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-490', @@ -9590,7 +9098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_491, nameFirstName: 'Gail', nameLastName: 'Russell', - city: 'South Heatherstad', emailsPrimaryEmail: 'gail.russell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-491', @@ -9607,7 +9114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_492, nameFirstName: 'Christopher', nameLastName: 'Whitehead', - city: 'Stephanieville', emailsPrimaryEmail: 'christopher.whitehead@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-492', @@ -9624,7 +9130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_493, nameFirstName: 'Vicki', nameLastName: 'Gonzales', - city: 'Lake Terri', emailsPrimaryEmail: 'vicki.gonzales@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-493', @@ -9641,7 +9146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_494, nameFirstName: 'Paul', nameLastName: 'Graham', - city: 'Sydneyfurt', emailsPrimaryEmail: 'paul.graham@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-494', @@ -9658,7 +9162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_495, nameFirstName: 'John', nameLastName: 'Carter', - city: 'Michelleborough', emailsPrimaryEmail: 'john.carter@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-495', @@ -9675,7 +9178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_496, nameFirstName: 'Dennis', nameLastName: 'Taylor', - city: 'South Alexandra', emailsPrimaryEmail: 'dennis.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-496', @@ -9692,7 +9194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_497, nameFirstName: 'Gail', nameLastName: 'Salinas', - city: 'Willietown', emailsPrimaryEmail: 'gail.salinas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-497', @@ -9709,7 +9210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_498, nameFirstName: 'Stacey', nameLastName: 'Doyle', - city: 'Kleinfort', emailsPrimaryEmail: 'stacey.doyle@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-498', @@ -9726,7 +9226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_499, nameFirstName: 'Nicholas', nameLastName: 'Jones', - city: 'Rogersberg', emailsPrimaryEmail: 'nicholas.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-499', @@ -9743,7 +9242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_500, nameFirstName: 'Sheri', nameLastName: 'Donaldson', - city: 'Staceyberg', emailsPrimaryEmail: 'sheri.donaldson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-500', @@ -9760,7 +9258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_501, nameFirstName: 'Christopher', nameLastName: 'Christensen', - city: 'Theresatown', emailsPrimaryEmail: 'christopher.christensen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-501', @@ -9777,7 +9274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_502, nameFirstName: 'Joshua', nameLastName: 'Hernandez', - city: 'Shortville', emailsPrimaryEmail: 'joshua.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-502', @@ -9794,7 +9290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_503, nameFirstName: 'Ryan', nameLastName: 'Walter', - city: 'Benjaminland', emailsPrimaryEmail: 'ryan.walter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-503', @@ -9811,7 +9306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_504, nameFirstName: 'Brandy', nameLastName: 'Trevino', - city: 'Mccoyland', emailsPrimaryEmail: 'brandy.trevino@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-504', @@ -9828,7 +9322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_505, nameFirstName: 'John', nameLastName: 'Martinez', - city: 'Lake Normanfurt', emailsPrimaryEmail: 'john.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-505', @@ -9845,7 +9338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_506, nameFirstName: 'Jennifer', nameLastName: 'Morris', - city: 'Michaelmouth', emailsPrimaryEmail: 'jennifer.morris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-506', @@ -9862,7 +9354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_507, nameFirstName: 'Amanda', nameLastName: 'Barnett', - city: 'Robinhaven', emailsPrimaryEmail: 'amanda.barnett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-507', @@ -9879,7 +9370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_508, nameFirstName: 'Tanner', nameLastName: 'Miller', - city: 'Larsonstad', emailsPrimaryEmail: 'tanner.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-508', @@ -9896,7 +9386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_509, nameFirstName: 'Bobby', nameLastName: 'Sanchez', - city: 'Mikaylamouth', emailsPrimaryEmail: 'bobby.sanchez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-509', @@ -9913,7 +9402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_510, nameFirstName: 'Brian', nameLastName: 'Cortez', - city: 'West Alejandroborough', emailsPrimaryEmail: 'brian.cortez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-510', @@ -9930,7 +9418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_511, nameFirstName: 'Misty', nameLastName: 'Jenkins', - city: 'Russellville', emailsPrimaryEmail: 'misty.jenkins@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-511', @@ -9947,7 +9434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_512, nameFirstName: 'Erin', nameLastName: 'Hernandez', - city: 'Lucasland', emailsPrimaryEmail: 'erin.hernandez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-512', @@ -9964,7 +9450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_513, nameFirstName: 'Victoria', nameLastName: 'Larsen', - city: 'Shahville', emailsPrimaryEmail: 'victoria.larsen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-513', @@ -9981,7 +9466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_514, nameFirstName: 'Brian', nameLastName: 'Diaz', - city: 'Port Tonyaview', emailsPrimaryEmail: 'brian.diaz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-514', @@ -9998,7 +9482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_515, nameFirstName: 'Krista', nameLastName: 'Murphy', - city: 'Rebeccaton', emailsPrimaryEmail: 'krista.murphy@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-515', @@ -10015,7 +9498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_516, nameFirstName: 'Calvin', nameLastName: 'Bond', - city: 'Grimeston', emailsPrimaryEmail: 'calvin.bond@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-516', @@ -10032,7 +9514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_517, nameFirstName: 'Terry', nameLastName: 'Perez', - city: 'South Tyler', emailsPrimaryEmail: 'terry.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-517', @@ -10049,7 +9530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_518, nameFirstName: 'Stephen', nameLastName: 'Wilson', - city: 'Holmeschester', emailsPrimaryEmail: 'stephen.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-518', @@ -10066,7 +9546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_519, nameFirstName: 'Lisa', nameLastName: 'Johnson', - city: 'South Kelly', emailsPrimaryEmail: 'lisa.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-519', @@ -10083,7 +9562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_520, nameFirstName: 'Tim', nameLastName: 'Torres', - city: 'Jenniferview', emailsPrimaryEmail: 'tim.torres@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-520', @@ -10100,7 +9578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_521, nameFirstName: 'Claudia', nameLastName: 'Sosa', - city: 'West Jamie', emailsPrimaryEmail: 'claudia.sosa@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-521', @@ -10117,7 +9594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_522, nameFirstName: 'Steven', nameLastName: 'Higgins', - city: 'New Sandra', emailsPrimaryEmail: 'steven.higgins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-522', @@ -10134,7 +9610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_523, nameFirstName: 'James', nameLastName: 'Benson', - city: 'New Amanda', emailsPrimaryEmail: 'james.benson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-523', @@ -10151,7 +9626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_524, nameFirstName: 'Tyler', nameLastName: 'Bishop', - city: 'Courtneystad', emailsPrimaryEmail: 'tyler.bishop@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-524', @@ -10168,7 +9642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_525, nameFirstName: 'Monica', nameLastName: 'Smith', - city: 'New Jeremy', emailsPrimaryEmail: 'monica.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-525', @@ -10185,7 +9658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_526, nameFirstName: 'Jillian', nameLastName: 'Carter', - city: 'South Brian', emailsPrimaryEmail: 'jillian.carter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-526', @@ -10202,7 +9674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_527, nameFirstName: 'Roberta', nameLastName: 'Graves', - city: 'New Juan', emailsPrimaryEmail: 'roberta.graves@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-527', @@ -10219,7 +9690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_528, nameFirstName: 'Clarence', nameLastName: 'Flores', - city: 'Tylerfort', emailsPrimaryEmail: 'clarence.flores@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-528', @@ -10236,7 +9706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_529, nameFirstName: 'Robert', nameLastName: 'Gonzalez', - city: 'West Marc', emailsPrimaryEmail: 'robert.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-529', @@ -10253,7 +9722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_530, nameFirstName: 'Melissa', nameLastName: 'Lucas', - city: 'Boltonview', emailsPrimaryEmail: 'melissa.lucas@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-530', @@ -10270,7 +9738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_531, nameFirstName: 'Lee', nameLastName: 'Lewis', - city: 'West Kevinfurt', emailsPrimaryEmail: 'lee.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-531', @@ -10287,7 +9754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_532, nameFirstName: 'Jessica', nameLastName: 'Preston', - city: 'Ortizchester', emailsPrimaryEmail: 'jessica.preston@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-532', @@ -10304,7 +9770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_533, nameFirstName: 'Henry', nameLastName: 'West', - city: 'North Jason', emailsPrimaryEmail: 'henry.west@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-533', @@ -10321,7 +9786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_534, nameFirstName: 'Kristin', nameLastName: 'Sanchez', - city: 'East Jordan', emailsPrimaryEmail: 'kristin.sanchez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-534', @@ -10338,7 +9802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_535, nameFirstName: 'Derek', nameLastName: 'Davis', - city: 'New Raymondport', emailsPrimaryEmail: 'derek.davis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-535', @@ -10355,7 +9818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_536, nameFirstName: 'Dan', nameLastName: 'Gonzales', - city: 'Grantside', emailsPrimaryEmail: 'dan.gonzales@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-536', @@ -10372,7 +9834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_537, nameFirstName: 'Edwin', nameLastName: 'Garcia', - city: 'South Bradley', emailsPrimaryEmail: 'edwin.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-537', @@ -10389,7 +9850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_538, nameFirstName: 'Tonya', nameLastName: 'Hooper', - city: 'New Mark', emailsPrimaryEmail: 'tonya.hooper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-538', @@ -10406,7 +9866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_539, nameFirstName: 'Jennifer', nameLastName: 'Tate', - city: 'South Johnhaven', emailsPrimaryEmail: 'jennifer.tate@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-539', @@ -10423,7 +9882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_540, nameFirstName: 'Earl', nameLastName: 'Higgins', - city: 'Booneton', emailsPrimaryEmail: 'earl.higgins@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-540', @@ -10440,7 +9898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_541, nameFirstName: 'Sandra', nameLastName: 'Werner', - city: 'Johnsonfurt', emailsPrimaryEmail: 'sandra.werner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-541', @@ -10457,7 +9914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_542, nameFirstName: 'Brian', nameLastName: 'Johnson', - city: 'North Andre', emailsPrimaryEmail: 'brian.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-542', @@ -10474,7 +9930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_543, nameFirstName: 'Jacqueline', nameLastName: 'Bell', - city: 'Hoborough', emailsPrimaryEmail: 'jacqueline.bell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-543', @@ -10491,7 +9946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_544, nameFirstName: 'Jeffery', nameLastName: 'Gibson', - city: 'South Robert', emailsPrimaryEmail: 'jeffery.gibson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-544', @@ -10508,7 +9962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_545, nameFirstName: 'Jacqueline', nameLastName: 'Snyder', - city: 'Oconnorton', emailsPrimaryEmail: 'jacqueline.snyder@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-545', @@ -10525,7 +9978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_546, nameFirstName: 'John', nameLastName: 'Stone', - city: 'West Sarah', emailsPrimaryEmail: 'john.stone@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-546', @@ -10542,7 +9994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_547, nameFirstName: 'Elizabeth', nameLastName: 'Allen', - city: 'New Debraville', emailsPrimaryEmail: 'elizabeth.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-547', @@ -10559,7 +10010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_548, nameFirstName: 'Daniel', nameLastName: 'Knight', - city: 'New Michael', emailsPrimaryEmail: 'daniel.knight@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-548', @@ -10576,7 +10026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_549, nameFirstName: 'Whitney', nameLastName: 'Thomas', - city: 'Birdland', emailsPrimaryEmail: 'whitney.thomas@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-549', @@ -10593,7 +10042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_550, nameFirstName: 'Christina', nameLastName: 'Anderson', - city: 'Krististad', emailsPrimaryEmail: 'christina.anderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-550', @@ -10610,7 +10058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_551, nameFirstName: 'Joseph', nameLastName: 'Peterson', - city: 'West Jamesview', emailsPrimaryEmail: 'joseph.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-551', @@ -10627,7 +10074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_552, nameFirstName: 'Larry', nameLastName: 'Graham', - city: 'Katrinabury', emailsPrimaryEmail: 'larry.graham@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-552', @@ -10644,7 +10090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_553, nameFirstName: 'Rachael', nameLastName: 'Fox', - city: 'South Charlesmouth', emailsPrimaryEmail: 'rachael.fox@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-553', @@ -10661,7 +10106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_554, nameFirstName: 'Christopher', nameLastName: 'Wilson', - city: 'West Amyborough', emailsPrimaryEmail: 'christopher.wilson2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-554', @@ -10678,7 +10122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_555, nameFirstName: 'Aaron', nameLastName: 'Mccarty', - city: 'New Connie', emailsPrimaryEmail: 'aaron.mccarty@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-555', @@ -10695,7 +10138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_556, nameFirstName: 'Albert', nameLastName: 'Taylor', - city: 'Jamieberg', emailsPrimaryEmail: 'albert.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-556', @@ -10712,7 +10154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_557, nameFirstName: 'Laura', nameLastName: 'Diaz', - city: 'Port Anaside', emailsPrimaryEmail: 'laura.diaz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-557', @@ -10729,7 +10170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_558, nameFirstName: 'Hannah', nameLastName: 'Craig', - city: 'West Michael', emailsPrimaryEmail: 'hannah.craig@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-558', @@ -10746,7 +10186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_559, nameFirstName: 'Jessica', nameLastName: 'Smith', - city: 'New Cory', emailsPrimaryEmail: 'jessica.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-559', @@ -10763,7 +10202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_560, nameFirstName: 'Michael', nameLastName: 'George', - city: 'Matthewtown', emailsPrimaryEmail: 'michael.george@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-560', @@ -10780,7 +10218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_561, nameFirstName: 'Ronald', nameLastName: 'Hogan', - city: 'Port Anna', emailsPrimaryEmail: 'ronald.hogan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-561', @@ -10797,7 +10234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_562, nameFirstName: 'Elizabeth', nameLastName: 'Wright', - city: 'Mariomouth', emailsPrimaryEmail: 'elizabeth.wright@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-562', @@ -10814,7 +10250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_563, nameFirstName: 'Thomas', nameLastName: 'Zimmerman', - city: 'Bowenfort', emailsPrimaryEmail: 'thomas.zimmerman@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-563', @@ -10831,7 +10266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_564, nameFirstName: 'Judith', nameLastName: 'Harris', - city: 'Lake Christopher', emailsPrimaryEmail: 'judith.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-564', @@ -10848,7 +10282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_565, nameFirstName: 'James', nameLastName: 'Massey', - city: 'Lake Jeffrey', emailsPrimaryEmail: 'james.massey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-565', @@ -10865,7 +10298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_566, nameFirstName: 'Louis', nameLastName: 'Huynh', - city: 'South Jeremyberg', emailsPrimaryEmail: 'louis.huynh@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-566', @@ -10882,7 +10314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_567, nameFirstName: 'Lori', nameLastName: 'Alexander', - city: 'South Angela', emailsPrimaryEmail: 'lori.alexander@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-567', @@ -10899,7 +10330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_568, nameFirstName: 'Anna', nameLastName: 'Moore', - city: 'Crosschester', emailsPrimaryEmail: 'anna.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-568', @@ -10916,7 +10346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_569, nameFirstName: 'Richard', nameLastName: 'Smith', - city: 'Lambville', emailsPrimaryEmail: 'richard.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-569', @@ -10933,7 +10362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_570, nameFirstName: 'Eric', nameLastName: 'Hunter', - city: 'Rodriguezstad', emailsPrimaryEmail: 'eric.hunter2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-570', @@ -10950,7 +10378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_571, nameFirstName: 'Cody', nameLastName: 'Todd', - city: 'Lake Katherine', emailsPrimaryEmail: 'cody.todd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-571', @@ -10967,7 +10394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_572, nameFirstName: 'Nicole', nameLastName: 'Patel', - city: 'North Michael', emailsPrimaryEmail: 'nicole.patel@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-572', @@ -10984,7 +10410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_573, nameFirstName: 'Eric', nameLastName: 'Rivera', - city: 'Mitchellside', emailsPrimaryEmail: 'eric.rivera@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-573', @@ -11001,7 +10426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_574, nameFirstName: 'Amy', nameLastName: 'Hall', - city: 'Nicholsview', emailsPrimaryEmail: 'amy.hall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-574', @@ -11018,7 +10442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_575, nameFirstName: 'Randy', nameLastName: 'Trujillo', - city: 'Kaitlynton', emailsPrimaryEmail: 'randy.trujillo@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-575', @@ -11035,7 +10458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_576, nameFirstName: 'Ashley', nameLastName: 'Conner', - city: 'South Reneestad', emailsPrimaryEmail: 'ashley.conner@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-576', @@ -11052,7 +10474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_577, nameFirstName: 'Adriana', nameLastName: 'Larsen', - city: 'Lisamouth', emailsPrimaryEmail: 'adriana.larsen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-577', @@ -11069,7 +10490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_578, nameFirstName: 'Lindsey', nameLastName: 'Reid', - city: 'Baileytown', emailsPrimaryEmail: 'lindsey.reid@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-578', @@ -11086,7 +10506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_579, nameFirstName: 'Sophia', nameLastName: 'Collins', - city: 'Clarkton', emailsPrimaryEmail: 'sophia.collins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-579', @@ -11103,7 +10522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_580, nameFirstName: 'Joshua', nameLastName: 'Martin', - city: 'Lake Robert', emailsPrimaryEmail: 'joshua.martin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-580', @@ -11120,7 +10538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_581, nameFirstName: 'James', nameLastName: 'Adams', - city: 'New Rebeccaside', emailsPrimaryEmail: 'james.adams@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-581', @@ -11137,7 +10554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_582, nameFirstName: 'Maureen', nameLastName: 'Clay', - city: 'New Kimberly', emailsPrimaryEmail: 'maureen.clay@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-582', @@ -11154,7 +10570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_583, nameFirstName: 'Brenda', nameLastName: 'Moore', - city: 'Karenshire', emailsPrimaryEmail: 'brenda.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-583', @@ -11171,7 +10586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_584, nameFirstName: 'Kathy', nameLastName: 'Glover', - city: 'Port Nicoleland', emailsPrimaryEmail: 'kathy.glover@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-584', @@ -11188,7 +10602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_585, nameFirstName: 'Jeffrey', nameLastName: 'Jones', - city: 'Port Gary', emailsPrimaryEmail: 'jeffrey.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-585', @@ -11205,7 +10618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_586, nameFirstName: 'Dylan', nameLastName: 'Ramirez', - city: 'Millerborough', emailsPrimaryEmail: 'dylan.ramirez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-586', @@ -11222,7 +10634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_587, nameFirstName: 'Derek', nameLastName: 'Brown', - city: 'Andrewburgh', emailsPrimaryEmail: 'derek.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-587', @@ -11239,7 +10650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_588, nameFirstName: 'Nicole', nameLastName: 'Robles', - city: 'New Amandaville', emailsPrimaryEmail: 'nicole.robles@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-588', @@ -11256,7 +10666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_589, nameFirstName: 'Lauren', nameLastName: 'Murray', - city: 'West Bill', emailsPrimaryEmail: 'lauren.murray@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-589', @@ -11273,7 +10682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_590, nameFirstName: 'Vanessa', nameLastName: 'Jones', - city: 'Jesusmouth', emailsPrimaryEmail: 'vanessa.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-590', @@ -11290,7 +10698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_591, nameFirstName: 'Joel', nameLastName: 'Lopez', - city: 'Sandersland', emailsPrimaryEmail: 'joel.lopez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-591', @@ -11307,7 +10714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_592, nameFirstName: 'Matthew', nameLastName: 'Peterson', - city: 'North Reneechester', emailsPrimaryEmail: 'matthew.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-592', @@ -11324,7 +10730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_593, nameFirstName: 'Elaine', nameLastName: 'Gonzalez', - city: 'West Sheilaview', emailsPrimaryEmail: 'elaine.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-593', @@ -11341,7 +10746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_594, nameFirstName: 'Charles', nameLastName: 'Jones', - city: 'New Alexander', emailsPrimaryEmail: 'charles.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-594', @@ -11358,7 +10762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_595, nameFirstName: 'Rachel', nameLastName: 'Barton', - city: 'New Melissa', emailsPrimaryEmail: 'rachel.barton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-595', @@ -11375,7 +10778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_596, nameFirstName: 'Alyssa', nameLastName: 'Ellis', - city: 'Lake Curtishaven', emailsPrimaryEmail: 'alyssa.ellis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-596', @@ -11392,7 +10794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_597, nameFirstName: 'Patricia', nameLastName: 'Lopez', - city: 'East Ricardo', emailsPrimaryEmail: 'patricia.lopez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-597', @@ -11409,7 +10810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_598, nameFirstName: 'Scott', nameLastName: 'Moran', - city: 'North Kristen', emailsPrimaryEmail: 'scott.moran@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-598', @@ -11426,7 +10826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_599, nameFirstName: 'Jerome', nameLastName: 'Morris', - city: 'New Williamshire', emailsPrimaryEmail: 'jerome.morris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-599', @@ -11443,7 +10842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_600, nameFirstName: 'Christopher', nameLastName: 'Davis', - city: 'Deckerfort', emailsPrimaryEmail: 'christopher.davis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-600', @@ -11460,7 +10858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_601, nameFirstName: 'Jessica', nameLastName: 'Downs', - city: 'Port Gabrielle', emailsPrimaryEmail: 'jessica.downs@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-601', @@ -11477,7 +10874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_602, nameFirstName: 'Eric', nameLastName: 'Jenkins', - city: 'Tonytown', emailsPrimaryEmail: 'eric.jenkins@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-602', @@ -11494,7 +10890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_603, nameFirstName: 'Christy', nameLastName: 'Ramsey', - city: 'South Tammy', emailsPrimaryEmail: 'christy.ramsey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-603', @@ -11511,7 +10906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_604, nameFirstName: 'Sarah', nameLastName: 'Evans', - city: 'Lake Sarah', emailsPrimaryEmail: 'sarah.evans@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-604', @@ -11528,7 +10922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_605, nameFirstName: 'Stanley', nameLastName: 'Thomas', - city: 'Gordonview', emailsPrimaryEmail: 'stanley.thomas@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-605', @@ -11545,7 +10938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_606, nameFirstName: 'Hannah', nameLastName: 'Watts', - city: 'Morganbury', emailsPrimaryEmail: 'hannah.watts@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-606', @@ -11562,7 +10954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_607, nameFirstName: 'Michael', nameLastName: 'Maldonado', - city: 'Christensenville', emailsPrimaryEmail: 'michael.maldonado@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-607', @@ -11579,7 +10970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_608, nameFirstName: 'Joseph', nameLastName: 'Nguyen', - city: 'New Raymond', emailsPrimaryEmail: 'joseph.nguyen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-608', @@ -11596,7 +10986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_609, nameFirstName: 'Erin', nameLastName: 'Garcia', - city: 'North Julieberg', emailsPrimaryEmail: 'erin.garcia@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-609', @@ -11613,7 +11002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_610, nameFirstName: 'Eric', nameLastName: 'Howell', - city: 'Heatherside', emailsPrimaryEmail: 'eric.howell@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-610', @@ -11630,7 +11018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_611, nameFirstName: 'Alexandra', nameLastName: 'Atkins', - city: 'Jameshaven', emailsPrimaryEmail: 'alexandra.atkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-611', @@ -11647,7 +11034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_612, nameFirstName: 'Raymond', nameLastName: 'Mcdonald', - city: 'Lake Alexandra', emailsPrimaryEmail: 'raymond.mcdonald@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-612', @@ -11664,7 +11050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_613, nameFirstName: 'Joseph', nameLastName: 'Barrett', - city: 'Karlaburgh', emailsPrimaryEmail: 'joseph.barrett@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-613', @@ -11681,7 +11066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_614, nameFirstName: 'Lisa', nameLastName: 'Salazar', - city: 'Parkerview', emailsPrimaryEmail: 'lisa.salazar@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-614', @@ -11698,7 +11082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_615, nameFirstName: 'Erica', nameLastName: 'Andrade', - city: 'Port Keithstad', emailsPrimaryEmail: 'erica.andrade@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-615', @@ -11715,7 +11098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_616, nameFirstName: 'Adam', nameLastName: 'Wright', - city: 'Courtneyberg', emailsPrimaryEmail: 'adam.wright@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-616', @@ -11732,7 +11114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_617, nameFirstName: 'Michael', nameLastName: 'Williams', - city: 'New Jaymouth', emailsPrimaryEmail: 'michael.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-617', @@ -11749,7 +11130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_618, nameFirstName: 'Margaret', nameLastName: 'Morales', - city: 'Anthonyfort', emailsPrimaryEmail: 'margaret.morales@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-618', @@ -11766,7 +11146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_619, nameFirstName: 'David', nameLastName: 'Nelson', - city: 'Amberfurt', emailsPrimaryEmail: 'david.nelson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-619', @@ -11783,7 +11162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_620, nameFirstName: 'Holly', nameLastName: 'Allen', - city: 'Haleberg', emailsPrimaryEmail: 'holly.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-620', @@ -11800,7 +11178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_621, nameFirstName: 'Cory', nameLastName: 'Hicks', - city: 'Carterfurt', emailsPrimaryEmail: 'cory.hicks@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-621', @@ -11817,7 +11194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_622, nameFirstName: 'Michael', nameLastName: 'Johnson', - city: 'Krystalmouth', emailsPrimaryEmail: 'michael.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-622', @@ -11834,7 +11210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_623, nameFirstName: 'Ronnie', nameLastName: 'Martinez', - city: 'Huynhfurt', emailsPrimaryEmail: 'ronnie.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-623', @@ -11851,7 +11226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_624, nameFirstName: 'Jason', nameLastName: 'Holden', - city: 'Charlesstad', emailsPrimaryEmail: 'jason.holden@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-624', @@ -11868,7 +11242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_625, nameFirstName: 'Patrick', nameLastName: 'Gilbert', - city: 'East Toddfort', emailsPrimaryEmail: 'patrick.gilbert@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-625', @@ -11885,7 +11258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_626, nameFirstName: 'Sean', nameLastName: 'White', - city: 'West Derekbury', emailsPrimaryEmail: 'sean.white@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-626', @@ -11902,7 +11274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_627, nameFirstName: 'Valerie', nameLastName: 'Martinez', - city: 'East Timothyfort', emailsPrimaryEmail: 'valerie.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-627', @@ -11919,7 +11290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_628, nameFirstName: 'James', nameLastName: 'Hawkins', - city: 'Morrisonville', emailsPrimaryEmail: 'james.hawkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-628', @@ -11936,7 +11306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_629, nameFirstName: 'Mckenzie', nameLastName: 'Meyer', - city: 'East Jeanette', emailsPrimaryEmail: 'mckenzie.meyer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-629', @@ -11953,7 +11322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_630, nameFirstName: 'Parker', nameLastName: 'Young', - city: 'New Ronaldhaven', emailsPrimaryEmail: 'parker.young@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-630', @@ -11970,7 +11338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_631, nameFirstName: 'John', nameLastName: 'Johnson', - city: 'Charlotteburgh', emailsPrimaryEmail: 'john.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-631', @@ -11987,7 +11354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_632, nameFirstName: 'Sierra', nameLastName: 'Rodriguez', - city: 'Williamsshire', emailsPrimaryEmail: 'sierra.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-632', @@ -12004,7 +11370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_633, nameFirstName: 'Patricia', nameLastName: 'Thompson', - city: 'North Joshua', emailsPrimaryEmail: 'patricia.thompson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-633', @@ -12021,7 +11386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_634, nameFirstName: 'Valerie', nameLastName: 'Durham', - city: 'Lake Paulaport', emailsPrimaryEmail: 'valerie.durham@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-634', @@ -12038,7 +11402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_635, nameFirstName: 'Michael', nameLastName: 'Tucker', - city: 'New Christina', emailsPrimaryEmail: 'michael.tucker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-635', @@ -12055,7 +11418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_636, nameFirstName: 'Martin', nameLastName: 'Hayes', - city: 'Justinfurt', emailsPrimaryEmail: 'martin.hayes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-636', @@ -12072,7 +11434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_637, nameFirstName: 'Brittany', nameLastName: 'Watkins', - city: 'New Ericland', emailsPrimaryEmail: 'brittany.watkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-637', @@ -12089,7 +11450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_638, nameFirstName: 'Jacob', nameLastName: 'Dixon', - city: 'Perkinsshire', emailsPrimaryEmail: 'jacob.dixon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-638', @@ -12106,7 +11466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_639, nameFirstName: 'Sheila', nameLastName: 'Wilson', - city: 'New Erin', emailsPrimaryEmail: 'sheila.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-639', @@ -12123,7 +11482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_640, nameFirstName: 'Lee', nameLastName: 'Oliver', - city: 'Hooperside', emailsPrimaryEmail: 'lee.oliver@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-640', @@ -12140,7 +11498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_641, nameFirstName: 'Aaron', nameLastName: 'Moreno', - city: 'Joeport', emailsPrimaryEmail: 'aaron.moreno@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-641', @@ -12157,7 +11514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_642, nameFirstName: 'Diana', nameLastName: 'Garcia', - city: 'New Trevorhaven', emailsPrimaryEmail: 'diana.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-642', @@ -12174,7 +11530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_643, nameFirstName: 'Jonathan', nameLastName: 'Harvey', - city: 'South Scottfort', emailsPrimaryEmail: 'jonathan.harvey@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-643', @@ -12191,7 +11546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_644, nameFirstName: 'Suzanne', nameLastName: 'Rodriguez', - city: 'Randallchester', emailsPrimaryEmail: 'suzanne.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-644', @@ -12208,7 +11562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_645, nameFirstName: 'Kelsey', nameLastName: 'Allen', - city: 'New Nataliechester', emailsPrimaryEmail: 'kelsey.allen@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-645', @@ -12225,7 +11578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_646, nameFirstName: 'Alexander', nameLastName: 'Mueller', - city: 'West Stephen', emailsPrimaryEmail: 'alexander.mueller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-646', @@ -12242,7 +11594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_647, nameFirstName: 'Cynthia', nameLastName: 'Davis', - city: 'North Bradleyhaven', emailsPrimaryEmail: 'cynthia.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-647', @@ -12259,7 +11610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_648, nameFirstName: 'Brittany', nameLastName: 'Smith', - city: 'Lake Sheila', emailsPrimaryEmail: 'brittany.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-648', @@ -12276,7 +11626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_649, nameFirstName: 'Tyler', nameLastName: 'Cook', - city: 'Bowershaven', emailsPrimaryEmail: 'tyler.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-649', @@ -12293,7 +11642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_650, nameFirstName: 'Heather', nameLastName: 'Peck', - city: 'East Tiffany', emailsPrimaryEmail: 'heather.peck@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-650', @@ -12310,7 +11658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_651, nameFirstName: 'Justin', nameLastName: 'Bender', - city: 'East Jennaview', emailsPrimaryEmail: 'justin.bender@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-651', @@ -12327,7 +11674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_652, nameFirstName: 'Sharon', nameLastName: 'Phillips', - city: 'South Vincent', emailsPrimaryEmail: 'sharon.phillips@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-652', @@ -12344,7 +11690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_653, nameFirstName: 'Samuel', nameLastName: 'Bailey', - city: 'Port Jamestown', emailsPrimaryEmail: 'samuel.bailey@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-653', @@ -12361,7 +11706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_654, nameFirstName: 'Thomas', nameLastName: 'Hull', - city: 'New Jeffrey', emailsPrimaryEmail: 'thomas.hull@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-654', @@ -12378,7 +11722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_655, nameFirstName: 'Shawn', nameLastName: 'Collins', - city: 'New Apriltown', emailsPrimaryEmail: 'shawn.collins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-655', @@ -12395,7 +11738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_656, nameFirstName: 'Matthew', nameLastName: 'Salas', - city: 'New Angelicaborough', emailsPrimaryEmail: 'matthew.salas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-656', @@ -12412,7 +11754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_657, nameFirstName: 'Sandra', nameLastName: 'Branch', - city: 'Burkebury', emailsPrimaryEmail: 'sandra.branch@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-657', @@ -12429,7 +11770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_658, nameFirstName: 'Donald', nameLastName: 'Burns', - city: 'East Bryan', emailsPrimaryEmail: 'donald.burns@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-658', @@ -12446,7 +11786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_659, nameFirstName: 'Robin', nameLastName: 'Allen', - city: 'North Karen', emailsPrimaryEmail: 'robin.allen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-659', @@ -12463,7 +11802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_660, nameFirstName: 'Andrew', nameLastName: 'Carter', - city: 'East Wesleyview', emailsPrimaryEmail: 'andrew.carter@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-660', @@ -12480,7 +11818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_661, nameFirstName: 'Natalie', nameLastName: 'King', - city: 'West Keithfort', emailsPrimaryEmail: 'natalie.king@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-661', @@ -12497,7 +11834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_662, nameFirstName: 'Gregory', nameLastName: 'Rosario', - city: 'Lake Jeremyfurt', emailsPrimaryEmail: 'gregory.rosario@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-662', @@ -12514,7 +11850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_663, nameFirstName: 'Jeffrey', nameLastName: 'Schultz', - city: 'Whiteland', emailsPrimaryEmail: 'jeffrey.schultz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-663', @@ -12531,7 +11866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_664, nameFirstName: 'Michelle', nameLastName: 'Cook', - city: 'Teresamouth', emailsPrimaryEmail: 'michelle.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-664', @@ -12548,7 +11882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_665, nameFirstName: 'Billy', nameLastName: 'Hutchinson', - city: 'Melissaport', emailsPrimaryEmail: 'billy.hutchinson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-665', @@ -12565,7 +11898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_666, nameFirstName: 'Kim', nameLastName: 'Rhodes', - city: 'Lake Benjamin', emailsPrimaryEmail: 'kim.rhodes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-666', @@ -12582,7 +11914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_667, nameFirstName: 'Cristian', nameLastName: 'Garcia', - city: 'Mendezchester', emailsPrimaryEmail: 'cristian.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-667', @@ -12599,7 +11930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_668, nameFirstName: 'Joseph', nameLastName: 'Rodriguez', - city: 'Diazchester', emailsPrimaryEmail: 'joseph.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-668', @@ -12616,7 +11946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_669, nameFirstName: 'Dennis', nameLastName: 'Blevins', - city: 'Port Michaelshire', emailsPrimaryEmail: 'dennis.blevins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-669', @@ -12633,7 +11962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_670, nameFirstName: 'Charles', nameLastName: 'Bright', - city: 'Samanthaport', emailsPrimaryEmail: 'charles.bright@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-670', @@ -12650,7 +11978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_671, nameFirstName: 'Pamela', nameLastName: 'Moore', - city: 'Youngmouth', emailsPrimaryEmail: 'pamela.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-671', @@ -12667,7 +11994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_672, nameFirstName: 'Andrew', nameLastName: 'Bowen', - city: 'Garciafort', emailsPrimaryEmail: 'andrew.bowen@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-672', @@ -12684,7 +12010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_673, nameFirstName: 'Steven', nameLastName: 'Jones', - city: 'Port Nicholasfurt', emailsPrimaryEmail: 'steven.jones@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-673', @@ -12701,7 +12026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_674, nameFirstName: 'Randy', nameLastName: 'Garza', - city: 'Lake Scott', emailsPrimaryEmail: 'randy.garza@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-674', @@ -12718,7 +12042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_675, nameFirstName: 'Barbara', nameLastName: 'Wallace', - city: 'Charleschester', emailsPrimaryEmail: 'barbara.wallace@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-675', @@ -12735,7 +12058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_676, nameFirstName: 'Robert', nameLastName: 'Johnson', - city: 'Hardinville', emailsPrimaryEmail: 'robert.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-676', @@ -12752,7 +12074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_677, nameFirstName: 'Daniel', nameLastName: 'Perez', - city: 'South Christina', emailsPrimaryEmail: 'daniel.perez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-677', @@ -12769,7 +12090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_678, nameFirstName: 'Breanna', nameLastName: 'Chapman', - city: 'Garciaport', emailsPrimaryEmail: 'breanna.chapman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-678', @@ -12786,7 +12106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_679, nameFirstName: 'Ivan', nameLastName: 'Garcia', - city: 'South Kristafurt', emailsPrimaryEmail: 'ivan.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-679', @@ -12803,7 +12122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_680, nameFirstName: 'Michelle', nameLastName: 'Thomas', - city: 'North Lisaburgh', emailsPrimaryEmail: 'michelle.thomas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-680', @@ -12820,7 +12138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_681, nameFirstName: 'Stacey', nameLastName: 'Taylor', - city: 'New Kelly', emailsPrimaryEmail: 'stacey.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-681', @@ -12837,7 +12154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_682, nameFirstName: 'Randall', nameLastName: 'Cohen', - city: 'Danielberg', emailsPrimaryEmail: 'randall.cohen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-682', @@ -12854,7 +12170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_683, nameFirstName: 'Dennis', nameLastName: 'Johnson', - city: 'North Stevetown', emailsPrimaryEmail: 'dennis.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-683', @@ -12871,7 +12186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_684, nameFirstName: 'Scott', nameLastName: 'Rodriguez', - city: 'Lake Jennifer', emailsPrimaryEmail: 'scott.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-684', @@ -12888,7 +12202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_685, nameFirstName: 'Katrina', nameLastName: 'Rodriguez', - city: 'Ortizberg', emailsPrimaryEmail: 'katrina.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-685', @@ -12905,7 +12218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_686, nameFirstName: 'Thomas', nameLastName: 'Bradley', - city: 'Saraburgh', emailsPrimaryEmail: 'thomas.bradley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-686', @@ -12922,7 +12234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_687, nameFirstName: 'Anna', nameLastName: 'Hill', - city: 'Guerrerohaven', emailsPrimaryEmail: 'anna.hill@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-687', @@ -12939,7 +12250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_688, nameFirstName: 'Karen', nameLastName: 'Pratt', - city: 'Nealtown', emailsPrimaryEmail: 'karen.pratt@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-688', @@ -12956,7 +12266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_689, nameFirstName: 'Casey', nameLastName: 'Garza', - city: 'Millerport', emailsPrimaryEmail: 'casey.garza@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-38.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-689', @@ -12973,7 +12282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_690, nameFirstName: 'Mathew', nameLastName: 'Duran', - city: 'North Douglastown', emailsPrimaryEmail: 'mathew.duran@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-690', @@ -12990,7 +12298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_691, nameFirstName: 'Michael', nameLastName: 'Watson', - city: 'Norrisfurt', emailsPrimaryEmail: 'michael.watson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-691', @@ -13007,7 +12314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_692, nameFirstName: 'Martha', nameLastName: 'Lang', - city: 'Michaelville', emailsPrimaryEmail: 'martha.lang@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-692', @@ -13024,7 +12330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_693, nameFirstName: 'Latasha', nameLastName: 'Perez', - city: 'Bryanchester', emailsPrimaryEmail: 'latasha.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-693', @@ -13041,7 +12346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_694, nameFirstName: 'James', nameLastName: 'Gordon', - city: 'New Jamesborough', emailsPrimaryEmail: 'james.gordon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-694', @@ -13058,7 +12362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_695, nameFirstName: 'Taylor', nameLastName: 'Johnson', - city: 'Jenniferburgh', emailsPrimaryEmail: 'taylor.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-695', @@ -13075,7 +12378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_696, nameFirstName: 'George', nameLastName: 'Thompson', - city: 'Christineville', emailsPrimaryEmail: 'george.thompson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-696', @@ -13092,7 +12394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_697, nameFirstName: 'William', nameLastName: 'Gomez', - city: 'Millerhaven', emailsPrimaryEmail: 'william.gomez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-697', @@ -13109,7 +12410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_698, nameFirstName: 'Patrick', nameLastName: 'Beck', - city: 'New Connorbury', emailsPrimaryEmail: 'patrick.beck@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-698', @@ -13126,7 +12426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_699, nameFirstName: 'Timothy', nameLastName: 'Parker', - city: 'Jeffreyborough', emailsPrimaryEmail: 'timothy.parker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-699', @@ -13143,7 +12442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_700, nameFirstName: 'Nancy', nameLastName: 'Mullen', - city: 'Port Emilyside', emailsPrimaryEmail: 'nancy.mullen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-700', @@ -13160,7 +12458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_701, nameFirstName: 'Amy', nameLastName: 'Weaver', - city: 'Rodrigueztown', emailsPrimaryEmail: 'amy.weaver@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-701', @@ -13177,7 +12474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_702, nameFirstName: 'Matthew', nameLastName: 'Crawford', - city: 'North Benjamin', emailsPrimaryEmail: 'matthew.crawford@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-702', @@ -13194,7 +12490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_703, nameFirstName: 'Daniel', nameLastName: 'Graham', - city: 'Boydton', emailsPrimaryEmail: 'daniel.graham@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-703', @@ -13211,7 +12506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_704, nameFirstName: 'Teresa', nameLastName: 'Lang', - city: 'Emilymouth', emailsPrimaryEmail: 'teresa.lang@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-704', @@ -13228,7 +12522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_705, nameFirstName: 'Anthony', nameLastName: 'Brooks', - city: 'Lake Andrew', emailsPrimaryEmail: 'anthony.brooks@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-705', @@ -13245,7 +12538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_706, nameFirstName: 'Thomas', nameLastName: 'Price', - city: 'Keithberg', emailsPrimaryEmail: 'thomas.price@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-706', @@ -13262,7 +12554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_707, nameFirstName: 'William', nameLastName: 'King', - city: 'Barberhaven', emailsPrimaryEmail: 'william.king@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-707', @@ -13279,7 +12570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_708, nameFirstName: 'Joseph', nameLastName: 'Ramos', - city: 'Rodgerston', emailsPrimaryEmail: 'joseph.ramos@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-708', @@ -13296,7 +12586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_709, nameFirstName: 'Michael', nameLastName: 'Johnson', - city: 'North Ryan', emailsPrimaryEmail: 'michael.johnson2@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-709', @@ -13313,7 +12602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_710, nameFirstName: 'Lisa', nameLastName: 'Farmer', - city: 'North Shannon', emailsPrimaryEmail: 'lisa.farmer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-710', @@ -13330,7 +12618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_711, nameFirstName: 'Beth', nameLastName: 'Tucker', - city: 'Annafurt', emailsPrimaryEmail: 'beth.tucker@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-711', @@ -13347,7 +12634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_712, nameFirstName: 'Gerald', nameLastName: 'Olsen', - city: 'Gillview', emailsPrimaryEmail: 'gerald.olsen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-712', @@ -13364,7 +12650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_713, nameFirstName: 'Donald', nameLastName: 'Turner', - city: 'Michellemouth', emailsPrimaryEmail: 'donald.turner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-713', @@ -13381,7 +12666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_714, nameFirstName: 'Mary', nameLastName: 'Robinson', - city: 'Millerfurt', emailsPrimaryEmail: 'mary.robinson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-714', @@ -13398,7 +12682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_715, nameFirstName: 'Jason', nameLastName: 'Johnson', - city: 'West Melinda', emailsPrimaryEmail: 'jason.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-715', @@ -13415,7 +12698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_716, nameFirstName: 'Lisa', nameLastName: 'Jenkins', - city: 'Morrisonfurt', emailsPrimaryEmail: 'lisa.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-716', @@ -13432,7 +12714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_717, nameFirstName: 'Kevin', nameLastName: 'Cowan', - city: 'West Heatherhaven', emailsPrimaryEmail: 'kevin.cowan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-717', @@ -13449,7 +12730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_718, nameFirstName: 'Tina', nameLastName: 'Williams', - city: 'East Michelle', emailsPrimaryEmail: 'tina.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-718', @@ -13466,7 +12746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_719, nameFirstName: 'Dustin', nameLastName: 'Macdonald', - city: 'Josephborough', emailsPrimaryEmail: 'dustin.macdonald@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-719', @@ -13483,7 +12762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_720, nameFirstName: 'Michael', nameLastName: 'Gonzales', - city: 'Port Jennifer', emailsPrimaryEmail: 'michael.gonzales@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-720', @@ -13500,7 +12778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_721, nameFirstName: 'Allen', nameLastName: 'Miller', - city: 'Margaretmouth', emailsPrimaryEmail: 'allen.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-721', @@ -13517,7 +12794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_722, nameFirstName: 'Meghan', nameLastName: 'Tapia', - city: 'South Alexandra', emailsPrimaryEmail: 'meghan.tapia@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-722', @@ -13534,7 +12810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_723, nameFirstName: 'Garrett', nameLastName: 'Kim', - city: 'Lewisfurt', emailsPrimaryEmail: 'garrett.kim@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-723', @@ -13551,7 +12826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_724, nameFirstName: 'Heather', nameLastName: 'Chase', - city: 'New Colleenchester', emailsPrimaryEmail: 'heather.chase@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-724', @@ -13568,7 +12842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_725, nameFirstName: 'Kevin', nameLastName: 'Cruz', - city: 'Bradleystad', emailsPrimaryEmail: 'kevin.cruz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-725', @@ -13585,7 +12858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_726, nameFirstName: 'Desiree', nameLastName: 'Adkins', - city: 'Jessicaview', emailsPrimaryEmail: 'desiree.adkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-726', @@ -13602,7 +12874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_727, nameFirstName: 'Teresa', nameLastName: 'Rhodes', - city: 'Kristinamouth', emailsPrimaryEmail: 'teresa.rhodes@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-727', @@ -13619,7 +12890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_728, nameFirstName: 'Catherine', nameLastName: 'Wilson', - city: 'West Jessicaland', emailsPrimaryEmail: 'catherine.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-728', @@ -13636,7 +12906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_729, nameFirstName: 'Marvin', nameLastName: 'Nelson', - city: 'Watsontown', emailsPrimaryEmail: 'marvin.nelson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-729', @@ -13653,7 +12922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_730, nameFirstName: 'Linda', nameLastName: 'Hull', - city: 'Jacksonport', emailsPrimaryEmail: 'linda.hull@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-730', @@ -13670,7 +12938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_731, nameFirstName: 'Dawn', nameLastName: 'Martin', - city: 'Beckyfort', emailsPrimaryEmail: 'dawn.martin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-731', @@ -13687,7 +12954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_732, nameFirstName: 'Travis', nameLastName: 'Leon', - city: 'East Marieshire', emailsPrimaryEmail: 'travis.leon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-732', @@ -13704,7 +12970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_733, nameFirstName: 'Jeffrey', nameLastName: 'Anderson', - city: 'Edwardsfurt', emailsPrimaryEmail: 'jeffrey.anderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-733', @@ -13721,7 +12986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_734, nameFirstName: 'Jacqueline', nameLastName: 'Gomez', - city: 'Paulmouth', emailsPrimaryEmail: 'jacqueline.gomez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-734', @@ -13738,7 +13002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_735, nameFirstName: 'Laura', nameLastName: 'Salazar', - city: 'Karenburgh', emailsPrimaryEmail: 'laura.salazar@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-735', @@ -13755,7 +13018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_736, nameFirstName: 'Jacob', nameLastName: 'Berry', - city: 'Adamsberg', emailsPrimaryEmail: 'jacob.berry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-736', @@ -13772,7 +13034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_737, nameFirstName: 'Justin', nameLastName: 'Cruz', - city: 'New Michaelton', emailsPrimaryEmail: 'justin.cruz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-737', @@ -13789,7 +13050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_738, nameFirstName: 'Derek', nameLastName: 'Avery', - city: 'West Jeffrey', emailsPrimaryEmail: 'derek.avery@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-738', @@ -13806,7 +13066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_739, nameFirstName: 'Julie', nameLastName: 'Richardson', - city: 'North Kelsey', emailsPrimaryEmail: 'julie.richardson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-739', @@ -13823,7 +13082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_740, nameFirstName: 'Linda', nameLastName: 'Perry', - city: 'Edwardchester', emailsPrimaryEmail: 'linda.perry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-740', @@ -13840,7 +13098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_741, nameFirstName: 'Shannon', nameLastName: 'Johnston', - city: 'Davidland', emailsPrimaryEmail: 'shannon.johnston@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-741', @@ -13857,7 +13114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_742, nameFirstName: 'Teresa', nameLastName: 'Peters', - city: 'North Emmamouth', emailsPrimaryEmail: 'teresa.peters@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-742', @@ -13874,7 +13130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_743, nameFirstName: 'Vanessa', nameLastName: 'Woods', - city: 'Douglasmouth', emailsPrimaryEmail: 'vanessa.woods@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-743', @@ -13891,7 +13146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_744, nameFirstName: 'Ashley', nameLastName: 'Ortiz', - city: 'Courtneybury', emailsPrimaryEmail: 'ashley.ortiz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-744', @@ -13908,7 +13162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_745, nameFirstName: 'Eric', nameLastName: 'Bailey', - city: 'Ryanland', emailsPrimaryEmail: 'eric.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-745', @@ -13925,7 +13178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_746, nameFirstName: 'Rebecca', nameLastName: 'Palmer', - city: 'West Linda', emailsPrimaryEmail: 'rebecca.palmer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-746', @@ -13942,7 +13194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_747, nameFirstName: 'Lee', nameLastName: 'Jones', - city: 'Nicholsborough', emailsPrimaryEmail: 'lee.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-747', @@ -13959,7 +13210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_748, nameFirstName: 'Samuel', nameLastName: 'King', - city: 'East Kathrynchester', emailsPrimaryEmail: 'samuel.king@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-748', @@ -13976,7 +13226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_749, nameFirstName: 'Timothy', nameLastName: 'Moreno', - city: 'Mcphersonport', emailsPrimaryEmail: 'timothy.moreno@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-749', @@ -13993,7 +13242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_750, nameFirstName: 'Darlene', nameLastName: 'Jones', - city: 'New Makayla', emailsPrimaryEmail: 'darlene.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-750', @@ -14010,7 +13258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_751, nameFirstName: 'Gregory', nameLastName: 'Liu', - city: 'Port Justin', emailsPrimaryEmail: 'gregory.liu@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-751', @@ -14027,7 +13274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_752, nameFirstName: 'Cheryl', nameLastName: 'Chambers', - city: 'Donaldbury', emailsPrimaryEmail: 'cheryl.chambers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-752', @@ -14044,7 +13290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_753, nameFirstName: 'Mark', nameLastName: 'Gonzalez', - city: 'Shaneton', emailsPrimaryEmail: 'mark.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-753', @@ -14061,7 +13306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_754, nameFirstName: 'Douglas', nameLastName: 'Andrews', - city: 'Roblesport', emailsPrimaryEmail: 'douglas.andrews@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-754', @@ -14078,7 +13322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_755, nameFirstName: 'Stephanie', nameLastName: 'Porter', - city: 'East Lisaburgh', emailsPrimaryEmail: 'stephanie.porter@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-755', @@ -14095,7 +13338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_756, nameFirstName: 'Meghan', nameLastName: 'Campbell', - city: 'Alexischester', emailsPrimaryEmail: 'meghan.campbell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-756', @@ -14112,7 +13354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_757, nameFirstName: 'Caitlin', nameLastName: 'Martin', - city: 'North William', emailsPrimaryEmail: 'caitlin.martin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-757', @@ -14129,7 +13370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_758, nameFirstName: 'Kimberly', nameLastName: 'Terry', - city: 'North Sean', emailsPrimaryEmail: 'kimberly.terry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-758', @@ -14146,7 +13386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_759, nameFirstName: 'Levi', nameLastName: 'Smith', - city: 'Lake Amandaborough', emailsPrimaryEmail: 'levi.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-759', @@ -14163,7 +13402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_760, nameFirstName: 'Tracy', nameLastName: 'Alvarez', - city: 'Lake Paigeborough', emailsPrimaryEmail: 'tracy.alvarez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-760', @@ -14180,7 +13418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_761, nameFirstName: 'David', nameLastName: 'Gonzales', - city: 'Owensstad', emailsPrimaryEmail: 'david.gonzales@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-761', @@ -14197,7 +13434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_762, nameFirstName: 'Lisa', nameLastName: 'Tran', - city: 'East Thomasbury', emailsPrimaryEmail: 'lisa.tran@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-762', @@ -14214,7 +13450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_763, nameFirstName: 'Kristin', nameLastName: 'Pearson', - city: 'Williamhaven', emailsPrimaryEmail: 'kristin.pearson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-27.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-763', @@ -14231,7 +13466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_764, nameFirstName: 'Bruce', nameLastName: 'Wood', - city: 'North Lindsey', emailsPrimaryEmail: 'bruce.wood@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-764', @@ -14248,7 +13482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_765, nameFirstName: 'Stephanie', nameLastName: 'Stout', - city: 'Kristinshire', emailsPrimaryEmail: 'stephanie.stout@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-765', @@ -14265,7 +13498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_766, nameFirstName: 'Denise', nameLastName: 'Sandoval', - city: 'Daisyburgh', emailsPrimaryEmail: 'denise.sandoval@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-766', @@ -14282,7 +13514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_767, nameFirstName: 'Christopher', nameLastName: 'Clarke', - city: 'North Ryanmouth', emailsPrimaryEmail: 'christopher.clarke@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-767', @@ -14299,7 +13530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_768, nameFirstName: 'Kimberly', nameLastName: 'Jefferson', - city: 'Barnesburgh', emailsPrimaryEmail: 'kimberly.jefferson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-768', @@ -14316,7 +13546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_769, nameFirstName: 'Jeffrey', nameLastName: 'Hunt', - city: 'East Austin', emailsPrimaryEmail: 'jeffrey.hunt@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-769', @@ -14333,7 +13562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_770, nameFirstName: 'Nichole', nameLastName: 'Lowery', - city: 'South Gregorytown', emailsPrimaryEmail: 'nichole.lowery@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-770', @@ -14350,7 +13578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_771, nameFirstName: 'Daniel', nameLastName: 'Wiley', - city: 'Lauraburgh', emailsPrimaryEmail: 'daniel.wiley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-771', @@ -14367,7 +13594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_772, nameFirstName: 'Elizabeth', nameLastName: 'Watson', - city: 'Mitchellbury', emailsPrimaryEmail: 'elizabeth.watson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-772', @@ -14384,7 +13610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_773, nameFirstName: 'Sandra', nameLastName: 'Bailey', - city: 'South Natalieport', emailsPrimaryEmail: 'sandra.bailey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-773', @@ -14401,7 +13626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_774, nameFirstName: 'Andrew', nameLastName: 'Henson', - city: 'New Kristin', emailsPrimaryEmail: 'andrew.henson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-774', @@ -14418,7 +13642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_775, nameFirstName: 'Samantha', nameLastName: 'Alexander', - city: 'Wallston', emailsPrimaryEmail: 'samantha.alexander@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-775', @@ -14435,7 +13658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_776, nameFirstName: 'Jeanette', nameLastName: 'Nichols', - city: 'Lake Rachel', emailsPrimaryEmail: 'jeanette.nichols@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-776', @@ -14452,7 +13674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_777, nameFirstName: 'Kevin', nameLastName: 'Williams', - city: 'Susanbury', emailsPrimaryEmail: 'kevin.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-777', @@ -14469,7 +13690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_778, nameFirstName: 'Brenda', nameLastName: 'Harper', - city: 'Jacquelineshire', emailsPrimaryEmail: 'brenda.harper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-778', @@ -14486,7 +13706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_779, nameFirstName: 'Shawn', nameLastName: 'Jenkins', - city: 'Brownbury', emailsPrimaryEmail: 'shawn.jenkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-779', @@ -14503,7 +13722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_780, nameFirstName: 'Michelle', nameLastName: 'Bush', - city: 'Brendaport', emailsPrimaryEmail: 'michelle.bush@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-780', @@ -14520,7 +13738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_781, nameFirstName: 'Melanie', nameLastName: 'Gilbert', - city: 'East David', emailsPrimaryEmail: 'melanie.gilbert@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-781', @@ -14537,7 +13754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_782, nameFirstName: 'Brandon', nameLastName: 'Sanders', - city: 'Gomezville', emailsPrimaryEmail: 'brandon.sanders@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-782', @@ -14554,7 +13770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_783, nameFirstName: 'Samantha', nameLastName: 'Hicks', - city: 'Emilyside', emailsPrimaryEmail: 'samantha.hicks@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-783', @@ -14571,7 +13786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_784, nameFirstName: 'Joann', nameLastName: 'Booth', - city: 'Adamchester', emailsPrimaryEmail: 'joann.booth@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-784', @@ -14588,7 +13802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_785, nameFirstName: 'Robert', nameLastName: 'Hernandez', - city: 'Juliehaven', emailsPrimaryEmail: 'robert.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-785', @@ -14605,7 +13818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_786, nameFirstName: 'Jeremy', nameLastName: 'Stewart', - city: 'West Nicoleshire', emailsPrimaryEmail: 'jeremy.stewart@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-786', @@ -14622,7 +13834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_787, nameFirstName: 'Lisa', nameLastName: 'Brown', - city: 'West Tracy', emailsPrimaryEmail: 'lisa.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-787', @@ -14639,7 +13850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_788, nameFirstName: 'Kristine', nameLastName: 'Benson', - city: 'East Aaron', emailsPrimaryEmail: 'kristine.benson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-788', @@ -14656,7 +13866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_789, nameFirstName: 'Stephanie', nameLastName: 'Carter', - city: 'Steeleport', emailsPrimaryEmail: 'stephanie.carter@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-789', @@ -14673,7 +13882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_790, nameFirstName: 'Benjamin', nameLastName: 'Castro', - city: 'Lake Brianmouth', emailsPrimaryEmail: 'benjamin.castro@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-790', @@ -14690,7 +13898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_791, nameFirstName: 'Ryan', nameLastName: 'Davis', - city: 'Stevenshire', emailsPrimaryEmail: 'ryan.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-4.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-791', @@ -14707,7 +13914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_792, nameFirstName: 'David', nameLastName: 'Rhodes', - city: 'Port Robert', emailsPrimaryEmail: 'david.rhodes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-792', @@ -14724,7 +13930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_793, nameFirstName: 'Elizabeth', nameLastName: 'Evans', - city: 'New Toni', emailsPrimaryEmail: 'elizabeth.evans@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-793', @@ -14741,7 +13946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_794, nameFirstName: 'Kenneth', nameLastName: 'Solis', - city: 'North Craigside', emailsPrimaryEmail: 'kenneth.solis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-90.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-794', @@ -14758,7 +13962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_795, nameFirstName: 'Barbara', nameLastName: 'Hudson', - city: 'West Jonathanside', emailsPrimaryEmail: 'barbara.hudson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-795', @@ -14775,7 +13978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_796, nameFirstName: 'Kelly', nameLastName: 'Hooper', - city: 'New Raymond', emailsPrimaryEmail: 'kelly.hooper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-796', @@ -14792,7 +13994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_797, nameFirstName: 'Shannon', nameLastName: 'Brown', - city: 'Archerhaven', emailsPrimaryEmail: 'shannon.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-797', @@ -14809,7 +14010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_798, nameFirstName: 'Lucas', nameLastName: 'Price', - city: 'North Tinamouth', emailsPrimaryEmail: 'lucas.price@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-798', @@ -14826,7 +14026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_799, nameFirstName: 'Theodore', nameLastName: 'Booth', - city: 'Campbellburgh', emailsPrimaryEmail: 'theodore.booth@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-799', @@ -14843,7 +14042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_800, nameFirstName: 'Christopher', nameLastName: 'Johnson', - city: 'Lake Mariahmouth', emailsPrimaryEmail: 'christopher.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-800', @@ -14860,7 +14058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_801, nameFirstName: 'Sara', nameLastName: 'Higgins', - city: 'Lake Williamburgh', emailsPrimaryEmail: 'sara.higgins@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-801', @@ -14877,7 +14074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_802, nameFirstName: 'Kelly', nameLastName: 'Brown', - city: 'Kathrynton', emailsPrimaryEmail: 'kelly.brown@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-802', @@ -14894,7 +14090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_803, nameFirstName: 'Andrea', nameLastName: 'Weaver', - city: 'Bethanymouth', emailsPrimaryEmail: 'andrea.weaver@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-803', @@ -14911,7 +14106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_804, nameFirstName: 'David', nameLastName: 'Ford', - city: 'Lake Veronica', emailsPrimaryEmail: 'david.ford@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-6.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-804', @@ -14928,7 +14122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_805, nameFirstName: 'Elizabeth', nameLastName: 'Scott', - city: 'Darrellshire', emailsPrimaryEmail: 'elizabeth.scott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-805', @@ -14945,7 +14138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_806, nameFirstName: 'Haley', nameLastName: 'Rodriguez', - city: 'Shawnside', emailsPrimaryEmail: 'haley.rodriguez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-806', @@ -14962,7 +14154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_807, nameFirstName: 'Joshua', nameLastName: 'Harris', - city: 'New Alexander', emailsPrimaryEmail: 'joshua.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-807', @@ -14979,7 +14170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_808, nameFirstName: 'Ellen', nameLastName: 'Mcdaniel', - city: 'Brownshire', emailsPrimaryEmail: 'ellen.mcdaniel@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-808', @@ -14996,7 +14186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_809, nameFirstName: 'Anthony', nameLastName: 'Macias', - city: 'Joshuastad', emailsPrimaryEmail: 'anthony.macias@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-809', @@ -15013,7 +14202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_810, nameFirstName: 'Samantha', nameLastName: 'Bell', - city: 'South Martinstad', emailsPrimaryEmail: 'samantha.bell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-810', @@ -15030,7 +14218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_811, nameFirstName: 'Roger', nameLastName: 'King', - city: 'Wileyland', emailsPrimaryEmail: 'roger.king@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-811', @@ -15047,7 +14234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_812, nameFirstName: 'Logan', nameLastName: 'Kim', - city: 'East Richard', emailsPrimaryEmail: 'logan.kim@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-812', @@ -15064,7 +14250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_813, nameFirstName: 'Nicole', nameLastName: 'Bass', - city: 'Michelemouth', emailsPrimaryEmail: 'nicole.bass@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-813', @@ -15081,7 +14266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_814, nameFirstName: 'Tony', nameLastName: 'Dean', - city: 'East Allison', emailsPrimaryEmail: 'tony.dean@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-814', @@ -15098,7 +14282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_815, nameFirstName: 'Mercedes', nameLastName: 'Green', - city: 'Lindseyton', emailsPrimaryEmail: 'mercedes.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-815', @@ -15115,7 +14298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_816, nameFirstName: 'Stephen', nameLastName: 'Owens', - city: 'Mayerfurt', emailsPrimaryEmail: 'stephen.owens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-816', @@ -15132,7 +14314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_817, nameFirstName: 'Nathan', nameLastName: 'Williamson', - city: 'Lunaport', emailsPrimaryEmail: 'nathan.williamson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-817', @@ -15149,7 +14330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_818, nameFirstName: 'Anthony', nameLastName: 'Davis', - city: 'Port Jackieshire', emailsPrimaryEmail: 'anthony.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-818', @@ -15166,7 +14346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_819, nameFirstName: 'Kathleen', nameLastName: 'Stewart', - city: 'New Angelaburgh', emailsPrimaryEmail: 'kathleen.stewart@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-819', @@ -15183,7 +14362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_820, nameFirstName: 'Victoria', nameLastName: 'Ruiz', - city: 'Port Jamesfort', emailsPrimaryEmail: 'victoria.ruiz@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-820', @@ -15200,7 +14378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_821, nameFirstName: 'Danielle', nameLastName: 'Ibarra', - city: 'Johnsonmouth', emailsPrimaryEmail: 'danielle.ibarra@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-821', @@ -15217,7 +14394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_822, nameFirstName: 'Meghan', nameLastName: 'Delgado', - city: 'Elizabethburgh', emailsPrimaryEmail: 'meghan.delgado@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-822', @@ -15234,7 +14410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_823, nameFirstName: 'Lauren', nameLastName: 'Skinner', - city: 'West Andrewfort', emailsPrimaryEmail: 'lauren.skinner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-823', @@ -15251,7 +14426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_824, nameFirstName: 'Jesse', nameLastName: 'Underwood', - city: 'North Angela', emailsPrimaryEmail: 'jesse.underwood@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-824', @@ -15268,7 +14442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_825, nameFirstName: 'Antonio', nameLastName: 'Gentry', - city: 'Port Jennifer', emailsPrimaryEmail: 'antonio.gentry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-825', @@ -15285,7 +14458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_826, nameFirstName: 'Gabriela', nameLastName: 'Murphy', - city: 'South Saraport', emailsPrimaryEmail: 'gabriela.murphy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-826', @@ -15302,7 +14474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_827, nameFirstName: 'Kyle', nameLastName: 'Kramer', - city: 'Mooreville', emailsPrimaryEmail: 'kyle.kramer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-827', @@ -15319,7 +14490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_828, nameFirstName: 'Daniel', nameLastName: 'Burton', - city: 'Brownmouth', emailsPrimaryEmail: 'daniel.burton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-828', @@ -15336,7 +14506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_829, nameFirstName: 'Mark', nameLastName: 'Stevens', - city: 'Lake Laurahaven', emailsPrimaryEmail: 'mark.stevens@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-829', @@ -15353,7 +14522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_830, nameFirstName: 'Kevin', nameLastName: 'Lawson', - city: 'Wuhaven', emailsPrimaryEmail: 'kevin.lawson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-830', @@ -15370,7 +14538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_831, nameFirstName: 'Christopher', nameLastName: 'Larson', - city: 'New Cathymouth', emailsPrimaryEmail: 'christopher.larson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-831', @@ -15387,7 +14554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_832, nameFirstName: 'James', nameLastName: 'Ward', - city: 'Oliviaside', emailsPrimaryEmail: 'james.ward2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-832', @@ -15404,7 +14570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_833, nameFirstName: 'Thomas', nameLastName: 'Ramirez', - city: 'Victoriamouth', emailsPrimaryEmail: 'thomas.ramirez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-833', @@ -15421,7 +14586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_834, nameFirstName: 'Makayla', nameLastName: 'Schmitt', - city: 'Linside', emailsPrimaryEmail: 'makayla.schmitt@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-834', @@ -15438,7 +14602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_835, nameFirstName: 'Andrew', nameLastName: 'Miller', - city: 'Kristyville', emailsPrimaryEmail: 'andrew.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-835', @@ -15455,7 +14618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_836, nameFirstName: 'Matthew', nameLastName: 'Perez', - city: 'East Preston', emailsPrimaryEmail: 'matthew.perez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-836', @@ -15472,7 +14634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_837, nameFirstName: 'Molly', nameLastName: 'Peterson', - city: 'Jenniferhaven', emailsPrimaryEmail: 'molly.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-837', @@ -15489,7 +14650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_838, nameFirstName: 'Eric', nameLastName: 'Kennedy', - city: 'Baileyfort', emailsPrimaryEmail: 'eric.kennedy@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-838', @@ -15506,7 +14666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_839, nameFirstName: 'Daniel', nameLastName: 'Nguyen', - city: 'South Sharon', emailsPrimaryEmail: 'daniel.nguyen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-839', @@ -15523,7 +14682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_840, nameFirstName: 'Edward', nameLastName: 'Washington', - city: 'West Melanie', emailsPrimaryEmail: 'edward.washington@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-840', @@ -15540,7 +14698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_841, nameFirstName: 'Stephanie', nameLastName: 'Phillips', - city: 'Calebville', emailsPrimaryEmail: 'stephanie.phillips@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-841', @@ -15557,7 +14714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_842, nameFirstName: 'Francisco', nameLastName: 'Leach', - city: 'New Heatherfort', emailsPrimaryEmail: 'francisco.leach@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-842', @@ -15574,7 +14730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_843, nameFirstName: 'Lisa', nameLastName: 'Gutierrez', - city: 'Stokesstad', emailsPrimaryEmail: 'lisa.gutierrez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-843', @@ -15591,7 +14746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_844, nameFirstName: 'Robert', nameLastName: 'Martinez', - city: 'Gregoryville', emailsPrimaryEmail: 'robert.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-844', @@ -15608,7 +14762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_845, nameFirstName: 'Courtney', nameLastName: 'Kelley', - city: 'Smithtown', emailsPrimaryEmail: 'courtney.kelley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-845', @@ -15625,7 +14778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_846, nameFirstName: 'Samuel', nameLastName: 'Davis', - city: 'New Lori', emailsPrimaryEmail: 'samuel.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-846', @@ -15642,7 +14794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_847, nameFirstName: 'Paul', nameLastName: 'Kim', - city: 'Davidport', emailsPrimaryEmail: 'paul.kim@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-847', @@ -15659,7 +14810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_848, nameFirstName: 'Samantha', nameLastName: 'Jones', - city: 'Johnsonbury', emailsPrimaryEmail: 'samantha.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-848', @@ -15676,7 +14826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_849, nameFirstName: 'Daniel', nameLastName: 'Buchanan', - city: 'Brianshire', emailsPrimaryEmail: 'daniel.buchanan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-849', @@ -15693,7 +14842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_850, nameFirstName: 'Sherry', nameLastName: 'Oliver', - city: 'Lake Emily', emailsPrimaryEmail: 'sherry.oliver@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-850', @@ -15710,7 +14858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_851, nameFirstName: 'Richard', nameLastName: 'Burton', - city: 'Brittanyport', emailsPrimaryEmail: 'richard.burton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-851', @@ -15727,7 +14874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_852, nameFirstName: 'Larry', nameLastName: 'Floyd', - city: 'South Matthew', emailsPrimaryEmail: 'larry.floyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-852', @@ -15744,7 +14890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_853, nameFirstName: 'Abigail', nameLastName: 'Garrett', - city: 'North Briana', emailsPrimaryEmail: 'abigail.garrett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-853', @@ -15761,7 +14906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_854, nameFirstName: 'Craig', nameLastName: 'Miller', - city: 'Hardyton', emailsPrimaryEmail: 'craig.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-854', @@ -15778,7 +14922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_855, nameFirstName: 'Christina', nameLastName: 'Garcia', - city: 'Donnaton', emailsPrimaryEmail: 'christina.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-855', @@ -15795,7 +14938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_856, nameFirstName: 'Lynn', nameLastName: 'Gallagher', - city: 'Chadmouth', emailsPrimaryEmail: 'lynn.gallagher@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-856', @@ -15812,7 +14954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_857, nameFirstName: 'Veronica', nameLastName: 'Oliver', - city: 'Tiffanystad', emailsPrimaryEmail: 'veronica.oliver@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-857', @@ -15829,7 +14970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_858, nameFirstName: 'Julie', nameLastName: 'Stevenson', - city: 'Amandamouth', emailsPrimaryEmail: 'julie.stevenson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-858', @@ -15846,7 +14986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_859, nameFirstName: 'Kathleen', nameLastName: 'Gardner', - city: 'New Julie', emailsPrimaryEmail: 'kathleen.gardner@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-859', @@ -15863,7 +15002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_860, nameFirstName: 'James', nameLastName: 'Ward', - city: 'West Brittany', emailsPrimaryEmail: 'james.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-860', @@ -15880,7 +15018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_861, nameFirstName: 'Brandon', nameLastName: 'Baker', - city: 'Mccannchester', emailsPrimaryEmail: 'brandon.baker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-861', @@ -15897,7 +15034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_862, nameFirstName: 'Cheyenne', nameLastName: 'Stevens', - city: 'Williamchester', emailsPrimaryEmail: 'cheyenne.stevens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-862', @@ -15914,7 +15050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_863, nameFirstName: 'Nicholas', nameLastName: 'Chaney', - city: 'New Traviston', emailsPrimaryEmail: 'nicholas.chaney@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-863', @@ -15931,7 +15066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_864, nameFirstName: 'Robert', nameLastName: 'Allen', - city: 'North Courtney', emailsPrimaryEmail: 'robert.allen@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-864', @@ -15948,7 +15082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_865, nameFirstName: 'Steven', nameLastName: 'Walters', - city: 'Mcknightberg', emailsPrimaryEmail: 'steven.walters@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-865', @@ -15965,7 +15098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_866, nameFirstName: 'Alexandra', nameLastName: 'Rivera', - city: 'West Jasonville', emailsPrimaryEmail: 'alexandra.rivera@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-866', @@ -15982,7 +15114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_867, nameFirstName: 'Robert', nameLastName: 'Doyle', - city: 'West Samuelmouth', emailsPrimaryEmail: 'robert.doyle@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-867', @@ -15999,7 +15130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_868, nameFirstName: 'Melinda', nameLastName: 'Graves', - city: 'Jeremiahside', emailsPrimaryEmail: 'melinda.graves@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-868', @@ -16016,7 +15146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_869, nameFirstName: 'Phillip', nameLastName: 'Johnson', - city: 'North Christopher', emailsPrimaryEmail: 'phillip.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-869', @@ -16033,7 +15162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_870, nameFirstName: 'Kristin', nameLastName: 'Garcia', - city: 'Averyfurt', emailsPrimaryEmail: 'kristin.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-30.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-870', @@ -16050,7 +15178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_871, nameFirstName: 'Randy', nameLastName: 'White', - city: 'Lake Jeanside', emailsPrimaryEmail: 'randy.white@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-871', @@ -16067,7 +15194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_872, nameFirstName: 'David', nameLastName: 'Woods', - city: 'Caitlinmouth', emailsPrimaryEmail: 'david.woods@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-872', @@ -16084,7 +15210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_873, nameFirstName: 'Taylor', nameLastName: 'Humphrey', - city: 'Rebeccafurt', emailsPrimaryEmail: 'taylor.humphrey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-55.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-873', @@ -16101,7 +15226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_874, nameFirstName: 'Emily', nameLastName: 'Evans', - city: 'Stevenview', emailsPrimaryEmail: 'emily.evans@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-874', @@ -16118,7 +15242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_875, nameFirstName: 'Mike', nameLastName: 'Weber', - city: 'West Rachel', emailsPrimaryEmail: 'mike.weber@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-875', @@ -16135,7 +15258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_876, nameFirstName: 'Bonnie', nameLastName: 'Anderson', - city: 'Eileentown', emailsPrimaryEmail: 'bonnie.anderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-876', @@ -16152,7 +15274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_877, nameFirstName: 'Tyler', nameLastName: 'Barnett', - city: 'Port Dawn', emailsPrimaryEmail: 'tyler.barnett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-877', @@ -16169,7 +15290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_878, nameFirstName: 'Brenda', nameLastName: 'Brown', - city: 'Nathanielburgh', emailsPrimaryEmail: 'brenda.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-878', @@ -16186,7 +15306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_879, nameFirstName: 'Matthew', nameLastName: 'Mills', - city: 'Lake Wendymouth', emailsPrimaryEmail: 'matthew.mills@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-879', @@ -16203,7 +15322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_880, nameFirstName: 'Bradley', nameLastName: 'Henderson', - city: 'Jesseport', emailsPrimaryEmail: 'bradley.henderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-880', @@ -16220,7 +15338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_881, nameFirstName: 'Christopher', nameLastName: 'Wilson', - city: 'New Joe', emailsPrimaryEmail: 'christopher.wilson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-881', @@ -16237,7 +15354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_882, nameFirstName: 'Janet', nameLastName: 'Cooper', - city: 'Williambury', emailsPrimaryEmail: 'janet.cooper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-882', @@ -16254,7 +15370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_883, nameFirstName: 'Ashlee', nameLastName: 'Barajas', - city: 'Wilsonton', emailsPrimaryEmail: 'ashlee.barajas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-883', @@ -16271,7 +15386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_884, nameFirstName: 'Amanda', nameLastName: 'Valenzuela', - city: 'Halefort', emailsPrimaryEmail: 'amanda.valenzuela@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-884', @@ -16288,7 +15402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_885, nameFirstName: 'Charles', nameLastName: 'Evans', - city: 'West Ianstad', emailsPrimaryEmail: 'charles.evans@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-885', @@ -16305,7 +15418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_886, nameFirstName: 'Patricia', nameLastName: 'Martinez', - city: 'Myersberg', emailsPrimaryEmail: 'patricia.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-886', @@ -16322,7 +15434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_887, nameFirstName: 'Andrea', nameLastName: 'Byrd', - city: 'East Nicholas', emailsPrimaryEmail: 'andrea.byrd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-887', @@ -16339,7 +15450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_888, nameFirstName: 'Martin', nameLastName: 'Hebert', - city: 'Walkerfurt', emailsPrimaryEmail: 'martin.hebert@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-888', @@ -16356,7 +15466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_889, nameFirstName: 'Joyce', nameLastName: 'Mathis', - city: 'Michaelmouth', emailsPrimaryEmail: 'joyce.mathis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-889', @@ -16373,7 +15482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_890, nameFirstName: 'Charles', nameLastName: 'Ray', - city: 'Lake Matthewmouth', emailsPrimaryEmail: 'charles.ray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-890', @@ -16390,7 +15498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_891, nameFirstName: 'Amanda', nameLastName: 'Vega', - city: 'Brittanyhaven', emailsPrimaryEmail: 'amanda.vega@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-891', @@ -16407,7 +15514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_892, nameFirstName: 'Kathryn', nameLastName: 'Freeman', - city: 'Richardchester', emailsPrimaryEmail: 'kathryn.freeman@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-892', @@ -16424,7 +15530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_893, nameFirstName: 'Ryan', nameLastName: 'Chambers', - city: 'South Robinberg', emailsPrimaryEmail: 'ryan.chambers@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-893', @@ -16441,7 +15546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_894, nameFirstName: 'Dustin', nameLastName: 'Carr', - city: 'Boydburgh', emailsPrimaryEmail: 'dustin.carr@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-894', @@ -16458,7 +15562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_895, nameFirstName: 'Eugene', nameLastName: 'Sims', - city: 'Joannport', emailsPrimaryEmail: 'eugene.sims@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-895', @@ -16475,7 +15578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_896, nameFirstName: 'Gwendolyn', nameLastName: 'Glover', - city: 'Darrenmouth', emailsPrimaryEmail: 'gwendolyn.glover@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-896', @@ -16492,7 +15594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_897, nameFirstName: 'Kevin', nameLastName: 'Oconnell', - city: 'Woodberg', emailsPrimaryEmail: 'kevin.oconnell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-897', @@ -16509,7 +15610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_898, nameFirstName: 'Mark', nameLastName: 'Williams', - city: 'Port Ginatown', emailsPrimaryEmail: 'mark.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-21.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-898', @@ -16526,7 +15626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_899, nameFirstName: 'Jack', nameLastName: 'Reed', - city: 'West Heatherbury', emailsPrimaryEmail: 'jack.reed@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-899', @@ -16543,7 +15642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_900, nameFirstName: 'Anthony', nameLastName: 'Green', - city: 'West Dannyside', emailsPrimaryEmail: 'anthony.green@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-900', @@ -16560,7 +15658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_901, nameFirstName: 'Louis', nameLastName: 'Johnson', - city: 'Cameronton', emailsPrimaryEmail: 'louis.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-901', @@ -16577,7 +15674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_902, nameFirstName: 'Fernando', nameLastName: 'Stephens', - city: 'South Scott', emailsPrimaryEmail: 'fernando.stephens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-902', @@ -16594,7 +15690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_903, nameFirstName: 'Tammy', nameLastName: 'Soto', - city: 'Sampsonville', emailsPrimaryEmail: 'tammy.soto@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-903', @@ -16611,7 +15706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_904, nameFirstName: 'Anthony', nameLastName: 'Clay', - city: 'Mcdonaldside', emailsPrimaryEmail: 'anthony.clay@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-904', @@ -16628,7 +15722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_905, nameFirstName: 'Jennifer', nameLastName: 'Haney', - city: 'South Deanbury', emailsPrimaryEmail: 'jennifer.haney@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-905', @@ -16645,7 +15738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_906, nameFirstName: 'Kevin', nameLastName: 'Harris', - city: 'West Jillian', emailsPrimaryEmail: 'kevin.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-906', @@ -16662,7 +15754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_907, nameFirstName: 'Allison', nameLastName: 'Crawford', - city: 'Jeffreyland', emailsPrimaryEmail: 'allison.crawford@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-907', @@ -16679,7 +15770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_908, nameFirstName: 'Stacey', nameLastName: 'Garcia', - city: 'South Rebeccaburgh', emailsPrimaryEmail: 'stacey.garcia@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-908', @@ -16696,7 +15786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_909, nameFirstName: 'Stacey', nameLastName: 'Romero', - city: 'Johnport', emailsPrimaryEmail: 'stacey.romero@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-909', @@ -16713,7 +15802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_910, nameFirstName: 'Joseph', nameLastName: 'Bell', - city: 'Danielfort', emailsPrimaryEmail: 'joseph.bell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-910', @@ -16730,7 +15818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_911, nameFirstName: 'Nicholas', nameLastName: 'Edwards', - city: 'Jerrybury', emailsPrimaryEmail: 'nicholas.edwards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-911', @@ -16747,7 +15834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_912, nameFirstName: 'Brian', nameLastName: 'Freeman', - city: 'North Ashleyburgh', emailsPrimaryEmail: 'brian.freeman@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-912', @@ -16764,7 +15850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_913, nameFirstName: 'Christine', nameLastName: 'Johnson', - city: 'Alvaradoberg', emailsPrimaryEmail: 'christine.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-913', @@ -16781,7 +15866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_914, nameFirstName: 'Christine', nameLastName: 'Brown', - city: 'East Anthonychester', emailsPrimaryEmail: 'christine.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-914', @@ -16798,7 +15882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_915, nameFirstName: 'Grant', nameLastName: 'Brown', - city: 'Port Brian', emailsPrimaryEmail: 'grant.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-915', @@ -16815,7 +15898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_916, nameFirstName: 'Megan', nameLastName: 'Robinson', - city: 'Thomasmouth', emailsPrimaryEmail: 'megan.robinson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-916', @@ -16832,7 +15914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_917, nameFirstName: 'Ronald', nameLastName: 'Smith', - city: 'South Nathan', emailsPrimaryEmail: 'ronald.smith@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-917', @@ -16849,7 +15930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_918, nameFirstName: 'Tonya', nameLastName: 'Chandler', - city: 'Lake Nicolefurt', emailsPrimaryEmail: 'tonya.chandler@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-918', @@ -16866,7 +15946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_919, nameFirstName: 'Jose', nameLastName: 'Jacobs', - city: 'West John', emailsPrimaryEmail: 'jose.jacobs@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-919', @@ -16883,7 +15962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_920, nameFirstName: 'William', nameLastName: 'Johnson', - city: 'Port Charlesfurt', emailsPrimaryEmail: 'william.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-920', @@ -16900,7 +15978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_921, nameFirstName: 'Jason', nameLastName: 'Mitchell', - city: 'East Thomas', emailsPrimaryEmail: 'jason.mitchell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-921', @@ -16917,7 +15994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_922, nameFirstName: 'Wendy', nameLastName: 'Soto', - city: 'Lake Nathan', emailsPrimaryEmail: 'wendy.soto@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-63.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-922', @@ -16934,7 +16010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_923, nameFirstName: 'Patrick', nameLastName: 'Jones', - city: 'North Isaac', emailsPrimaryEmail: 'patrick.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-36.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-923', @@ -16951,7 +16026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_924, nameFirstName: 'Vanessa', nameLastName: 'Ingram', - city: 'Bowenbury', emailsPrimaryEmail: 'vanessa.ingram@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-924', @@ -16968,7 +16042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_925, nameFirstName: 'Walter', nameLastName: 'Rhodes', - city: 'Stanleymouth', emailsPrimaryEmail: 'walter.rhodes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-925', @@ -16985,7 +16058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_926, nameFirstName: 'Heather', nameLastName: 'Cardenas', - city: 'Gibsonfort', emailsPrimaryEmail: 'heather.cardenas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-926', @@ -17002,7 +16074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_927, nameFirstName: 'Nathan', nameLastName: 'Schwartz', - city: 'North Janicebury', emailsPrimaryEmail: 'nathan.schwartz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-927', @@ -17019,7 +16090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_928, nameFirstName: 'Roger', nameLastName: 'Gill', - city: 'New Michaelberg', emailsPrimaryEmail: 'roger.gill@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-928', @@ -17036,7 +16106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_929, nameFirstName: 'Cynthia', nameLastName: 'Taylor', - city: 'New Jerryfort', emailsPrimaryEmail: 'cynthia.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-929', @@ -17053,7 +16122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_930, nameFirstName: 'Jenna', nameLastName: 'Rojas', - city: 'Christopherberg', emailsPrimaryEmail: 'jenna.rojas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-930', @@ -17070,7 +16138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_931, nameFirstName: 'Trevor', nameLastName: 'Chase', - city: 'Williamview', emailsPrimaryEmail: 'trevor.chase@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-931', @@ -17087,7 +16154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_932, nameFirstName: 'Scott', nameLastName: 'Murphy', - city: 'Charlesberg', emailsPrimaryEmail: 'scott.murphy@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-932', @@ -17104,7 +16170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_933, nameFirstName: 'Zachary', nameLastName: 'Thornton', - city: 'New Laura', emailsPrimaryEmail: 'zachary.thornton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-933', @@ -17121,7 +16186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_934, nameFirstName: 'Richard', nameLastName: 'Aguirre', - city: 'Kimberlychester', emailsPrimaryEmail: 'richard.aguirre@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-934', @@ -17138,7 +16202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_935, nameFirstName: 'Mckenzie', nameLastName: 'Black', - city: 'Danielhaven', emailsPrimaryEmail: 'mckenzie.black@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-935', @@ -17155,7 +16218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_936, nameFirstName: 'Jacqueline', nameLastName: 'Randall', - city: 'Port Chadport', emailsPrimaryEmail: 'jacqueline.randall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-936', @@ -17172,7 +16234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_937, nameFirstName: 'Sheri', nameLastName: 'Taylor', - city: 'Port William', emailsPrimaryEmail: 'sheri.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-937', @@ -17189,7 +16250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_938, nameFirstName: 'Brandon', nameLastName: 'Acevedo', - city: 'East Christinaburgh', emailsPrimaryEmail: 'brandon.acevedo@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-58.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-938', @@ -17206,7 +16266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_939, nameFirstName: 'Katherine', nameLastName: 'Best', - city: 'Wintersside', emailsPrimaryEmail: 'katherine.best@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-939', @@ -17223,7 +16282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_940, nameFirstName: 'Daniel', nameLastName: 'Adams', - city: 'Lake Betty', emailsPrimaryEmail: 'daniel.adams@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-940', @@ -17240,7 +16298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_941, nameFirstName: 'Elizabeth', nameLastName: 'Vega', - city: 'East Robertfurt', emailsPrimaryEmail: 'elizabeth.vega@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-941', @@ -17257,7 +16314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_942, nameFirstName: 'Jennifer', nameLastName: 'Kim', - city: 'Ronaldland', emailsPrimaryEmail: 'jennifer.kim@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-942', @@ -17274,7 +16330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_943, nameFirstName: 'Stephen', nameLastName: 'Saunders', - city: 'Jenniferstad', emailsPrimaryEmail: 'stephen.saunders@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-943', @@ -17291,7 +16346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_944, nameFirstName: 'Ashley', nameLastName: 'Prince', - city: 'South Amanda', emailsPrimaryEmail: 'ashley.prince@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-944', @@ -17308,7 +16362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_945, nameFirstName: 'Paul', nameLastName: 'Mckay', - city: 'Port Charlesfurt', emailsPrimaryEmail: 'paul.mckay@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-945', @@ -17325,7 +16378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_946, nameFirstName: 'Shelby', nameLastName: 'Hughes', - city: 'East Lauraview', emailsPrimaryEmail: 'shelby.hughes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-946', @@ -17342,7 +16394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_947, nameFirstName: 'Cheryl', nameLastName: 'Townsend', - city: 'North Keith', emailsPrimaryEmail: 'cheryl.townsend@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-947', @@ -17359,7 +16410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_948, nameFirstName: 'Brianna', nameLastName: 'Peck', - city: 'Angelaborough', emailsPrimaryEmail: 'brianna.peck@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-948', @@ -17376,7 +16426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_949, nameFirstName: 'Andrew', nameLastName: 'Ford', - city: 'New Destiny', emailsPrimaryEmail: 'andrew.ford@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-949', @@ -17393,7 +16442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_950, nameFirstName: 'Robert', nameLastName: 'Brown', - city: 'Port Grace', emailsPrimaryEmail: 'robert.brown@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-23.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-950', @@ -17410,7 +16458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_951, nameFirstName: 'Joy', nameLastName: 'Richards', - city: 'East Melvinberg', emailsPrimaryEmail: 'joy.richards@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-951', @@ -17427,7 +16474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_952, nameFirstName: 'Jessica', nameLastName: 'Hogan', - city: 'South Jamesview', emailsPrimaryEmail: 'jessica.hogan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-952', @@ -17444,7 +16490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_953, nameFirstName: 'Lisa', nameLastName: 'Watson', - city: 'Lisaport', emailsPrimaryEmail: 'lisa.watson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-13.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-953', @@ -17461,7 +16506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_954, nameFirstName: 'Christine', nameLastName: 'Morton', - city: 'Billyfurt', emailsPrimaryEmail: 'christine.morton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-954', @@ -17478,7 +16522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_955, nameFirstName: 'Brian', nameLastName: 'Lewis', - city: 'Ballfurt', emailsPrimaryEmail: 'brian.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-955', @@ -17495,7 +16538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_956, nameFirstName: 'Matthew', nameLastName: 'Fernandez', - city: 'North Dylanbury', emailsPrimaryEmail: 'matthew.fernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-956', @@ -17512,7 +16554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_957, nameFirstName: 'Linda', nameLastName: 'Mitchell', - city: 'Masseyfurt', emailsPrimaryEmail: 'linda.mitchell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-957', @@ -17529,7 +16570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_958, nameFirstName: 'Colin', nameLastName: 'Walker', - city: 'East Scott', emailsPrimaryEmail: 'colin.walker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-958', @@ -17546,7 +16586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_959, nameFirstName: 'Robert', nameLastName: 'Gray', - city: 'South Georgehaven', emailsPrimaryEmail: 'robert.gray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-56.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-959', @@ -17563,7 +16602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_960, nameFirstName: 'Natalie', nameLastName: 'Lawrence', - city: 'Lozanofurt', emailsPrimaryEmail: 'natalie.lawrence@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-960', @@ -17580,7 +16618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_961, nameFirstName: 'Mark', nameLastName: 'Castro', - city: 'South Michaelbury', emailsPrimaryEmail: 'mark.castro@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-961', @@ -17597,7 +16634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_962, nameFirstName: 'Melissa', nameLastName: 'Molina', - city: 'Boothville', emailsPrimaryEmail: 'melissa.molina@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-962', @@ -17614,7 +16650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_963, nameFirstName: 'Terry', nameLastName: 'Melendez', - city: 'Murrayburgh', emailsPrimaryEmail: 'terry.melendez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-963', @@ -17631,7 +16666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_964, nameFirstName: 'Charlene', nameLastName: 'Beck', - city: 'Madisonbury', emailsPrimaryEmail: 'charlene.beck@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-964', @@ -17648,7 +16682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_965, nameFirstName: 'Yvonne', nameLastName: 'Avila', - city: 'West Geoffrey', emailsPrimaryEmail: 'yvonne.avila@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-965', @@ -17665,7 +16698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_966, nameFirstName: 'Andrea', nameLastName: 'Garcia', - city: 'Lake Kathy', emailsPrimaryEmail: 'andrea.garcia@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-966', @@ -17682,7 +16714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_967, nameFirstName: 'Mary', nameLastName: 'Goodman', - city: 'Daniellehaven', emailsPrimaryEmail: 'mary.goodman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-967', @@ -17699,7 +16730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_968, nameFirstName: 'Shelly', nameLastName: 'Powers', - city: 'Lake Ryanbury', emailsPrimaryEmail: 'shelly.powers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-968', @@ -17716,7 +16746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_969, nameFirstName: 'Holly', nameLastName: 'Hensley', - city: 'Morgantown', emailsPrimaryEmail: 'holly.hensley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-80.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-969', @@ -17733,7 +16762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_970, nameFirstName: 'Christina', nameLastName: 'Davis', - city: 'New Kelly', emailsPrimaryEmail: 'christina.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-73.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-970', @@ -17750,7 +16778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_971, nameFirstName: 'Adam', nameLastName: 'Cochran', - city: 'Port Markhaven', emailsPrimaryEmail: 'adam.cochran@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-971', @@ -17767,7 +16794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_972, nameFirstName: 'Katherine', nameLastName: 'Abbott', - city: 'Johnsonland', emailsPrimaryEmail: 'katherine.abbott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-972', @@ -17784,7 +16810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_973, nameFirstName: 'Jenna', nameLastName: 'Mendez', - city: 'Jameshaven', emailsPrimaryEmail: 'jenna.mendez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-973', @@ -17801,7 +16826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_974, nameFirstName: 'Steven', nameLastName: 'Barnes', - city: 'Lake Ronald', emailsPrimaryEmail: 'steven.barnes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-974', @@ -17818,7 +16842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_975, nameFirstName: 'Ashley', nameLastName: 'Manning', - city: 'Spencefort', emailsPrimaryEmail: 'ashley.manning@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-975', @@ -17835,7 +16858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_976, nameFirstName: 'David', nameLastName: 'Peterson', - city: 'Amytown', emailsPrimaryEmail: 'david.peterson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-976', @@ -17852,7 +16874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_977, nameFirstName: 'Patrick', nameLastName: 'Ellis', - city: 'East Michael', emailsPrimaryEmail: 'patrick.ellis@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-977', @@ -17869,7 +16890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_978, nameFirstName: 'James', nameLastName: 'Sullivan', - city: 'Shepherdburgh', emailsPrimaryEmail: 'james.sullivan@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-978', @@ -17886,7 +16906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_979, nameFirstName: 'Jeffrey', nameLastName: 'Beck', - city: 'East Rodneyshire', emailsPrimaryEmail: 'jeffrey.beck@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-979', @@ -17903,7 +16922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_980, nameFirstName: 'Joyce', nameLastName: 'Phillips', - city: 'Tammyville', emailsPrimaryEmail: 'joyce.phillips@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-980', @@ -17920,7 +16938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_981, nameFirstName: 'Nicholas', nameLastName: 'Sanchez', - city: 'Port Daniellemouth', emailsPrimaryEmail: 'nicholas.sanchez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-981', @@ -17937,7 +16954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_982, nameFirstName: 'John', nameLastName: 'Perez', - city: 'Port Brandonberg', emailsPrimaryEmail: 'john.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-982', @@ -17954,7 +16970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_983, nameFirstName: 'Tammy', nameLastName: 'Mueller', - city: 'Taraview', emailsPrimaryEmail: 'tammy.mueller@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-983', @@ -17971,7 +16986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_984, nameFirstName: 'Susan', nameLastName: 'Wong', - city: 'Santiagochester', emailsPrimaryEmail: 'susan.wong@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-984', @@ -17988,7 +17002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_985, nameFirstName: 'Jacob', nameLastName: 'Lutz', - city: 'Lake Charles', emailsPrimaryEmail: 'jacob.lutz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-985', @@ -18005,7 +17018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_986, nameFirstName: 'Mark', nameLastName: 'Cruz', - city: 'Port Tammyshire', emailsPrimaryEmail: 'mark.cruz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-986', @@ -18022,7 +17034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_987, nameFirstName: 'Sharon', nameLastName: 'Soto', - city: 'East Matthewtown', emailsPrimaryEmail: 'sharon.soto@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-69.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-987', @@ -18039,7 +17050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_988, nameFirstName: 'Maria', nameLastName: 'Rodgers', - city: 'Whitefurt', emailsPrimaryEmail: 'maria.rodgers@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-988', @@ -18056,7 +17066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_989, nameFirstName: 'Scott', nameLastName: 'Norton', - city: 'Hernandezchester', emailsPrimaryEmail: 'scott.norton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-989', @@ -18073,7 +17082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_990, nameFirstName: 'Caitlin', nameLastName: 'Harper', - city: 'East David', emailsPrimaryEmail: 'caitlin.harper@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-990', @@ -18090,7 +17098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_991, nameFirstName: 'Elizabeth', nameLastName: 'Newman', - city: 'East Robertburgh', emailsPrimaryEmail: 'elizabeth.newman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-991', @@ -18107,7 +17114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_992, nameFirstName: 'Rebecca', nameLastName: 'Knight', - city: 'Joshualand', emailsPrimaryEmail: 'rebecca.knight@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-992', @@ -18124,7 +17130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_993, nameFirstName: 'Rebecca', nameLastName: 'Henry', - city: 'Port Tammyside', emailsPrimaryEmail: 'rebecca.henry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-993', @@ -18141,7 +17146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_994, nameFirstName: 'Douglas', nameLastName: 'Mccall', - city: 'Leslieberg', emailsPrimaryEmail: 'douglas.mccall@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-994', @@ -18158,7 +17162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_995, nameFirstName: 'Shelia', nameLastName: 'Mcneil', - city: 'South Thomas', emailsPrimaryEmail: 'shelia.mcneil@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-995', @@ -18175,7 +17178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_996, nameFirstName: 'Diana', nameLastName: 'Moore', - city: 'Port George', emailsPrimaryEmail: 'diana.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-996', @@ -18192,7 +17194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_997, nameFirstName: 'Andrea', nameLastName: 'Gregory', - city: 'North Dennis', emailsPrimaryEmail: 'andrea.gregory@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-997', @@ -18209,7 +17210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_998, nameFirstName: 'Sandra', nameLastName: 'Houston', - city: 'Port Michael', emailsPrimaryEmail: 'sandra.houston@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-998', @@ -18226,7 +17226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_999, nameFirstName: 'Christina', nameLastName: 'Rangel', - city: 'West Judyfort', emailsPrimaryEmail: 'christina.rangel@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-91.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-999', @@ -18243,7 +17242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1000, nameFirstName: 'Ruben', nameLastName: 'Aguilar', - city: 'Smithchester', emailsPrimaryEmail: 'ruben.aguilar@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1000', @@ -18260,7 +17258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1001, nameFirstName: 'Briana', nameLastName: 'Townsend', - city: 'Smithstad', emailsPrimaryEmail: 'briana.townsend@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1001', @@ -18277,7 +17274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1002, nameFirstName: 'William', nameLastName: 'Thompson', - city: 'Lake Kimstad', emailsPrimaryEmail: 'william.thompson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1002', @@ -18294,7 +17290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1003, nameFirstName: 'Ashley', nameLastName: 'Martinez', - city: 'Donaldburgh', emailsPrimaryEmail: 'ashley.martinez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1003', @@ -18311,7 +17306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1004, nameFirstName: 'Carla', nameLastName: 'Wilson', - city: 'Karlland', emailsPrimaryEmail: 'carla.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1004', @@ -18328,7 +17322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1005, nameFirstName: 'Robert', nameLastName: 'Contreras', - city: 'Lesterfort', emailsPrimaryEmail: 'robert.contreras@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-93.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1005', @@ -18345,7 +17338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1006, nameFirstName: 'Denise', nameLastName: 'Burton', - city: 'Mahoneyhaven', emailsPrimaryEmail: 'denise.burton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1006', @@ -18362,7 +17354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1007, nameFirstName: 'Cassidy', nameLastName: 'Mckee', - city: 'East Sydneymouth', emailsPrimaryEmail: 'cassidy.mckee@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1007', @@ -18379,7 +17370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1008, nameFirstName: 'Angela', nameLastName: 'Torres', - city: 'East Kaitlinborough', emailsPrimaryEmail: 'angela.torres@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1008', @@ -18396,7 +17386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1009, nameFirstName: 'Shirley', nameLastName: 'Hall', - city: 'Millerbury', emailsPrimaryEmail: 'shirley.hall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1009', @@ -18413,7 +17402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1010, nameFirstName: 'Robert', nameLastName: 'Arroyo', - city: 'New Todd', emailsPrimaryEmail: 'robert.arroyo@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1010', @@ -18430,7 +17418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1011, nameFirstName: 'Kurt', nameLastName: 'Moon', - city: 'Kennedystad', emailsPrimaryEmail: 'kurt.moon@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1011', @@ -18447,7 +17434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1012, nameFirstName: 'Nicholas', nameLastName: 'Bradshaw', - city: 'North Krystal', emailsPrimaryEmail: 'nicholas.bradshaw@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1012', @@ -18464,7 +17450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1013, nameFirstName: 'Tyler', nameLastName: 'Murray', - city: 'Gregoryport', emailsPrimaryEmail: 'tyler.murray@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1013', @@ -18481,7 +17466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1014, nameFirstName: 'Shawn', nameLastName: 'Lowery', - city: 'Desireebury', emailsPrimaryEmail: 'shawn.lowery@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1014', @@ -18498,7 +17482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1015, nameFirstName: 'Jessica', nameLastName: 'Ward', - city: 'Gabrielborough', emailsPrimaryEmail: 'jessica.ward@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1015', @@ -18515,7 +17498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1016, nameFirstName: 'James', nameLastName: 'Vazquez', - city: 'Williamsfort', emailsPrimaryEmail: 'james.vazquez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-39.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1016', @@ -18532,7 +17514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1017, nameFirstName: 'Jeffrey', nameLastName: 'Moyer', - city: 'Joshuamouth', emailsPrimaryEmail: 'jeffrey.moyer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1017', @@ -18549,7 +17530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1018, nameFirstName: 'Matthew', nameLastName: 'Moore', - city: 'Fosterview', emailsPrimaryEmail: 'matthew.moore@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1018', @@ -18566,7 +17546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1019, nameFirstName: 'Crystal', nameLastName: 'Pena', - city: 'Mariamouth', emailsPrimaryEmail: 'crystal.pena@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-53.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1019', @@ -18583,7 +17562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1020, nameFirstName: 'Ann', nameLastName: 'Mclaughlin', - city: 'Michaelfort', emailsPrimaryEmail: 'ann.mclaughlin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1020', @@ -18600,7 +17578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1021, nameFirstName: 'Corey', nameLastName: 'Jones', - city: 'Navarromouth', emailsPrimaryEmail: 'corey.jones@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1021', @@ -18617,7 +17594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1022, nameFirstName: 'James', nameLastName: 'Boyer', - city: 'Lake James', emailsPrimaryEmail: 'james.boyer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-34.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1022', @@ -18634,7 +17610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1023, nameFirstName: 'Karen', nameLastName: 'Schroeder', - city: 'Lake Mary', emailsPrimaryEmail: 'karen.schroeder@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1023', @@ -18651,7 +17626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1024, nameFirstName: 'Ashley', nameLastName: 'Johnson', - city: 'Robinsonchester', emailsPrimaryEmail: 'ashley.johnson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1024', @@ -18668,7 +17642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1025, nameFirstName: 'Susan', nameLastName: 'Stevens', - city: 'West Andrea', emailsPrimaryEmail: 'susan.stevens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1025', @@ -18685,7 +17658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1026, nameFirstName: 'Jennifer', nameLastName: 'Deleon', - city: 'Stacyhaven', emailsPrimaryEmail: 'jennifer.deleon@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1026', @@ -18702,7 +17674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1027, nameFirstName: 'Kelsey', nameLastName: 'Lopez', - city: 'Port Jessica', emailsPrimaryEmail: 'kelsey.lopez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1027', @@ -18719,7 +17690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1028, nameFirstName: 'Jill', nameLastName: 'Hammond', - city: 'Lake Larry', emailsPrimaryEmail: 'jill.hammond@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1028', @@ -18736,7 +17706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1029, nameFirstName: 'Joseph', nameLastName: 'Wu', - city: 'Pearsonside', emailsPrimaryEmail: 'joseph.wu@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1029', @@ -18753,7 +17722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1030, nameFirstName: 'Melissa', nameLastName: 'Walker', - city: 'Walkerberg', emailsPrimaryEmail: 'melissa.walker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1030', @@ -18770,7 +17738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1031, nameFirstName: 'Lisa', nameLastName: 'Mcdaniel', - city: 'North Williamstad', emailsPrimaryEmail: 'lisa.mcdaniel@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1031', @@ -18787,7 +17754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1032, nameFirstName: 'Ruben', nameLastName: 'Robinson', - city: 'West Sandra', emailsPrimaryEmail: 'ruben.robinson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1032', @@ -18804,7 +17770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1033, nameFirstName: 'David', nameLastName: 'Novak', - city: 'New Benjamin', emailsPrimaryEmail: 'david.novak@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-2.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1033', @@ -18821,7 +17786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1034, nameFirstName: 'Carl', nameLastName: 'Osborne', - city: 'Faulknerport', emailsPrimaryEmail: 'carl.osborne@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1034', @@ -18838,7 +17802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1035, nameFirstName: 'Jennifer', nameLastName: 'Moore', - city: 'Campbellbury', emailsPrimaryEmail: 'jennifer.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-49.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1035', @@ -18855,7 +17818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1036, nameFirstName: 'Nicolas', nameLastName: 'Walton', - city: 'Frederickland', emailsPrimaryEmail: 'nicolas.walton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1036', @@ -18872,7 +17834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1037, nameFirstName: 'Robert', nameLastName: 'Vega', - city: 'East Steven', emailsPrimaryEmail: 'robert.vega@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1037', @@ -18889,7 +17850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1038, nameFirstName: 'Emily', nameLastName: 'Morrison', - city: 'South Sandrafurt', emailsPrimaryEmail: 'emily.morrison@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1038', @@ -18906,7 +17866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1039, nameFirstName: 'Michael', nameLastName: 'Johnson', - city: 'Hodgesfort', emailsPrimaryEmail: 'michael.johnson3@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-11.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1039', @@ -18923,7 +17882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1040, nameFirstName: 'Chris', nameLastName: 'Miller', - city: 'Port Brian', emailsPrimaryEmail: 'chris.miller@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-83.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1040', @@ -18940,7 +17898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1041, nameFirstName: 'Ebony', nameLastName: 'Jones', - city: 'Allisonborough', emailsPrimaryEmail: 'ebony.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1041', @@ -18957,7 +17914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1042, nameFirstName: 'Bonnie', nameLastName: 'Mcintyre', - city: 'Rickyshire', emailsPrimaryEmail: 'bonnie.mcintyre@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-66.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1042', @@ -18974,7 +17930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1043, nameFirstName: 'Tom', nameLastName: 'Dawson', - city: 'New Sarah', emailsPrimaryEmail: 'tom.dawson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1043', @@ -18991,7 +17946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1044, nameFirstName: 'Sharon', nameLastName: 'Weber', - city: 'West Melissa', emailsPrimaryEmail: 'sharon.weber@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1044', @@ -19008,7 +17962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1045, nameFirstName: 'Rodney', nameLastName: 'Lewis', - city: 'West Jenniferstad', emailsPrimaryEmail: 'rodney.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1045', @@ -19025,7 +17978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1046, nameFirstName: 'Jordan', nameLastName: 'Norton', - city: 'Rossport', emailsPrimaryEmail: 'jordan.norton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1046', @@ -19042,7 +17994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1047, nameFirstName: 'Stephen', nameLastName: 'Kramer', - city: 'Jonesland', emailsPrimaryEmail: 'stephen.kramer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1047', @@ -19059,7 +18010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1048, nameFirstName: 'Hannah', nameLastName: 'Miles', - city: 'East Stefanie', emailsPrimaryEmail: 'hannah.miles@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1048', @@ -19076,7 +18026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1049, nameFirstName: 'Matthew', nameLastName: 'Gomez', - city: 'West Luis', emailsPrimaryEmail: 'matthew.gomez2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-65.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1049', @@ -19093,7 +18042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1050, nameFirstName: 'Brian', nameLastName: 'Ashley', - city: 'West Jameshaven', emailsPrimaryEmail: 'brian.ashley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1050', @@ -19110,7 +18058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1051, nameFirstName: 'Tyler', nameLastName: 'Silva', - city: 'Port Debraburgh', emailsPrimaryEmail: 'tyler.silva@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1051', @@ -19127,7 +18074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1052, nameFirstName: 'Timothy', nameLastName: 'Neal', - city: 'Walterberg', emailsPrimaryEmail: 'timothy.neal@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1052', @@ -19144,7 +18090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1053, nameFirstName: 'Melanie', nameLastName: 'Mora', - city: 'Port Jody', emailsPrimaryEmail: 'melanie.mora@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-5.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1053', @@ -19161,7 +18106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1054, nameFirstName: 'Michael', nameLastName: 'Gonzalez', - city: 'East Lindsay', emailsPrimaryEmail: 'michael.gonzalez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1054', @@ -19178,7 +18122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1055, nameFirstName: 'Anthony', nameLastName: 'Moran', - city: 'Ramosborough', emailsPrimaryEmail: 'anthony.moran@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1055', @@ -19195,7 +18138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1056, nameFirstName: 'Kelly', nameLastName: 'Taylor', - city: 'New Anthonyhaven', emailsPrimaryEmail: 'kelly.taylor@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-15.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1056', @@ -19212,7 +18154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1057, nameFirstName: 'Jesse', nameLastName: 'Lawson', - city: 'East Brandy', emailsPrimaryEmail: 'jesse.lawson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1057', @@ -19229,7 +18170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1058, nameFirstName: 'Kaylee', nameLastName: 'Wilson', - city: 'Bauerburgh', emailsPrimaryEmail: 'kaylee.wilson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1058', @@ -19246,7 +18186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1059, nameFirstName: 'Ernest', nameLastName: 'Benson', - city: 'New Rileystad', emailsPrimaryEmail: 'ernest.benson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1059', @@ -19263,7 +18202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1060, nameFirstName: 'Anthony', nameLastName: 'Garcia', - city: 'Martinberg', emailsPrimaryEmail: 'anthony.garcia@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1060', @@ -19280,7 +18218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1061, nameFirstName: 'Karen', nameLastName: 'Moody', - city: 'South Alexisview', emailsPrimaryEmail: 'karen.moody@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1061', @@ -19297,7 +18234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1062, nameFirstName: 'Erin', nameLastName: 'Jimenez', - city: 'North Russell', emailsPrimaryEmail: 'erin.jimenez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-74.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1062', @@ -19314,7 +18250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1063, nameFirstName: 'Daniel', nameLastName: 'Boyd', - city: 'West Ricardo', emailsPrimaryEmail: 'daniel.boyd@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1063', @@ -19331,7 +18266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1064, nameFirstName: 'Robert', nameLastName: 'Garrett', - city: 'West Jillianchester', emailsPrimaryEmail: 'robert.garrett@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1064', @@ -19348,7 +18282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1065, nameFirstName: 'David', nameLastName: 'Vazquez', - city: 'Morrisonchester', emailsPrimaryEmail: 'david.vazquez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1065', @@ -19365,7 +18298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1066, nameFirstName: 'Zachary', nameLastName: 'Simmons', - city: 'Michaelchester', emailsPrimaryEmail: 'zachary.simmons@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-72.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1066', @@ -19382,7 +18314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1067, nameFirstName: 'Melissa', nameLastName: 'Wilson', - city: 'Tiffanyside', emailsPrimaryEmail: 'melissa.wilson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1067', @@ -19399,7 +18330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1068, nameFirstName: 'Michelle', nameLastName: 'Thompson', - city: 'Webertown', emailsPrimaryEmail: 'michelle.thompson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1068', @@ -19416,7 +18346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1069, nameFirstName: 'Donald', nameLastName: 'Stephens', - city: 'Rodneyburgh', emailsPrimaryEmail: 'donald.stephens@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1069', @@ -19433,7 +18362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1070, nameFirstName: 'Marcus', nameLastName: 'Smith', - city: 'Paulachester', emailsPrimaryEmail: 'marcus.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-43.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1070', @@ -19450,7 +18378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1071, nameFirstName: 'Norma', nameLastName: 'Watkins', - city: 'Robertbury', emailsPrimaryEmail: 'norma.watkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1071', @@ -19467,7 +18394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1072, nameFirstName: 'Jody', nameLastName: 'Morales', - city: 'Rodneyfurt', emailsPrimaryEmail: 'jody.morales@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1072', @@ -19484,7 +18410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1073, nameFirstName: 'Ronald', nameLastName: 'Cox', - city: 'North Barbaraville', emailsPrimaryEmail: 'ronald.cox@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-48.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1073', @@ -19501,7 +18426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1074, nameFirstName: 'Jennifer', nameLastName: 'Horn', - city: 'Flemingmouth', emailsPrimaryEmail: 'jennifer.horn@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-54.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1074', @@ -19518,7 +18442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1075, nameFirstName: 'Joseph', nameLastName: 'Jones', - city: 'Johnside', emailsPrimaryEmail: 'joseph.jones@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1075', @@ -19535,7 +18458,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1076, nameFirstName: 'Cody', nameLastName: 'Blevins', - city: 'Lake Dean', emailsPrimaryEmail: 'cody.blevins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1076', @@ -19552,7 +18474,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1077, nameFirstName: 'Allison', nameLastName: 'Hickman', - city: 'Hamiltonstad', emailsPrimaryEmail: 'allison.hickman@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1077', @@ -19569,7 +18490,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1078, nameFirstName: 'David', nameLastName: 'Everett', - city: 'West Brendahaven', emailsPrimaryEmail: 'david.everett@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1078', @@ -19586,7 +18506,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1079, nameFirstName: 'James', nameLastName: 'Smith', - city: 'Kariport', emailsPrimaryEmail: 'james.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1079', @@ -19603,7 +18522,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1080, nameFirstName: 'Chad', nameLastName: 'Stevens', - city: 'South Angela', emailsPrimaryEmail: 'chad.stevens@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1080', @@ -19620,7 +18538,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1081, nameFirstName: 'Nicole', nameLastName: 'Campbell', - city: 'Hillview', emailsPrimaryEmail: 'nicole.campbell@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1081', @@ -19637,7 +18554,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1082, nameFirstName: 'Eric', nameLastName: 'Johnson', - city: 'Ochoaberg', emailsPrimaryEmail: 'eric.johnson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1082', @@ -19654,7 +18570,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1083, nameFirstName: 'Judith', nameLastName: 'Ortiz', - city: 'Jenniferburgh', emailsPrimaryEmail: 'judith.ortiz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1083', @@ -19671,7 +18586,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1084, nameFirstName: 'Evan', nameLastName: 'Floyd', - city: 'Adamside', emailsPrimaryEmail: 'evan.floyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1084', @@ -19688,7 +18602,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1085, nameFirstName: 'Deborah', nameLastName: 'Myers', - city: 'Cassandraview', emailsPrimaryEmail: 'deborah.myers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1085', @@ -19705,7 +18618,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1086, nameFirstName: 'Jonathan', nameLastName: 'Valdez', - city: 'Zunigaside', emailsPrimaryEmail: 'jonathan.valdez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1086', @@ -19722,7 +18634,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1087, nameFirstName: 'Marie', nameLastName: 'Davis', - city: 'Mcculloughborough', emailsPrimaryEmail: 'marie.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-14.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1087', @@ -19739,7 +18650,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1088, nameFirstName: 'Brent', nameLastName: 'Mcpherson', - city: 'Jacobburgh', emailsPrimaryEmail: 'brent.mcpherson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-44.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1088', @@ -19756,7 +18666,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1089, nameFirstName: 'Catherine', nameLastName: 'Kim', - city: 'Smithborough', emailsPrimaryEmail: 'catherine.kim@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-26.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1089', @@ -19773,7 +18682,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1090, nameFirstName: 'Evan', nameLastName: 'Hanson', - city: 'Port Matthew', emailsPrimaryEmail: 'evan.hanson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1090', @@ -19790,7 +18698,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1091, nameFirstName: 'Natalie', nameLastName: 'Cooper', - city: 'Fritzport', emailsPrimaryEmail: 'natalie.cooper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1091', @@ -19807,7 +18714,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1092, nameFirstName: 'Jacqueline', nameLastName: 'Martin', - city: 'Port Erin', emailsPrimaryEmail: 'jacqueline.martin@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1092', @@ -19824,7 +18730,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1093, nameFirstName: 'Ashley', nameLastName: 'Harrington', - city: 'South Angela', emailsPrimaryEmail: 'ashley.harrington@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1093', @@ -19841,7 +18746,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1094, nameFirstName: 'Heather', nameLastName: 'Jones', - city: 'West Reginald', emailsPrimaryEmail: 'heather.jones@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1094', @@ -19858,7 +18762,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1095, nameFirstName: 'Corey', nameLastName: 'Martin', - city: 'East Davidstad', emailsPrimaryEmail: 'corey.martin@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1095', @@ -19875,7 +18778,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1096, nameFirstName: 'Christine', nameLastName: 'Scott', - city: 'Jamesberg', emailsPrimaryEmail: 'christine.scott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1096', @@ -19892,7 +18794,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1097, nameFirstName: 'Alicia', nameLastName: 'Ball', - city: 'Lake Brianville', emailsPrimaryEmail: 'alicia.ball@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1097', @@ -19909,7 +18810,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1098, nameFirstName: 'Antonio', nameLastName: 'Ferguson', - city: 'Port Diane', emailsPrimaryEmail: 'antonio.ferguson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-24.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1098', @@ -19926,7 +18826,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1099, nameFirstName: 'Joseph', nameLastName: 'Baldwin', - city: 'Kevinstad', emailsPrimaryEmail: 'joseph.baldwin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-18.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1099', @@ -19943,7 +18842,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1100, nameFirstName: 'Devin', nameLastName: 'Lopez', - city: 'Fostertown', emailsPrimaryEmail: 'devin.lopez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-33.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1100', @@ -19960,7 +18858,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1101, nameFirstName: 'Victoria', nameLastName: 'Weber', - city: 'Gibsonstad', emailsPrimaryEmail: 'victoria.weber@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1101', @@ -19977,7 +18874,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1102, nameFirstName: 'Erica', nameLastName: 'Lamb', - city: 'Olsontown', emailsPrimaryEmail: 'erica.lamb@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-1.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1102', @@ -19994,7 +18890,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1103, nameFirstName: 'Regina', nameLastName: 'Rivera', - city: 'Justinville', emailsPrimaryEmail: 'regina.rivera@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1103', @@ -20011,7 +18906,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1104, nameFirstName: 'Sarah', nameLastName: 'Hernandez', - city: 'East Zoeview', emailsPrimaryEmail: 'sarah.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-19.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1104', @@ -20028,7 +18922,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1105, nameFirstName: 'Jessica', nameLastName: 'Graham', - city: 'Simonchester', emailsPrimaryEmail: 'jessica.graham@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1105', @@ -20045,7 +18938,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1106, nameFirstName: 'John', nameLastName: 'Ritter', - city: 'Lake Scottville', emailsPrimaryEmail: 'john.ritter@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-62.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1106', @@ -20062,7 +18954,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1107, nameFirstName: 'Jessica', nameLastName: 'Bruce', - city: 'South Charles', emailsPrimaryEmail: 'jessica.bruce@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1107', @@ -20079,7 +18970,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1108, nameFirstName: 'Sara', nameLastName: 'Larsen', - city: 'Clintonberg', emailsPrimaryEmail: 'sara.larsen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1108', @@ -20096,7 +18986,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1109, nameFirstName: 'Eric', nameLastName: 'Ellison', - city: 'North Daniellestad', emailsPrimaryEmail: 'eric.ellison@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1109', @@ -20113,7 +19002,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1110, nameFirstName: 'Katrina', nameLastName: 'Butler', - city: 'Alvaradomouth', emailsPrimaryEmail: 'katrina.butler@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-99.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1110', @@ -20130,7 +19018,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1111, nameFirstName: 'Michelle', nameLastName: 'Powers', - city: 'North Stefanieton', emailsPrimaryEmail: 'michelle.powers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1111', @@ -20147,7 +19034,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1112, nameFirstName: 'Jessica', nameLastName: 'Baker', - city: 'North Nichole', emailsPrimaryEmail: 'jessica.baker@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-57.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1112', @@ -20164,7 +19050,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1113, nameFirstName: 'Cory', nameLastName: 'Cooper', - city: 'Bernardmouth', emailsPrimaryEmail: 'cory.cooper@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1113', @@ -20181,7 +19066,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1114, nameFirstName: 'Brittany', nameLastName: 'Williams', - city: 'New Stephanie', emailsPrimaryEmail: 'brittany.williams@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1114', @@ -20198,7 +19082,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1115, nameFirstName: 'Jessica', nameLastName: 'Hinton', - city: 'North Benjamin', emailsPrimaryEmail: 'jessica.hinton@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1115', @@ -20215,7 +19098,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1116, nameFirstName: 'Natalie', nameLastName: 'Ochoa', - city: 'West Mark', emailsPrimaryEmail: 'natalie.ochoa@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-71.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1116', @@ -20232,7 +19114,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1117, nameFirstName: 'Kristine', nameLastName: 'Warren', - city: 'Clineview', emailsPrimaryEmail: 'kristine.warren@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1117', @@ -20249,7 +19130,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1118, nameFirstName: 'Lindsey', nameLastName: 'Dalton', - city: 'Cynthiaburgh', emailsPrimaryEmail: 'lindsey.dalton@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1118', @@ -20266,7 +19146,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1119, nameFirstName: 'Jennifer', nameLastName: 'Morgan', - city: 'Thomasmouth', emailsPrimaryEmail: 'jennifer.morgan@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-92.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1119', @@ -20283,7 +19162,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1120, nameFirstName: 'Bryan', nameLastName: 'Harris', - city: 'West Andrewhaven', emailsPrimaryEmail: 'bryan.harris@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1120', @@ -20300,7 +19178,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1121, nameFirstName: 'Norma', nameLastName: 'Adkins', - city: 'Elizabethmouth', emailsPrimaryEmail: 'norma.adkins@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-75.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1121', @@ -20317,7 +19194,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1122, nameFirstName: 'Kara', nameLastName: 'Perry', - city: 'Lake Annview', emailsPrimaryEmail: 'kara.perry@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1122', @@ -20334,7 +19210,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1123, nameFirstName: 'Nicole', nameLastName: 'Kelly', - city: 'South Cynthiaberg', emailsPrimaryEmail: 'nicole.kelly@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1123', @@ -20351,7 +19226,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1124, nameFirstName: 'Annette', nameLastName: 'Long', - city: 'Brucetown', emailsPrimaryEmail: 'annette.long@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-25.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1124', @@ -20368,7 +19242,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1125, nameFirstName: 'John', nameLastName: 'Stewart', - city: 'Deniseport', emailsPrimaryEmail: 'john.stewart@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1125', @@ -20385,7 +19258,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1126, nameFirstName: 'Gregory', nameLastName: 'Larson', - city: 'South Mark', emailsPrimaryEmail: 'gregory.larson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1126', @@ -20402,7 +19274,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1127, nameFirstName: 'Wanda', nameLastName: 'Herrera', - city: 'North Rhonda', emailsPrimaryEmail: 'wanda.herrera@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-95.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1127', @@ -20419,7 +19290,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1128, nameFirstName: 'Sarah', nameLastName: 'Davis', - city: 'Mcconnellland', emailsPrimaryEmail: 'sarah.davis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-50.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1128', @@ -20436,7 +19306,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1129, nameFirstName: 'Devin', nameLastName: 'Snow', - city: 'East William', emailsPrimaryEmail: 'devin.snow@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-3.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1129', @@ -20453,7 +19322,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1130, nameFirstName: 'Gina', nameLastName: 'Hernandez', - city: 'Nicholeside', emailsPrimaryEmail: 'gina.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-81.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1130', @@ -20470,7 +19338,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1131, nameFirstName: 'Ronnie', nameLastName: 'Watson', - city: 'West Nicholas', emailsPrimaryEmail: 'ronnie.watson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-89.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1131', @@ -20487,7 +19354,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1132, nameFirstName: 'Mark', nameLastName: 'Duran', - city: 'Davisside', emailsPrimaryEmail: 'mark.duran@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1132', @@ -20504,7 +19370,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1133, nameFirstName: 'Shawn', nameLastName: 'Wolfe', - city: 'Candiceborough', emailsPrimaryEmail: 'shawn.wolfe@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1133', @@ -20521,7 +19386,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1134, nameFirstName: 'Mark', nameLastName: 'Welch', - city: 'Sanchezville', emailsPrimaryEmail: 'mark.welch@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-45.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1134', @@ -20538,7 +19402,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1135, nameFirstName: 'James', nameLastName: 'Holland', - city: 'Josephbury', emailsPrimaryEmail: 'james.holland@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-41.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1135', @@ -20555,7 +19418,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1136, nameFirstName: 'Jennifer', nameLastName: 'Weber', - city: 'Lake Denisebury', emailsPrimaryEmail: 'jennifer.weber@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-47.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1136', @@ -20572,7 +19434,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1137, nameFirstName: 'Beth', nameLastName: 'Hernandez', - city: 'Port April', emailsPrimaryEmail: 'beth.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-85.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1137', @@ -20589,7 +19450,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1138, nameFirstName: 'Eric', nameLastName: 'Barnes', - city: 'Port Tina', emailsPrimaryEmail: 'eric.barnes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-17.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1138', @@ -20606,7 +19466,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1139, nameFirstName: 'Ryan', nameLastName: 'Richardson', - city: 'Mezaborough', emailsPrimaryEmail: 'ryan.richardson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-96.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1139', @@ -20623,7 +19482,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1140, nameFirstName: 'Brandy', nameLastName: 'Cowan', - city: 'Lake Shawn', emailsPrimaryEmail: 'brandy.cowan@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1140', @@ -20640,7 +19498,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1141, nameFirstName: 'Zachary', nameLastName: 'Jensen', - city: 'East Sherylstad', emailsPrimaryEmail: 'zachary.jensen@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1141', @@ -20657,7 +19514,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1142, nameFirstName: 'Carrie', nameLastName: 'Taylor', - city: 'West Elizabeth', emailsPrimaryEmail: 'carrie.taylor@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1142', @@ -20674,7 +19530,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1143, nameFirstName: 'Timothy', nameLastName: 'Williams', - city: 'Ronaldfort', emailsPrimaryEmail: 'timothy.williams@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-32.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1143', @@ -20691,7 +19546,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1144, nameFirstName: 'Peter', nameLastName: 'Rodgers', - city: 'South Michaelfurt', emailsPrimaryEmail: 'peter.rodgers@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-77.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1144', @@ -20708,7 +19562,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1145, nameFirstName: 'Julie', nameLastName: 'Taylor', - city: 'West Christopherview', emailsPrimaryEmail: 'julie.taylor@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1145', @@ -20725,7 +19578,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1146, nameFirstName: 'Samuel', nameLastName: 'Ortiz', - city: 'Amberton', emailsPrimaryEmail: 'samuel.ortiz@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1146', @@ -20742,7 +19594,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1147, nameFirstName: 'Kevin', nameLastName: 'Lucas', - city: 'West Elizabethfurt', emailsPrimaryEmail: 'kevin.lucas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-31.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1147', @@ -20759,7 +19610,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1148, nameFirstName: 'Alexis', nameLastName: 'Hernandez', - city: 'Jonathanhaven', emailsPrimaryEmail: 'alexis.hernandez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-87.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1148', @@ -20776,7 +19626,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1149, nameFirstName: 'Sophia', nameLastName: 'Wood', - city: 'Marymouth', emailsPrimaryEmail: 'sophia.wood@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1149', @@ -20793,7 +19642,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1150, nameFirstName: 'Lori', nameLastName: 'Hunt', - city: 'Jeffreyview', emailsPrimaryEmail: 'lori.hunt@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-86.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1150', @@ -20810,7 +19658,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1151, nameFirstName: 'Dennis', nameLastName: 'Stark', - city: 'West Alicia', emailsPrimaryEmail: 'dennis.stark@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1151', @@ -20827,7 +19674,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1152, nameFirstName: 'Robert', nameLastName: 'Smith', - city: 'Port Juliamouth', emailsPrimaryEmail: 'robert.smith@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-16.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1152', @@ -20844,7 +19690,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1153, nameFirstName: 'Megan', nameLastName: 'Hughes', - city: 'South Linda', emailsPrimaryEmail: 'megan.hughes@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-82.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1153', @@ -20861,7 +19706,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1154, nameFirstName: 'Kristine', nameLastName: 'Osborne', - city: 'Jamesberg', emailsPrimaryEmail: 'kristine.osborne@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1154', @@ -20878,7 +19722,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1155, nameFirstName: 'Brandy', nameLastName: 'Thomas', - city: 'Lake Marcus', emailsPrimaryEmail: 'brandy.thomas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1155', @@ -20895,7 +19738,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1156, nameFirstName: 'Brad', nameLastName: 'Long', - city: 'Jorgeton', emailsPrimaryEmail: 'brad.long@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-46.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1156', @@ -20912,7 +19754,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1157, nameFirstName: 'Caleb', nameLastName: 'Stevens', - city: 'Davisstad', emailsPrimaryEmail: 'caleb.stevens@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-94.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1157', @@ -20929,7 +19770,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1158, nameFirstName: 'Matthew', nameLastName: 'Wall', - city: 'Loweryland', emailsPrimaryEmail: 'matthew.wall@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-84.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1158', @@ -20946,7 +19786,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1159, nameFirstName: 'Cynthia', nameLastName: 'Cook', - city: 'South Lisa', emailsPrimaryEmail: 'cynthia.cook@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1159', @@ -20963,7 +19802,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1160, nameFirstName: 'Lisa', nameLastName: 'Tate', - city: 'North Jasminebury', emailsPrimaryEmail: 'lisa.tate@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-8.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1160', @@ -20980,7 +19818,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1161, nameFirstName: 'Gloria', nameLastName: 'Chapman', - city: 'South Jeffrey', emailsPrimaryEmail: 'gloria.chapman@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-59.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1161', @@ -20997,7 +19834,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1162, nameFirstName: 'Connie', nameLastName: 'Lewis', - city: 'Victoriaport', emailsPrimaryEmail: 'connie.lewis@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-78.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1162', @@ -21014,7 +19850,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1163, nameFirstName: 'Gary', nameLastName: 'Harris', - city: 'Dylanberg', emailsPrimaryEmail: 'gary.harris@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1163', @@ -21031,7 +19866,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1164, nameFirstName: 'Sharon', nameLastName: 'Berger', - city: 'Lake Daniel', emailsPrimaryEmail: 'sharon.berger@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1164', @@ -21048,7 +19882,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1165, nameFirstName: 'Michael', nameLastName: 'Russo', - city: 'Steveborough', emailsPrimaryEmail: 'michael.russo@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-97.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1165', @@ -21065,7 +19898,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1166, nameFirstName: 'Michael', nameLastName: 'Young', - city: 'New Randall', emailsPrimaryEmail: 'michael.young@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1166', @@ -21082,7 +19914,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1167, nameFirstName: 'Devin', nameLastName: 'Ramsey', - city: 'Michelleberg', emailsPrimaryEmail: 'devin.ramsey@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-76.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1167', @@ -21099,7 +19930,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1168, nameFirstName: 'Sara', nameLastName: 'Lee', - city: 'Keithville', emailsPrimaryEmail: 'sara.lee@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-29.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1168', @@ -21116,7 +19946,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1169, nameFirstName: 'Robin', nameLastName: 'Stark', - city: 'Port Stephanie', emailsPrimaryEmail: 'robin.stark@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1169', @@ -21133,7 +19962,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1170, nameFirstName: 'Sergio', nameLastName: 'Burns', - city: 'Samanthafort', emailsPrimaryEmail: 'sergio.burns@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1170', @@ -21150,7 +19978,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1171, nameFirstName: 'Lisa', nameLastName: 'Haas', - city: 'Combsfurt', emailsPrimaryEmail: 'lisa.haas@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-37.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1171', @@ -21167,7 +19994,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1172, nameFirstName: 'Courtney', nameLastName: 'Donaldson', - city: 'East Amandaville', emailsPrimaryEmail: 'courtney.donaldson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1172', @@ -21184,7 +20010,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1173, nameFirstName: 'Ashley', nameLastName: 'Conrad', - city: 'Jeffreyview', emailsPrimaryEmail: 'ashley.conrad@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-28.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1173', @@ -21201,7 +20026,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1174, nameFirstName: 'Tim', nameLastName: 'Levine', - city: 'Bentonland', emailsPrimaryEmail: 'tim.levine@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-61.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1174', @@ -21218,7 +20042,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1175, nameFirstName: 'Michelle', nameLastName: 'Martinez', - city: 'Port Erinburgh', emailsPrimaryEmail: 'michelle.martinez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1175', @@ -21235,7 +20058,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1176, nameFirstName: 'Jennifer', nameLastName: 'Rose', - city: 'New Jean', emailsPrimaryEmail: 'jennifer.rose@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-35.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1176', @@ -21252,7 +20074,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1177, nameFirstName: 'Casey', nameLastName: 'Greer', - city: 'Martinezmouth', emailsPrimaryEmail: 'casey.greer@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-52.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1177', @@ -21269,7 +20090,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1178, nameFirstName: 'Crystal', nameLastName: 'Mclaughlin', - city: 'South Sandra', emailsPrimaryEmail: 'crystal.mclaughlin@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-98.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1178', @@ -21286,7 +20106,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1179, nameFirstName: 'Rachel', nameLastName: 'Floyd', - city: 'North Joshua', emailsPrimaryEmail: 'rachel.floyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-10.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1179', @@ -21303,7 +20122,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1180, nameFirstName: 'Shannon', nameLastName: 'Anderson', - city: 'South Joy', emailsPrimaryEmail: 'shannon.anderson@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1180', @@ -21320,7 +20138,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1181, nameFirstName: 'Catherine', nameLastName: 'White', - city: 'Webbstad', emailsPrimaryEmail: 'catherine.white@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1181', @@ -21337,7 +20154,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1182, nameFirstName: 'Matthew', nameLastName: 'Fisher', - city: 'Port Davidton', emailsPrimaryEmail: 'matthew.fisher@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-79.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1182', @@ -21354,7 +20170,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1183, nameFirstName: 'Tracy', nameLastName: 'Leonard', - city: 'Woodsborough', emailsPrimaryEmail: 'tracy.leonard@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1183', @@ -21371,7 +20186,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1184, nameFirstName: 'Jenna', nameLastName: 'Moore', - city: 'South Michaelville', emailsPrimaryEmail: 'jenna.moore@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-88.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1184', @@ -21388,7 +20202,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1185, nameFirstName: 'Alice', nameLastName: 'Edwards', - city: 'West Edwardchester', emailsPrimaryEmail: 'alice.edwards@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-51.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1185', @@ -21405,7 +20218,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1186, nameFirstName: 'Theresa', nameLastName: 'Orozco', - city: 'Reynoldsview', emailsPrimaryEmail: 'theresa.orozco@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1186', @@ -21422,7 +20234,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1187, nameFirstName: 'Samantha', nameLastName: 'Hicks', - city: 'Richardberg', emailsPrimaryEmail: 'samantha.hicks2@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-60.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1187', @@ -21439,7 +20250,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1188, nameFirstName: 'Brian', nameLastName: 'Finley', - city: 'Lauriemouth', emailsPrimaryEmail: 'brian.finley@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-40.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1188', @@ -21456,7 +20266,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1189, nameFirstName: 'Kevin', nameLastName: 'Black', - city: 'Juliebury', emailsPrimaryEmail: 'kevin.black@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-9.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1189', @@ -21473,7 +20282,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1190, nameFirstName: 'Eric', nameLastName: 'Peterson', - city: 'Kevinborough', emailsPrimaryEmail: 'eric.peterson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-68.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1190', @@ -21490,7 +20298,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1191, nameFirstName: 'Samantha', nameLastName: 'Steele', - city: 'New Ronaldview', emailsPrimaryEmail: 'samantha.steele@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-20.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1191', @@ -21507,7 +20314,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1192, nameFirstName: 'Tiffany', nameLastName: 'Boyd', - city: 'West Brandonville', emailsPrimaryEmail: 'tiffany.boyd@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-22.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1192', @@ -21524,7 +20330,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1193, nameFirstName: 'Larry', nameLastName: 'Johnston', - city: 'Rochafurt', emailsPrimaryEmail: 'larry.johnston@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-64.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1193', @@ -21541,7 +20346,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1194, nameFirstName: 'Vanessa', nameLastName: 'Villanueva', - city: 'Lake Rhonda', emailsPrimaryEmail: 'vanessa.villanueva@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1194', @@ -21558,7 +20362,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1195, nameFirstName: 'Danielle', nameLastName: 'Gutierrez', - city: 'East Christophermouth', emailsPrimaryEmail: 'danielle.gutierrez@example.com', avatarUrl: '', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1195', @@ -21575,7 +20378,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1196, nameFirstName: 'Pamela', nameLastName: 'Anderson', - city: 'Cookland', emailsPrimaryEmail: 'pamela.anderson@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-42.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1196', @@ -21592,7 +20394,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1197, nameFirstName: 'Linda', nameLastName: 'Young', - city: 'Fryeville', emailsPrimaryEmail: 'linda.young@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-7.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1197', @@ -21609,7 +20410,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1198, nameFirstName: 'Rodney', nameLastName: 'Orr', - city: 'Davidmouth', emailsPrimaryEmail: 'rodney.orr@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-70.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1198', @@ -21626,7 +20426,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1199, nameFirstName: 'Ashley', nameLastName: 'Perez', - city: 'Laurenfurt', emailsPrimaryEmail: 'ashley.perez@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-67.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1199', @@ -21643,7 +20442,6 @@ const PERSON_DATA_SEEDS_RAW = [ id: PERSON_DATA_SEED_IDS.ID_1200, nameFirstName: 'Abigail', nameLastName: 'Scott', - city: 'Travisfurt', emailsPrimaryEmail: 'abigail.scott@example.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/people/image-12.png', linkedinLinkPrimaryLinkUrl: 'https://linkedin.com/in/person-1200', diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/services/timeline-activity-seeder.service.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/services/timeline-activity-seeder.service.ts index 00c7ddc987..37c62f8aeb 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/services/timeline-activity-seeder.service.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/data/services/timeline-activity-seeder.service.ts @@ -341,7 +341,6 @@ export class TimelineActivitySeederService { ...commonProperties, name: recordSeed.name, domainName: recordSeed.domainNamePrimaryLinkUrl, - employees: recordSeed.employees, city: recordSeed.addressAddressCity, }), person: () => ({ diff --git a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/metadata/custom-fields/constants/company-custom-field-seeds.constant.ts b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/metadata/custom-fields/constants/company-custom-field-seeds.constant.ts index b1215f6d92..191a8ec7d5 100644 --- a/packages/twenty-server/src/engine/workspace-manager/dev-seeder/metadata/custom-fields/constants/company-custom-field-seeds.constant.ts +++ b/packages/twenty-server/src/engine/workspace-manager/dev-seeder/metadata/custom-fields/constants/company-custom-field-seeds.constant.ts @@ -3,6 +3,16 @@ import { FieldMetadataType } from 'twenty-shared/types'; import { type FieldMetadataSeed } from 'src/engine/workspace-manager/dev-seeder/metadata/types/field-metadata-seed.type'; export const COMPANY_CUSTOM_FIELD_SEEDS: FieldMetadataSeed[] = [ + { + type: FieldMetadataType.NUMBER, + name: 'employees', + label: 'Employees', + description: 'Number of employees in the company', + icon: 'IconUsers', + isActive: true, + isNullable: true, + isUnique: false, + }, { type: FieldMetadataType.TEXT, name: 'tagline', diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-companies.util.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-companies.util.ts index f60be43e8a..207b461228 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-companies.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-companies.util.ts @@ -24,7 +24,6 @@ export const prefillCompanies = async ( 'addressAddressState', 'addressAddressPostcode', 'addressAddressCountry', - 'employees', 'position', 'createdBySource', 'createdByWorkspaceMemberId', @@ -45,7 +44,6 @@ export const prefillCompanies = async ( addressAddressState: 'CA', addressAddressPostcode: '94103', addressAddressCountry: 'United States', - employees: 5000, position: 1, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -64,7 +62,6 @@ export const prefillCompanies = async ( addressAddressState: 'CA', addressAddressPostcode: '94104', addressAddressCountry: 'United States', - employees: 1100, position: 2, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -83,7 +80,6 @@ export const prefillCompanies = async ( addressAddressState: null, addressAddressPostcode: null, addressAddressCountry: 'Ireland', - employees: 8000, position: 3, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -102,7 +98,6 @@ export const prefillCompanies = async ( addressAddressState: null, addressAddressPostcode: '94102', addressAddressCountry: 'United States', - employees: 800, position: 4, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -121,7 +116,6 @@ export const prefillCompanies = async ( addressAddressState: 'CA', addressAddressPostcode: '94110', addressAddressCountry: 'United States', - employees: 400, position: 5, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-people.util.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-people.util.ts index 7f746452d6..e70cdebd7e 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-people.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/utils/prefill-people.util.ts @@ -26,7 +26,6 @@ export const prefillPeople = async ( 'id', 'nameFirstName', 'nameLastName', - 'city', 'emailsPrimaryEmail', 'avatarUrl', 'position', @@ -46,7 +45,6 @@ export const prefillPeople = async ( id: BRIAN_CHESKY_ID, nameFirstName: 'Brian', nameLastName: 'Chesky', - city: 'San Francisco', emailsPrimaryEmail: 'chesky@airbnb.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/founders/brian-chesky.jpg', @@ -65,7 +63,6 @@ export const prefillPeople = async ( id: DARIO_AMODEI_ID, nameFirstName: 'Dario', nameLastName: 'Amodei', - city: 'San Francisco', emailsPrimaryEmail: 'amodei@anthropic.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/founders/dario-amodei.jpg', @@ -84,7 +81,6 @@ export const prefillPeople = async ( id: PATRICK_COLLISON_ID, nameFirstName: 'Patrick', nameLastName: 'Collison', - city: 'San Francisco', emailsPrimaryEmail: 'collison@stripe.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/founders/patrick-collison.jpg', @@ -103,7 +99,6 @@ export const prefillPeople = async ( id: DYLAN_FIELD_ID, nameFirstName: 'Dylan', nameLastName: 'Field', - city: 'San Francisco', emailsPrimaryEmail: 'field@figma.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/founders/dylan-field.jpg', @@ -122,7 +117,6 @@ export const prefillPeople = async ( id: IVAN_ZHAO_ID, nameFirstName: 'Ivan', nameLastName: 'Zhao', - city: 'San Francisco', emailsPrimaryEmail: 'zhao@notion.com', avatarUrl: 'https://twentyhq.github.io/placeholder-images/founders/ivan-zhao.jpg', diff --git a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/__tests__/__snapshots__/get-standard-object-metadata-related-entity-ids.util.spec.ts.snap b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/__tests__/__snapshots__/get-standard-object-metadata-related-entity-ids.util.spec.ts.snap index 3060ba42c9..e0344fb079 100644 --- a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/__tests__/__snapshots__/get-standard-object-metadata-related-entity-ids.util.spec.ts.snap +++ b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/__tests__/__snapshots__/get-standard-object-metadata-related-entity-ids.util.spec.ts.snap @@ -504,22 +504,22 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "company": { "fields": { "accountOwner": { - "id": "00000000-0000-0000-0000-000000000165", + "id": "00000000-0000-0000-0000-000000000162", }, "address": { "id": "00000000-0000-0000-0000-000000000155", }, - "annualRecurringRevenue": { - "id": "00000000-0000-0000-0000-000000000159", + "annualRevenue": { + "id": "00000000-0000-0000-0000-000000000157", }, "attachments": { - "id": "00000000-0000-0000-0000-000000000169", + "id": "00000000-0000-0000-0000-000000000166", }, "createdAt": { "id": "00000000-0000-0000-0000-000000000150", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000162", + "id": "00000000-0000-0000-0000-000000000159", }, "deletedAt": { "id": "00000000-0000-0000-0000-000000000152", @@ -527,155 +527,134 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "domainName": { "id": "00000000-0000-0000-0000-000000000154", }, - "employees": { - "id": "00000000-0000-0000-0000-000000000156", - }, "id": { "id": "00000000-0000-0000-0000-000000000149", }, - "idealCustomerProfile": { - "id": "00000000-0000-0000-0000-000000000160", - }, "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000157", + "id": "00000000-0000-0000-0000-000000000156", }, "name": { "id": "00000000-0000-0000-0000-000000000153", }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000167", - }, - "opportunities": { - "id": "00000000-0000-0000-0000-000000000168", - }, - "people": { "id": "00000000-0000-0000-0000-000000000164", }, - "position": { + "opportunities": { + "id": "00000000-0000-0000-0000-000000000165", + }, + "people": { "id": "00000000-0000-0000-0000-000000000161", }, + "position": { + "id": "00000000-0000-0000-0000-000000000158", + }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000171", + "id": "00000000-0000-0000-0000-000000000168", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000166", + "id": "00000000-0000-0000-0000-000000000163", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000170", + "id": "00000000-0000-0000-0000-000000000167", }, "updatedAt": { "id": "00000000-0000-0000-0000-000000000151", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000163", - }, - "xLink": { - "id": "00000000-0000-0000-0000-000000000158", + "id": "00000000-0000-0000-0000-000000000160", }, }, - "id": "00000000-0000-0000-0000-000000000204", + "id": "00000000-0000-0000-0000-000000000197", "views": { "allCompanies": { - "id": "00000000-0000-0000-0000-000000000180", + "id": "00000000-0000-0000-0000-000000000176", "viewFieldGroups": {}, "viewFields": { "accountOwner": { - "id": "00000000-0000-0000-0000-000000000175", + "id": "00000000-0000-0000-0000-000000000172", }, "address": { - "id": "00000000-0000-0000-0000-000000000179", + "id": "00000000-0000-0000-0000-000000000175", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000176", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000174", - }, - "domainName": { "id": "00000000-0000-0000-0000-000000000173", }, - "employees": { - "id": "00000000-0000-0000-0000-000000000177", + "createdBy": { + "id": "00000000-0000-0000-0000-000000000171", + }, + "domainName": { + "id": "00000000-0000-0000-0000-000000000170", }, "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000178", + "id": "00000000-0000-0000-0000-000000000174", }, "name": { - "id": "00000000-0000-0000-0000-000000000172", + "id": "00000000-0000-0000-0000-000000000169", }, }, "viewGroups": {}, }, "companyRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000203", + "id": "00000000-0000-0000-0000-000000000196", "viewFieldGroups": { "business": { - "id": "00000000-0000-0000-0000-000000000200", + "id": "00000000-0000-0000-0000-000000000193", }, "contact": { - "id": "00000000-0000-0000-0000-000000000201", + "id": "00000000-0000-0000-0000-000000000194", }, "general": { - "id": "00000000-0000-0000-0000-000000000199", + "id": "00000000-0000-0000-0000-000000000192", }, "system": { - "id": "00000000-0000-0000-0000-000000000202", + "id": "00000000-0000-0000-0000-000000000195", }, }, "viewFields": { "accountOwner": { - "id": "00000000-0000-0000-0000-000000000182", + "id": "00000000-0000-0000-0000-000000000178", }, "address": { - "id": "00000000-0000-0000-0000-000000000188", - }, - "annualRecurringRevenue": { - "id": "00000000-0000-0000-0000-000000000183", - }, - "attachments": { - "id": "00000000-0000-0000-0000-000000000197", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000189", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000190", - }, - "domainName": { "id": "00000000-0000-0000-0000-000000000181", }, - "employees": { - "id": "00000000-0000-0000-0000-000000000185", + "annualRevenue": { + "id": "00000000-0000-0000-0000-000000000179", }, - "idealCustomerProfile": { - "id": "00000000-0000-0000-0000-000000000184", + "attachments": { + "id": "00000000-0000-0000-0000-000000000190", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000182", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000183", + }, + "domainName": { + "id": "00000000-0000-0000-0000-000000000177", }, "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000186", + "id": "00000000-0000-0000-0000-000000000180", }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000195", + "id": "00000000-0000-0000-0000-000000000188", }, "opportunities": { - "id": "00000000-0000-0000-0000-000000000196", + "id": "00000000-0000-0000-0000-000000000189", }, "people": { - "id": "00000000-0000-0000-0000-000000000193", + "id": "00000000-0000-0000-0000-000000000186", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000194", + "id": "00000000-0000-0000-0000-000000000187", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000198", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000191", }, - "updatedBy": { - "id": "00000000-0000-0000-0000-000000000192", + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000184", }, - "xLink": { - "id": "00000000-0000-0000-0000-000000000187", + "updatedBy": { + "id": "00000000-0000-0000-0000-000000000185", }, }, "viewGroups": {}, @@ -685,59 +664,59 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "dashboard": { "fields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000215", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000206", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000212", - }, - "deletedAt": { "id": "00000000-0000-0000-0000-000000000208", }, - "id": { + "createdAt": { + "id": "00000000-0000-0000-0000-000000000199", + }, + "createdBy": { "id": "00000000-0000-0000-0000-000000000205", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000201", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000198", + }, "pageLayoutId": { - "id": "00000000-0000-0000-0000-000000000211", + "id": "00000000-0000-0000-0000-000000000204", }, "position": { - "id": "00000000-0000-0000-0000-000000000210", + "id": "00000000-0000-0000-0000-000000000203", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000216", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000214", - }, - "title": { "id": "00000000-0000-0000-0000-000000000209", }, - "updatedAt": { + "timelineActivities": { "id": "00000000-0000-0000-0000-000000000207", }, + "title": { + "id": "00000000-0000-0000-0000-000000000202", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000200", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000213", + "id": "00000000-0000-0000-0000-000000000206", }, }, - "id": "00000000-0000-0000-0000-000000000222", + "id": "00000000-0000-0000-0000-000000000215", "views": { "allDashboards": { - "id": "00000000-0000-0000-0000-000000000221", + "id": "00000000-0000-0000-0000-000000000214", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000219", + "id": "00000000-0000-0000-0000-000000000212", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000218", + "id": "00000000-0000-0000-0000-000000000211", }, "title": { - "id": "00000000-0000-0000-0000-000000000217", + "id": "00000000-0000-0000-0000-000000000210", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000220", + "id": "00000000-0000-0000-0000-000000000213", }, }, "viewGroups": {}, @@ -747,77 +726,77 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "message": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000327", + "id": "00000000-0000-0000-0000-000000000320", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000337", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000329", - }, - "headerMessageId": { "id": "00000000-0000-0000-0000-000000000330", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000322", + }, + "headerMessageId": { + "id": "00000000-0000-0000-0000-000000000323", + }, "id": { - "id": "00000000-0000-0000-0000-000000000326", + "id": "00000000-0000-0000-0000-000000000319", }, "messageChannelMessageAssociations": { - "id": "00000000-0000-0000-0000-000000000336", + "id": "00000000-0000-0000-0000-000000000329", }, "messageParticipants": { - "id": "00000000-0000-0000-0000-000000000335", - }, - "messageThread": { - "id": "00000000-0000-0000-0000-000000000331", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000339", - }, - "receivedAt": { - "id": "00000000-0000-0000-0000-000000000334", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000340", - }, - "subject": { - "id": "00000000-0000-0000-0000-000000000332", - }, - "text": { - "id": "00000000-0000-0000-0000-000000000333", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000328", }, + "messageThread": { + "id": "00000000-0000-0000-0000-000000000324", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000332", + }, + "receivedAt": { + "id": "00000000-0000-0000-0000-000000000327", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000333", + }, + "subject": { + "id": "00000000-0000-0000-0000-000000000325", + }, + "text": { + "id": "00000000-0000-0000-0000-000000000326", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000321", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000338", + "id": "00000000-0000-0000-0000-000000000331", }, }, - "id": "00000000-0000-0000-0000-000000000349", + "id": "00000000-0000-0000-0000-000000000342", "views": { "allMessages": { - "id": "00000000-0000-0000-0000-000000000348", + "id": "00000000-0000-0000-0000-000000000341", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000347", + "id": "00000000-0000-0000-0000-000000000340", }, "headerMessageId": { - "id": "00000000-0000-0000-0000-000000000345", + "id": "00000000-0000-0000-0000-000000000338", }, "messageParticipants": { - "id": "00000000-0000-0000-0000-000000000343", + "id": "00000000-0000-0000-0000-000000000336", }, "messageThread": { - "id": "00000000-0000-0000-0000-000000000342", + "id": "00000000-0000-0000-0000-000000000335", }, "receivedAt": { - "id": "00000000-0000-0000-0000-000000000344", + "id": "00000000-0000-0000-0000-000000000337", }, "subject": { - "id": "00000000-0000-0000-0000-000000000341", + "id": "00000000-0000-0000-0000-000000000334", }, "text": { - "id": "00000000-0000-0000-0000-000000000346", + "id": "00000000-0000-0000-0000-000000000339", }, }, "viewGroups": {}, @@ -827,103 +806,103 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "messageChannelMessageAssociation": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000224", + "id": "00000000-0000-0000-0000-000000000217", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000233", - }, - "deletedAt": { "id": "00000000-0000-0000-0000-000000000226", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000219", + }, "direction": { - "id": "00000000-0000-0000-0000-000000000232", - }, - "id": { - "id": "00000000-0000-0000-0000-000000000223", - }, - "message": { - "id": "00000000-0000-0000-0000-000000000228", - }, - "messageChannelId": { - "id": "00000000-0000-0000-0000-000000000227", - }, - "messageExternalId": { - "id": "00000000-0000-0000-0000-000000000229", - }, - "messageFolders": { - "id": "00000000-0000-0000-0000-000000000237", - }, - "messageThread": { - "id": "00000000-0000-0000-0000-000000000230", - }, - "messageThreadExternalId": { - "id": "00000000-0000-0000-0000-000000000231", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000235", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000236", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000225", }, + "id": { + "id": "00000000-0000-0000-0000-000000000216", + }, + "message": { + "id": "00000000-0000-0000-0000-000000000221", + }, + "messageChannelId": { + "id": "00000000-0000-0000-0000-000000000220", + }, + "messageExternalId": { + "id": "00000000-0000-0000-0000-000000000222", + }, + "messageFolders": { + "id": "00000000-0000-0000-0000-000000000230", + }, + "messageThread": { + "id": "00000000-0000-0000-0000-000000000223", + }, + "messageThreadExternalId": { + "id": "00000000-0000-0000-0000-000000000224", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000228", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000229", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000218", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000234", + "id": "00000000-0000-0000-0000-000000000227", }, }, - "id": "00000000-0000-0000-0000-000000000253", + "id": "00000000-0000-0000-0000-000000000246", "views": { "allMessageChannelMessageAssociations": { - "id": "00000000-0000-0000-0000-000000000243", + "id": "00000000-0000-0000-0000-000000000236", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000242", + "id": "00000000-0000-0000-0000-000000000235", }, "direction": { - "id": "00000000-0000-0000-0000-000000000241", + "id": "00000000-0000-0000-0000-000000000234", }, "message": { - "id": "00000000-0000-0000-0000-000000000239", + "id": "00000000-0000-0000-0000-000000000232", }, "messageChannelId": { - "id": "00000000-0000-0000-0000-000000000238", + "id": "00000000-0000-0000-0000-000000000231", }, "messageExternalId": { - "id": "00000000-0000-0000-0000-000000000240", + "id": "00000000-0000-0000-0000-000000000233", }, }, "viewGroups": {}, }, "messageChannelMessageAssociationRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000252", + "id": "00000000-0000-0000-0000-000000000245", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000250", + "id": "00000000-0000-0000-0000-000000000243", }, "system": { - "id": "00000000-0000-0000-0000-000000000251", + "id": "00000000-0000-0000-0000-000000000244", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000248", + "id": "00000000-0000-0000-0000-000000000241", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000249", + "id": "00000000-0000-0000-0000-000000000242", }, "direction": { - "id": "00000000-0000-0000-0000-000000000247", + "id": "00000000-0000-0000-0000-000000000240", }, "message": { - "id": "00000000-0000-0000-0000-000000000245", + "id": "00000000-0000-0000-0000-000000000238", }, "messageChannelId": { - "id": "00000000-0000-0000-0000-000000000244", + "id": "00000000-0000-0000-0000-000000000237", }, "messageExternalId": { - "id": "00000000-0000-0000-0000-000000000246", + "id": "00000000-0000-0000-0000-000000000239", }, }, "viewGroups": {}, @@ -933,76 +912,76 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "messageChannelMessageAssociationMessageFolder": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000255", + "id": "00000000-0000-0000-0000-000000000248", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000258", + "id": "00000000-0000-0000-0000-000000000251", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000257", + "id": "00000000-0000-0000-0000-000000000250", }, "id": { - "id": "00000000-0000-0000-0000-000000000254", + "id": "00000000-0000-0000-0000-000000000247", }, "messageChannelMessageAssociation": { - "id": "00000000-0000-0000-0000-000000000262", + "id": "00000000-0000-0000-0000-000000000255", }, "messageFolderId": { - "id": "00000000-0000-0000-0000-000000000263", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000260", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000261", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000256", }, + "position": { + "id": "00000000-0000-0000-0000-000000000253", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000254", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000249", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000259", + "id": "00000000-0000-0000-0000-000000000252", }, }, - "id": "00000000-0000-0000-0000-000000000275", + "id": "00000000-0000-0000-0000-000000000268", "views": { "allMessageChannelMessageAssociationMessageFolders": { - "id": "00000000-0000-0000-0000-000000000267", + "id": "00000000-0000-0000-0000-000000000260", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000266", + "id": "00000000-0000-0000-0000-000000000259", }, "messageChannelMessageAssociation": { - "id": "00000000-0000-0000-0000-000000000264", + "id": "00000000-0000-0000-0000-000000000257", }, "messageFolderId": { - "id": "00000000-0000-0000-0000-000000000265", + "id": "00000000-0000-0000-0000-000000000258", }, }, "viewGroups": {}, }, "messageChannelMessageAssociationMessageFolderRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000274", + "id": "00000000-0000-0000-0000-000000000267", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000272", + "id": "00000000-0000-0000-0000-000000000265", }, "system": { - "id": "00000000-0000-0000-0000-000000000273", + "id": "00000000-0000-0000-0000-000000000266", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000270", + "id": "00000000-0000-0000-0000-000000000263", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000271", + "id": "00000000-0000-0000-0000-000000000264", }, "messageChannelMessageAssociation": { - "id": "00000000-0000-0000-0000-000000000268", + "id": "00000000-0000-0000-0000-000000000261", }, "messageFolderId": { - "id": "00000000-0000-0000-0000-000000000269", + "id": "00000000-0000-0000-0000-000000000262", }, }, "viewGroups": {}, @@ -1012,109 +991,109 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "messageParticipant": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000277", + "id": "00000000-0000-0000-0000-000000000270", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000286", - }, - "deletedAt": { "id": "00000000-0000-0000-0000-000000000279", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000272", + }, "displayName": { - "id": "00000000-0000-0000-0000-000000000283", - }, - "handle": { - "id": "00000000-0000-0000-0000-000000000282", - }, - "id": { "id": "00000000-0000-0000-0000-000000000276", }, + "handle": { + "id": "00000000-0000-0000-0000-000000000275", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000269", + }, "message": { - "id": "00000000-0000-0000-0000-000000000280", + "id": "00000000-0000-0000-0000-000000000273", }, "person": { - "id": "00000000-0000-0000-0000-000000000284", + "id": "00000000-0000-0000-0000-000000000277", }, "position": { - "id": "00000000-0000-0000-0000-000000000288", - }, - "role": { "id": "00000000-0000-0000-0000-000000000281", }, + "role": { + "id": "00000000-0000-0000-0000-000000000274", + }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000289", + "id": "00000000-0000-0000-0000-000000000282", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000278", + "id": "00000000-0000-0000-0000-000000000271", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000287", + "id": "00000000-0000-0000-0000-000000000280", }, "workspaceMember": { - "id": "00000000-0000-0000-0000-000000000285", + "id": "00000000-0000-0000-0000-000000000278", }, }, - "id": "00000000-0000-0000-0000-000000000308", + "id": "00000000-0000-0000-0000-000000000301", "views": { "allMessageParticipants": { - "id": "00000000-0000-0000-0000-000000000297", + "id": "00000000-0000-0000-0000-000000000290", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000296", + "id": "00000000-0000-0000-0000-000000000289", }, "displayName": { - "id": "00000000-0000-0000-0000-000000000293", + "id": "00000000-0000-0000-0000-000000000286", }, "handle": { - "id": "00000000-0000-0000-0000-000000000292", + "id": "00000000-0000-0000-0000-000000000285", }, "message": { - "id": "00000000-0000-0000-0000-000000000290", + "id": "00000000-0000-0000-0000-000000000283", }, "person": { - "id": "00000000-0000-0000-0000-000000000294", + "id": "00000000-0000-0000-0000-000000000287", }, "role": { - "id": "00000000-0000-0000-0000-000000000291", + "id": "00000000-0000-0000-0000-000000000284", }, "workspaceMember": { - "id": "00000000-0000-0000-0000-000000000295", + "id": "00000000-0000-0000-0000-000000000288", }, }, "viewGroups": {}, }, "messageParticipantRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000307", + "id": "00000000-0000-0000-0000-000000000300", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000305", + "id": "00000000-0000-0000-0000-000000000298", }, "system": { - "id": "00000000-0000-0000-0000-000000000306", + "id": "00000000-0000-0000-0000-000000000299", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000303", + "id": "00000000-0000-0000-0000-000000000296", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000304", + "id": "00000000-0000-0000-0000-000000000297", }, "displayName": { - "id": "00000000-0000-0000-0000-000000000300", + "id": "00000000-0000-0000-0000-000000000293", }, "message": { - "id": "00000000-0000-0000-0000-000000000298", + "id": "00000000-0000-0000-0000-000000000291", }, "person": { - "id": "00000000-0000-0000-0000-000000000301", + "id": "00000000-0000-0000-0000-000000000294", }, "role": { - "id": "00000000-0000-0000-0000-000000000299", + "id": "00000000-0000-0000-0000-000000000292", }, "workspaceMember": { - "id": "00000000-0000-0000-0000-000000000302", + "id": "00000000-0000-0000-0000-000000000295", }, }, "viewGroups": {}, @@ -1124,56 +1103,56 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "messageThread": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000310", + "id": "00000000-0000-0000-0000-000000000303", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000315", + "id": "00000000-0000-0000-0000-000000000308", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000312", + "id": "00000000-0000-0000-0000-000000000305", }, "id": { - "id": "00000000-0000-0000-0000-000000000309", + "id": "00000000-0000-0000-0000-000000000302", }, "messageChannelMessageAssociations": { - "id": "00000000-0000-0000-0000-000000000314", + "id": "00000000-0000-0000-0000-000000000307", }, "messages": { - "id": "00000000-0000-0000-0000-000000000313", + "id": "00000000-0000-0000-0000-000000000306", }, "position": { - "id": "00000000-0000-0000-0000-000000000317", + "id": "00000000-0000-0000-0000-000000000310", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000318", - }, - "subject": { - "id": "00000000-0000-0000-0000-000000000319", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000311", }, + "subject": { + "id": "00000000-0000-0000-0000-000000000312", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000304", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000316", + "id": "00000000-0000-0000-0000-000000000309", }, }, - "id": "00000000-0000-0000-0000-000000000325", + "id": "00000000-0000-0000-0000-000000000318", "views": { "allMessageThreads": { - "id": "00000000-0000-0000-0000-000000000324", + "id": "00000000-0000-0000-0000-000000000317", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000323", + "id": "00000000-0000-0000-0000-000000000316", }, "messages": { - "id": "00000000-0000-0000-0000-000000000321", + "id": "00000000-0000-0000-0000-000000000314", }, "subject": { - "id": "00000000-0000-0000-0000-000000000320", + "id": "00000000-0000-0000-0000-000000000313", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000322", + "id": "00000000-0000-0000-0000-000000000315", }, }, "viewGroups": {}, @@ -1183,103 +1162,103 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "note": { "fields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000360", - }, - "bodyV2": { - "id": "00000000-0000-0000-0000-000000000356", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000351", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000357", - }, - "deletedAt": { "id": "00000000-0000-0000-0000-000000000353", }, - "id": { + "bodyV2": { + "id": "00000000-0000-0000-0000-000000000349", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000344", + }, + "createdBy": { "id": "00000000-0000-0000-0000-000000000350", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000346", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000343", + }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000359", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000354", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000362", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000361", - }, - "title": { - "id": "00000000-0000-0000-0000-000000000355", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000352", }, + "position": { + "id": "00000000-0000-0000-0000-000000000347", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000355", + }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000354", + }, + "title": { + "id": "00000000-0000-0000-0000-000000000348", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000345", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000358", + "id": "00000000-0000-0000-0000-000000000351", }, }, - "id": "00000000-0000-0000-0000-000000000380", + "id": "00000000-0000-0000-0000-000000000373", "views": { "allNotes": { - "id": "00000000-0000-0000-0000-000000000368", + "id": "00000000-0000-0000-0000-000000000361", "viewFieldGroups": {}, "viewFields": { "bodyV2": { - "id": "00000000-0000-0000-0000-000000000365", + "id": "00000000-0000-0000-0000-000000000358", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000367", + "id": "00000000-0000-0000-0000-000000000360", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000366", + "id": "00000000-0000-0000-0000-000000000359", }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000364", + "id": "00000000-0000-0000-0000-000000000357", }, "title": { - "id": "00000000-0000-0000-0000-000000000363", + "id": "00000000-0000-0000-0000-000000000356", }, }, "viewGroups": {}, }, "noteRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000379", + "id": "00000000-0000-0000-0000-000000000372", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000377", + "id": "00000000-0000-0000-0000-000000000370", }, "system": { - "id": "00000000-0000-0000-0000-000000000378", + "id": "00000000-0000-0000-0000-000000000371", }, }, "viewFields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000375", + "id": "00000000-0000-0000-0000-000000000368", }, "bodyV2": { - "id": "00000000-0000-0000-0000-000000000372", + "id": "00000000-0000-0000-0000-000000000365", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000369", + "id": "00000000-0000-0000-0000-000000000362", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000370", + "id": "00000000-0000-0000-0000-000000000363", }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000371", + "id": "00000000-0000-0000-0000-000000000364", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000376", + "id": "00000000-0000-0000-0000-000000000369", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000373", + "id": "00000000-0000-0000-0000-000000000366", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000374", + "id": "00000000-0000-0000-0000-000000000367", }, }, "viewGroups": {}, @@ -1289,62 +1268,62 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "noteTarget": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000382", + "id": "00000000-0000-0000-0000-000000000375", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000389", + "id": "00000000-0000-0000-0000-000000000382", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000384", + "id": "00000000-0000-0000-0000-000000000377", }, "id": { - "id": "00000000-0000-0000-0000-000000000381", + "id": "00000000-0000-0000-0000-000000000374", }, "note": { - "id": "00000000-0000-0000-0000-000000000385", + "id": "00000000-0000-0000-0000-000000000378", }, "position": { - "id": "00000000-0000-0000-0000-000000000391", + "id": "00000000-0000-0000-0000-000000000384", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000392", + "id": "00000000-0000-0000-0000-000000000385", }, "targetCompany": { - "id": "00000000-0000-0000-0000-000000000387", + "id": "00000000-0000-0000-0000-000000000380", }, "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000388", + "id": "00000000-0000-0000-0000-000000000381", }, "targetPerson": { - "id": "00000000-0000-0000-0000-000000000386", + "id": "00000000-0000-0000-0000-000000000379", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000383", + "id": "00000000-0000-0000-0000-000000000376", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000390", + "id": "00000000-0000-0000-0000-000000000383", }, }, - "id": "00000000-0000-0000-0000-000000000399", + "id": "00000000-0000-0000-0000-000000000392", "views": { "allNoteTargets": { - "id": "00000000-0000-0000-0000-000000000398", + "id": "00000000-0000-0000-0000-000000000391", "viewFieldGroups": {}, "viewFields": { "id": { - "id": "00000000-0000-0000-0000-000000000393", + "id": "00000000-0000-0000-0000-000000000386", }, "note": { - "id": "00000000-0000-0000-0000-000000000394", + "id": "00000000-0000-0000-0000-000000000387", }, "targetCompany": { - "id": "00000000-0000-0000-0000-000000000396", + "id": "00000000-0000-0000-0000-000000000389", }, "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000397", + "id": "00000000-0000-0000-0000-000000000390", }, "targetPerson": { - "id": "00000000-0000-0000-0000-000000000395", + "id": "00000000-0000-0000-0000-000000000388", }, }, "viewGroups": {}, @@ -1354,67 +1333,92 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "opportunity": { "fields": { "amount": { - "id": "00000000-0000-0000-0000-000000000405", + "id": "00000000-0000-0000-0000-000000000398", }, "attachments": { - "id": "00000000-0000-0000-0000-000000000416", - }, - "closeDate": { - "id": "00000000-0000-0000-0000-000000000406", - }, - "company": { - "id": "00000000-0000-0000-0000-000000000412", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000401", - }, - "createdBy": { "id": "00000000-0000-0000-0000-000000000409", }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000403", + "closeDate": { + "id": "00000000-0000-0000-0000-000000000399", }, - "id": { - "id": "00000000-0000-0000-0000-000000000400", + "company": { + "id": "00000000-0000-0000-0000-000000000405", }, - "name": { - "id": "00000000-0000-0000-0000-000000000404", + "createdAt": { + "id": "00000000-0000-0000-0000-000000000394", }, - "noteTargets": { - "id": "00000000-0000-0000-0000-000000000415", - }, - "owner": { - "id": "00000000-0000-0000-0000-000000000413", - }, - "pointOfContact": { - "id": "00000000-0000-0000-0000-000000000411", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000408", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000418", - }, - "stage": { - "id": "00000000-0000-0000-0000-000000000407", - }, - "taskTargets": { - "id": "00000000-0000-0000-0000-000000000414", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000417", - }, - "updatedAt": { + "createdBy": { "id": "00000000-0000-0000-0000-000000000402", }, - "updatedBy": { + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000396", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000393", + }, + "name": { + "id": "00000000-0000-0000-0000-000000000397", + }, + "noteTargets": { + "id": "00000000-0000-0000-0000-000000000408", + }, + "owner": { + "id": "00000000-0000-0000-0000-000000000406", + }, + "pointOfContact": { + "id": "00000000-0000-0000-0000-000000000404", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000401", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000411", + }, + "stage": { + "id": "00000000-0000-0000-0000-000000000400", + }, + "taskTargets": { + "id": "00000000-0000-0000-0000-000000000407", + }, + "timelineActivities": { "id": "00000000-0000-0000-0000-000000000410", }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000395", + }, + "updatedBy": { + "id": "00000000-0000-0000-0000-000000000403", + }, }, - "id": "00000000-0000-0000-0000-000000000456", + "id": "00000000-0000-0000-0000-000000000449", "views": { "allOpportunities": { - "id": "00000000-0000-0000-0000-000000000425", + "id": "00000000-0000-0000-0000-000000000418", + "viewFieldGroups": {}, + "viewFields": { + "amount": { + "id": "00000000-0000-0000-0000-000000000413", + }, + "closeDate": { + "id": "00000000-0000-0000-0000-000000000415", + }, + "company": { + "id": "00000000-0000-0000-0000-000000000416", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000414", + }, + "name": { + "id": "00000000-0000-0000-0000-000000000412", + }, + "pointOfContact": { + "id": "00000000-0000-0000-0000-000000000417", + }, + }, + "viewGroups": {}, + }, + "byStage": { + "id": "00000000-0000-0000-0000-000000000430", "viewFieldGroups": {}, "viewFields": { "amount": { @@ -1436,104 +1440,79 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "id": "00000000-0000-0000-0000-000000000424", }, }, - "viewGroups": {}, - }, - "byStage": { - "id": "00000000-0000-0000-0000-000000000437", - "viewFieldGroups": {}, - "viewFields": { - "amount": { - "id": "00000000-0000-0000-0000-000000000427", - }, - "closeDate": { - "id": "00000000-0000-0000-0000-000000000429", - }, - "company": { - "id": "00000000-0000-0000-0000-000000000430", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000428", - }, - "name": { - "id": "00000000-0000-0000-0000-000000000426", - }, - "pointOfContact": { - "id": "00000000-0000-0000-0000-000000000431", - }, - }, "viewGroups": { "customer": { - "id": "00000000-0000-0000-0000-000000000436", + "id": "00000000-0000-0000-0000-000000000429", }, "meeting": { - "id": "00000000-0000-0000-0000-000000000434", + "id": "00000000-0000-0000-0000-000000000427", }, "new": { - "id": "00000000-0000-0000-0000-000000000432", + "id": "00000000-0000-0000-0000-000000000425", }, "proposal": { - "id": "00000000-0000-0000-0000-000000000435", + "id": "00000000-0000-0000-0000-000000000428", }, "screening": { - "id": "00000000-0000-0000-0000-000000000433", + "id": "00000000-0000-0000-0000-000000000426", }, }, }, "opportunityRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000455", + "id": "00000000-0000-0000-0000-000000000448", "viewFieldGroups": { "deal": { - "id": "00000000-0000-0000-0000-000000000452", + "id": "00000000-0000-0000-0000-000000000445", }, "relations": { - "id": "00000000-0000-0000-0000-000000000453", + "id": "00000000-0000-0000-0000-000000000446", }, "system": { - "id": "00000000-0000-0000-0000-000000000454", + "id": "00000000-0000-0000-0000-000000000447", }, }, "viewFields": { "amount": { - "id": "00000000-0000-0000-0000-000000000438", + "id": "00000000-0000-0000-0000-000000000431", }, "attachments": { - "id": "00000000-0000-0000-0000-000000000450", - }, - "closeDate": { - "id": "00000000-0000-0000-0000-000000000439", - }, - "company": { - "id": "00000000-0000-0000-0000-000000000441", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000444", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000445", - }, - "noteTargets": { - "id": "00000000-0000-0000-0000-000000000449", - }, - "owner": { "id": "00000000-0000-0000-0000-000000000443", }, - "pointOfContact": { + "closeDate": { + "id": "00000000-0000-0000-0000-000000000432", + }, + "company": { + "id": "00000000-0000-0000-0000-000000000434", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000437", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000438", + }, + "noteTargets": { "id": "00000000-0000-0000-0000-000000000442", }, + "owner": { + "id": "00000000-0000-0000-0000-000000000436", + }, + "pointOfContact": { + "id": "00000000-0000-0000-0000-000000000435", + }, "stage": { - "id": "00000000-0000-0000-0000-000000000440", + "id": "00000000-0000-0000-0000-000000000433", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000448", + "id": "00000000-0000-0000-0000-000000000441", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000451", + "id": "00000000-0000-0000-0000-000000000444", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000446", + "id": "00000000-0000-0000-0000-000000000439", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000447", + "id": "00000000-0000-0000-0000-000000000440", }, }, "viewGroups": {}, @@ -1543,196 +1522,178 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "person": { "fields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000477", - }, - "avatarFile": { - "id": "00000000-0000-0000-0000-000000000469", - }, - "avatarUrl": { "id": "00000000-0000-0000-0000-000000000468", }, - "calendarEventParticipants": { - "id": "00000000-0000-0000-0000-000000000479", - }, - "city": { - "id": "00000000-0000-0000-0000-000000000467", - }, - "company": { - "id": "00000000-0000-0000-0000-000000000473", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000458", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000471", - }, - "deletedAt": { + "avatarFile": { "id": "00000000-0000-0000-0000-000000000460", }, - "emails": { - "id": "00000000-0000-0000-0000-000000000462", - }, - "id": { - "id": "00000000-0000-0000-0000-000000000457", - }, - "jobTitle": { - "id": "00000000-0000-0000-0000-000000000465", - }, - "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000463", - }, - "messageParticipants": { - "id": "00000000-0000-0000-0000-000000000478", - }, - "name": { - "id": "00000000-0000-0000-0000-000000000461", - }, - "noteTargets": { - "id": "00000000-0000-0000-0000-000000000476", - }, - "phones": { - "id": "00000000-0000-0000-0000-000000000466", - }, - "pointOfContactForOpportunities": { - "id": "00000000-0000-0000-0000-000000000474", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000470", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000481", - }, - "taskTargets": { - "id": "00000000-0000-0000-0000-000000000475", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000480", - }, - "updatedAt": { + "avatarUrl": { "id": "00000000-0000-0000-0000-000000000459", }, - "updatedBy": { - "id": "00000000-0000-0000-0000-000000000472", + "calendarEventParticipants": { + "id": "00000000-0000-0000-0000-000000000470", }, - "xLink": { + "company": { "id": "00000000-0000-0000-0000-000000000464", }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000451", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000462", + }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000453", + }, + "emails": { + "id": "00000000-0000-0000-0000-000000000455", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000450", + }, + "jobTitle": { + "id": "00000000-0000-0000-0000-000000000457", + }, + "linkedinLink": { + "id": "00000000-0000-0000-0000-000000000456", + }, + "messageParticipants": { + "id": "00000000-0000-0000-0000-000000000469", + }, + "name": { + "id": "00000000-0000-0000-0000-000000000454", + }, + "noteTargets": { + "id": "00000000-0000-0000-0000-000000000467", + }, + "phones": { + "id": "00000000-0000-0000-0000-000000000458", + }, + "pointOfContactForOpportunities": { + "id": "00000000-0000-0000-0000-000000000465", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000461", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000472", + }, + "taskTargets": { + "id": "00000000-0000-0000-0000-000000000466", + }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000471", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000452", + }, + "updatedBy": { + "id": "00000000-0000-0000-0000-000000000463", + }, }, - "id": "00000000-0000-0000-0000-000000000518", + "id": "00000000-0000-0000-0000-000000000505", "views": { "allPeople": { - "id": "00000000-0000-0000-0000-000000000492", + "id": "00000000-0000-0000-0000-000000000481", "viewFieldGroups": {}, "viewFields": { - "city": { - "id": "00000000-0000-0000-0000-000000000488", - }, "company": { - "id": "00000000-0000-0000-0000-000000000485", + "id": "00000000-0000-0000-0000-000000000476", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000487", + "id": "00000000-0000-0000-0000-000000000478", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000484", + "id": "00000000-0000-0000-0000-000000000475", }, "emails": { - "id": "00000000-0000-0000-0000-000000000483", + "id": "00000000-0000-0000-0000-000000000474", }, "jobTitle": { - "id": "00000000-0000-0000-0000-000000000489", + "id": "00000000-0000-0000-0000-000000000479", }, "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000490", + "id": "00000000-0000-0000-0000-000000000480", }, "name": { - "id": "00000000-0000-0000-0000-000000000482", + "id": "00000000-0000-0000-0000-000000000473", }, "phones": { - "id": "00000000-0000-0000-0000-000000000486", - }, - "xLink": { - "id": "00000000-0000-0000-0000-000000000491", + "id": "00000000-0000-0000-0000-000000000477", }, }, "viewGroups": {}, }, "personRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000517", + "id": "00000000-0000-0000-0000-000000000504", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000513", + "id": "00000000-0000-0000-0000-000000000500", }, "social": { - "id": "00000000-0000-0000-0000-000000000515", + "id": "00000000-0000-0000-0000-000000000502", }, "system": { - "id": "00000000-0000-0000-0000-000000000516", + "id": "00000000-0000-0000-0000-000000000503", }, "work": { - "id": "00000000-0000-0000-0000-000000000514", + "id": "00000000-0000-0000-0000-000000000501", }, }, "viewFields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000509", - }, - "avatarFile": { - "id": "00000000-0000-0000-0000-000000000505", - }, - "avatarUrl": { - "id": "00000000-0000-0000-0000-000000000500", - }, - "calendarEventParticipants": { - "id": "00000000-0000-0000-0000-000000000511", - }, - "city": { - "id": "00000000-0000-0000-0000-000000000499", - }, - "company": { - "id": "00000000-0000-0000-0000-000000000495", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000501", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000502", - }, - "emails": { - "id": "00000000-0000-0000-0000-000000000493", - }, - "jobTitle": { "id": "00000000-0000-0000-0000-000000000496", }, + "avatarFile": { + "id": "00000000-0000-0000-0000-000000000492", + }, + "avatarUrl": { + "id": "00000000-0000-0000-0000-000000000487", + }, + "calendarEventParticipants": { + "id": "00000000-0000-0000-0000-000000000498", + }, + "company": { + "id": "00000000-0000-0000-0000-000000000484", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000488", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000489", + }, + "emails": { + "id": "00000000-0000-0000-0000-000000000482", + }, + "jobTitle": { + "id": "00000000-0000-0000-0000-000000000485", + }, "linkedinLink": { - "id": "00000000-0000-0000-0000-000000000497", + "id": "00000000-0000-0000-0000-000000000486", }, "messageParticipants": { - "id": "00000000-0000-0000-0000-000000000510", + "id": "00000000-0000-0000-0000-000000000497", }, "noteTargets": { - "id": "00000000-0000-0000-0000-000000000508", + "id": "00000000-0000-0000-0000-000000000495", }, "phones": { - "id": "00000000-0000-0000-0000-000000000494", + "id": "00000000-0000-0000-0000-000000000483", }, "pointOfContactForOpportunities": { - "id": "00000000-0000-0000-0000-000000000506", + "id": "00000000-0000-0000-0000-000000000493", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000507", + "id": "00000000-0000-0000-0000-000000000494", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000512", + "id": "00000000-0000-0000-0000-000000000499", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000503", + "id": "00000000-0000-0000-0000-000000000490", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000504", - }, - "xLink": { - "id": "00000000-0000-0000-0000-000000000498", + "id": "00000000-0000-0000-0000-000000000491", }, }, "viewGroups": {}, @@ -1742,203 +1703,203 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "task": { "fields": { "assignee": { - "id": "00000000-0000-0000-0000-000000000532", - }, - "attachments": { - "id": "00000000-0000-0000-0000-000000000531", - }, - "bodyV2": { - "id": "00000000-0000-0000-0000-000000000525", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000520", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000528", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000522", - }, - "dueAt": { - "id": "00000000-0000-0000-0000-000000000526", - }, - "id": { "id": "00000000-0000-0000-0000-000000000519", }, + "attachments": { + "id": "00000000-0000-0000-0000-000000000518", + }, + "bodyV2": { + "id": "00000000-0000-0000-0000-000000000512", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000507", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000515", + }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000509", + }, + "dueAt": { + "id": "00000000-0000-0000-0000-000000000513", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000506", + }, "position": { - "id": "00000000-0000-0000-0000-000000000523", + "id": "00000000-0000-0000-0000-000000000510", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000534", - }, - "status": { - "id": "00000000-0000-0000-0000-000000000527", - }, - "taskTargets": { - "id": "00000000-0000-0000-0000-000000000530", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000533", - }, - "title": { - "id": "00000000-0000-0000-0000-000000000524", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000521", }, + "status": { + "id": "00000000-0000-0000-0000-000000000514", + }, + "taskTargets": { + "id": "00000000-0000-0000-0000-000000000517", + }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000520", + }, + "title": { + "id": "00000000-0000-0000-0000-000000000511", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000508", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000529", + "id": "00000000-0000-0000-0000-000000000516", }, }, - "id": "00000000-0000-0000-0000-000000000579", + "id": "00000000-0000-0000-0000-000000000566", "views": { "allTasks": { - "id": "00000000-0000-0000-0000-000000000543", + "id": "00000000-0000-0000-0000-000000000530", "viewFieldGroups": {}, "viewFields": { "assignee": { - "id": "00000000-0000-0000-0000-000000000540", + "id": "00000000-0000-0000-0000-000000000527", }, "bodyV2": { - "id": "00000000-0000-0000-0000-000000000541", + "id": "00000000-0000-0000-0000-000000000528", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000542", + "id": "00000000-0000-0000-0000-000000000529", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000538", + "id": "00000000-0000-0000-0000-000000000525", }, "dueAt": { - "id": "00000000-0000-0000-0000-000000000539", + "id": "00000000-0000-0000-0000-000000000526", }, "status": { - "id": "00000000-0000-0000-0000-000000000536", + "id": "00000000-0000-0000-0000-000000000523", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000537", + "id": "00000000-0000-0000-0000-000000000524", }, "title": { - "id": "00000000-0000-0000-0000-000000000535", + "id": "00000000-0000-0000-0000-000000000522", }, }, "viewGroups": {}, }, "assignedToMe": { - "id": "00000000-0000-0000-0000-000000000555", + "id": "00000000-0000-0000-0000-000000000542", "viewFieldGroups": {}, "viewFields": { "assignee": { - "id": "00000000-0000-0000-0000-000000000548", + "id": "00000000-0000-0000-0000-000000000535", }, "bodyV2": { - "id": "00000000-0000-0000-0000-000000000549", + "id": "00000000-0000-0000-0000-000000000536", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000550", + "id": "00000000-0000-0000-0000-000000000537", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000546", + "id": "00000000-0000-0000-0000-000000000533", }, "dueAt": { - "id": "00000000-0000-0000-0000-000000000547", + "id": "00000000-0000-0000-0000-000000000534", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000545", + "id": "00000000-0000-0000-0000-000000000532", }, "title": { - "id": "00000000-0000-0000-0000-000000000544", + "id": "00000000-0000-0000-0000-000000000531", }, }, "viewGroups": { "done": { - "id": "00000000-0000-0000-0000-000000000553", + "id": "00000000-0000-0000-0000-000000000540", }, "empty": { - "id": "00000000-0000-0000-0000-000000000554", + "id": "00000000-0000-0000-0000-000000000541", }, "inProgress": { - "id": "00000000-0000-0000-0000-000000000552", + "id": "00000000-0000-0000-0000-000000000539", }, "todo": { - "id": "00000000-0000-0000-0000-000000000551", + "id": "00000000-0000-0000-0000-000000000538", }, }, }, "byStatus": { - "id": "00000000-0000-0000-0000-000000000564", + "id": "00000000-0000-0000-0000-000000000551", "viewFieldGroups": {}, "viewFields": { "assignee": { - "id": "00000000-0000-0000-0000-000000000559", + "id": "00000000-0000-0000-0000-000000000546", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000560", + "id": "00000000-0000-0000-0000-000000000547", }, "dueAt": { - "id": "00000000-0000-0000-0000-000000000558", + "id": "00000000-0000-0000-0000-000000000545", }, "status": { - "id": "00000000-0000-0000-0000-000000000557", + "id": "00000000-0000-0000-0000-000000000544", }, "title": { - "id": "00000000-0000-0000-0000-000000000556", + "id": "00000000-0000-0000-0000-000000000543", }, }, "viewGroups": { "done": { - "id": "00000000-0000-0000-0000-000000000563", + "id": "00000000-0000-0000-0000-000000000550", }, "inProgress": { - "id": "00000000-0000-0000-0000-000000000562", + "id": "00000000-0000-0000-0000-000000000549", }, "todo": { - "id": "00000000-0000-0000-0000-000000000561", + "id": "00000000-0000-0000-0000-000000000548", }, }, }, "taskRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000578", + "id": "00000000-0000-0000-0000-000000000565", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000576", + "id": "00000000-0000-0000-0000-000000000563", }, "system": { - "id": "00000000-0000-0000-0000-000000000577", + "id": "00000000-0000-0000-0000-000000000564", }, }, "viewFields": { "assignee": { - "id": "00000000-0000-0000-0000-000000000567", + "id": "00000000-0000-0000-0000-000000000554", }, "attachments": { - "id": "00000000-0000-0000-0000-000000000574", + "id": "00000000-0000-0000-0000-000000000561", }, "bodyV2": { - "id": "00000000-0000-0000-0000-000000000571", + "id": "00000000-0000-0000-0000-000000000558", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000568", + "id": "00000000-0000-0000-0000-000000000555", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000569", + "id": "00000000-0000-0000-0000-000000000556", }, "dueAt": { - "id": "00000000-0000-0000-0000-000000000565", + "id": "00000000-0000-0000-0000-000000000552", }, "status": { - "id": "00000000-0000-0000-0000-000000000566", + "id": "00000000-0000-0000-0000-000000000553", }, "taskTargets": { - "id": "00000000-0000-0000-0000-000000000570", + "id": "00000000-0000-0000-0000-000000000557", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000575", + "id": "00000000-0000-0000-0000-000000000562", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000572", + "id": "00000000-0000-0000-0000-000000000559", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000573", + "id": "00000000-0000-0000-0000-000000000560", }, }, "viewGroups": {}, @@ -1948,62 +1909,62 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "taskTarget": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000581", + "id": "00000000-0000-0000-0000-000000000568", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000588", + "id": "00000000-0000-0000-0000-000000000575", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000583", + "id": "00000000-0000-0000-0000-000000000570", }, "id": { - "id": "00000000-0000-0000-0000-000000000580", + "id": "00000000-0000-0000-0000-000000000567", }, "position": { - "id": "00000000-0000-0000-0000-000000000590", + "id": "00000000-0000-0000-0000-000000000577", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000591", + "id": "00000000-0000-0000-0000-000000000578", }, "targetCompany": { - "id": "00000000-0000-0000-0000-000000000586", + "id": "00000000-0000-0000-0000-000000000573", }, "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000587", + "id": "00000000-0000-0000-0000-000000000574", }, "targetPerson": { - "id": "00000000-0000-0000-0000-000000000585", + "id": "00000000-0000-0000-0000-000000000572", }, "task": { - "id": "00000000-0000-0000-0000-000000000584", + "id": "00000000-0000-0000-0000-000000000571", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000582", + "id": "00000000-0000-0000-0000-000000000569", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000589", + "id": "00000000-0000-0000-0000-000000000576", }, }, - "id": "00000000-0000-0000-0000-000000000598", + "id": "00000000-0000-0000-0000-000000000585", "views": { "allTaskTargets": { - "id": "00000000-0000-0000-0000-000000000597", + "id": "00000000-0000-0000-0000-000000000584", "viewFieldGroups": {}, "viewFields": { "id": { - "id": "00000000-0000-0000-0000-000000000592", + "id": "00000000-0000-0000-0000-000000000579", }, "targetCompany": { - "id": "00000000-0000-0000-0000-000000000595", + "id": "00000000-0000-0000-0000-000000000582", }, "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000596", + "id": "00000000-0000-0000-0000-000000000583", }, "targetPerson": { - "id": "00000000-0000-0000-0000-000000000594", + "id": "00000000-0000-0000-0000-000000000581", }, "task": { - "id": "00000000-0000-0000-0000-000000000593", + "id": "00000000-0000-0000-0000-000000000580", }, }, "viewGroups": {}, @@ -2013,125 +1974,125 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "timelineActivity": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000600", + "id": "00000000-0000-0000-0000-000000000587", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000619", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000602", - }, - "happensAt": { - "id": "00000000-0000-0000-0000-000000000603", - }, - "id": { - "id": "00000000-0000-0000-0000-000000000599", - }, - "linkedObjectMetadataId": { - "id": "00000000-0000-0000-0000-000000000618", - }, - "linkedRecordCachedName": { - "id": "00000000-0000-0000-0000-000000000616", - }, - "linkedRecordId": { - "id": "00000000-0000-0000-0000-000000000617", - }, - "name": { - "id": "00000000-0000-0000-0000-000000000604", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000621", - }, - "properties": { - "id": "00000000-0000-0000-0000-000000000605", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000622", - }, - "targetCompany": { - "id": "00000000-0000-0000-0000-000000000608", - }, - "targetDashboard": { - "id": "00000000-0000-0000-0000-000000000615", - }, - "targetNote": { - "id": "00000000-0000-0000-0000-000000000611", - }, - "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000609", - }, - "targetPerson": { - "id": "00000000-0000-0000-0000-000000000607", - }, - "targetTask": { - "id": "00000000-0000-0000-0000-000000000610", - }, - "targetWorkflow": { - "id": "00000000-0000-0000-0000-000000000612", - }, - "targetWorkflowRun": { - "id": "00000000-0000-0000-0000-000000000614", - }, - "targetWorkflowVersion": { - "id": "00000000-0000-0000-0000-000000000613", - }, - "updatedAt": { - "id": "00000000-0000-0000-0000-000000000601", - }, - "updatedBy": { - "id": "00000000-0000-0000-0000-000000000620", - }, - "workspaceMember": { "id": "00000000-0000-0000-0000-000000000606", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000589", + }, + "happensAt": { + "id": "00000000-0000-0000-0000-000000000590", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000586", + }, + "linkedObjectMetadataId": { + "id": "00000000-0000-0000-0000-000000000605", + }, + "linkedRecordCachedName": { + "id": "00000000-0000-0000-0000-000000000603", + }, + "linkedRecordId": { + "id": "00000000-0000-0000-0000-000000000604", + }, + "name": { + "id": "00000000-0000-0000-0000-000000000591", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000608", + }, + "properties": { + "id": "00000000-0000-0000-0000-000000000592", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000609", + }, + "targetCompany": { + "id": "00000000-0000-0000-0000-000000000595", + }, + "targetDashboard": { + "id": "00000000-0000-0000-0000-000000000602", + }, + "targetNote": { + "id": "00000000-0000-0000-0000-000000000598", + }, + "targetOpportunity": { + "id": "00000000-0000-0000-0000-000000000596", + }, + "targetPerson": { + "id": "00000000-0000-0000-0000-000000000594", + }, + "targetTask": { + "id": "00000000-0000-0000-0000-000000000597", + }, + "targetWorkflow": { + "id": "00000000-0000-0000-0000-000000000599", + }, + "targetWorkflowRun": { + "id": "00000000-0000-0000-0000-000000000601", + }, + "targetWorkflowVersion": { + "id": "00000000-0000-0000-0000-000000000600", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000588", + }, + "updatedBy": { + "id": "00000000-0000-0000-0000-000000000607", + }, + "workspaceMember": { + "id": "00000000-0000-0000-0000-000000000593", + }, }, - "id": "00000000-0000-0000-0000-000000000638", + "id": "00000000-0000-0000-0000-000000000625", "views": { "allTimelineActivities": { - "id": "00000000-0000-0000-0000-000000000637", + "id": "00000000-0000-0000-0000-000000000624", "viewFieldGroups": {}, "viewFields": { "happensAt": { - "id": "00000000-0000-0000-0000-000000000624", + "id": "00000000-0000-0000-0000-000000000611", }, "linkedRecordCachedName": { - "id": "00000000-0000-0000-0000-000000000627", + "id": "00000000-0000-0000-0000-000000000614", }, "name": { - "id": "00000000-0000-0000-0000-000000000623", + "id": "00000000-0000-0000-0000-000000000610", }, "properties": { - "id": "00000000-0000-0000-0000-000000000625", + "id": "00000000-0000-0000-0000-000000000612", }, "targetCompany": { - "id": "00000000-0000-0000-0000-000000000629", + "id": "00000000-0000-0000-0000-000000000616", }, "targetDashboard": { - "id": "00000000-0000-0000-0000-000000000636", + "id": "00000000-0000-0000-0000-000000000623", }, "targetNote": { - "id": "00000000-0000-0000-0000-000000000632", + "id": "00000000-0000-0000-0000-000000000619", }, "targetOpportunity": { - "id": "00000000-0000-0000-0000-000000000630", + "id": "00000000-0000-0000-0000-000000000617", }, "targetPerson": { - "id": "00000000-0000-0000-0000-000000000628", + "id": "00000000-0000-0000-0000-000000000615", }, "targetTask": { - "id": "00000000-0000-0000-0000-000000000631", + "id": "00000000-0000-0000-0000-000000000618", }, "targetWorkflow": { - "id": "00000000-0000-0000-0000-000000000633", + "id": "00000000-0000-0000-0000-000000000620", }, "targetWorkflowRun": { - "id": "00000000-0000-0000-0000-000000000635", + "id": "00000000-0000-0000-0000-000000000622", }, "targetWorkflowVersion": { - "id": "00000000-0000-0000-0000-000000000634", + "id": "00000000-0000-0000-0000-000000000621", }, "workspaceMember": { - "id": "00000000-0000-0000-0000-000000000626", + "id": "00000000-0000-0000-0000-000000000613", }, }, "viewGroups": {}, @@ -2141,77 +2102,77 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "workflow": { "fields": { "attachments": { - "id": "00000000-0000-0000-0000-000000000651", + "id": "00000000-0000-0000-0000-000000000638", }, "automatedTriggers": { - "id": "00000000-0000-0000-0000-000000000649", + "id": "00000000-0000-0000-0000-000000000636", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000640", + "id": "00000000-0000-0000-0000-000000000627", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000652", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000642", - }, - "id": { "id": "00000000-0000-0000-0000-000000000639", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000629", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000626", + }, "lastPublishedVersionId": { - "id": "00000000-0000-0000-0000-000000000644", + "id": "00000000-0000-0000-0000-000000000631", }, "name": { - "id": "00000000-0000-0000-0000-000000000643", + "id": "00000000-0000-0000-0000-000000000630", }, "position": { - "id": "00000000-0000-0000-0000-000000000646", + "id": "00000000-0000-0000-0000-000000000633", }, "runs": { - "id": "00000000-0000-0000-0000-000000000648", + "id": "00000000-0000-0000-0000-000000000635", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000654", - }, - "statuses": { - "id": "00000000-0000-0000-0000-000000000645", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000650", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000641", }, + "statuses": { + "id": "00000000-0000-0000-0000-000000000632", + }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000637", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000628", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000653", + "id": "00000000-0000-0000-0000-000000000640", }, "versions": { - "id": "00000000-0000-0000-0000-000000000647", + "id": "00000000-0000-0000-0000-000000000634", }, }, - "id": "00000000-0000-0000-0000-000000000662", + "id": "00000000-0000-0000-0000-000000000649", "views": { "allWorkflows": { - "id": "00000000-0000-0000-0000-000000000661", + "id": "00000000-0000-0000-0000-000000000648", "viewFieldGroups": {}, "viewFields": { "createdBy": { - "id": "00000000-0000-0000-0000-000000000658", + "id": "00000000-0000-0000-0000-000000000645", }, "name": { - "id": "00000000-0000-0000-0000-000000000655", + "id": "00000000-0000-0000-0000-000000000642", }, "runs": { - "id": "00000000-0000-0000-0000-000000000660", + "id": "00000000-0000-0000-0000-000000000647", }, "statuses": { - "id": "00000000-0000-0000-0000-000000000656", + "id": "00000000-0000-0000-0000-000000000643", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000657", + "id": "00000000-0000-0000-0000-000000000644", }, "versions": { - "id": "00000000-0000-0000-0000-000000000659", + "id": "00000000-0000-0000-0000-000000000646", }, }, "viewGroups": {}, @@ -2221,79 +2182,79 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "workflowAutomatedTrigger": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000664", + "id": "00000000-0000-0000-0000-000000000651", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000670", + "id": "00000000-0000-0000-0000-000000000657", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000666", + "id": "00000000-0000-0000-0000-000000000653", }, "id": { - "id": "00000000-0000-0000-0000-000000000663", + "id": "00000000-0000-0000-0000-000000000650", }, "position": { - "id": "00000000-0000-0000-0000-000000000672", + "id": "00000000-0000-0000-0000-000000000659", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000673", + "id": "00000000-0000-0000-0000-000000000660", }, "settings": { - "id": "00000000-0000-0000-0000-000000000668", + "id": "00000000-0000-0000-0000-000000000655", }, "type": { - "id": "00000000-0000-0000-0000-000000000667", + "id": "00000000-0000-0000-0000-000000000654", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000665", + "id": "00000000-0000-0000-0000-000000000652", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000671", + "id": "00000000-0000-0000-0000-000000000658", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000669", + "id": "00000000-0000-0000-0000-000000000656", }, }, - "id": "00000000-0000-0000-0000-000000000685", + "id": "00000000-0000-0000-0000-000000000672", "views": { "allWorkflowAutomatedTriggers": { - "id": "00000000-0000-0000-0000-000000000677", + "id": "00000000-0000-0000-0000-000000000664", "viewFieldGroups": {}, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000676", + "id": "00000000-0000-0000-0000-000000000663", }, "type": { - "id": "00000000-0000-0000-0000-000000000674", + "id": "00000000-0000-0000-0000-000000000661", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000675", + "id": "00000000-0000-0000-0000-000000000662", }, }, "viewGroups": {}, }, "workflowAutomatedTriggerRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000684", + "id": "00000000-0000-0000-0000-000000000671", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000682", + "id": "00000000-0000-0000-0000-000000000669", }, "system": { - "id": "00000000-0000-0000-0000-000000000683", + "id": "00000000-0000-0000-0000-000000000670", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000680", + "id": "00000000-0000-0000-0000-000000000667", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000681", + "id": "00000000-0000-0000-0000-000000000668", }, "type": { - "id": "00000000-0000-0000-0000-000000000678", + "id": "00000000-0000-0000-0000-000000000665", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000679", + "id": "00000000-0000-0000-0000-000000000666", }, }, "viewGroups": {}, @@ -2303,133 +2264,133 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "workflowRun": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000687", + "id": "00000000-0000-0000-0000-000000000674", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000698", + "id": "00000000-0000-0000-0000-000000000685", }, "deletedAt": { - "id": "00000000-0000-0000-0000-000000000689", + "id": "00000000-0000-0000-0000-000000000676", }, "endedAt": { - "id": "00000000-0000-0000-0000-000000000695", + "id": "00000000-0000-0000-0000-000000000682", }, "enqueuedAt": { - "id": "00000000-0000-0000-0000-000000000693", + "id": "00000000-0000-0000-0000-000000000680", }, "id": { - "id": "00000000-0000-0000-0000-000000000686", + "id": "00000000-0000-0000-0000-000000000673", }, "name": { - "id": "00000000-0000-0000-0000-000000000690", + "id": "00000000-0000-0000-0000-000000000677", }, "position": { - "id": "00000000-0000-0000-0000-000000000697", + "id": "00000000-0000-0000-0000-000000000684", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000703", + "id": "00000000-0000-0000-0000-000000000690", }, "startedAt": { - "id": "00000000-0000-0000-0000-000000000694", + "id": "00000000-0000-0000-0000-000000000681", }, "state": { - "id": "00000000-0000-0000-0000-000000000700", + "id": "00000000-0000-0000-0000-000000000687", }, "status": { - "id": "00000000-0000-0000-0000-000000000696", + "id": "00000000-0000-0000-0000-000000000683", }, "stepLogs": { - "id": "00000000-0000-0000-0000-000000000701", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000702", - }, - "updatedAt": { "id": "00000000-0000-0000-0000-000000000688", }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000689", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000675", + }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000699", + "id": "00000000-0000-0000-0000-000000000686", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000692", + "id": "00000000-0000-0000-0000-000000000679", }, "workflowVersion": { - "id": "00000000-0000-0000-0000-000000000691", + "id": "00000000-0000-0000-0000-000000000678", }, }, - "id": "00000000-0000-0000-0000-000000000726", + "id": "00000000-0000-0000-0000-000000000713", "views": { "allWorkflowRuns": { - "id": "00000000-0000-0000-0000-000000000710", + "id": "00000000-0000-0000-0000-000000000697", "viewFieldGroups": {}, "viewFields": { "createdBy": { - "id": "00000000-0000-0000-0000-000000000708", + "id": "00000000-0000-0000-0000-000000000695", }, "name": { - "id": "00000000-0000-0000-0000-000000000704", + "id": "00000000-0000-0000-0000-000000000691", }, "startedAt": { - "id": "00000000-0000-0000-0000-000000000707", + "id": "00000000-0000-0000-0000-000000000694", }, "status": { - "id": "00000000-0000-0000-0000-000000000706", + "id": "00000000-0000-0000-0000-000000000693", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000705", + "id": "00000000-0000-0000-0000-000000000692", }, "workflowVersion": { - "id": "00000000-0000-0000-0000-000000000709", + "id": "00000000-0000-0000-0000-000000000696", }, }, "viewGroups": {}, }, "workflowRunRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000725", + "id": "00000000-0000-0000-0000-000000000712", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000723", + "id": "00000000-0000-0000-0000-000000000710", }, "system": { - "id": "00000000-0000-0000-0000-000000000724", + "id": "00000000-0000-0000-0000-000000000711", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000716", + "id": "00000000-0000-0000-0000-000000000703", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000717", + "id": "00000000-0000-0000-0000-000000000704", }, "endedAt": { - "id": "00000000-0000-0000-0000-000000000715", + "id": "00000000-0000-0000-0000-000000000702", }, "enqueuedAt": { - "id": "00000000-0000-0000-0000-000000000718", + "id": "00000000-0000-0000-0000-000000000705", }, "startedAt": { - "id": "00000000-0000-0000-0000-000000000714", + "id": "00000000-0000-0000-0000-000000000701", }, "state": { - "id": "00000000-0000-0000-0000-000000000719", + "id": "00000000-0000-0000-0000-000000000706", }, "status": { - "id": "00000000-0000-0000-0000-000000000711", + "id": "00000000-0000-0000-0000-000000000698", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000722", + "id": "00000000-0000-0000-0000-000000000709", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000720", + "id": "00000000-0000-0000-0000-000000000707", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000721", + "id": "00000000-0000-0000-0000-000000000708", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000712", + "id": "00000000-0000-0000-0000-000000000699", }, "workflowVersion": { - "id": "00000000-0000-0000-0000-000000000713", + "id": "00000000-0000-0000-0000-000000000700", }, }, "viewGroups": {}, @@ -2439,115 +2400,115 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "workflowVersion": { "fields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000728", + "id": "00000000-0000-0000-0000-000000000715", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000740", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000730", - }, - "id": { "id": "00000000-0000-0000-0000-000000000727", }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000717", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000714", + }, "name": { - "id": "00000000-0000-0000-0000-000000000731", + "id": "00000000-0000-0000-0000-000000000718", }, "position": { - "id": "00000000-0000-0000-0000-000000000735", + "id": "00000000-0000-0000-0000-000000000722", }, "runs": { - "id": "00000000-0000-0000-0000-000000000736", + "id": "00000000-0000-0000-0000-000000000723", }, "searchVector": { - "id": "00000000-0000-0000-0000-000000000739", + "id": "00000000-0000-0000-0000-000000000726", }, "status": { - "id": "00000000-0000-0000-0000-000000000734", + "id": "00000000-0000-0000-0000-000000000721", }, "steps": { - "id": "00000000-0000-0000-0000-000000000737", + "id": "00000000-0000-0000-0000-000000000724", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000738", + "id": "00000000-0000-0000-0000-000000000725", }, "trigger": { - "id": "00000000-0000-0000-0000-000000000733", + "id": "00000000-0000-0000-0000-000000000720", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000729", + "id": "00000000-0000-0000-0000-000000000716", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000741", + "id": "00000000-0000-0000-0000-000000000728", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000732", + "id": "00000000-0000-0000-0000-000000000719", }, }, - "id": "00000000-0000-0000-0000-000000000761", + "id": "00000000-0000-0000-0000-000000000748", "views": { "allWorkflowVersions": { - "id": "00000000-0000-0000-0000-000000000747", + "id": "00000000-0000-0000-0000-000000000734", "viewFieldGroups": {}, "viewFields": { "name": { - "id": "00000000-0000-0000-0000-000000000742", + "id": "00000000-0000-0000-0000-000000000729", }, "runs": { - "id": "00000000-0000-0000-0000-000000000746", + "id": "00000000-0000-0000-0000-000000000733", }, "status": { - "id": "00000000-0000-0000-0000-000000000744", + "id": "00000000-0000-0000-0000-000000000731", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000745", + "id": "00000000-0000-0000-0000-000000000732", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000743", + "id": "00000000-0000-0000-0000-000000000730", }, }, "viewGroups": {}, }, "workflowVersionRecordPageFields": { - "id": "00000000-0000-0000-0000-000000000760", + "id": "00000000-0000-0000-0000-000000000747", "viewFieldGroups": { "general": { - "id": "00000000-0000-0000-0000-000000000758", + "id": "00000000-0000-0000-0000-000000000745", }, "system": { - "id": "00000000-0000-0000-0000-000000000759", + "id": "00000000-0000-0000-0000-000000000746", }, }, "viewFields": { "createdAt": { - "id": "00000000-0000-0000-0000-000000000751", + "id": "00000000-0000-0000-0000-000000000738", }, "createdBy": { - "id": "00000000-0000-0000-0000-000000000753", + "id": "00000000-0000-0000-0000-000000000740", }, "runs": { - "id": "00000000-0000-0000-0000-000000000756", + "id": "00000000-0000-0000-0000-000000000743", }, "status": { - "id": "00000000-0000-0000-0000-000000000748", + "id": "00000000-0000-0000-0000-000000000735", }, "steps": { - "id": "00000000-0000-0000-0000-000000000752", + "id": "00000000-0000-0000-0000-000000000739", }, "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000757", + "id": "00000000-0000-0000-0000-000000000744", }, "trigger": { - "id": "00000000-0000-0000-0000-000000000750", + "id": "00000000-0000-0000-0000-000000000737", }, "updatedAt": { - "id": "00000000-0000-0000-0000-000000000754", + "id": "00000000-0000-0000-0000-000000000741", }, "updatedBy": { - "id": "00000000-0000-0000-0000-000000000755", + "id": "00000000-0000-0000-0000-000000000742", }, "workflow": { - "id": "00000000-0000-0000-0000-000000000749", + "id": "00000000-0000-0000-0000-000000000736", }, }, "viewGroups": {}, @@ -2557,122 +2518,122 @@ exports[`getStandardObjectMetadataRelatedEntityIds should return standard object "workspaceMember": { "fields": { "accountOwnerForCompanies": { - "id": "00000000-0000-0000-0000-000000000775", - }, - "assignedTasks": { - "id": "00000000-0000-0000-0000-000000000773", - }, - "avatarUrl": { - "id": "00000000-0000-0000-0000-000000000770", - }, - "blocklist": { - "id": "00000000-0000-0000-0000-000000000777", - }, - "calendarEventParticipants": { - "id": "00000000-0000-0000-0000-000000000778", - }, - "calendarStartDay": { - "id": "00000000-0000-0000-0000-000000000784", - }, - "colorScheme": { - "id": "00000000-0000-0000-0000-000000000768", - }, - "createdAt": { - "id": "00000000-0000-0000-0000-000000000763", - }, - "createdBy": { - "id": "00000000-0000-0000-0000-000000000786", - }, - "dateFormat": { - "id": "00000000-0000-0000-0000-000000000781", - }, - "deletedAt": { - "id": "00000000-0000-0000-0000-000000000765", - }, - "id": { "id": "00000000-0000-0000-0000-000000000762", }, - "locale": { - "id": "00000000-0000-0000-0000-000000000769", + "assignedTasks": { + "id": "00000000-0000-0000-0000-000000000760", }, - "messageParticipants": { - "id": "00000000-0000-0000-0000-000000000776", + "avatarUrl": { + "id": "00000000-0000-0000-0000-000000000757", }, - "name": { - "id": "00000000-0000-0000-0000-000000000767", - }, - "numberFormat": { - "id": "00000000-0000-0000-0000-000000000785", - }, - "ownedOpportunities": { - "id": "00000000-0000-0000-0000-000000000774", - }, - "position": { - "id": "00000000-0000-0000-0000-000000000766", - }, - "searchVector": { - "id": "00000000-0000-0000-0000-000000000783", - }, - "timeFormat": { - "id": "00000000-0000-0000-0000-000000000782", - }, - "timeZone": { - "id": "00000000-0000-0000-0000-000000000780", - }, - "timelineActivities": { - "id": "00000000-0000-0000-0000-000000000779", - }, - "updatedAt": { + "blocklist": { "id": "00000000-0000-0000-0000-000000000764", }, - "updatedBy": { - "id": "00000000-0000-0000-0000-000000000787", + "calendarEventParticipants": { + "id": "00000000-0000-0000-0000-000000000765", }, - "userEmail": { + "calendarStartDay": { "id": "00000000-0000-0000-0000-000000000771", }, - "userId": { + "colorScheme": { + "id": "00000000-0000-0000-0000-000000000755", + }, + "createdAt": { + "id": "00000000-0000-0000-0000-000000000750", + }, + "createdBy": { + "id": "00000000-0000-0000-0000-000000000773", + }, + "dateFormat": { + "id": "00000000-0000-0000-0000-000000000768", + }, + "deletedAt": { + "id": "00000000-0000-0000-0000-000000000752", + }, + "id": { + "id": "00000000-0000-0000-0000-000000000749", + }, + "locale": { + "id": "00000000-0000-0000-0000-000000000756", + }, + "messageParticipants": { + "id": "00000000-0000-0000-0000-000000000763", + }, + "name": { + "id": "00000000-0000-0000-0000-000000000754", + }, + "numberFormat": { "id": "00000000-0000-0000-0000-000000000772", }, + "ownedOpportunities": { + "id": "00000000-0000-0000-0000-000000000761", + }, + "position": { + "id": "00000000-0000-0000-0000-000000000753", + }, + "searchVector": { + "id": "00000000-0000-0000-0000-000000000770", + }, + "timeFormat": { + "id": "00000000-0000-0000-0000-000000000769", + }, + "timeZone": { + "id": "00000000-0000-0000-0000-000000000767", + }, + "timelineActivities": { + "id": "00000000-0000-0000-0000-000000000766", + }, + "updatedAt": { + "id": "00000000-0000-0000-0000-000000000751", + }, + "updatedBy": { + "id": "00000000-0000-0000-0000-000000000774", + }, + "userEmail": { + "id": "00000000-0000-0000-0000-000000000758", + }, + "userId": { + "id": "00000000-0000-0000-0000-000000000759", + }, }, - "id": "00000000-0000-0000-0000-000000000800", + "id": "00000000-0000-0000-0000-000000000787", "views": { "allWorkspaceMembers": { - "id": "00000000-0000-0000-0000-000000000799", + "id": "00000000-0000-0000-0000-000000000786", "viewFieldGroups": {}, "viewFields": { "assignedTasks": { - "id": "00000000-0000-0000-0000-000000000798", + "id": "00000000-0000-0000-0000-000000000785", }, "avatarUrl": { - "id": "00000000-0000-0000-0000-000000000790", + "id": "00000000-0000-0000-0000-000000000777", }, "colorScheme": { - "id": "00000000-0000-0000-0000-000000000791", + "id": "00000000-0000-0000-0000-000000000778", }, "createdAt": { - "id": "00000000-0000-0000-0000-000000000796", + "id": "00000000-0000-0000-0000-000000000783", }, "dateFormat": { - "id": "00000000-0000-0000-0000-000000000794", + "id": "00000000-0000-0000-0000-000000000781", }, "locale": { - "id": "00000000-0000-0000-0000-000000000792", + "id": "00000000-0000-0000-0000-000000000779", }, "name": { - "id": "00000000-0000-0000-0000-000000000788", + "id": "00000000-0000-0000-0000-000000000775", }, "ownedOpportunities": { - "id": "00000000-0000-0000-0000-000000000797", + "id": "00000000-0000-0000-0000-000000000784", }, "timeFormat": { - "id": "00000000-0000-0000-0000-000000000795", + "id": "00000000-0000-0000-0000-000000000782", }, "timeZone": { - "id": "00000000-0000-0000-0000-000000000793", + "id": "00000000-0000-0000-0000-000000000780", }, "userEmail": { - "id": "00000000-0000-0000-0000-000000000789", + "id": "00000000-0000-0000-0000-000000000776", }, }, "viewGroups": {}, diff --git a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-company-standard-flat-field-metadata.util.ts b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-company-standard-flat-field-metadata.util.ts index 1498e96d39..0e97bf505c 100644 --- a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-company-standard-flat-field-metadata.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-company-standard-flat-field-metadata.util.ts @@ -169,22 +169,6 @@ export const buildCompanyStandardFlatFieldMetadatas = ({ twentyStandardApplicationId, now, }), - employees: createStandardFieldFlatMetadata({ - objectName, - workspaceId, - context: { - fieldName: 'employees', - type: FieldMetadataType.NUMBER, - label: i18nLabel(msg`Employees`), - description: i18nLabel(msg`Number of employees in the company`), - icon: 'IconUsers', - isNullable: true, - }, - standardObjectMetadataRelatedEntityIds, - dependencyFlatEntityMaps, - twentyStandardApplicationId, - now, - }), linkedinLink: createStandardFieldFlatMetadata({ objectName, workspaceId, @@ -201,32 +185,14 @@ export const buildCompanyStandardFlatFieldMetadatas = ({ twentyStandardApplicationId, now, }), - xLink: createStandardFieldFlatMetadata({ + annualRevenue: createStandardFieldFlatMetadata({ objectName, workspaceId, context: { - fieldName: 'xLink', - type: FieldMetadataType.LINKS, - label: i18nLabel(msg`X`), - description: i18nLabel(msg`The company Twitter/X account`), - icon: 'IconBrandX', - isNullable: true, - }, - standardObjectMetadataRelatedEntityIds, - dependencyFlatEntityMaps, - twentyStandardApplicationId, - now, - }), - annualRecurringRevenue: createStandardFieldFlatMetadata({ - objectName, - workspaceId, - context: { - fieldName: 'annualRecurringRevenue', + fieldName: 'annualRevenue', type: FieldMetadataType.CURRENCY, - label: i18nLabel(msg`ARR`), - description: i18nLabel( - msg`Annual Recurring Revenue: The actual or estimated annual revenue of the company`, - ), + label: i18nLabel(msg`Annual Revenue`), + description: i18nLabel(msg`The company's total annual revenue`), icon: 'IconMoneybag', isNullable: true, }, @@ -235,25 +201,6 @@ export const buildCompanyStandardFlatFieldMetadatas = ({ twentyStandardApplicationId, now, }), - idealCustomerProfile: createStandardFieldFlatMetadata({ - objectName, - workspaceId, - context: { - fieldName: 'idealCustomerProfile', - type: FieldMetadataType.BOOLEAN, - label: i18nLabel(msg`ICP`), - description: i18nLabel( - msg`Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you`, - ), - icon: 'IconTarget', - isNullable: false, - defaultValue: false, - }, - standardObjectMetadataRelatedEntityIds, - dependencyFlatEntityMaps, - twentyStandardApplicationId, - now, - }), position: createStandardFieldFlatMetadata({ objectName, workspaceId, diff --git a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-person-standard-flat-field-metadata.util.ts b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-person-standard-flat-field-metadata.util.ts index b57d10b6a6..4c49670819 100644 --- a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-person-standard-flat-field-metadata.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/field-metadata/compute-person-standard-flat-field-metadata.util.ts @@ -167,22 +167,6 @@ export const buildPersonStandardFlatFieldMetadatas = ({ twentyStandardApplicationId, now, }), - xLink: createStandardFieldFlatMetadata({ - objectName, - workspaceId, - context: { - fieldName: 'xLink', - type: FieldMetadataType.LINKS, - label: i18nLabel(msg`X`), - description: "Contact's X/Twitter account", - icon: 'IconBrandX', - isNullable: true, - }, - standardObjectMetadataRelatedEntityIds, - dependencyFlatEntityMaps, - twentyStandardApplicationId, - now, - }), jobTitle: createStandardFieldFlatMetadata({ objectName, workspaceId, @@ -218,22 +202,6 @@ export const buildPersonStandardFlatFieldMetadatas = ({ twentyStandardApplicationId, now, }), - city: createStandardFieldFlatMetadata({ - objectName, - workspaceId, - context: { - fieldName: 'city', - type: FieldMetadataType.TEXT, - label: i18nLabel(msg`City`), - description: "Contact's city", - icon: 'IconMap', - isNullable: true, - }, - standardObjectMetadataRelatedEntityIds, - dependencyFlatEntityMaps, - twentyStandardApplicationId, - now, - }), //deprecated avatarUrl: createStandardFieldFlatMetadata({ objectName, diff --git a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-company-view-fields.util.ts b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-company-view-fields.util.ts index ecf1acfa86..4b953cf6b5 100644 --- a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-company-view-fields.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-company-view-fields.util.ts @@ -72,19 +72,6 @@ export const computeStandardCompanyViewFields = ( size: 150, }, }), - allCompaniesEmployees: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'company', - context: { - viewName: 'allCompanies', - viewFieldName: 'employees', - fieldName: 'employees', - position: 5, - isVisible: true, - size: 150, - aggregateOperation: AggregateOperations.MAX, - }, - }), allCompaniesLinkedinLink: createStandardViewFieldFlatMetadata({ ...args, objectName: 'company', @@ -92,7 +79,7 @@ export const computeStandardCompanyViewFields = ( viewName: 'allCompanies', viewFieldName: 'linkedinLink', fieldName: 'linkedinLink', - position: 6, + position: 5, isVisible: true, size: 170, aggregateOperation: AggregateOperations.PERCENTAGE_EMPTY, @@ -105,7 +92,7 @@ export const computeStandardCompanyViewFields = ( viewName: 'allCompanies', viewFieldName: 'address', fieldName: 'address', - position: 7, + position: 6, isVisible: true, size: 170, aggregateOperation: AggregateOperations.COUNT_NOT_EMPTY, @@ -219,47 +206,19 @@ export const computeStandardCompanyViewFields = ( }, }), // Business group - companyRecordPageFieldsAnnualRecurringRevenue: - createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'company', - context: { - viewName: 'companyRecordPageFields', - viewFieldName: 'annualRecurringRevenue', - fieldName: 'annualRecurringRevenue', - position: 0, - isVisible: true, - size: 150, - viewFieldGroupName: 'business', - }, - }), - companyRecordPageFieldsEmployees: createStandardViewFieldFlatMetadata({ + companyRecordPageFieldsAnnualRevenue: createStandardViewFieldFlatMetadata({ ...args, objectName: 'company', context: { viewName: 'companyRecordPageFields', - viewFieldName: 'employees', - fieldName: 'employees', - position: 1, + viewFieldName: 'annualRevenue', + fieldName: 'annualRevenue', + position: 0, isVisible: true, size: 150, viewFieldGroupName: 'business', }, }), - companyRecordPageFieldsIdealCustomerProfile: - createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'company', - context: { - viewName: 'companyRecordPageFields', - viewFieldName: 'idealCustomerProfile', - fieldName: 'idealCustomerProfile', - position: 2, - isVisible: true, - size: 150, - viewFieldGroupName: 'business', - }, - }), // Contact group companyRecordPageFieldsAddress: createStandardViewFieldFlatMetadata({ ...args, @@ -287,19 +246,6 @@ export const computeStandardCompanyViewFields = ( viewFieldGroupName: 'contact', }, }), - companyRecordPageFieldsXLink: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'company', - context: { - viewName: 'companyRecordPageFields', - viewFieldName: 'xLink', - fieldName: 'xLink', - position: 2, - isVisible: true, - size: 150, - viewFieldGroupName: 'contact', - }, - }), // System group companyRecordPageFieldsCreatedAt: createStandardViewFieldFlatMetadata({ ...args, diff --git a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-person-view-fields.util.ts b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-person-view-fields.util.ts index b922d7723f..eae9cd5300 100644 --- a/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-person-view-fields.util.ts +++ b/packages/twenty-server/src/engine/workspace-manager/twenty-standard-application/utils/view-field/compute-standard-person-view-fields.util.ts @@ -86,18 +86,6 @@ export const computeStandardPersonViewFields = ( aggregateOperation: AggregateOperations.MIN, }, }), - allPeopleCity: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'person', - context: { - viewName: 'allPeople', - viewFieldName: 'city', - fieldName: 'city', - position: 6, - isVisible: true, - size: 150, - }, - }), allPeopleJobTitle: createStandardViewFieldFlatMetadata({ ...args, objectName: 'person', @@ -105,7 +93,7 @@ export const computeStandardPersonViewFields = ( viewName: 'allPeople', viewFieldName: 'jobTitle', fieldName: 'jobTitle', - position: 7, + position: 6, isVisible: true, size: 150, }, @@ -117,19 +105,7 @@ export const computeStandardPersonViewFields = ( viewName: 'allPeople', viewFieldName: 'linkedinLink', fieldName: 'linkedinLink', - position: 8, - isVisible: true, - size: 150, - }, - }), - allPeopleXLink: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'person', - context: { - viewName: 'allPeople', - viewFieldName: 'xLink', - fieldName: 'xLink', - position: 9, + position: 7, isVisible: true, size: 150, }, @@ -163,19 +139,6 @@ export const computeStandardPersonViewFields = ( viewFieldGroupName: 'general', }, }), - personRecordPageFieldsCity: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'person', - context: { - viewName: 'personRecordPageFields', - viewFieldName: 'city', - fieldName: 'city', - position: 2, - isVisible: true, - size: 150, - viewFieldGroupName: 'general', - }, - }), personRecordPageFieldsPointOfContactForOpportunities: createStandardViewFieldFlatMetadata({ ...args, @@ -338,19 +301,6 @@ export const computeStandardPersonViewFields = ( viewFieldGroupName: 'social', }, }), - personRecordPageFieldsXLink: createStandardViewFieldFlatMetadata({ - ...args, - objectName: 'person', - context: { - viewName: 'personRecordPageFields', - viewFieldName: 'xLink', - fieldName: 'xLink', - position: 1, - isVisible: true, - size: 150, - viewFieldGroupName: 'social', - }, - }), // System group personRecordPageFieldsCreatedAt: createStandardViewFieldFlatMetadata({ ...args, diff --git a/packages/twenty-server/src/modules/company/standard-objects/company.workspace-entity.ts b/packages/twenty-server/src/modules/company/standard-objects/company.workspace-entity.ts index bdd4b79288..073440be63 100644 --- a/packages/twenty-server/src/modules/company/standard-objects/company.workspace-entity.ts +++ b/packages/twenty-server/src/modules/company/standard-objects/company.workspace-entity.ts @@ -34,12 +34,9 @@ export class CompanyWorkspaceEntity { // Company-specific fields name: string | null; domainName: LinksMetadata; - employees: number | null; linkedinLink: LinksMetadata | null; - xLink: LinksMetadata | null; - annualRecurringRevenue: CurrencyMetadata | null; + annualRevenue: CurrencyMetadata | null; address: AddressMetadata; - idealCustomerProfile: boolean; position: number; createdBy: ActorMetadata; updatedBy: ActorMetadata; diff --git a/packages/twenty-server/src/modules/person/standard-objects/person.workspace-entity.ts b/packages/twenty-server/src/modules/person/standard-objects/person.workspace-entity.ts index ba4d837bf8..36359c761b 100644 --- a/packages/twenty-server/src/modules/person/standard-objects/person.workspace-entity.ts +++ b/packages/twenty-server/src/modules/person/standard-objects/person.workspace-entity.ts @@ -36,12 +36,10 @@ export class PersonWorkspaceEntity extends BaseWorkspaceEntity { name: FullNameMetadata | null; emails: EmailsMetadata; linkedinLink: LinksMetadata | null; - xLink: LinksMetadata | null; jobTitle: string | null; /** @deprecated Use `phones` field instead */ phone: string | null; phones: PhonesMetadata; - city: string | null; /** @deprecated Use `avatarFile` field instead */ avatarUrl: string | null; avatarFile: FileOutput[] | null; diff --git a/packages/twenty-server/test/integration/constants/person-gql-fields.constants.ts b/packages/twenty-server/test/integration/constants/person-gql-fields.constants.ts index 0477247b24..598bab107e 100644 --- a/packages/twenty-server/test/integration/constants/person-gql-fields.constants.ts +++ b/packages/twenty-server/test/integration/constants/person-gql-fields.constants.ts @@ -1,6 +1,5 @@ export const PERSON_GQL_FIELDS = ` id - city jobTitle avatarUrl avatarFile { diff --git a/packages/twenty-server/test/integration/graphql/suites/all-people-resolvers.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/all-people-resolvers.integration-spec.ts index b3ba7a5347..e7c113bd68 100644 --- a/packages/twenty-server/test/integration/graphql/suites/all-people-resolvers.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/all-people-resolvers.integration-spec.ts @@ -24,8 +24,8 @@ describe('people resolvers (integration)', () => { }); it('1. should create and return people', async () => { - const personCity1 = generateRecordName(TEST_PERSON_1_ID); - const personCity2 = generateRecordName(TEST_PERSON_2_ID); + const personJobTitle1 = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle2 = generateRecordName(TEST_PERSON_2_ID); const graphqlOperation = createManyOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', @@ -33,11 +33,11 @@ describe('people resolvers (integration)', () => { data: [ { id: TEST_PERSON_1_ID, - city: personCity1, + jobTitle: personJobTitle1, }, { id: TEST_PERSON_2_ID, - city: personCity2, + jobTitle: personJobTitle2, }, ], }); @@ -48,8 +48,8 @@ describe('people resolvers (integration)', () => { // @ts-expect-error legacy noImplicitAny response.body.data.createPeople.forEach((person) => { - expect(person).toHaveProperty('city'); - expect([personCity1, personCity2]).toContain(person.city); + expect(person).toHaveProperty('jobTitle'); + expect([personJobTitle1, personJobTitle2]).toContain(person.jobTitle); expect(person).toHaveProperty('id'); expect(person).toHaveProperty('jobTitle'); @@ -64,14 +64,14 @@ describe('people resolvers (integration)', () => { }); it('1b. should create and return one person', async () => { - const personCity3 = generateRecordName(TEST_PERSON_3_ID); + const personJobTitle3 = generateRecordName(TEST_PERSON_3_ID); const graphqlOperation = createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, data: { id: TEST_PERSON_3_ID, - city: personCity3, + jobTitle: personJobTitle3, }, }); @@ -79,8 +79,8 @@ describe('people resolvers (integration)', () => { const createdPerson = response.body.data.createPerson; - expect(createdPerson).toHaveProperty('city'); - expect(createdPerson.city).toEqual(personCity3); + expect(createdPerson).toHaveProperty('jobTitle'); + expect(createdPerson.jobTitle).toEqual(personJobTitle3); expect(createdPerson).toHaveProperty('id'); expect(createdPerson).toHaveProperty('jobTitle'); @@ -139,7 +139,7 @@ describe('people resolvers (integration)', () => { const person = response.body.data.person; - expect(person).toHaveProperty('city'); + expect(person).toHaveProperty('jobTitle'); expect(person).toHaveProperty('id'); expect(person).toHaveProperty('jobTitle'); @@ -158,7 +158,7 @@ describe('people resolvers (integration)', () => { objectMetadataPluralName: 'people', gqlFields: PERSON_GQL_FIELDS, data: { - city: 'Updated City', + jobTitle: 'Updated City', }, filter: { id: { @@ -175,7 +175,7 @@ describe('people resolvers (integration)', () => { // @ts-expect-error legacy noImplicitAny updatedPeople.forEach((person) => { - expect(person.city).toEqual('Updated City'); + expect(person.jobTitle).toEqual('Updated City'); }); }); @@ -184,7 +184,7 @@ describe('people resolvers (integration)', () => { objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, data: { - city: 'New City', + jobTitle: 'New City', }, recordId: TEST_PERSON_3_ID, }); @@ -193,7 +193,7 @@ describe('people resolvers (integration)', () => { const updatedPerson = response.body.data.updatePerson; - expect(updatedPerson.city).toEqual('New City'); + expect(updatedPerson.jobTitle).toEqual('New City'); }); it('4. should find many people with updated city', async () => { @@ -202,7 +202,7 @@ describe('people resolvers (integration)', () => { objectMetadataPluralName: 'people', gqlFields: PERSON_GQL_FIELDS, filter: { - city: { + jobTitle: { eq: 'Updated City', }, }, @@ -218,7 +218,7 @@ describe('people resolvers (integration)', () => { objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, filter: { - city: { + jobTitle: { eq: 'New City', }, }, @@ -226,7 +226,7 @@ describe('people resolvers (integration)', () => { const response = await makeGraphqlAPIRequest(graphqlOperation); - expect(response.body.data.person.city).toEqual('New City'); + expect(response.body.data.person.jobTitle).toEqual('New City'); }); it('5. should delete many people', async () => { diff --git a/packages/twenty-server/test/integration/graphql/suites/filter-by-relation-field.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/filter-by-relation-field.integration-spec.ts index 7e78e7840a..6cbb4d029a 100644 --- a/packages/twenty-server/test/integration/graphql/suites/filter-by-relation-field.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/filter-by-relation-field.integration-spec.ts @@ -40,7 +40,7 @@ describe('Filter by relation field (e2e)', () => { { id: TEST_COMPANY_IDS.AIRBNB, name: 'Airbnb', - annualRecurringRevenue: { + annualRevenue: { amountMicros: 50_000_000_000_000, currencyCode: 'USD', }, @@ -48,7 +48,7 @@ describe('Filter by relation field (e2e)', () => { { id: TEST_COMPANY_IDS.STRIPE, name: 'Stripe', - annualRecurringRevenue: { + annualRevenue: { amountMicros: 10_000_000_000_000, currencyCode: 'USD', }, @@ -56,7 +56,7 @@ describe('Filter by relation field (e2e)', () => { { id: TEST_COMPANY_IDS.NOTION, name: 'Notion', - annualRecurringRevenue: { + annualRevenue: { amountMicros: 5_000_000_000_000, currencyCode: 'USD', }, @@ -308,7 +308,7 @@ describe('Filter by relation field (e2e)', () => { { id: { in: ALL_TEST_PERSON_IDS } }, { company: { - annualRecurringRevenue: { + annualRevenue: { amountMicros: { gte: 20_000_000_000_000 }, }, }, diff --git a/packages/twenty-server/test/integration/graphql/suites/group-by-resolver.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/group-by-resolver.integration-spec.ts index 6fbc802d4d..3274b70223 100644 --- a/packages/twenty-server/test/integration/graphql/suites/group-by-resolver.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/group-by-resolver.integration-spec.ts @@ -78,21 +78,21 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPersonId, city: cityA }, + data: { id: testPersonId, jobTitle: cityA }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson2Id, city: cityB }, + data: { id: testPerson2Id, jobTitle: cityB }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson3Id, city: cityB }, + data: { id: testPerson3Id, jobTitle: cityB }, }), ); @@ -100,8 +100,8 @@ describe('group-by resolver (integration)', () => { groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], - orderBy: [{ city: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups + groupBy: [{ jobTitle: true }], + orderBy: [{ jobTitle: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups limit: 300, }), ); @@ -140,21 +140,21 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPersonId, city: cityA }, + data: { id: testPersonId, jobTitle: cityA }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson2Id, city: cityB }, + data: { id: testPerson2Id, jobTitle: cityB }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson3Id, city: cityC }, + data: { id: testPerson3Id, jobTitle: cityC }, }), ); @@ -162,7 +162,7 @@ describe('group-by resolver (integration)', () => { groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], + groupBy: [{ jobTitle: true }], limit: 2, }), ); @@ -183,7 +183,7 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPersonId, city: cityA }, + data: { id: testPersonId, jobTitle: cityA }, }), ) ).body.data.createPerson; @@ -193,7 +193,7 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson2Id, city: cityB }, + data: { id: testPerson2Id, jobTitle: cityB }, }), ) ).body.data.createPerson; @@ -202,7 +202,7 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson3Id, city: cityB }, + data: { id: testPerson3Id, jobTitle: cityB }, }), ); @@ -210,8 +210,8 @@ describe('group-by resolver (integration)', () => { groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], - orderBy: [{ city: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups + groupBy: [{ jobTitle: true }], + orderBy: [{ jobTitle: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups gqlFields: 'minCreatedAt', limit: 300, }), @@ -840,7 +840,7 @@ describe('group-by resolver (integration)', () => { }); it('groups by city', async () => { const cityFieldMetadata = personObject?.fieldsList?.find( - (f: FieldMetadataDTO) => f.name === 'city', + (f: FieldMetadataDTO) => f.name === 'jobTitle', ); const cityFieldMetadataId = cityFieldMetadata?.id; @@ -851,14 +851,14 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPersonId, city: cityToKeep }, + data: { id: testPersonId, jobTitle: cityToKeep }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson2Id, city: cityToExclude }, + data: { id: testPerson2Id, jobTitle: cityToExclude }, }), ); @@ -905,7 +905,7 @@ describe('group-by resolver (integration)', () => { groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], + groupBy: [{ jobTitle: true }], viewId, }), ); @@ -934,21 +934,21 @@ describe('group-by resolver (integration)', () => { createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPersonId, city: cityA }, + data: { id: testPersonId, jobTitle: cityA }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson2Id, city: cityB }, + data: { id: testPerson2Id, jobTitle: cityB }, }), ); await makeGraphqlAPIRequest( createOneOperationFactory({ objectMetadataSingularName: 'person', gqlFields: PERSON_GQL_FIELDS, - data: { id: testPerson3Id, city: cityB }, + data: { id: testPerson3Id, jobTitle: cityB }, }), ); @@ -969,9 +969,9 @@ describe('group-by resolver (integration)', () => { groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], + groupBy: [{ jobTitle: true }], viewId, - orderBy: [{ city: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups + orderBy: [{ jobTitle: OrderByDirection.AscNullsFirst }], // needed for City groups to be in 300 first groups limit: 300, }), ); diff --git a/packages/twenty-server/test/integration/graphql/suites/mutate-by-relation-field.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/mutate-by-relation-field.integration-spec.ts index 45ca237fa5..e5f61ee544 100644 --- a/packages/twenty-server/test/integration/graphql/suites/mutate-by-relation-field.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/mutate-by-relation-field.integration-spec.ts @@ -51,32 +51,27 @@ describe('Mutate by relation field (e2e)', () => { { id: TEST_PERSON_IDS.AIRBNB_ENGINEER, companyId: TEST_COMPANY_IDS.AIRBNB, - jobTitle: 'Engineer', - city: 'Original City', + jobTitle: 'Original City', }, { id: TEST_PERSON_IDS.AIRBNB_DESIGNER, companyId: TEST_COMPANY_IDS.AIRBNB, - jobTitle: 'Designer', - city: 'Original City', + jobTitle: 'Original City', }, { id: TEST_PERSON_IDS.STRIPE_ENGINEER, companyId: TEST_COMPANY_IDS.STRIPE, - jobTitle: 'Engineer', - city: 'Original City', + jobTitle: 'Original City', }, { id: TEST_PERSON_IDS.NOTION_ENGINEER, companyId: TEST_COMPANY_IDS.NOTION, - jobTitle: 'Engineer', - city: 'Original City', + jobTitle: 'Original City', }, { id: TEST_PERSON_IDS.UNAFFILIATED, companyId: null, - jobTitle: 'Engineer', - city: 'Original City', + jobTitle: 'Original City', }, ], upsert: true, @@ -112,8 +107,8 @@ describe('Mutate by relation field (e2e)', () => { const updateOperation = updateManyOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - gqlFields: 'id city', - data: { city: 'Updated City' }, + gqlFields: 'id jobTitle', + data: { jobTitle: 'Updated City' }, filter: { and: [ { id: { in: ALL_TEST_PERSON_IDS } }, @@ -138,37 +133,37 @@ describe('Mutate by relation field (e2e)', () => { const findOperation = findManyOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - gqlFields: 'id city', + gqlFields: 'id jobTitle', filter: { id: { in: ALL_TEST_PERSON_IDS } }, }); const findResponse = await makeGraphqlAPIRequest(findOperation); - const cityByPersonId = Object.fromEntries( + const jobTitleByPersonId = Object.fromEntries( findResponse.body.data.people.edges.map( - (edge: { node: { id: string; city: string } }) => [ + (edge: { node: { id: string; jobTitle: string } }) => [ edge.node.id, - edge.node.city, + edge.node.jobTitle, ], ), ); - expect(cityByPersonId[TEST_PERSON_IDS.AIRBNB_ENGINEER]).toEqual( + expect(jobTitleByPersonId[TEST_PERSON_IDS.AIRBNB_ENGINEER]).toEqual( 'Updated City', ); - expect(cityByPersonId[TEST_PERSON_IDS.AIRBNB_DESIGNER]).toEqual( + expect(jobTitleByPersonId[TEST_PERSON_IDS.AIRBNB_DESIGNER]).toEqual( 'Updated City', ); // Non-Airbnb rows must stay untouched — the JOIN must not widen the // mutation past the filter. - expect(cityByPersonId[TEST_PERSON_IDS.STRIPE_ENGINEER]).toEqual( + expect(jobTitleByPersonId[TEST_PERSON_IDS.STRIPE_ENGINEER]).toEqual( 'Original City', ); - expect(cityByPersonId[TEST_PERSON_IDS.NOTION_ENGINEER]).toEqual( + expect(jobTitleByPersonId[TEST_PERSON_IDS.NOTION_ENGINEER]).toEqual( 'Original City', ); - expect(cityByPersonId[TEST_PERSON_IDS.UNAFFILIATED]).toEqual( + expect(jobTitleByPersonId[TEST_PERSON_IDS.UNAFFILIATED]).toEqual( 'Original City', ); }); @@ -325,8 +320,8 @@ describe('Mutate by relation field (e2e)', () => { const updateOperation = updateManyOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - gqlFields: 'id city', - data: { city: 'Scalar Updated City' }, + gqlFields: 'id jobTitle', + data: { jobTitle: 'Scalar Updated City' }, filter: { id: { eq: TEST_PERSON_IDS.UNAFFILIATED } }, }); @@ -334,7 +329,7 @@ describe('Mutate by relation field (e2e)', () => { expect(updateResponse.body.errors).toBeUndefined(); expect(updateResponse.body.data.updatePeople).toHaveLength(1); - expect(updateResponse.body.data.updatePeople[0].city).toEqual( + expect(updateResponse.body.data.updatePeople[0].jobTitle).toEqual( 'Scalar Updated City', ); }); diff --git a/packages/twenty-server/test/integration/graphql/suites/object-generated/companies.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-generated/companies.integration-spec.ts index 73eb456b85..15c5ade610 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-generated/companies.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-generated/companies.integration-spec.ts @@ -11,8 +11,6 @@ describe('companiesResolver (e2e)', () => { edges { node { name - employees - idealCustomerProfile position searchVector id @@ -51,8 +49,6 @@ describe('companiesResolver (e2e)', () => { const companies = edges[0].node; expect(companies).toHaveProperty('name'); - expect(companies).toHaveProperty('employees'); - expect(companies).toHaveProperty('idealCustomerProfile'); expect(companies).toHaveProperty('position'); expect(companies).toHaveProperty('searchVector'); expect(companies).toHaveProperty('id'); diff --git a/packages/twenty-server/test/integration/graphql/suites/object-generated/nested-relation-queries.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-generated/nested-relation-queries.integration-spec.ts index d8c6370cea..f00c58f605 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-generated/nested-relation-queries.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-generated/nested-relation-queries.integration-spec.ts @@ -26,7 +26,7 @@ import { ErrorCode } from 'src/engine/core-modules/graphql/utils/graphql-errors. const PERSON_GQL_FIELDS_WITH_COMPANY = ` id - city + jobTitle company { id } @@ -181,7 +181,7 @@ describe('relation connect in workspace createOne/createMany resolvers (e2e)', gqlFields: PERSON_GQL_FIELDS_WITH_COMPANY, data: { id: TEST_PERSON_1_ID, - city: 'existing-record', + jobTitle: 'existing-record', companyId: TEST_COMPANY_1_ID, }, }); @@ -202,9 +202,9 @@ describe('relation connect in workspace createOne/createMany resolvers (e2e)', }, }, { - id: TEST_PERSON_2_ID, - city: 'new-record', - company: { + id: TEST_PERSON_2_ID, + jobTitle: 'new-record', + company: { connect: { where: { domainName: { primaryLinkUrl: 'company1.com' } }, }, @@ -228,10 +228,10 @@ describe('relation connect in workspace createOne/createMany resolvers (e2e)', ); expect(updatedPerson.company.id).toBe(TEST_COMPANY_2_ID); - expect(updatedPerson.city).toBe('existing-record'); + expect(updatedPerson.jobTitle).toBe('existing-record'); expect(insertedPerson.company.id).toBe(TEST_COMPANY_1_ID); - expect(insertedPerson.city).toBe('new-record'); + expect(insertedPerson.jobTitle).toBe('new-record'); }); it('should connect to other records through a MANY-TO-ONE relation - update One', async () => { @@ -240,7 +240,7 @@ describe('relation connect in workspace createOne/createMany resolvers (e2e)', gqlFields: PERSON_GQL_FIELDS_WITH_COMPANY, data: { id: TEST_PERSON_1_ID, - city: 'existing-record', + jobTitle: 'existing-record', companyId: TEST_COMPANY_1_ID, }, }); @@ -264,7 +264,7 @@ describe('relation connect in workspace createOne/createMany resolvers (e2e)', expect(response.body.data.updatePerson).toBeDefined(); expect(response.body.data.updatePerson.company.id).toBe(TEST_COMPANY_2_ID); - expect(response.body.data.updatePerson.city).toBe('existing-record'); + expect(response.body.data.updatePerson.jobTitle).toBe('existing-record'); }); it('should connect to other records through a MANY-TO-ONE relation - update Many', async () => { diff --git a/packages/twenty-server/test/integration/graphql/suites/object-generated/people.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-generated/people.integration-spec.ts index 83bccd6442..2caf41ba43 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-generated/people.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-generated/people.integration-spec.ts @@ -11,7 +11,6 @@ describe('peopleResolver (e2e)', () => { edges { node { jobTitle - city avatarUrl avatarFile { fileId @@ -57,7 +56,6 @@ describe('peopleResolver (e2e)', () => { const people = edges[0].node; expect(people).toHaveProperty('jobTitle'); - expect(people).toHaveProperty('city'); expect(people).toHaveProperty('avatarUrl'); expect(people).toHaveProperty('avatarFile'); expect(people).toHaveProperty('position'); diff --git a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/read-permissions.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/read-permissions.integration-spec.ts index 1b182ebc24..56b23eddd4 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/read-permissions.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/read-permissions.integration-spec.ts @@ -24,7 +24,7 @@ import { WORKSPACE_MEMBER_DATA_SEED_IDS } from 'src/engine/workspace-manager/dev const client = request(`http://localhost:${APP_PORT}`); -const COMPANY_GQL_FIELDS_WITH_PEOPLE_CITY = ` +const COMPANY_GQL_FIELDS_WITH_PEOPLE_JOB_TITLE = ` id name people { @@ -35,16 +35,16 @@ const COMPANY_GQL_FIELDS_WITH_PEOPLE_CITY = ` firstName lastName } - city + jobTitle } } } `; -const COMPANY_GQL_FIELDS_WITH_EMPLOYEES = ` +const COMPANY_GQL_FIELDS_WITH_POSITION = ` id name - employees + position people { edges { node { @@ -58,7 +58,7 @@ const COMPANY_GQL_FIELDS_WITH_EMPLOYEES = ` } `; -const COMPANY_GQL_FIELDS_WITHOUT_EMPLOYEES_AND_WITHOUT_PEOPLE_CITY = ` +const COMPANY_GQL_FIELDS_WITHOUT_POSITION_AND_WITHOUT_PEOPLE_JOB_TITLE = ` id name people { @@ -74,11 +74,11 @@ const COMPANY_GQL_FIELDS_WITHOUT_EMPLOYEES_AND_WITHOUT_PEOPLE_CITY = ` } `; -const COMPANY_GQL_FIELDS_WITH_PEOPLE_CITY_AGGREGATE = ` +const COMPANY_GQL_FIELDS_WITH_PEOPLE_JOB_TITLE_AGGREGATE = ` id name people { - percentageEmptyCity + percentageEmptyJobTitle } `; @@ -173,8 +173,8 @@ describe('Field permissions restrictions', () => { await makeGraphqlAPIRequest(createCompanyOp); const createPersonOperation = createOneOperationFactory({ objectMetadataSingularName: 'person', - gqlFields: 'id city', - data: { id: personId, city: 'Paris', companyId }, + gqlFields: 'id jobTitle', + data: { id: personId, jobTitle: 'Paris', companyId }, }); await makeGraphqlAPIRequest(createPersonOperation); @@ -228,12 +228,12 @@ describe('Field permissions restrictions', () => { restrictedCompanyFieldId = fields.find( (field: any) => - field.node.name === 'employees' && + field.node.name === 'position' && field.node.object.nameSingular === 'company', ).node.id; restrictedPersonFieldId = fields.find( (field: any) => - field.node.name === 'city' && + field.node.name === 'jobTitle' && field.node.object.nameSingular === 'person', ).node.id; }); @@ -292,35 +292,35 @@ describe('Field permissions restrictions', () => { const graphqlOperation = findManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, }); const response = await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); expectNoGraphQLErrors(response); expect( - response.body.data.companies.edges[0].node.employees, + response.body.data.companies.edges[0].node.position, ).toBeDefined(); }); it('2. findOne', async () => { const graphqlOperation = findOneOperationFactory({ objectMetadataSingularName: 'company', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, filter: { id: { eq: companyId } }, }); const response = await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); expectNoGraphQLErrors(response); - expect(response.body.data.company.employees).toBeDefined(); + expect(response.body.data.company.position).toBeDefined(); }); it('3. updateMany', async () => { const graphqlOperation = updateManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, filter: { id: { eq: companyId } }, data: { name: 'TestUpdate' }, }); @@ -334,7 +334,7 @@ describe('Field permissions restrictions', () => { it('4. updateOne', async () => { const graphqlOperation = updateOneOperationFactory({ objectMetadataSingularName: 'company', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, recordId: companyId, data: { name: 'TestUpdate' }, }); @@ -349,7 +349,7 @@ describe('Field permissions restrictions', () => { const graphqlOperation = createManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, data: [ { id: randomUUID(), name: 'TestCompany' }, { id: randomUUID(), name: 'TestCompany2' }, @@ -365,7 +365,7 @@ describe('Field permissions restrictions', () => { it('5. createOne', async () => { const graphqlOperation = createOneOperationFactory({ objectMetadataSingularName: 'company', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, data: { id: randomUUID(), name: 'TestCompany3' }, }); @@ -379,7 +379,7 @@ describe('Field permissions restrictions', () => { const graphqlOperation = deleteManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, filter: { id: { eq: companyId } }, }); @@ -392,7 +392,7 @@ describe('Field permissions restrictions', () => { it('7. deleteOne', async () => { const graphqlOperation = deleteOneOperationFactory({ objectMetadataSingularName: 'company', - gqlFields: COMPANY_GQL_FIELDS_WITH_EMPLOYEES, + gqlFields: COMPANY_GQL_FIELDS_WITH_POSITION, recordId: companyId, }); @@ -412,14 +412,14 @@ describe('Field permissions restrictions', () => { const graphqlOperation = findManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_PEOPLE_CITY, - }); + gqlFields: COMPANY_GQL_FIELDS_WITH_PEOPLE_JOB_TITLE, + }); const response = await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); expectNoGraphQLErrors(response); expect( - response.body.data.companies.edges[0].node.people.edges[0].node.city, + response.body.data.companies.edges[0].node.people.edges[0].node.jobTitle, ).toBeDefined(); }); @@ -439,7 +439,7 @@ describe('Field permissions restrictions', () => { const graphqlOperation = findManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITHOUT_EMPLOYEES_AND_WITHOUT_PEOPLE_CITY, + gqlFields: COMPANY_GQL_FIELDS_WITHOUT_POSITION_AND_WITHOUT_PEOPLE_JOB_TITLE, }); const response = await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); @@ -462,7 +462,7 @@ describe('Field permissions restrictions', () => { query: gql` query Companies { companies { - countEmptyEmployees + countEmptyPosition } } `, @@ -471,7 +471,7 @@ describe('Field permissions restrictions', () => { await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); expectNoGraphQLErrors(response); - expect(response.body.data.companies.countEmptyEmployees).toBeDefined(); + expect(response.body.data.companies.countEmptyPosition).toBeDefined(); }); it('2. should allow aggregate over a restricted field on a related object', async () => { @@ -485,14 +485,14 @@ describe('Field permissions restrictions', () => { const graphqlOperation = findManyOperationFactory({ objectMetadataSingularName: 'company', objectMetadataPluralName: 'companies', - gqlFields: COMPANY_GQL_FIELDS_WITH_PEOPLE_CITY_AGGREGATE, + gqlFields: COMPANY_GQL_FIELDS_WITH_PEOPLE_JOB_TITLE_AGGREGATE, }); const response = await makeGraphqlAPIRequestWithMemberRole(graphqlOperation); expectNoGraphQLErrors(response); expect( - response.body.data.companies.edges[0].node.people.percentageEmptyCity, + response.body.data.companies.edges[0].node.people.percentageEmptyJobTitle, ).toBeDefined(); }); }); diff --git a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/update-permissions.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/update-permissions.integration-spec.ts index 0e196de1eb..2dd4ed668f 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/update-permissions.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/fields-permissions/update-permissions.integration-spec.ts @@ -137,8 +137,8 @@ describe('Field update permissions restrictions', () => { await makeGraphqlAPIRequest(createCompanyOp); const createPersonOperation = createOneOperationFactory({ objectMetadataSingularName: 'person', - gqlFields: 'id city', - data: { id: personId, city: 'Paris', companyId }, + gqlFields: 'id jobTitle', + data: { id: personId, jobTitle: 'Paris', companyId }, }); await makeGraphqlAPIRequest(createPersonOperation); diff --git a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/granular-object-records-permissions.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/granular-object-records-permissions.integration-spec.ts index c91a801981..e4d5dfd4c7 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/granular-object-records-permissions.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/granular-object-records-permissions.integration-spec.ts @@ -83,10 +83,9 @@ describe('granularObjectRecordsPermissions', () => { objectMetadataSingularName: 'person', gqlFields: ` id - city jobTitle `, - filter: { city: { eq: 'Seattle' } }, + filter: { jobTitle: { eq: 'Seattle' } }, }); const companyGraphqlOperation = findOneOperationFactory({ @@ -138,10 +137,9 @@ describe('granularObjectRecordsPermissions', () => { objectMetadataSingularName: 'person', gqlFields: ` id - city jobTitle `, - filter: { city: { eq: 'Seattle' } }, + filter: { jobTitle: { eq: 'Seattle' } }, }); const companyGraphqlOperation = findOneOperationFactory({ diff --git a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/permissions-on-relations.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/permissions-on-relations.integration-spec.ts index 14666fa25c..e4a9351e40 100644 --- a/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/permissions-on-relations.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/object-records-permissions/permissions-on-relations.integration-spec.ts @@ -67,7 +67,7 @@ describe('permissionsOnRelations', () => { name: { firstName: 'Marie', }, - city: 'Paris', + jobTitle: 'Paris', companyId, }, }); @@ -121,7 +121,6 @@ describe('permissionsOnRelations', () => { objectMetadataPluralName: 'people', gqlFields: ` id - city jobTitle company { id @@ -161,7 +160,6 @@ describe('permissionsOnRelations', () => { objectMetadataPluralName: 'people', gqlFields: ` id - city jobTitle company { id @@ -204,7 +202,6 @@ describe('permissionsOnRelations', () => { objectMetadataSingularName: 'person', gqlFields: ` id - city jobTitle company { id diff --git a/packages/twenty-server/test/integration/graphql/suites/order-by-with-group-by.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/order-by-with-group-by.integration-spec.ts index ea54549425..19019d11a2 100644 --- a/packages/twenty-server/test/integration/graphql/suites/order-by-with-group-by.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/order-by-with-group-by.integration-spec.ts @@ -25,7 +25,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-03-03T09:30:00.000Z', // Monday address: { addressCity: 'Cuzco' }, employees: 20, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -38,7 +38,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-03-03T09:30:00.000Z', // Monday address: { addressCity: 'Anvers' }, employees: 19, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -52,7 +52,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-03-03T09:30:00.000Z', // Monday address: { addressCity: 'Cuzco' }, employees: 19, - annualRecurringRevenue: { amountMicros: 105 }, + annualRevenue: { amountMicros: 105 }, }, }), ); @@ -65,7 +65,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-03-03T09:30:00.000Z', // Monday address: { addressCity: 'Dallas' }, employees: 2, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -78,7 +78,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-01-02T12:00:00.000Z', // Thursday address: { addressCity: 'Paris' }, employees: 10, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -91,7 +91,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-01-08T08:00:00.000Z', // Wednesday address: { addressCity: 'Barcelona' }, employees: 5, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -104,7 +104,7 @@ describe('group-by resolvers - order by', () => { createdAt: '2025-01-08T08:00:00.000Z', // Wednesday address: { addressCity: 'Barcelona' }, employees: 1, - annualRecurringRevenue: { amountMicros: 100 }, + annualRevenue: { amountMicros: 100 }, }, }), ); @@ -154,7 +154,7 @@ describe('group-by resolvers - order by', () => { { address: { addressCity: true } }, { createdAt: { granularity: 'DAY_OF_THE_WEEK' } }, { - annualRecurringRevenue: { + annualRevenue: { amountMicros: true, }, }, @@ -199,7 +199,7 @@ describe('group-by resolvers - order by', () => { const groupInfos = groups.map((g: any) => ({ city: g.groupByDimensionValues?.[0], dayOfWeek: g.groupByDimensionValues?.[1], - annualRecurringRevenue: g.groupByDimensionValues?.[2], + annualRevenue: g.groupByDimensionValues?.[2], avgEmployees: g.avgEmployees, totalCount: g.totalCount, })); @@ -211,42 +211,42 @@ describe('group-by resolvers - order by', () => { dayOfWeek: 'Monday', avgEmployees: 2, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Anvers', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '105', + annualRevenue: '105', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 20, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Barcelona', dayOfWeek: 'Wednesday', avgEmployees: 3, totalCount: 2, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Paris', dayOfWeek: 'Thursday', avgEmployees: 10, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, ]); }); @@ -279,7 +279,7 @@ describe('group-by resolvers - order by', () => { const groupInfos = groups.map((g: any) => ({ city: g.groupByDimensionValues?.[0], dayOfWeek: g.groupByDimensionValues?.[1], - annualRecurringRevenue: g.groupByDimensionValues?.[2], + annualRevenue: g.groupByDimensionValues?.[2], avgEmployees: g.avgEmployees, totalCount: g.totalCount, })); @@ -291,42 +291,42 @@ describe('group-by resolvers - order by', () => { dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '105', + annualRevenue: '105', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 20, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Dallas', dayOfWeek: 'Monday', avgEmployees: 2, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Barcelona', dayOfWeek: 'Wednesday', avgEmployees: 3, totalCount: 2, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Paris', dayOfWeek: 'Thursday', avgEmployees: 10, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, ]); }); @@ -359,7 +359,7 @@ describe('group-by resolvers - order by', () => { const groupInfos = groups.map((g: any) => ({ city: g.groupByDimensionValues?.[0], dayOfWeek: g.groupByDimensionValues?.[1], - annualRecurringRevenue: g.groupByDimensionValues?.[2], + annualRevenue: g.groupByDimensionValues?.[2], avgEmployees: g.avgEmployees, totalCount: g.totalCount, })); @@ -370,42 +370,42 @@ describe('group-by resolvers - order by', () => { dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Barcelona', dayOfWeek: 'Wednesday', avgEmployees: 3, totalCount: 2, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '105', + annualRevenue: '105', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 20, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Dallas', dayOfWeek: 'Monday', avgEmployees: 2, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Paris', dayOfWeek: 'Thursday', avgEmployees: 10, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, ]); }); @@ -438,7 +438,7 @@ describe('group-by resolvers - order by', () => { const groupInfos = groups.map((g: any) => ({ city: g.groupByDimensionValues?.[0], dayOfWeek: g.groupByDimensionValues?.[1], - annualRecurringRevenue: g.groupByDimensionValues?.[2], + annualRevenue: g.groupByDimensionValues?.[2], avgEmployees: g.avgEmployees, totalCount: g.totalCount, })); @@ -449,42 +449,42 @@ describe('group-by resolvers - order by', () => { dayOfWeek: 'Monday', avgEmployees: 2, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Barcelona', dayOfWeek: 'Wednesday', avgEmployees: 3, totalCount: 2, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Paris', dayOfWeek: 'Thursday', avgEmployees: 10, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Anvers', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 19, totalCount: 1, - annualRecurringRevenue: '105', + annualRevenue: '105', }, { city: 'Cuzco', dayOfWeek: 'Monday', avgEmployees: 20, totalCount: 1, - annualRecurringRevenue: '100', + annualRevenue: '100', }, ]); }); @@ -668,7 +668,7 @@ describe('group-by resolvers - order by', () => { { aggregate: { avgEmployees: 'AscNullsFirst', - avgAnnualRecurringRevenueAmountMicros: 'AscNullsFirst', + avgAnnualRevenueAmountMicros: 'AscNullsFirst', }, }, ]), diff --git a/packages/twenty-server/test/integration/graphql/suites/query-complexity/common-query-complexity-failing.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/query-complexity/common-query-complexity-failing.integration-spec.ts index 7ee0f9ae9a..a39c858e04 100644 --- a/packages/twenty-server/test/integration/graphql/suites/query-complexity/common-query-complexity-failing.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/query-complexity/common-query-complexity-failing.integration-spec.ts @@ -53,7 +53,7 @@ describe('Query Complexity - Failing Scenarios', () => { const groupByOperation = groupByOperationFactory({ objectMetadataSingularName: 'person', objectMetadataPluralName: 'people', - groupBy: [{ city: true }], + groupBy: [{ jobTitle: true }], gqlFields: `edges { node { id company { id } } }`, limit: 11, }); diff --git a/packages/twenty-server/test/integration/graphql/suites/query-complexity/constants/tooManyRelationQueryGqlFields.constant.ts b/packages/twenty-server/test/integration/graphql/suites/query-complexity/constants/tooManyRelationQueryGqlFields.constant.ts index 5bc05114dc..be14f75902 100644 --- a/packages/twenty-server/test/integration/graphql/suites/query-complexity/constants/tooManyRelationQueryGqlFields.constant.ts +++ b/packages/twenty-server/test/integration/graphql/suites/query-complexity/constants/tooManyRelationQueryGqlFields.constant.ts @@ -1,6 +1,5 @@ export const TOO_MANY_RELATION_QUERY_GQL_FIELDS = ` id - city jobTitle avatarUrl intro diff --git a/packages/twenty-server/test/integration/graphql/suites/settings-permissions/failing-impersonation.integration-spec.ts b/packages/twenty-server/test/integration/graphql/suites/settings-permissions/failing-impersonation.integration-spec.ts index 0c50c645b6..b8f5dbd197 100644 --- a/packages/twenty-server/test/integration/graphql/suites/settings-permissions/failing-impersonation.integration-spec.ts +++ b/packages/twenty-server/test/integration/graphql/suites/settings-permissions/failing-impersonation.integration-spec.ts @@ -11,7 +11,6 @@ describe('peopleResolver (e2e)', () => { edges { node { jobTitle - city avatarUrl position searchVector diff --git a/packages/twenty-server/test/integration/graphql/suites/view/__snapshots__/successful-find-view.integration-spec.ts.snap b/packages/twenty-server/test/integration/graphql/suites/view/__snapshots__/successful-find-view.integration-spec.ts.snap index 46c7bfbdc5..a77af817c0 100644 --- a/packages/twenty-server/test/integration/graphql/suites/view/__snapshots__/successful-find-view.integration-spec.ts.snap +++ b/packages/twenty-server/test/integration/graphql/suites/view/__snapshots__/successful-find-view.integration-spec.ts.snap @@ -1,4 +1,4 @@ -// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`successful find view with all sub-relations (e2e) Company View Structure Validation should successfully fetch complete view structure with all sub-relations in single GraphQL query 1`] = ` { @@ -84,7 +84,7 @@ exports[`successful find view with all sub-relations (e2e) Company View Structur "id": Any, "isVisible": true, "position": 5, - "size": 150, + "size": 170, "updatedAt": Any, "viewFieldGroupId": null, "viewId": Any, @@ -101,18 +101,6 @@ exports[`successful find view with all sub-relations (e2e) Company View Structur "viewFieldGroupId": null, "viewId": Any, }, - { - "createdAt": Any, - "deletedAt": null, - "fieldMetadataId": Any, - "id": Any, - "isVisible": true, - "position": 7, - "size": 170, - "updatedAt": Any, - "viewFieldGroupId": null, - "viewId": Any, - }, ], "viewFilterGroups": [], "viewFilters": [], diff --git a/packages/twenty-server/test/integration/metadata/suites/page-layout-widget/utils/fetch-test-field-metadata-ids.util.ts b/packages/twenty-server/test/integration/metadata/suites/page-layout-widget/utils/fetch-test-field-metadata-ids.util.ts index 6f722a39b7..f42cd309de 100644 --- a/packages/twenty-server/test/integration/metadata/suites/page-layout-widget/utils/fetch-test-field-metadata-ids.util.ts +++ b/packages/twenty-server/test/integration/metadata/suites/page-layout-widget/utils/fetch-test-field-metadata-ids.util.ts @@ -10,7 +10,7 @@ export type TestFieldMetadataIds = { }; // Uses well-known company fields that make semantic sense for chart configs: -// - employees (number field, suitable for aggregation) +// - position (number field, suitable for aggregation) // - name (text field, suitable for grouping) // - domainName (link field, suitable for secondary grouping) export const fetchTestFieldMetadataIds = @@ -53,7 +53,7 @@ export const fetchTestFieldMetadataIds = return { objectMetadataId: companyObject.id, - fieldMetadataId1: findFieldByName('employees').id, + fieldMetadataId1: findFieldByName('position').id, fieldMetadataId2: findFieldByName('name').id, fieldMetadataId3: findFieldByName('domainName').id, fieldMetadataId3SubFieldName: 'primaryLinkUrl', diff --git a/packages/twenty-server/test/integration/rest/suites/field-permissions.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/field-permissions.integration-spec.ts index dc165d15ae..c0c28cde56 100644 --- a/packages/twenty-server/test/integration/rest/suites/field-permissions.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/field-permissions.integration-spec.ts @@ -10,14 +10,14 @@ import { generateRecordName } from 'test/integration/utils/generate-record-name' import { RowLevelPermissionPredicateOperand } from 'twenty-shared/types'; describe('Restricted fields', () => { - let personCity: string; + let personJobTitle: string; let memberRoleId: string; let personObjectId: string; let emailsFieldId: string; let phonesFieldId: string; beforeAll(async () => { - personCity = generateRecordName(TEST_PERSON_1_ID); + personJobTitle = generateRecordName(TEST_PERSON_1_ID); await makeRestAPIRequest({ method: 'post', @@ -35,7 +35,7 @@ describe('Restricted fields', () => { path: '/people', body: { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, emails: { primaryEmail: 'test@test.com', }, @@ -242,14 +242,14 @@ describe('Restricted fields', () => { path: `/people/${TEST_PERSON_1_ID}`, bearer: APPLE_JONY_MEMBER_ACCESS_TOKEN, body: { - city: 'Updated City', + jobTitle: 'Updated City', }, }) .expect(200) .expect((res) => { const updatedPerson = res.body.data.updatePerson; - expect(updatedPerson.city).toBe('Updated City'); + expect(updatedPerson.jobTitle).toBe('Updated City'); }); }); }); @@ -369,14 +369,14 @@ describe('Restricted fields', () => { path: `/people`, bearer: APPLE_JONY_MEMBER_ACCESS_TOKEN, body: { - city: 'New City', + jobTitle: 'New City', }, }) .expect(201) .expect((res) => { const createdPerson = res.body.data.createPerson; - expect(createdPerson.city).toBe('New City'); + expect(createdPerson.jobTitle).toBe('New City'); expect(createdPerson.emails).toBeUndefined(); }); }); @@ -502,10 +502,10 @@ describe('Restricted fields', () => { bearer: APPLE_JONY_MEMBER_ACCESS_TOKEN, body: [ { - city: 'Batch City 1', + jobTitle: 'Batch City 1', }, { - city: 'Batch City 2', + jobTitle: 'Batch City 2', }, ], }) @@ -514,9 +514,9 @@ describe('Restricted fields', () => { const createdPeople = res.body.data.createPeople; expect(createdPeople).toHaveLength(2); - expect(createdPeople[0].city).toBe('Batch City 1'); + expect(createdPeople[0].jobTitle).toBe('Batch City 1'); expect(createdPeople[0].emails).toBeUndefined(); - expect(createdPeople[1].city).toBe('Batch City 2'); + expect(createdPeople[1].jobTitle).toBe('Batch City 2'); expect(createdPeople[1].emails).toBeUndefined(); }); }); diff --git a/packages/twenty-server/test/integration/rest/suites/rest-api-core-create-one.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/rest-api-core-create-one.integration-spec.ts index 3baa5a1008..ccf334a3aa 100644 --- a/packages/twenty-server/test/integration/rest/suites/rest-api-core-create-one.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/rest-api-core-create-one.integration-spec.ts @@ -33,10 +33,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should create a new person', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }; @@ -50,17 +50,17 @@ describe('Core REST API Create One endpoint', () => { const createdPerson = res.body.data.createPerson; expect(createdPerson.id).toBe(TEST_PERSON_1_ID); - expect(createdPerson.city).toBe(personCity); + expect(createdPerson.jobTitle).toBe(personJobTitle); expect(createdPerson.createdBy.source).toBe(FieldActorSource.API); expect(createdPerson.createdBy.workspaceMemberId).toBe(null); }); }); it('should create a new person with specific createdBy', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, createdBy: { source: FieldActorSource.EMAIL, @@ -82,10 +82,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should create a new person with MANUAL createdBy if user identified', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }; @@ -107,10 +107,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should support depth 0 parameter', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }; @@ -129,10 +129,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should support depth 1 parameter', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }; @@ -154,10 +154,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should not support depth 2 parameter', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }; @@ -169,10 +169,10 @@ describe('Core REST API Create One endpoint', () => { }); it('should return a BadRequestException when trying to create a person with an existing ID', async () => { - const personCity = generateRecordName(TEST_PERSON_1_ID); + const personJobTitle = generateRecordName(TEST_PERSON_1_ID); const requestBody = { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, }; await makeRestAPIRequest({ diff --git a/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-many.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-many.integration-spec.ts index bb8736ccee..91e6f901a0 100644 --- a/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-many.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-many.integration-spec.ts @@ -20,7 +20,7 @@ describe('Core REST API Find Many endpoint', () => { TEST_PERSON_3_ID, TEST_PERSON_4_ID, ]; - const testPersonCities: Record = {}; + const testPersonJobTitles: Record = {}; beforeAll(async () => { await deleteAllRecords('person'); @@ -39,16 +39,16 @@ describe('Core REST API Find Many endpoint', () => { let index = 0; for (const personId of testPersonIds) { - const city = generateRecordName(personId); + const jobTitle = generateRecordName(personId); - testPersonCities[personId] = city; + testPersonJobTitles[personId] = jobTitle; await makeRestAPIRequest({ method: 'post', path: '/people', body: { id: personId, - city: city, + jobTitle: jobTitle, position: index, companyId: TEST_COMPANY_1_ID, }, @@ -80,7 +80,7 @@ describe('Core REST API Find Many endpoint', () => { const person = people.find((p) => p.id === personId); expect(person).toBeDefined(); - expect(person.city).toBe(testPersonCities[personId]); + expect(person.jobTitle).toBe(testPersonJobTitles[personId]); } // Check pagination metadata @@ -282,7 +282,7 @@ describe('Core REST API Find Many endpoint', () => { it('should combine filtering, ordering, and pagination', async () => { const response = await makeRestAPIRequest({ method: 'get', - path: '/people?filter=position[gt]:0&order_by=city[AscNullsFirst]&limit=2', + path: '/people?filter=position[gt]:0&order_by=jobTitle[AscNullsFirst]&limit=2', }).expect(200); const people = response.body.data.people; @@ -293,7 +293,9 @@ describe('Core REST API Find Many endpoint', () => { expect(people.length).toBeLessThanOrEqual(2); expect(pageInfo).toBeDefined(); - expect(people).toEqual([...people].sort((a, b) => a.city - b.city)); + expect(people).toEqual( + [...people].sort((a, b) => a.jobTitle.localeCompare(b.jobTitle)), + ); }); it('should should throw an error when trying to order by a composite field', async () => { diff --git a/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-one.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-one.integration-spec.ts index 90f51beb50..33fd84804d 100644 --- a/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-one.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/rest-api-core-find-one.integration-spec.ts @@ -12,13 +12,13 @@ import { deleteAllRecords } from 'test/integration/utils/delete-all-records'; import { generateRecordName } from 'test/integration/utils/generate-record-name'; describe('Core REST API Find One endpoint', () => { - let personCity: string; + let personJobTitle: string; beforeAll(async () => { await deleteAllRecords('person'); await deleteAllRecords('company'); - personCity = generateRecordName(TEST_PERSON_1_ID); + personJobTitle = generateRecordName(TEST_PERSON_1_ID); await makeRestAPIRequest({ method: 'post', @@ -36,7 +36,7 @@ describe('Core REST API Find One endpoint', () => { path: '/people', body: { id: TEST_PERSON_1_ID, - city: personCity, + jobTitle: personJobTitle, companyId: TEST_COMPANY_1_ID, }, }); @@ -53,7 +53,7 @@ describe('Core REST API Find One endpoint', () => { expect(person).not.toBeNull(); expect(person.id).toBe(TEST_PERSON_1_ID); - expect(person.city).toBe(personCity); + expect(person.jobTitle).toBe(personJobTitle); }); }); diff --git a/packages/twenty-server/test/integration/rest/suites/rest-api-core-group-by.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/rest-api-core-group-by.integration-spec.ts index da48a38299..ab4a34dc5a 100644 --- a/packages/twenty-server/test/integration/rest/suites/rest-api-core-group-by.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/rest-api-core-group-by.integration-spec.ts @@ -30,8 +30,8 @@ describe('REST API Core Group By endpoint', () => { const testOpportunityId4 = randomUUID(); const testCompanyId1 = randomUUID(); const testCompanyId2 = randomUUID(); - const COMPANY_1_EMPLOYEES = 10; - const COMPANY_2_EMPLOYEES = 20; + const COMPANY_1_POSITION = 10; + const COMPANY_2_POSITION = 20; beforeAll(async () => { // Create test companies @@ -42,7 +42,7 @@ describe('REST API Core Group By endpoint', () => { data: { id: testCompanyId1, name: 'Company 1', - employees: COMPANY_1_EMPLOYEES, + position: COMPANY_1_POSITION, createdAt: '2020-02-05T08:00:00.000Z', }, }), @@ -55,7 +55,7 @@ describe('REST API Core Group By endpoint', () => { data: { id: testCompanyId2, name: 'Company 2', - employees: COMPANY_2_EMPLOYEES, + position: COMPANY_2_POSITION, createdAt: '2020-02-05T08:00:00.000Z', }, }), diff --git a/packages/twenty-server/test/integration/rest/suites/rest-api-core-update.integration-spec.ts b/packages/twenty-server/test/integration/rest/suites/rest-api-core-update.integration-spec.ts index c07743c77b..6a11d5cca2 100644 --- a/packages/twenty-server/test/integration/rest/suites/rest-api-core-update.integration-spec.ts +++ b/packages/twenty-server/test/integration/rest/suites/rest-api-core-update.integration-spec.ts @@ -18,7 +18,7 @@ describe('Core REST API Update One endpoint', () => { primaryEmail: 'updated@example.com', additionalEmails: ['extra@example.com'], }, - city: generateRecordName(TEST_PERSON_1_ID), + jobTitle: generateRecordName(TEST_PERSON_1_ID), }; beforeAll(async () => { @@ -43,7 +43,7 @@ describe('Core REST API Update One endpoint', () => { }); }); - it('should update an existing person (name, emails, and city)', async () => { + it('should update an existing person (name, emails, and jobTitle)', async () => { const response = await makeRestAPIRequest({ method: 'patch', path: `/people/${TEST_PERSON_1_ID}`, @@ -63,8 +63,7 @@ describe('Core REST API Update One endpoint', () => { expect(updatedPerson.emails.additionalEmails).toEqual( updatedData.emails.additionalEmails, ); - expect(updatedPerson.city).toBe(updatedData.city); - expect(updatedPerson.jobTitle).toBe(''); + expect(updatedPerson.jobTitle).toBe(updatedData.jobTitle); expect(updatedPerson.companyId).toBe(TEST_COMPANY_1_ID); }); diff --git a/packages/twenty-shared/src/metadata/constants/standard-object.constant.ts b/packages/twenty-shared/src/metadata/constants/standard-object.constant.ts index 1736da7f48..da8a1666c4 100644 --- a/packages/twenty-shared/src/metadata/constants/standard-object.constant.ts +++ b/packages/twenty-shared/src/metadata/constants/standard-object.constant.ts @@ -544,18 +544,11 @@ export const STANDARD_OBJECTS = { universalIdentifier: '20202020-0c28-43d8-8ba5-3659924d3489', }, address: { universalIdentifier: '20202020-c5ce-4adc-b7b6-9c0979fc55e7' }, - employees: { - universalIdentifier: '20202020-8965-464a-8a75-74bafc152a0b', - }, linkedinLink: { universalIdentifier: '20202020-ebeb-4beb-b9ad-6848036fb451', }, - xLink: { universalIdentifier: '20202020-6f64-4fd9-9580-9c1991c7d8c3' }, - annualRecurringRevenue: { - universalIdentifier: '20202020-602a-495c-9776-f5d5b11d227b', - }, - idealCustomerProfile: { - universalIdentifier: '20202020-ba6b-438a-8213-2c5ba28d76a2', + annualRevenue: { + universalIdentifier: '60f533b7-2166-4071-a767-ceb0286822fd', }, position: { universalIdentifier: '20202020-9b4e-462b-991d-a0ee33326454' }, createdBy: { @@ -617,9 +610,6 @@ export const STANDARD_OBJECTS = { createdAt: { universalIdentifier: '20202020-af01-4a01-8a01-c0aba11cf005', }, - employees: { - universalIdentifier: '20202020-af01-4a01-8a01-c0aba11cf006', - }, linkedinLink: { universalIdentifier: '20202020-af01-4a01-8a01-c0aba11cf007', }, @@ -651,21 +641,12 @@ export const STANDARD_OBJECTS = { accountOwner: { universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1202', }, - annualRecurringRevenue: { - universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1203', - }, - idealCustomerProfile: { - universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1204', - }, - employees: { - universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1205', + annualRevenue: { + universalIdentifier: '2a35f734-dea2-4de9-8395-acbce8df0f97', }, linkedinLink: { universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1206', }, - xLink: { - universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1207', - }, address: { universalIdentifier: '20202020-af01-4a01-8a01-c0aba11c1208', }, @@ -1595,10 +1576,8 @@ export const STANDARD_OBJECTS = { linkedinLink: { universalIdentifier: '20202020-f1af-48f7-893b-2007a73dd508', }, - xLink: { universalIdentifier: '20202020-8fc2-487c-b84a-55a99b145cfd' }, jobTitle: { universalIdentifier: '20202020-b0d0-415a-bef9-640a26dacd9b' }, phones: { universalIdentifier: '20202020-0638-448e-8825-439134618022' }, - city: { universalIdentifier: '20202020-5243-4ffb-afc5-2c675da41346' }, avatarUrl: { universalIdentifier: '20202020-b8a6-40df-961c-373dc5d2ec21', }, @@ -1671,18 +1650,12 @@ export const STANDARD_OBJECTS = { createdAt: { universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea11af5', }, - city: { - universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea11af6', - }, jobTitle: { universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea11af7', }, linkedinLink: { universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea11af8', }, - xLink: { - universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea11af9', - }, }, }, personRecordPageFields: { @@ -1717,12 +1690,6 @@ export const STANDARD_OBJECTS = { linkedinLink: { universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea12205', }, - xLink: { - universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea12206', - }, - city: { - universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea12207', - }, avatarUrl: { universalIdentifier: '20202020-af02-4a02-8a02-ae0a1ea12208', }, diff --git a/packages/twenty-shared/src/types/FieldMetadataOptions.ts b/packages/twenty-shared/src/types/FieldMetadataOptions.ts index c2040c564d..7ea908fd32 100644 --- a/packages/twenty-shared/src/types/FieldMetadataOptions.ts +++ b/packages/twenty-shared/src/types/FieldMetadataOptions.ts @@ -2,15 +2,30 @@ import { type FieldMetadataType } from '@/types/FieldMetadataType'; import { type IsExactly } from '@/types/IsExactly'; export type TagColor = + | 'red' + | 'ruby' + | 'crimson' + | 'tomato' + | 'orange' + | 'amber' + | 'yellow' + | 'lime' + | 'grass' | 'green' + | 'jade' + | 'mint' | 'turquoise' + | 'cyan' | 'sky' | 'blue' + | 'iris' + | 'violet' | 'purple' + | 'plum' | 'pink' - | 'red' - | 'orange' - | 'yellow' + | 'bronze' + | 'gold' + | 'brown' | 'gray'; export class FieldMetadataDefaultOption { diff --git a/packages/twenty-zapier/src/creates/__tests__/crud_record.test.ts b/packages/twenty-zapier/src/creates/__tests__/crud_record.test.ts index 31f3fb43af..c89f3a6822 100644 --- a/packages/twenty-zapier/src/creates/__tests__/crud_record.test.ts +++ b/packages/twenty-zapier/src/creates/__tests__/crud_record.test.ts @@ -27,19 +27,6 @@ describe('creates.create_company', () => { '{ url: "http://test.com/linkedin_url2", label: "Test linkedinUrl2" }', ], }, - xLink: { - primaryLinkUrl: 'http://test.com/x_url', - primaryLinkLabel: 'Test xUrl', - secondaryLinks: [ - '{ url: "http://test.com/x_url2", label: "Test xUrl2" }', - ], - }, - annualRecurringRevenue: { - amountMicros: 100000000000, - currencyCode: 'USD', - }, - idealCustomerProfile: true, - employees: 25, }); const result = await appTester( App.creates[crudRecordKey].operation.perform, @@ -52,13 +39,11 @@ describe('creates.create_company', () => { requestDb({ z, bundle, - query: `query findCompany {company(filter: {id: {eq: "${result.data.createCompany.id}"}}){id annualRecurringRevenue{amountMicros currencyCode}}}`, + query: `query findCompany {company(filter: {id: {eq: "${result.data.createCompany.id}"}}){id name address{addressCity}}}`, }), bundle, ); - expect( - checkDbResult.data.company.annualRecurringRevenue.amountMicros, - ).toEqual(100000000000); + expect(checkDbResult.data.company.address.addressCity).toEqual('Paris'); }); test('should run to create a Person Record', async () => { const bundle = getBundleForTest({ @@ -73,7 +58,6 @@ describe('creates.create_company', () => { '{number: "610203041", countryCode: "FR", callingCode: "+33"}', ], }, - city: 'Paris', }); const result = await appTester( App.creates[crudRecordKey].operation.perform, @@ -102,7 +86,6 @@ describe('creates.update_company', () => { nameSingular: 'Company', crudZapierOperation: DatabaseEventAction.CREATED, name: 'Company Name', - employees: 25, }); const createResult = await appTester( @@ -145,7 +128,6 @@ describe('creates.delete_company', () => { nameSingular: 'Company', crudZapierOperation: DatabaseEventAction.CREATED, name: 'Delete Company Name', - employees: 25, }); const createResult = await appTester(