Seed update - Replaced Qonto by Anthropic (#12340)
Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
committed by
GitHub
parent
f81d396413
commit
e13d83b660
@ -6,7 +6,7 @@ const tableName = 'company';
|
||||
export const DEV_SEED_COMPANY_IDS = {
|
||||
LINKEDIN: '20202020-3ec3-4fe3-8997-b76aa0bfa408',
|
||||
FACEBOOK: '20202020-5d81-46d6-bf83-f7fd33ea6102',
|
||||
QONTO: '20202020-0713-40a5-8216-82802401d33e',
|
||||
ANTHROPIC: '20202020-0713-40a5-8216-82802401d33e',
|
||||
MICROSOFT: '20202020-ed89-413a-b31a-962986e67bb4',
|
||||
AIRBNB: '20202020-171e-4bcc-9cf7-43448d6fb278',
|
||||
GOOGLE: '20202020-c21e-4ec2-873b-de4264d89025',
|
||||
@ -82,17 +82,17 @@ export const seedCompanies = async (
|
||||
createdByName: 'Tim Apple',
|
||||
},
|
||||
{
|
||||
id: DEV_SEED_COMPANY_IDS.QONTO,
|
||||
name: 'Qonto',
|
||||
domainNamePrimaryLinkUrl: 'https://qonto.com',
|
||||
addressAddressStreet1: '18 rue de navarrin',
|
||||
id: DEV_SEED_COMPANY_IDS.ANTHROPIC,
|
||||
name: 'Anthropic',
|
||||
domainNamePrimaryLinkUrl: 'https://anthropic.com',
|
||||
addressAddressStreet1: '548 Market Street',
|
||||
addressAddressStreet2: null,
|
||||
addressAddressCity: 'Paris',
|
||||
addressAddressCity: 'San Francisco',
|
||||
addressAddressState: null,
|
||||
addressAddressPostcode: '75009',
|
||||
addressAddressCountry: 'France',
|
||||
addressAddressPostcode: '94104',
|
||||
addressAddressCountry: 'United States',
|
||||
position: 3,
|
||||
tagline: "Qonto's tagline",
|
||||
tagline: "Anthropic's tagline",
|
||||
workPolicy: ['ON_SITE'],
|
||||
createdBySource: 'MANUAL',
|
||||
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM,
|
||||
|
||||
@ -94,9 +94,9 @@ export const seedPeople = async (
|
||||
phonesPrimaryPhoneCountryCode: 'FR',
|
||||
phonesPrimaryPhoneCallingCode: '+33',
|
||||
phonesPrimaryPhoneNumber: '789012345',
|
||||
city: 'Seattle',
|
||||
companyId: DEV_SEED_COMPANY_IDS.QONTO,
|
||||
emailsPrimaryEmail: 'christopher.gonzalez@qonto.com',
|
||||
city: 'San Francisco',
|
||||
companyId: DEV_SEED_COMPANY_IDS.ANTHROPIC,
|
||||
emailsPrimaryEmail: 'christopher.gonzalez@anthropic.com',
|
||||
position: 3,
|
||||
whatsappPrimaryPhoneCountryCode: 'FR',
|
||||
whatsappPrimaryPhoneCallingCode: '+33',
|
||||
@ -113,8 +113,8 @@ export const seedPeople = async (
|
||||
phonesPrimaryPhoneCallingCode: '+33',
|
||||
phonesPrimaryPhoneNumber: '780123456',
|
||||
city: 'Los Angeles',
|
||||
companyId: DEV_SEED_COMPANY_IDS.QONTO,
|
||||
emailsPrimaryEmail: 'ashley.parker@qonto.com',
|
||||
companyId: DEV_SEED_COMPANY_IDS.ANTHROPIC,
|
||||
emailsPrimaryEmail: 'ashley.parker@anthropic.com',
|
||||
position: 4,
|
||||
whatsappPrimaryPhoneCountryCode: 'FR',
|
||||
whatsappPrimaryPhoneCallingCode: '+33',
|
||||
|
||||
@ -2,7 +2,7 @@ import { FieldActorSource } from 'src/engine/metadata-modules/field-metadata/com
|
||||
import { WorkspaceEntityManager } from 'src/engine/twenty-orm/entity-manager/workspace-entity-manager';
|
||||
|
||||
export const AIRBNB_ID = 'c776ee49-f608-4a77-8cc8-6fe96ae1e43f';
|
||||
export const QONTO_ID = 'f45ee421-8a3e-4aa5-a1cf-7207cc6754e1';
|
||||
export const ANTHROPIC_ID = 'f45ee421-8a3e-4aa5-a1cf-7207cc6754e1';
|
||||
export const STRIPE_ID = '1f70157c-4ea5-4d81-bc49-e1401abfbb94';
|
||||
export const FIGMA_ID = '9d5bcf43-7d38-4e88-82cb-d6d4ce638bf0';
|
||||
export const NOTION_ID = '06290608-8bf0-4806-99ae-a715a6a93fad';
|
||||
@ -51,16 +51,16 @@ export const companyPrefillData = async (
|
||||
createdByName: 'System',
|
||||
},
|
||||
{
|
||||
id: QONTO_ID,
|
||||
name: 'Qonto',
|
||||
domainNamePrimaryLinkUrl: 'https://qonto.com',
|
||||
addressAddressStreet1: '18 rue de navarrin',
|
||||
id: ANTHROPIC_ID,
|
||||
name: 'Anthropic',
|
||||
domainNamePrimaryLinkUrl: 'https://anthropic.com',
|
||||
addressAddressStreet1: '548 Market Street',
|
||||
addressAddressStreet2: null,
|
||||
addressAddressCity: 'Paris',
|
||||
addressAddressState: null,
|
||||
addressAddressPostcode: '75009',
|
||||
addressAddressCountry: 'France',
|
||||
employees: 800,
|
||||
addressAddressCity: 'San Francisco',
|
||||
addressAddressState: 'CA',
|
||||
addressAddressPostcode: '94104',
|
||||
addressAddressCountry: 'United States',
|
||||
employees: 1100,
|
||||
position: 2,
|
||||
createdBySource: FieldActorSource.SYSTEM,
|
||||
createdByWorkspaceMemberId: null,
|
||||
|
||||
@ -2,9 +2,9 @@ import { FieldActorSource } from 'src/engine/metadata-modules/field-metadata/com
|
||||
import { WorkspaceEntityManager } from 'src/engine/twenty-orm/entity-manager/workspace-entity-manager';
|
||||
import {
|
||||
AIRBNB_ID,
|
||||
ANTHROPIC_ID,
|
||||
FIGMA_ID,
|
||||
NOTION_ID,
|
||||
QONTO_ID,
|
||||
STRIPE_ID,
|
||||
} from 'src/engine/workspace-manager/standard-objects-prefill-data/company';
|
||||
|
||||
@ -50,19 +50,19 @@ export const personPrefillData = async (
|
||||
companyId: AIRBNB_ID,
|
||||
},
|
||||
{
|
||||
nameFirstName: 'Alexandre',
|
||||
nameLastName: 'Prot',
|
||||
city: 'Paris',
|
||||
emailsPrimaryEmail: 'prot@qonto.com',
|
||||
nameFirstName: 'Dario',
|
||||
nameLastName: 'Amodei',
|
||||
city: 'San Francisco',
|
||||
emailsPrimaryEmail: 'amodei@anthropic.com',
|
||||
avatarUrl:
|
||||
'https://twentyhq.github.io/placeholder-images/people/image-89.png',
|
||||
position: 2,
|
||||
createdBySource: FieldActorSource.SYSTEM,
|
||||
createdByWorkspaceMemberId: null,
|
||||
createdByName: 'System',
|
||||
phonesPrimaryPhoneNumber: '677118822',
|
||||
phonesPrimaryPhoneCountryCode: '+33',
|
||||
companyId: QONTO_ID,
|
||||
phonesPrimaryPhoneNumber: '5551234567',
|
||||
phonesPrimaryPhoneCountryCode: '+1',
|
||||
companyId: ANTHROPIC_ID,
|
||||
},
|
||||
{
|
||||
nameFirstName: 'Patrick',
|
||||
|
||||
Reference in New Issue
Block a user